repo stringclasses 4 values | file_path stringlengths 6 193 | extension stringclasses 23 values | content stringlengths 0 1.73M | token_count int64 0 724k | __index_level_0__ int64 0 10.8k |
|---|---|---|---|---|---|
hyperswitch | config/otel-collector.yaml | .yaml | receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
exporters:
otlp:
endpoint: tempo:4317
tls:
insecure: true
debug:
verbosity: detailed
prometheus:
endpoint: 0.0.0.0:8889
namespace: router
const_labels:
app_name: router-api
service:
telemetry:
logs:
level: DEBUG
metrics:
level: detailed
address: 0.0.0.0:8888
pipelines:
metrics:
receivers: [otlp]
exporters: [prometheus]
traces:
receivers: [otlp]
exporters: [otlp]
| 177 | 8,808 |
hyperswitch | config/vector.yaml | .yaml | acknowledgements:
enabled: true
enrichment_tables:
sdk_map:
type: file
file:
path: /etc/vector/config/sdk_map.csv
encoding:
type: csv
schema:
publishable_key: string
merchant_id: string
api:
enabled: true
address: 0.0.0.0:8686
sources:
kafka_tx_events:
type: kafka
bootstrap_servers: kafka0:29092
group_id: sessionizer
topics:
- hyperswitch-payment-attempt-events
- hyperswitch-payment-intent-events
- hyperswitch-refund-events
- hyperswitch-dispute-events
decoding:
codec: json
sessionized_kafka_tx_events:
type: kafka
bootstrap_servers: kafka0:29092
group_id: sessionizer
topics:
- ^sessionizer
decoding:
codec: json
app_logs:
type: docker_logs
include_labels:
- "logs=promtail"
vector_metrics:
type: internal_metrics
node_metrics:
type: host_metrics
sdk_source:
type: http_server
address: 0.0.0.0:3103
encoding: json
transforms:
events_create_ts:
inputs:
- kafka_tx_events
source: |-
.timestamp = from_unix_timestamp(.created_at, unit: "seconds") ?? now()
."@timestamp" = from_unix_timestamp(.created_at, unit: "seconds") ?? now()
type: remap
plus_1_events:
type: filter
inputs:
- events_create_ts
- sessionized_events_create_ts
condition: ".sign_flag == 1"
hs_server_logs:
type: filter
inputs:
- app_logs
condition: '.labels."com.docker.compose.service" == "hyperswitch-server"'
parsed_hs_server_logs:
type: remap
inputs:
- app_logs
source: |-
.message = parse_json!(.message)
sessionized_events_create_ts:
type: remap
inputs:
- sessionized_kafka_tx_events
source: |-
.timestamp = from_unix_timestamp(.created_at, unit: "milliseconds") ?? now()
."@timestamp" = from_unix_timestamp(.created_at, unit: "milliseconds") ?? now()
sdk_transformed:
type: throttle
inputs:
- sdk_source
key_field: "{{ .payment_id }}{{ .merchant_id }}"
threshold: 1000
window_secs: 60
amend_sdk_logs:
type: remap
inputs:
- sdk_transformed
source: |
.before_transform = now()
merchant_id = .merchant_id
row = get_enrichment_table_record!("sdk_map", { "publishable_key" : merchant_id }, case_sensitive: true)
.merchant_id = row.merchant_id
.after_transform = now()
sinks:
opensearch_events_1:
type: elasticsearch
inputs:
- plus_1_events
endpoints:
- "https://opensearch:9200"
id_key: message_key
api_version: v7
tls:
verify_certificate: false
verify_hostname: false
auth:
strategy: basic
user: admin
password: 0penS3arc#
encoding:
except_fields:
- message_key
- offset
- partition
- topic
- clickhouse_database
- last_synced
- sign_flag
bulk:
index: "vector-{{ .topic }}"
opensearch_events_2:
type: elasticsearch
inputs:
- plus_1_events
endpoints:
- "https://opensearch:9200"
id_key: message_key
api_version: v7
tls:
verify_certificate: false
verify_hostname: false
auth:
strategy: basic
user: admin
password: 0penS3arc#
encoding:
except_fields:
- message_key
- offset
- partition
- topic
- clickhouse_database
- last_synced
- sign_flag
bulk:
# Add a date suffixed index for better grouping
index: "vector-{{ .topic }}-%Y-%m-%d"
opensearch_events_3:
type: elasticsearch
inputs:
- plus_1_events
endpoints:
- "https://opensearch:9200"
id_key: message_key
api_version: v7
tls:
verify_certificate: false
verify_hostname: false
auth:
strategy: basic
user: admin
password: 0penS3arc#
encoding:
except_fields:
- message_key
- offset
- partition
- topic
- clickhouse_database
- last_synced
- sign_flag
bulk:
index: "{{ .topic }}"
opensearch_logs:
type: elasticsearch
inputs:
- parsed_hs_server_logs
endpoints:
- "https://opensearch:9200"
api_version: v7
tls:
verify_certificate: false
verify_hostname: false
auth:
strategy: basic
user: admin
password: 0penS3arc#
bulk:
# Add a date suffixed index for better grouping
# index: "vector-{{ .topic }}-%Y-%m-%d"
index: "logs-{{ .container_name }}-%Y-%m-%d"
log_events:
type: loki
inputs:
- kafka_tx_events
- sessionized_kafka_tx_events
endpoint: http://loki:3100
labels:
source: vector
topic: "{{ .topic }}"
job: kafka
encoding:
codec: json
log_app_loki:
type: loki
inputs:
- parsed_hs_server_logs
endpoint: http://loki:3100
labels:
source: vector
job: app_logs
container: "{{ .container_name }}"
stream: "{{ .stream }}"
encoding:
codec: json
metrics:
type: prometheus_exporter
inputs:
- vector_metrics
- node_metrics
sdk_sink:
type: kafka
encoding:
codec: json
except_fields:
- "path"
- "source_type"
inputs:
- "amend_sdk_logs"
bootstrap_servers: kafka0:29092
topic: hyper-sdk-logs
key_field: ".merchant_id"
| 1,502 | 8,809 |
hyperswitch | config/dashboard.toml | .toml | [default.theme]
primary_color="#006DF9"
primary_hover_color="#005ED6"
sidebar_primary="#FCFCFD"
sidebar_secondary= "#FFFFFF"
sidebar_hover_color= "#D9DDE5"
sidebar_primary_text_color="#1C6DEA"
sidebar_secondary_text_color= "#525866"
sidebar_border_color= "#ECEFF3"
[default.endpoints]
api_url="http://localhost:8080" # The backend hyperswitch API server for making payments
sdk_url="http://localhost:9050/HyperLoader.js" # SDK distribution url used for loading the SDK in control center
hypersense_url=""
logo_url=""
favicon_url=""
agreement_url=""
agreement_version=""
apple_pay_certificate_url=""
mixpanel_token=""
recon_iframe_url=""
dss_certificate_url=""
[default.features]
test_live_toggle=false
is_live_mode=false
email=false
quick_start=false
audit_trail=false
sample_data=false
frm=true
payout=true
recon=true
test_processors=true
feedback=false
mixpanel=false
generate_report=false
surcharge=true
dispute_evidence_upload=false
paypal_automatic_flow=false
threeds_authenticator=true
global_search=false
global_search_filters=false
dispute_analytics=false
authentication_analytics=false
configure_pmts=true
branding=false
granularity=false
compliance_certificate=false
pm_authentication_processor=true
performance_monitor=false
new_analytics=false
new_analytics_smart_retries=false
new_analytics_refunds=false
new_analytics_filters=false
down_time=false
dev_theme_feature=false
tax_processor=true
force_cookies=false
x_feature_route=false
tenant_user=false
dev_click_to_pay=true
dev_recon_v2_product=false
dev_recovery_v2_product=false
dev_vault_v2_product=false
dev_intelligent_routing_v2=false
dev_modularity_v2=false
dev_alt_payment_methods=false
dev_hypersense_v2_product=false
maintainence_alert=""
[default.merchant_config]
[default.merchant_config.new_analytics]
org_ids=[]
merchant_ids=[]
profile_ids=[] | 452 | 8,810 |
hyperswitch | config/promtail.yaml | .yaml | server:
http_listen_port: 9080
grpc_listen_port: 0
positions:
filename: /tmp/positions.yaml
clients:
- url: http://loki:3100/loki/api/v1/push
scrape_configs:
- job_name: router_file_logs
static_configs:
- targets:
- localhost
labels:
scrape_source: file
__path__: /var/log/router/**/*.log*
pipeline_stages:
- labeldrop:
# Dropping filename since it causes extra labels (leading to unnecessary loki indexes)
- filename
- job_name: router_console_logs
docker_sd_configs:
- host: "unix:///var/run/docker.sock"
refresh_interval: 10s
filters:
- name: label
values: ["logs=promtail"]
relabel_configs:
- source_labels: ['__meta_docker_container_name']
regex: '/(.*)'
target_label: 'container'
- source_labels: ['__meta_docker_container_log_stream']
target_label: 'log_stream'
pipeline_stages:
- json:
expressions:
log_type:
- labels:
log_type:
- static_labels:
scrape_source: console
| 273 | 8,811 |
hyperswitch | config/payment_required_fields_v2.toml | .toml | [[required_fields.card.credit.fields.stripe.common]]
required_field = "payment_method_data.card.card_number"
display_name = "card_number"
field_type = "user_card_number"
[[required_fields.card.credit.fields.stripe.common]]
required_field = "payment_method_data.card.card_exp_year"
display_name = "card_exp_year"
field_type = "user_card_expiry_year"
[[required_fields.card.credit.fields.stripe.common]]
required_field = "payment_method_data.card.card_cvc"
display_name = "card_cvc"
field_type = "user_card_cvc"
[[required_fields.card.credit.fields.stripe.common]]
required_field = "payment_method_data.card.card_exp_month"
display_name = "card_exp_month"
field_type = "user_card_expiry_month"
| 153 | 8,812 |
hyperswitch | config/grafana-datasource.yaml | .yaml | apiVersion: 1
datasources:
- name: Traces
type: tempo
access: proxy
url: http://tempo:3200/
editable: true
isDefault: false
- name: Logs
type: loki
access: proxy
url: http://loki:3100/
editable: true
isDefault: true
- name: Metrics
type: prometheus
access: proxy
url: http://prometheus:9090/
editable: true
datasources:
# - name: ClickHouse
# type: grafana-clickhouse-datasource
# jsonData:
# defaultDatabase: default
# port: 9000
# server: clickhouse-server
# username: default
# tlsSkipVerify: true
# protocol: native
# editable: true | 213 | 8,813 |
hyperswitch | config/prometheus.yaml | .yaml | # my global config
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# Alertmanager configuration
# alerting:
# alertmanagers:
# - static_configs:
# - targets:
# - alertmanager:9093
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: "router"
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ["otel-collector:8889"]
- job_name: "otel-collector"
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ["otel-collector:8888"]
- job_name: "vector"
# metrics_path defaults to '/metrics'
# scheme defaults to 'http'.
static_configs:
- targets: ["vector:9598"] | 322 | 8,814 |
hyperswitch | config/docker_compose.toml | .toml | [server]
port = 8080
host = "0.0.0.0"
request_body_limit = 16_384 # Post request body is limited to 16k.
[log.file]
enabled = false # Whether you want to store log in log files.
path = "logs" # Where to store log files.
level = "DEBUG" # What gets into log files.
# rotation = "60" # mins # current framework doesn't support configuring rotation. set to hourly rotation.
[log.console]
enabled = true # Whether you want to see log in your terminal.
level = "DEBUG" # What you see in your terminal.
[log.telemetry]
traces_enabled = false # Whether traces are enabled.
metrics_enabled = true # Whether metrics are enabled.
ignore_errors = false # Whether to ignore errors during traces or metrics pipeline setup.
otel_exporter_otlp_endpoint = "https://otel-collector:4317" # Endpoint to send metrics and traces to.
use_xray_generator = false # Set this to true for AWS X-ray compatible traces
bg_metrics_collection_interval_in_secs = 15 # Interval for collecting the metrics in background thread
[master_database]
username = "db_user"
password = "db_pass"
host = "pg"
port = 5432
dbname = "hyperswitch_db"
pool_size = 5
[forex_api]
api_key = ""
fallback_api_key = ""
data_expiration_delay_in_seconds = 21600
redis_lock_timeout_in_seconds = 100
redis_ttl_in_seconds = 172800
[replica_database]
username = "db_user"
password = "db_pass"
host = "pg"
port = 5432
dbname = "hyperswitch_db"
pool_size = 5
[secrets]
admin_api_key = "test_admin"
jwt_secret = "secret"
master_enc_key = "73ad7bbbbc640c845a150f67d058b279849370cd2c1f3c67c4dd6c869213e13a"
[user]
password_validity_in_days = 90
two_factor_auth_expiry_in_secs = 300
totp_issuer_name = "Hyperswitch"
base_url = "http://localhost:9000"
force_two_factor_auth = false
force_cookies = false
[locker]
host = ""
host_rs = ""
mock_locker = true
basilisk_host = ""
locker_enabled = true
ttl_for_storage_in_secs = 220752000
[jwekey]
vault_encryption_key = ""
rust_locker_encryption_key = ""
vault_private_key = ""
[redis]
host = "redis-standalone"
port = 6379
cluster_enabled = false
cluster_urls = ["redis-cluster:6379"]
pool_size = 5
reconnect_max_attempts = 5
reconnect_delay = 5
default_ttl = 300
default_hash_ttl = 900
use_legacy_version = false
stream_read_count = 1
auto_pipeline = true
disable_auto_backpressure = false
max_in_flight_commands = 5000
default_command_timeout = 30
unresponsive_timeout = 10
max_feed_count = 200
[key_manager]
url = "http://localhost:5000"
[cors]
max_age = 30
# origins = "http://localhost:8080,http://localhost:9000"
allowed_methods = "GET,POST,PUT,DELETE"
wildcard_origin = true
[refund]
max_attempts = 10
max_age = 365
[api_keys]
hash_key = "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
[connectors]
aci.base_url = "https://eu-test.oppwa.com/"
adyen.base_url = "https://checkout-test.adyen.com/"
adyenplatform.base_url = "https://balanceplatform-api-test.adyen.com/"
adyen.payout_base_url = "https://pal-test.adyen.com/"
adyen.dispute_base_url = "https://ca-test.adyen.com/"
airwallex.base_url = "https://api-demo.airwallex.com/"
amazonpay.base_url = "https://pay-api.amazon.com/v2"
applepay.base_url = "https://apple-pay-gateway.apple.com/"
authorizedotnet.base_url = "https://apitest.authorize.net/xml/v1/request.api"
bambora.base_url = "https://api.na.bambora.com"
bamboraapac.base_url = "https://demo.ippayments.com.au/interface/api"
bankofamerica.base_url = "https://apitest.merchant-services.bankofamerica.com/"
billwerk.base_url = "https://api.reepay.com/"
billwerk.secondary_base_url = "https://card.reepay.com/"
bitpay.base_url = "https://test.bitpay.com"
bluesnap.base_url = "https://sandbox.bluesnap.com/"
bluesnap.secondary_base_url = "https://sandpay.bluesnap.com/"
boku.base_url = "https://$-api4-stage.boku.com"
braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
chargebee.base_url = "https://$.chargebee.com/api/"
checkout.base_url = "https://api.sandbox.checkout.com/"
coinbase.base_url = "https://api.commerce.coinbase.com"
coingate.base_url = "https://api-sandbox.coingate.com"
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
cybersource.base_url = "https://apitest.cybersource.com/"
datatrans.base_url = "https://api.sandbox.datatrans.com/"
datatrans.secondary_base_url = "https://pay.sandbox.datatrans.com/"
deutschebank.base_url = "https://testmerch.directpos.de/rest-api"
digitalvirgo.base_url = "https://dcb-integration-service-sandbox-external.staging.digitalvirgo.pl"
dlocal.base_url = "https://sandbox.dlocal.com/"
dummyconnector.base_url = "http://localhost:8080/dummy-connector"
ebanx.base_url = "https://sandbox.ebanxpay.com/"
elavon.base_url = "https://api.demo.convergepay.com/VirtualMerchantDemo/"
facilitapay.base_url = "https://sandbox-api.facilitapay.com/api/v1"
fiserv.base_url = "https://cert.api.fiservapps.com/"
fiservemea.base_url = "https://prod.emea.api.fiservapps.com/sandbox"
fiuu.base_url = "https://sandbox.merchant.razer.com/"
fiuu.secondary_base_url = "https://sandbox.merchant.razer.com/"
fiuu.third_base_url = "https://api.merchant.razer.com/"
forte.base_url = "https://sandbox.forte.net/api/v3"
getnet.base_url = "https://api-test.getneteurope.com/engine/rest"
globalpay.base_url = "https://apis.sandbox.globalpay.com/ucp/"
globepay.base_url = "https://pay.globepay.co/"
gocardless.base_url = "https://api-sandbox.gocardless.com"
gpayments.base_url = "https://{{merchant_endpoint_prefix}}-test.api.as1.gpayments.net"
helcim.base_url = "https://api.helcim.com/"
hipay.base_url = "https://stage-secure-gateway.hipay-tpp.com/rest/"
hipay.secondary_base_url = "https://stage-secure2-vault.hipay-tpp.com/rest/"
hipay.third_base_url = "https://stage-api-gateway.hipay.com/"
iatapay.base_url = "https://sandbox.iata-pay.iata.org/api/v1"
inespay.base_url = "https://apiflow.inespay.com/san/v21"
itaubank.base_url = "https://sandbox.devportal.itau.com.br/"
jpmorgan.base_url = "https://api-mock.payments.jpmorgan.com/api/v2"
juspaythreedsserver.base_url = "http://localhost:8000"
jpmorgan.secondary_base_url="https://id.payments.jpmorgan.com"
klarna.base_url = "https://api{{klarna_region}}.playground.klarna.com/"
mifinity.base_url = "https://demo.mifinity.com/"
mollie.base_url = "https://api.mollie.com/v2/"
moneris.base_url = "https://api.sb.moneris.io"
mollie.secondary_base_url = "https://api.cc.mollie.com/v1/"
multisafepay.base_url = "https://testapi.multisafepay.com/"
netcetera.base_url = "https://{{merchant_endpoint_prefix}}.3ds-server.prev.netcetera-cloud-payment.ch"
nexinets.base_url = "https://apitest.payengine.de/v1"
nexixpay.base_url = "https://xpaysandbox.nexigroup.com/api/phoenix-0.0/psp/api/v1"
nmi.base_url = "https://secure.nmi.com/"
nomupay.base_url = "https://payout-api.sandbox.nomupay.com"
noon.base_url = "https://api-test.noonpayments.com/"
novalnet.base_url = "https://payport.novalnet.de/v2"
noon.key_mode = "Test"
nuvei.base_url = "https://ppp-test.nuvei.com/"
opayo.base_url = "https://pi-test.sagepay.com/"
opennode.base_url = "https://dev-api.opennode.com"
paybox.base_url = "https://preprod-ppps.paybox.com/PPPS.php"
paybox.secondary_base_url="https://preprod-tpeweb.paybox.com/"
payeezy.base_url = "https://api-cert.payeezy.com/"
payme.base_url = "https://sandbox.payme.io/"
payone.base_url = "https://payment.preprod.payone.com/"
paypal.base_url = "https://api-m.sandbox.paypal.com/"
paystack.base_url = "https://api.paystack.co"
payu.base_url = "https://secure.snd.payu.com/"
placetopay.base_url = "https://test.placetopay.com/rest/gateway"
plaid.base_url = "https://sandbox.plaid.com"
powertranz.base_url = "https://staging.ptranz.com/api/"
prophetpay.base_url = "https://ccm-thirdparty.cps.golf/"
rapyd.base_url = "https://sandboxapi.rapyd.net"
razorpay.base_url = "https://sandbox.juspay.in/"
recurly.base_url = "https://v3.recurly.com"
redsys.base_url = "https://sis-t.redsys.es:25443"
riskified.base_url = "https://sandbox.riskified.com/api"
shift4.base_url = "https://api.shift4.com/"
signifyd.base_url = "https://api.signifyd.com/"
square.base_url = "https://connect.squareupsandbox.com/"
square.secondary_base_url = "https://pci-connect.squareupsandbox.com/"
stax.base_url = "https://apiprod.fattlabs.com/"
stripe.base_url = "https://api.stripe.com/"
stripebilling.base_url = "https://api.stripe.com/"
taxjar.base_url = "https://api.sandbox.taxjar.com/v2/"
threedsecureio.base_url = "https://service.sandbox.3dsecure.io"
thunes.base_url = "https://api.limonetikqualif.com/"
stripe.base_url_file_upload = "https://files.stripe.com/"
trustpay.base_url = "https://test-tpgw.trustpay.eu/"
trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/"
tsys.base_url = "https://stagegw.transnox.com/"
unified_authentication_service.base_url = "http://localhost:8000"
volt.base_url = "https://api.sandbox.volt.io/"
wellsfargo.base_url = "https://apitest.cybersource.com/"
wellsfargopayout.base_url = "https://api-sandbox.wellsfargo.com/"
wise.base_url = "https://api.sandbox.transferwise.tech/"
worldline.base_url = "https://eu.sandbox.api-ingenico.com/"
worldpay.base_url = "https://try.access.worldpay.com/"
xendit.base_url = "https://api.xendit.co"
zen.base_url = "https://api.zen-test.com/"
zen.secondary_base_url = "https://secure.zen-test.com/"
zsl.base_url = "https://api.sitoffalb.net/"
[pm_filters.default]
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA", currency = "AED,AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD" }
[connectors.supported]
wallets = ["klarna", "mifinity", "braintree", "applepay"]
rewards = ["cashtocode", "zen"]
cards = [
"aci",
"adyen",
"adyenplatform",
"airwallex",
"amazonpay",
"authorizedotnet",
"bambora",
"bamboraapac",
"bankofamerica",
"billwerk",
"bitpay",
"bluesnap",
"boku",
"braintree",
"checkout",
"coinbase",
"coingate",
"cryptopay",
"ctp_visa",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"dlocal",
"dummyconnector",
"ebanx",
"elavon",
"facilitapay",
"fiserv",
"fiservemea",
"fiuu",
"forte",
"getnet",
"globalpay",
"globepay",
"gocardless",
"gpayments",
"helcim",
"hipay",
"iatapay",
"inespay",
"itaubank",
"jpmorgan",
"juspaythreedsserver",
"mollie",
"moneris",
"multisafepay",
"netcetera",
"nexinets",
"nexixpay",
"nmi",
"noon",
"novalnet",
"nuvei",
"opayo",
"opennode",
"paybox",
"payeezy",
"payme",
"payone",
"paypal",
"paystack",
"payu",
"placetopay",
"plaid",
"powertranz",
"prophetpay",
"redsys",
"shift4",
"square",
"stax",
"stripe",
"stripebilling",
"taxjar",
"threedsecureio",
"thunes",
"trustpay",
"tsys",
"unified_authentication_service",
"volt",
"wellsfargo",
"wellsfargopayout",
"wise",
"worldline",
"worldpay",
"xendit",
"zen",
"zsl",
]
[delayed_session_response]
connectors_with_delayed_session_response = "trustpay,payme"
[webhook_source_verification_call]
connectors_with_webhook_source_verification_call = "paypal"
[billing_connectors_payment_sync]
billing_connectors_which_require_payment_sync = "stripebilling, recurly"
[scheduler]
stream = "SCHEDULER_STREAM"
[scheduler.consumer]
disabled = false
consumer_group = "SCHEDULER_GROUP"
[scheduler.server]
port = 3000
host = "127.0.0.1"
workers = 1
#tokenization configuration which describe token lifetime and payment method for specific connector
[tokenization]
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { type = "disable_only", list = "google_pay" } }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
mollie = { long_lived_token = false, payment_method = "card" }
stax = { long_lived_token = true, payment_method = "card,bank_debit" }
square = { long_lived_token = false, payment_method = "card" }
hipay = { long_lived_token = false, payment_method = "card" }
braintree = { long_lived_token = false, payment_method = "card" }
gocardless = { long_lived_token = true, payment_method = "bank_debit" }
billwerk = { long_lived_token = false, payment_method = "card" }
[temp_locker_enable_config]
stripe = { payment_method = "bank_transfer" }
nuvei = { payment_method = "card" }
shift4 = { payment_method = "card" }
bluesnap = { payment_method = "card" }
bankofamerica = { payment_method = "card" }
cybersource = { payment_method = "card" }
nmi = { payment_method = "card" }
payme = { payment_method = "card" }
deutschebank = { payment_method = "bank_debit" }
paybox = { payment_method = "card" }
nexixpay = { payment_method = "card" }
redsys = { payment_method = "card" }
[dummy_connector]
enabled = true
payment_ttl = 172800
payment_duration = 1000
payment_tolerance = 100
payment_retrieve_duration = 500
payment_retrieve_tolerance = 100
payment_complete_duration = 500
payment_complete_tolerance = 100
refund_ttl = 172800
refund_duration = 1000
refund_tolerance = 100
refund_retrieve_duration = 500
refund_retrieve_tolerance = 100
authorize_ttl = 36000
assets_base_url = "https://app.hyperswitch.io/assets/TestProcessor/"
default_return_url = "https://app.hyperswitch.io/"
slack_invite_url = "https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2awm23agh-p_G5xNpziv6yAiedTkkqLg"
discord_invite_url = "https://discord.gg/wJZ7DVW8mm"
[payouts]
payout_eligibility = true
[pm_filters.adyen]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ", currency = "GBP,AUD,NZD,CAD,USD" }
alfamart = { country = "ID", currency = "IDR" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD" }
ali_pay_hk = { country = "HK", currency = "HKD" }
alma = { country = "FR", currency = "EUR" }
apple_pay = { country = "AU,NZ,CN,JP,HK,SG,MY,BH,AE,KW,BR,ES,GB,SE,NO,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,LI,UA,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD,MYR" }
atome = { country = "MY,SG", currency = "MYR,SGD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
bca_bank_transfer = { country = "ID", currency = "IDR" }
bizum = { country = "ES", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
bni_va = { country = "ID", currency = "IDR" }
boleto = { country = "BR", currency = "BRL" }
bri_va = { country = "ID", currency = "IDR" }
cimb_va = { country = "ID", currency = "IDR" }
dana = { country = "ID", currency = "IDR" }
danamon_va = { country = "ID", currency = "IDR" }
eps = { country = "AT", currency = "EUR" }
family_mart = { country = "JP", currency = "JPY" }
gcash = { country = "PH", currency = "PHP" }
giropay = { country = "DE", currency = "EUR" }
go_pay = { country = "ID", currency = "IDR" }
google_pay = { country = "AU,NZ,JP,HK,SG,MY,TH,VN,BH,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,RO,HR,LI,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,TR,IS,CA,US", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
indomaret = { country = "ID", currency = "IDR" }
kakao_pay = { country = "KR", currency = "KRW" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NO,PL,PT,RO,ES,SE,CH,NL,GB,US", currency = "AUD,EUR,CAD,CZK,DKK,NOK,PLN,RON,SEK,CHF,GBP,USD"}
lawson = { country = "JP", currency = "JPY" }
mandiri_va = { country = "ID", currency = "IDR" }
mb_way = { country = "PT", currency = "EUR" }
mini_stop = { country = "JP", currency = "JPY" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
momo = { country = "VN", currency = "VND" }
momo_atm = { country = "VN", currency = "VND" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_fpx = { country = "MY", currency = "MYR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
online_banking_thailand = { country = "TH", currency = "THB" }
open_banking_uk = { country = "GB", currency = "GBP" }
oxxo = { country = "MX", currency = "MXN" }
pay_bright = { country = "CA", currency = "CAD" }
pay_easy = { country = "JP", currency = "JPY" }
pay_safe_card = { country = "AT,AU,BE,BR,BE,CA,HR,CY,CZ,DK,FI,FR,GE,DE,GI,HU,IS,IE,KW,LV,IE,LI,LT,LU,MT,MX,MD,ME,NL,NZ,NO,PY,PE,PL,PT,RO,SA,RS,SK,SI,ES,SE,CH,TR,AE,GB,US,UY", currency = "EUR,AUD,BRL,CAD,CZK,DKK,GEL,GIP,HUF,KWD,CHF,MXN,MDL,NZD,NOK,PYG,PEN,PLN,RON,SAR,RSD,SEK,TRY,AED,GBP,USD,UYU" }
permata_bank_transfer = { country = "ID", currency = "IDR" }
seicomart = { country = "JP", currency = "JPY" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
seven_eleven = { country = "JP", currency = "JPY" }
sofort = { country = "AT,BE,DE,ES,CH,NL", currency = "CHF,EUR"}
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
swish = { country = "SE", currency = "SEK" }
touch_n_go = { country = "MY", currency = "MYR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
twint = { country = "CH", currency = "CHF" }
vipps = { country = "NO", currency = "NOK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD,CNY" }
[pm_filters.airwallex]
credit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
google_pay = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.elavon]
credit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.xendit]
credit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
debit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
[pm_filters.tsys]
credit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
debit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
[pm_filters.billwerk]
credit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
debit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
[pm_filters.fiservemea]
credit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.bambora]
credit = { country = "US,CA", currency = "USD" }
debit = { country = "US,CA", currency = "USD" }
[pm_filters.volt]
open_banking_uk = { country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL" }
[pm_filters.razorpay]
upi_collect = { country = "IN", currency = "INR" }
[pm_filters.payu]
debit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
credit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
google_pay = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
[pm_filters.jpmorgan]
debit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
credit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
[pm_filters.bitpay]
crypto_currency = { country = "US, CA, GB, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, AUD, CAD, GBP, MXN, NZD, CHF, EUR"}
[pm_filters.paybox]
debit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
credit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
[pm_filters.digitalvirgo]
direct_carrier_billing = {country = "MA, CM, ZA, EG, SN, DZ, TN, ML, GN, GH, LY, GA, CG, MG, BW, SD, NG, ID, SG, AZ, TR, FR, ES, PL, GB, PT, DE, IT, BE, IE, SK, GR, NL, CH, BR, MX, AR, CL, AE, IQ, KW, BH, SA, QA, PS, JO, OM, RU" , currency = "MAD, XOF, XAF, ZAR, EGP, DZD, TND, GNF, GHS, LYD, XAF, CDF, MGA, BWP, SDG, NGN, IDR, SGD, RUB, AZN, TRY, EUR, PLN, GBP, CHF, BRL, MXN, ARS, CLP, AED, IQD, KWD, BHD, SAR, QAR, ILS, JOD, OMR" }
[pm_filters.plaid]
open_banking_pis = { currency = "EUR,GBP" }
[pm_filters.zen]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
boleto = { country = "BR", currency = "BRL" }
efecty = { country = "CO", currency = "COP" }
multibanco = { country = "PT", currency = "EUR" }
pago_efectivo = { country = "PE", currency = "PEN" }
pse = { country = "CO", currency = "COP" }
pix = { country = "BR", currency = "BRL" }
red_compra = { country = "CL", currency = "CLP" }
red_pagos = { country = "UY", currency = "UYU" }
[pm_filters.zsl]
local_bank_transfer = { country = "CN", currency = "CNY" }
[pm_filters.stripe]
cashapp = { country = "US", currency = "USD" }
[pm_filters.prophetpay]
card_redirect = { currency = "USD" }
[pm_filters.bankofamerica]
credit = { currency = "USD" }
debit = { currency = "USD" }
apple_pay = { currency = "USD" }
google_pay = { currency = "USD" }
samsung_pay = { currency = "USD" }
[pm_filters.cybersource]
credit = { currency = "USD,GBP,EUR,PLN" }
debit = { currency = "USD,GBP,EUR,PLN" }
apple_pay = { currency = "USD,GBP,EUR,PLN" }
google_pay = { currency = "USD,GBP,EUR,PLN" }
samsung_pay = { currency = "USD,GBP,EUR" }
paze = { currency = "USD" }
[pm_filters.nexixpay]
credit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
debit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
[pm_filters.square]
credit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
debit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
[pm_filters.iatapay]
upi_collect = { country = "IN", currency = "INR" }
upi_intent = { country = "IN", currency = "INR" }
ideal = { country = "NL", currency = "EUR" }
local_bank_redirect = { country = "AT,BE,EE,FI,FR,DE,IE,IT,LV,LT,LU,NL,PT,ES,GB,IN,HK,SG,TH,BR,MX,GH,VN,MY,PH,JO,AU,CO", currency = "EUR,GBP,INR,HKD,SGD,THB,BRL,MXN,GHS,VND,MYR,PHP,JOD,AUD,COP" }
duit_now = { country = "MY", currency = "MYR" }
fps = { country = "GB", currency = "GBP" }
prompt_pay = { country = "TH", currency = "THB" }
viet_qr = { country = "VN", currency = "VND" }
[pm_filters.coinbase]
crypto_currency = { country = "ZA,US,BR,CA,TR,SG,VN,GB,DE,FR,ES,PT,IT,NL,AU" }
[pm_filters.novalnet]
credit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
debit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
apple_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
google_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
paypal = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
[pm_filters.helcim]
credit = { country = "US, CA", currency = "USD, CAD" }
debit = { country = "US, CA", currency = "USD, CAD" }
[pm_filters.globalpay]
credit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
debit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,DE,ES,IT,NL", currency = "EUR" }
[pm_filters.klarna]
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD" }
[pm_filters.mifinity]
mifinity = { country = "BR,CN,SG,MY,DE,CH,DK,GB,ES,AD,GI,FI,FR,GR,HR,IT,JP,MX,AR,CO,CL,PE,VE,UY,PY,BO,EC,GT,HN,SV,NI,CR,PA,DO,CU,PR,NL,NO,PL,PT,SE,RU,TR,TW,HK,MO,AX,AL,DZ,AS,AO,AI,AG,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BE,BZ,BJ,BM,BT,BQ,BA,BW,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CX,CC,KM,CG,CK,CI,CW,CY,CZ,DJ,DM,EG,GQ,ER,EE,ET,FK,FO,FJ,GF,PF,TF,GA,GM,GE,GH,GL,GD,GP,GU,GG,GN,GW,GY,HT,HM,VA,IS,IN,ID,IE,IM,IL,JE,JO,KZ,KE,KI,KW,KG,LA,LV,LB,LS,LI,LT,LU,MK,MG,MW,MV,ML,MT,MH,MQ,MR,MU,YT,FM,MD,MC,MN,ME,MS,MA,MZ,NA,NR,NP,NC,NZ,NE,NG,NU,NF,MP,OM,PK,PW,PS,PG,PH,PN,QA,RE,RO,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SX,SK,SI,SB,SO,ZA,GS,KR,LK,SR,SJ,SZ,TH,TL,TG,TK,TO,TT,TN,TM,TC,TV,UG,UA,AE,UZ,VU,VN,VG,VI,WF,EH,ZM", currency = "AUD,CAD,CHF,CNY,CZK,DKK,EUR,GBP,INR,JPY,NOK,NZD,PLN,RUB,SEK,ZAR,USD,EGP,UYU,UZS" }
[pm_filters.stax]
credit = { currency = "USD" }
debit = { currency = "USD" }
ach = { currency = "USD" }
[pm_filters.worldpay]
debit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
credit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
google_pay = { country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }
[pm_filters.trustpay]
instant_bank_transfer = { country = "CZ,SK,GB,AT,DE,IT", currency = "CZK, EUR, GBP" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,GB", currency = "EUR" }
[pm_filters.dlocal]
credit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
debit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
[pm_filters.mollie]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
eps = { country = "AT", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
przelewy24 = { country = "PL", currency = "PLN,EUR" }
[pm_filters.rapyd]
apple_pay = { country = "AL,AS,AD,AR,AM,AU,AT,AZ,BH,BE,BM,BA,BR,BG,CA,KH,KY,CL,CO,CR,HR,CY,CZ,DK,DO,EC,SV,EE,FO,FI,FR,GE,DE,GI,GR,GL,GU,GT,GG,HN,HK,HU,IS,IE,IM,IL,IT,JP,KZ,KG,KW,LV,LI,LT,LU,MO,MY,MT,MX,MD,MC,ME,MA,NL,NZ,NI,MK,MP,NO,PA,PY,PR,PE,PL,PT,QA,RO,SM,RS,SG,SK,SI,ZA,ES,SE,CH,TW,TJ,TH,UA,AE,GB,US,UY,VI,VN", currency = "EUR,GBP,ISK,USD" }
google_pay = { country = "AM,AT,AU,AZ,BA,BE,BG,BY,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,EC,EE,EG,ES,FI,FR,GB,GE,GL,GR,GT,HK,HN,HR,HU,IE,IL,IM,IS,IT,JE,JP,JO,KZ,KW,LA,LI,LT,LU,LV,MA,MC,MD,ME,MO,MN,MT,MX,MY,NC,NL,NO,NZ,OM,PA,PE,PL,PR,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,SV,TH,TW,UA,US,UY,VA,VN,ZA", currency = "EUR,GBP,ISK,USD" }
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.bamboraapac]
credit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.gocardless]
ach = { country = "US", currency = "USD" }
becs = { country = "AU", currency = "AUD" }
sepa = { country = "AU,AT,BE,BG,CA,HR,CY,CZ,DK,FI,FR,DE,HU,IT,LU,MT,NL,NZ,NO,PL,PT,IE,RO,SK,SI,ZA,ES,SE,CH,GB", currency = "GBP,EUR,SEK,DKK,AUD,NZD,CAD" }
[pm_filters.powertranz]
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
[pm_filters.worldline]
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.shift4]
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,CH,DE,ES,FI,FR,GB,IT,NL,PL,SE", currency = "CHF,EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[bank_config.online_banking_fpx]
adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
fiuu.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_of_china,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
[bank_config.online_banking_thailand]
adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank"
[bank_config.open_banking_uk]
adyen = { banks = "aib,bank_of_scotland,danske_bank,first_direct,first_trust,halifax,lloyds,monzo,nat_west,nationwide_bank,royal_bank_of_scotland,starling,tsb_bank,tesco_bank,ulster_bank,barclays,hsbc_bank,revolut,santander_przelew24,open_bank_success,open_bank_failure,open_bank_cancelled" }
[mandates.supported_payment_methods]
pay_later.klarna = { connector_list = "adyen" }
wallet.google_pay = { connector_list = "stripe,adyen,bankofamerica,authorizedotnet,novalnet" }
wallet.apple_pay = { connector_list = "stripe,adyen,cybersource,noon,bankofamerica,authorizedotnet,novalnet" }
wallet.samsung_pay = { connector_list = "cybersource" }
wallet.paypal = { connector_list = "adyen,novalnet" }
card.credit = { connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,elavon,xendit,novalnet,bamboraapac" }
card.debit = { connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,elavon,xendit,novalnet,bamboraapac" }
bank_debit.ach = { connector_list = "gocardless,adyen" }
bank_debit.becs = { connector_list = "gocardless" }
bank_debit.bacs = { connector_list = "adyen" }
bank_debit.sepa = { connector_list = "gocardless,adyen" }
bank_redirect.ideal = { connector_list = "stripe,adyen,globalpay" }
bank_redirect.sofort = { connector_list = "stripe,globalpay" }
bank_redirect.giropay = { connector_list = "globalpay" }
[mandates.update_mandate_supported]
card.credit = { connector_list = "cybersource" }
card.debit = { connector_list = "cybersource" }
[network_transaction_id_supported_connectors]
connector_list = "adyen,cybersource,novalnet,stripe,worldpay"
[connector_customer]
connector_list = "gocardless,stax,stripe"
payout_connector_list = "nomupay,stripe,wise"
[payment_method_auth]
redis_expiry = 900
pm_auth_key = "Some_pm_auth_key"
[lock_settings]
redis_lock_expiry_seconds = 180 # 3 * 60 seconds
delay_between_retries_in_milliseconds = 500
[events.kafka]
brokers = ["localhost:9092"]
fraud_check_analytics_topic = "hyperswitch-fraud-check-events"
intent_analytics_topic = "hyperswitch-payment-intent-events"
attempt_analytics_topic = "hyperswitch-payment-attempt-events"
refund_analytics_topic = "hyperswitch-refund-events"
api_logs_topic = "hyperswitch-api-log-events"
connector_logs_topic = "hyperswitch-connector-api-events"
outgoing_webhook_logs_topic = "hyperswitch-outgoing-webhook-events"
dispute_analytics_topic = "hyperswitch-dispute-events"
audit_events_topic = "hyperswitch-audit-events"
payout_analytics_topic = "hyperswitch-payout-events"
consolidated_events_topic = "hyperswitch-consolidated-events"
authentication_analytics_topic = "hyperswitch-authentication-events"
[analytics]
source = "sqlx"
forex_enabled = false # Enable or disable forex conversion for analytics
[analytics.clickhouse]
username = "default"
# password = ""
host = "http://localhost:8123"
database_name = "default"
[analytics.sqlx]
username = "db_user"
password = "db_pass"
host = "pg"
port = 5432
dbname = "hyperswitch_db"
pool_size = 5
connection_timeout = 10
queue_strategy = "Fifo"
[kv_config]
ttl = 900 # 15 * 60 seconds
soft_kill = false
[frm]
enabled = true
[connector_onboarding.paypal]
client_id = ""
client_secret = ""
partner_id = ""
enabled = true
[events]
source = "logs"
[file_storage]
file_storage_backend = "file_system"
[unmasked_headers]
keys = "accept-language,user-agent,x-profile-id"
[opensearch]
host = "https://opensearch:9200"
enabled = false
[opensearch.auth]
auth = "basic"
username = "admin"
password = "0penS3arc#"
region = "eu-central-1"
[opensearch.indexes]
payment_attempts = "hyperswitch-payment-attempt-events"
payment_intents = "hyperswitch-payment-intent-events"
refunds = "hyperswitch-refund-events"
disputes = "hyperswitch-dispute-events"
sessionizer_payment_attempts = "sessionizer-payment-attempt-events"
sessionizer_payment_intents = "sessionizer-payment-intent-events"
sessionizer_refunds = "sessionizer-refund-events"
sessionizer_disputes = "sessionizer-dispute-events"
[saved_payment_methods]
sdk_eligible_payment_methods = "card"
[multitenancy]
enabled = false
global_tenant = { tenant_id = "global", schema = "public", redis_key_prefix = "", clickhouse_database = "default" }
[multitenancy.tenants.public]
base_url = "http://localhost:8080"
schema = "public"
accounts_schema = "public"
redis_key_prefix = ""
clickhouse_database = "default"
[multitenancy.tenants.public.user]
control_center_url = "http://localhost:9000"
[user_auth_methods]
encryption_key = "A8EF32E029BC3342E54BF2E172A4D7AA43E8EF9D2C3A624A9F04E2EF79DC698F"
[generic_link]
[generic_link.payment_method_collect]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payment_method_collect.ui_config]
theme = "#4285F4"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payment_method_collect.enabled_payment_methods]
card = "credit,debit"
bank_transfer = "ach,bacs,sepa"
wallet = "paypal,pix,venmo"
[generic_link.payout_link]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payout_link.ui_config]
theme = "#4285F4"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payout_link.enabled_payment_methods]
card = "credit,debit"
[payout_method_filters.adyenplatform]
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,CZ,DE,HU,NO,PL,SE,GB,CH", currency = "EUR,CZK,DKK,HUF,NOK,PLN,SEK,GBP,CHF" }
[payout_method_filters.stripe]
ach = { country = "US", currency = "USD" }
[locker_based_open_banking_connectors]
connector_list = ""
[cell_information]
id = "12345"
[network_tokenization_supported_card_networks]
card_networks = "Visa, AmericanExpress, Mastercard"
[network_tokenization_supported_connectors]
connector_list = "cybersource"
# EmailClient configuration. Only applicable when the `email` feature flag is enabled.
[email]
sender_email = "example@example.com" # Sender email
aws_region = "" # AWS region used by AWS SES
allowed_unverified_days = 1 # Number of days the api calls ( with jwt token ) can be made without verifying the email
active_email_client = "SMTP" # The currently active email client
recon_recipient_email = "recon@example.com" # Recipient email for recon request email
prod_intent_recipient_email = "business@example.com" # Recipient email for prod intent email
# Configuration for aws ses, applicable when the active email client is SES
[email.aws_ses]
email_role_arn = "" # The amazon resource name ( arn ) of the role which has permission to send emails
sts_role_session_name = "" # An identifier for the assumed role session, used to uniquely identify a session.
[theme.storage]
file_storage_backend = "file_system" # Theme storage backend to be used
# Configuration for smtp, applicable when the active email client is SMTP
[email.smtp]
host = "mailhog" # SMTP host
port = 1025 # SMTP port
timeout = 10 # Timeout for SMTP connection in seconds
connection = "plaintext" #currently plaintext and starttls are supported
[theme.email_config]
entity_name = "Hyperswitch" # Display name in emails
entity_logo_url = "https://app.hyperswitch.io/email-assets/HyperswitchLogo.png" # Logo URL for emails
foreground_color = "#111326" # Text color
primary_color = "#006DF9" # Primary color
background_color = "#FFFFFF" # Email background color
[platform]
enabled = true
| 33,209 | 8,815 |
hyperswitch | config/config.example.toml | .toml | # This is a sample config file whose sole purpose is to enumerate
# all the available configuration options, and is intended to be used
# solely as a reference. Please copy this file to create a config.
# Server configuration
[server]
port = 8080
host = "127.0.0.1"
# This is the grace time (in seconds) given to the actix-server to stop the execution
# For more details: https://actix.rs/docs/server/#graceful-shutdown
shutdown_timeout = 30
# HTTP Request body limit. Defaults to 32kB
request_body_limit = 32_768
# HTTPS Server Configuration
# Self-signed Private Key and Certificate can be generated with mkcert for local development
[server.tls]
port = 8081
host = "127.0.0.1"
private_key = "/path/to/private_key.pem"
certificate = "/path/to/certificate.pem"
# Proxy server configuration for connecting to payment gateways.
# Don't define the fields if a Proxy isn't needed. Empty strings will cause failure.
[proxy]
# http_url = "http proxy url" # Proxy all HTTP traffic via this proxy
# https_url = "https proxy url" # Proxy all HTTPS traffic via this proxy
idle_pool_connection_timeout = 90 # Timeout for idle pool connections (defaults to 90s)
bypass_proxy_hosts = "localhost, cluster.local" # A comma-separated list of domains or IP addresses that should not use the proxy. Whitespace between entries would be ignored.
# Configuration for the Key Manager Service
[key_manager]
url = "http://localhost:5000" # URL of the encryption service
# Main SQL data store credentials
[master_database]
username = "db_user" # DB Username
password = "db_pass" # DB Password. Use base-64 encoded kms encrypted value here when kms is enabled
host = "localhost" # DB Host
port = 5432 # DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
# Replica SQL data store credentials
[replica_database]
username = "replica_user" # DB Username
password = "db_pass" # DB Password. Use base-64 encoded kms encrypted value here when kms is enabled
host = "localhost" # DB Host
port = 5432 # DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
# Redis credentials
[redis]
host = "127.0.0.1"
port = 6379
pool_size = 5 # Number of connections to keep open
reconnect_max_attempts = 5 # Maximum number of reconnection attempts to make before failing. Set to 0 to retry forever.
reconnect_delay = 5 # Delay between reconnection attempts, in milliseconds
default_ttl = 300 # Default TTL for entries, in seconds
default_hash_ttl = 900 # Default TTL for hashes entries, in seconds
use_legacy_version = false # Resp protocol for fred crate (set this to true if using RESPv2 or redis version < 6)
stream_read_count = 1 # Default number of entries to read from stream if not provided in stream read options
auto_pipeline = true # Whether or not the client should automatically pipeline commands across tasks when possible.
disable_auto_backpressure = false # Whether or not to disable the automatic backpressure features when pipelining is enabled.
max_in_flight_commands = 5000 # The maximum number of in-flight commands (per connection) before backpressure will be applied.
default_command_timeout = 30 # An optional timeout to apply to all commands. In seconds
unresponsive_timeout = 10 # An optional timeout for Unresponsive commands in seconds. This should be less than default_command_timeout.
max_feed_count = 200 # The maximum number of frames that will be fed to a socket before flushing.
# This section provides configs for currency conversion api
[forex_api]
api_key = "" # Api key for making request to foreign exchange Api
fallback_api_key = "" # Api key for the fallback service
redis_ttl_in_seconds = 172800 # Time to expire for forex data stored in Redis
data_expiration_delay_in_seconds = 21600 # Expiration time for data in cache as well as redis in seconds
redis_lock_timeout_in_seconds = 100 # Redis remains write locked for 100 s once the acquire_redis_lock is called
# Logging configuration. Logging can be either to file or console or both.
# Logging configuration for file logging
[log.file]
enabled = false # Toggle [true or false]
path = "logs" # specify the directory to create log files
file_name = "debug.log" # base name for log files.
# levels can be "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "OFF"
# defaults to "WARN"
level = "WARN"
# sets the log level for one or more crates
filtering_directive = "WARN,router=INFO,reqwest=INFO"
# ^^^^ ^^^^---------^^^^-- sets the log level for the
# | router and reqwest crates to INFO.
# |
# |______________________________ sets the log level for all
# other crates to WARN.
# Logging configuration for console logging
[log.console]
enabled = true # boolean [true or false]
log_format = "default" # Log format. "default" or "json"
# levels can be "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "OFF"
# defaults to "WARN"
level = "DEBUG"
# sets the log level for one or more crates
filtering_directive = "WARN,router=INFO,reqwest=INFO"
# ^^^^ ^^^^---------^^^^-- sets the log level for the
# | router and reqwest crates to INFO.
# |
# |______________________________ sets the log level for all
# other crates to WARN.
# Telemetry configuration for metrics and traces
[log.telemetry]
traces_enabled = false # boolean [true or false], whether traces are enabled
metrics_enabled = false # boolean [true or false], whether metrics are enabled
ignore_errors = false # boolean [true or false], whether to ignore errors during traces or metrics pipeline setup
sampling_rate = 0.1 # decimal rate between 0.0 - 1.0
otel_exporter_otlp_endpoint = "http://localhost:4317" # endpoint to send metrics and traces to, can include port number
otel_exporter_otlp_timeout = 5000 # timeout (in milliseconds) for sending metrics and traces
use_xray_generator = false # Set this to true for AWS X-ray compatible traces
route_to_trace = ["*/confirm"]
bg_metrics_collection_interval_in_secs = 15 # Interval for collecting the metrics in background thread
# This section provides some secret values.
[secrets]
master_enc_key = "sample_key" # Master Encryption key used to encrypt merchant wise encryption key. Should be 32-byte long.
admin_api_key = "test_admin" # admin API key for admin authentication.
jwt_secret = "secret" # JWT secret used for user authentication.
# Locker settings contain details for accessing a card locker, a
# PCI Compliant storage entity which stores payment method information
# like card details
[locker]
host = "" # Locker host
host_rs = "" # Rust Locker host
mock_locker = true # Emulate a locker locally using Postgres
locker_signing_key_id = "1" # Key_id to sign basilisk hs locker
locker_enabled = true # Boolean to enable or disable saving cards in locker
ttl_for_storage_in_secs = 220752000 # Time to live for storage entries in locker
[delayed_session_response]
connectors_with_delayed_session_response = "trustpay,payme" # List of connectors which has delayed session response
[webhook_source_verification_call]
connectors_with_webhook_source_verification_call = "paypal" # List of connectors which has additional source verification api-call
[jwekey] # 4 priv/pub key pair
vault_encryption_key = "" # public key in pem format, corresponding private key in basilisk-hs
rust_locker_encryption_key = "" # public key in pem format, corresponding private key in rust locker
vault_private_key = "" # private key in pem format, corresponding public key in basilisk-hs
# Refund configuration
[refund]
max_attempts = 10 # Number of refund attempts allowed
max_age = 365 # Max age of a refund in days.
[webhooks]
outgoing_enabled = true
# Validity of an Ephemeral Key in Hours
[eph_key]
validity = 1
[api_keys]
# Hex-encoded 32-byte long (64 characters long when hex-encoded) key used for calculating hashes of API keys
hash_key = "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
# Connector configuration, provided attributes will be used to fulfill API requests.
# Examples provided here are sandbox/test base urls, can be replaced by live or mock
# base urls based on your need.
# Note: These are not optional attributes. hyperswitch request can fail due to invalid/empty values.
[connectors]
aci.base_url = "https://eu-test.oppwa.com/"
adyen.base_url = "https://checkout-test.adyen.com/"
adyen.payout_base_url = "https://pal-test.adyen.com/"
adyen.dispute_base_url = "https://ca-test.adyen.com/"
adyenplatform.base_url = "https://balanceplatform-api-test.adyen.com/"
airwallex.base_url = "https://api-demo.airwallex.com/"
amazonpay.base_url = "https://pay-api.amazon.com/v2"
applepay.base_url = "https://apple-pay-gateway.apple.com/"
authorizedotnet.base_url = "https://apitest.authorize.net/xml/v1/request.api"
bambora.base_url = "https://api.na.bambora.com"
bamboraapac.base_url = "https://demo.ippayments.com.au/interface/api"
bankofamerica.base_url = "https://apitest.merchant-services.bankofamerica.com/"
billwerk.base_url = "https://api.reepay.com/"
billwerk.secondary_base_url = "https://card.reepay.com/"
bitpay.base_url = "https://test.bitpay.com"
bluesnap.base_url = "https://sandbox.bluesnap.com/"
bluesnap.secondary_base_url = "https://sandpay.bluesnap.com/"
boku.base_url = "https://$-api4-stage.boku.com"
braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
chargebee.base_url = "https://$.chargebee.com/api/"
checkout.base_url = "https://api.sandbox.checkout.com/"
coinbase.base_url = "https://api.commerce.coinbase.com"
coingate.base_url = "https://api-sandbox.coingate.com"
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
cybersource.base_url = "https://apitest.cybersource.com/"
datatrans.base_url = "https://api.sandbox.datatrans.com/"
datatrans.secondary_base_url = "https://pay.sandbox.datatrans.com/"
deutschebank.base_url = "https://testmerch.directpos.de/rest-api"
digitalvirgo.base_url = "https://dcb-integration-service-sandbox-external.staging.digitalvirgo.pl"
dlocal.base_url = "https://sandbox.dlocal.com/"
dummyconnector.base_url = "http://localhost:8080/dummy-connector"
ebanx.base_url = "https://sandbox.ebanxpay.com/"
elavon.base_url = "https://api.demo.convergepay.com/VirtualMerchantDemo/"
facilitapay.base_url = "https://sandbox-api.facilitapay.com/api/v1"
fiserv.base_url = "https://cert.api.fiservapps.com/"
fiservemea.base_url = "https://prod.emea.api.fiservapps.com/sandbox"
fiuu.base_url = "https://sandbox.merchant.razer.com/"
fiuu.secondary_base_url="https://sandbox.merchant.razer.com/"
fiuu.third_base_url="https://api.merchant.razer.com/"
forte.base_url = "https://sandbox.forte.net/api/v3"
getnet.base_url = "https://api-test.getneteurope.com/engine/rest"
globalpay.base_url = "https://apis.sandbox.globalpay.com/ucp/"
globepay.base_url = "https://pay.globepay.co/"
gocardless.base_url = "https://api-sandbox.gocardless.com"
gpayments.base_url = "https://{{merchant_endpoint_prefix}}-test.api.as1.gpayments.net"
helcim.base_url = "https://api.helcim.com/"
hipay.base_url = "https://stage-secure-gateway.hipay-tpp.com/rest/"
hipay.secondary_base_url = "https://stage-secure2-vault.hipay-tpp.com/rest/"
hipay.third_base_url = "https://stage-api-gateway.hipay.com/"
iatapay.base_url = "https://sandbox.iata-pay.iata.org/api/v1"
inespay.base_url = "https://apiflow.inespay.com/san/v21"
itaubank.base_url = "https://sandbox.devportal.itau.com.br/"
jpmorgan.base_url = "https://api-mock.payments.jpmorgan.com/api/v2"
juspaythreedsserver.base_url = "http://localhost:8000"
jpmorgan.secondary_base_url= "https://id.payments.jpmorgan.com"
klarna.base_url = "https://api{{klarna_region}}.playground.klarna.com/"
mifinity.base_url = "https://demo.mifinity.com/"
mollie.base_url = "https://api.mollie.com/v2/"
moneris.base_url = "https://api.sb.moneris.io"
mollie.secondary_base_url = "https://api.cc.mollie.com/v1/"
multisafepay.base_url = "https://testapi.multisafepay.com/"
netcetera.base_url = "https://{{merchant_endpoint_prefix}}.3ds-server.prev.netcetera-cloud-payment.ch"
nexinets.base_url = "https://apitest.payengine.de/v1"
nexixpay.base_url = "https://xpaysandbox.nexigroup.com/api/phoenix-0.0/psp/api/v1"
nmi.base_url = "https://secure.nmi.com/"
nomupay.base_url = "https://payout-api.sandbox.nomupay.com"
noon.base_url = "https://api-test.noonpayments.com/"
novalnet.base_url = "https://payport.novalnet.de/v2"
noon.key_mode = "Test"
nuvei.base_url = "https://ppp-test.nuvei.com/"
opayo.base_url = "https://pi-test.sagepay.com/"
opennode.base_url = "https://dev-api.opennode.com"
paybox.base_url = "https://preprod-ppps.paybox.com/PPPS.php"
paybox.secondary_base_url="https://preprod-tpeweb.paybox.com/"
payeezy.base_url = "https://api-cert.payeezy.com/"
payme.base_url = "https://sandbox.payme.io/"
payone.base_url = "https://payment.preprod.payone.com/"
paypal.base_url = "https://api-m.sandbox.paypal.com/"
paystack.base_url = "https://api.paystack.co"
payu.base_url = "https://secure.snd.payu.com/"
placetopay.base_url = "https://test.placetopay.com/rest/gateway"
plaid.base_url = "https://sandbox.plaid.com"
powertranz.base_url = "https://staging.ptranz.com/api/"
prophetpay.base_url = "https://ccm-thirdparty.cps.golf/"
rapyd.base_url = "https://sandboxapi.rapyd.net"
razorpay.base_url = "https://sandbox.juspay.in/"
recurly.base_url = "https://v3.recurly.com"
redsys.base_url = "https://sis-t.redsys.es:25443"
riskified.base_url = "https://sandbox.riskified.com/api"
shift4.base_url = "https://api.shift4.com/"
signifyd.base_url = "https://api.signifyd.com/"
square.base_url = "https://connect.squareupsandbox.com/"
square.secondary_base_url = "https://pci-connect.squareupsandbox.com/"
stax.base_url = "https://apiprod.fattlabs.com/"
stripe.base_url = "https://api.stripe.com/"
stripebilling.base_url = "https://api.stripe.com/"
taxjar.base_url = "https://api.sandbox.taxjar.com/v2/"
threedsecureio.base_url = "https://service.sandbox.3dsecure.io"
thunes.base_url = "https://api.limonetikqualif.com/"
stripe.base_url_file_upload = "https://files.stripe.com/"
trustpay.base_url = "https://test-tpgw.trustpay.eu/"
trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/"
tsys.base_url = "https://stagegw.transnox.com/"
unified_authentication_service.base_url = "http://localhost:8000"
volt.base_url = "https://api.sandbox.volt.io/"
wellsfargo.base_url = "https://apitest.cybersource.com/"
wellsfargopayout.base_url = "https://api-sandbox.wellsfargo.com/"
wise.base_url = "https://api.sandbox.transferwise.tech/"
worldline.base_url = "https://eu.sandbox.api-ingenico.com/"
worldpay.base_url = "https://try.access.worldpay.com/"
xendit.base_url = "https://api.xendit.co"
zsl.base_url = "https://api.sitoffalb.net/"
zen.base_url = "https://api.zen-test.com/"
zen.secondary_base_url = "https://secure.zen-test.com/"
#Payment Method Filters Based on Country and Currency
[pm_filters.default]
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA", currency = "AED,AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD" }
# Bank redirect configs for allowed banks through online_banking_czech_republic payment method
[bank_config.online_banking_czech_republic]
adyen = { banks = "ceska_sporitelna,komercni_banka,platnosc_online_karta_platnicza" }
# Bank redirect configs for allowed banks through online_banking_slovakia payment method
[bank_config.online_banking_slovakia]
adyen = { banks = "e_platby_vub,postova_banka,sporo_pay,tatra_pay,viamo" }
# Bank redirect configs for allowed banks through online_banking_poland payment method
[bank_config.online_banking_poland]
adyen = { banks = "blik_psp,place_zipko,m_bank,pay_with_ing,santander_przelew24,bank_pekaosa,bank_millennium,pay_with_alior_bank,banki_spoldzielcze,pay_with_inteligo,bnp_paribas_poland,bank_nowy_sa,credit_agricole,pay_with_bos,pay_with_citi_handlowy,pay_with_plus_bank,toyota_bank,velo_bank,e_transfer_pocztowy24" }
# Bank redirect configs for allowed banks through open_banking_uk payment method
[bank_config.open_banking_uk]
adyen = { banks = "aib,bank_of_scotland,danske_bank,first_direct,first_trust,halifax,lloyds,monzo,nat_west,nationwide_bank,royal_bank_of_scotland,starling,tsb_bank,tesco_bank,ulster_bank,barclays,hsbc_bank,revolut,santander_przelew24,open_bank_success,open_bank_failure,open_bank_cancelled" }
# Bank redirect configs for allowed banks through przelewy24 payment method
[bank_config.przelewy24]
stripe = { banks = "alior_bank,bank_millennium,bank_nowy_bfg_sa,bank_pekao_sa,banki_spbdzielcze,blik,bnp_paribas,boz,citi,credit_agricole,e_transfer_pocztowy24,getin_bank,idea_bank,inteligo,mbank_mtransfer,nest_przelew,noble_pay,pbac_z_ipko,plus_bank,santander_przelew24,toyota_bank,volkswagen_bank" }
# This data is used to call respective connectors for wallets and cards
[connectors.supported]
wallets = ["klarna", "mifinity", "braintree", "applepay"]
rewards = ["cashtocode", "zen"]
cards = [
"adyen",
"adyenplatform",
"authorizedotnet",
"coinbase",
"coingate",
"cryptopay",
"braintree",
"checkout",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"facilitapay",
"globalpay",
"globepay",
"gocardless",
"gpayments",
"helcim",
"hipay",
"mollie",
"moneris",
"paypal",
"paystack",
"shift4",
"square",
"stax",
"stripe",
"stripebilling",
"threedsecureio",
"thunes",
"worldpay",
"xendit",
"zen",
"zsl",
]
# Scheduler settings provides a point to modify the behaviour of scheduler flow.
# It defines the streams/queues name and configuration as well as event selection variables
[scheduler]
stream = "SCHEDULER_STREAM"
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
loop_interval = 5000 # Specifies how much time to wait before starting the defined behaviour of producer or consumer (in milliseconds)
[scheduler.consumer]
consumer_group = "SCHEDULER_GROUP"
disabled = false # This flag decides if the consumer should actively consume task
[scheduler.producer]
upper_fetch_limit = 0 # Upper limit for fetching entries from the redis queue (in seconds)
lower_fetch_limit = 1800 # Lower limit for fetching entries from redis queue (in seconds)
lock_key = "PRODUCER_LOCKING_KEY" # The following keys defines the producer lock that is created in redis with
lock_ttl = 160 # the ttl being the expiry (in seconds)
# Scheduler server configuration
[scheduler.server]
port = 3000 # Port on which the server will listen for incoming requests
host = "127.0.0.1" # Host IP address to bind the server to
workers = 1 # Number of actix workers to handle incoming requests concurrently
batch_size = 200 # Specifies the batch size the producer will push under a single entry in the redis queue
# Drainer configuration, which handles draining raw SQL queries from Redis streams to the SQL database
[drainer]
stream_name = "DRAINER_STREAM" # Specifies the stream name to be used by the drainer
num_partitions = 64 # Specifies the number of partitions the stream will be divided into
max_read_count = 100 # Specifies the maximum number of entries that would be read from redis stream in one call
shutdown_interval = 1000 # Specifies how much time to wait, while waiting for threads to complete execution (in milliseconds)
loop_interval = 500 # Specifies how much time to wait after checking all the possible streams in completed (in milliseconds)
# Filtration logic for list payment method, allowing use to limit payment methods based on the requirement country and currency
[pm_filters.stripe]
# ^--- This can be any connector (can be multiple)
paypal = { currency = "USD,INR", country = "US" }
# ^ ^------- comma-separated values
# ^------------------------------- any valid payment method type (can be multiple) (for cards this should be card_network)
# If either currency or country isn't provided then, all possible values are accepted
[cors]
max_age = 30 # Maximum time (in seconds) for which this CORS request may be cached.
origins = "http://localhost:8080" # List of origins that are allowed to make requests.
allowed_methods = "GET,POST,PUT,DELETE" # List of methods that are allowed
wildcard_origin = false # If true, allows any origin to make requests
# EmailClient configuration. Only applicable when the `email` feature flag is enabled.
[email]
sender_email = "example@example.com" # Sender email
aws_region = "" # AWS region used by AWS SES
allowed_unverified_days = 1 # Number of days the api calls ( with jwt token ) can be made without verifying the email
active_email_client = "SES" # The currently active email client
recon_recipient_email = "recon@example.com" # Recipient email for recon request email
prod_intent_recipient_email = "business@example.com" # Recipient email for prod intent email
# Configuration for aws ses, applicable when the active email client is SES
[email.aws_ses]
email_role_arn = "" # The amazon resource name ( arn ) of the role which has permission to send emails
sts_role_session_name = "" # An identifier for the assumed role session, used to uniquely identify a session.
[user]
password_validity_in_days = 90 # Number of days after which password should be updated
two_factor_auth_expiry_in_secs = 300 # Number of seconds after which 2FA should be done again if doing update/change from inside
totp_issuer_name = "Hyperswitch" # Name of the issuer for TOTP
base_url = "" # Base url used for user specific redirects and emails
force_two_factor_auth = false # Whether to force two factor authentication for all users
force_cookies = true # Whether to use only cookies for JWT extraction and authentication
#tokenization configuration which describe token lifetime and payment method for specific connector
[tokenization]
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { type = "disable_only", list = "google_pay" } }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
mollie = { long_lived_token = false, payment_method = "card" }
stax = { long_lived_token = true, payment_method = "card,bank_debit" }
square = { long_lived_token = false, payment_method = "card" }
braintree = { long_lived_token = false, payment_method = "card" }
gocardless = { long_lived_token = true, payment_method = "bank_debit" }
billwerk = { long_lived_token = false, payment_method = "card" }
[temp_locker_enable_config]
stripe = { payment_method = "bank_transfer" }
nuvei = { payment_method = "card" }
shift4 = { payment_method = "card" }
bluesnap = { payment_method = "card" }
bankofamerica = { payment_method = "card" }
cybersource = { payment_method = "card" }
nmi = { payment_method = "card" }
payme = { payment_method = "card" }
deutschebank = { payment_method = "bank_debit" }
paybox = { payment_method = "card" }
nexixpay = { payment_method = "card" }
redsys = { payment_method = "card" }
[dummy_connector]
enabled = true # Whether dummy connector is enabled or not
payment_ttl = 172800 # Time to live for dummy connector payment in redis
payment_duration = 1000 # Fake delay duration for dummy connector payment
payment_tolerance = 100 # Fake delay tolerance for dummy connector payment
payment_retrieve_duration = 500 # Fake delay duration for dummy connector payment sync
payment_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector payment sync
payment_complete_duration = 500 # Fake delay duration for dummy connector payment complete
payment_complete_tolerance = 100 # Fake delay tolerance for dummy connector payment complete
refund_ttl = 172800 # Time to live for dummy connector refund in redis
refund_duration = 1000 # Fake delay duration for dummy connector refund
refund_tolerance = 100 # Fake delay tolerance for dummy connector refund
refund_retrieve_duration = 500 # Fake delay duration for dummy connector refund sync
refund_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector refund sync
authorize_ttl = 36000 # Time to live for dummy connector authorize request in redis
assets_base_url = "https://www.example.com/" # Base url for dummy connector assets
default_return_url = "https://www.example.com/" # Default return url when no return url is passed while payment
slack_invite_url = "https://www.example.com/" # Slack invite url for hyperswitch
discord_invite_url = "https://www.example.com/" # Discord invite url for hyperswitch
[mandates.supported_payment_methods]
card.credit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
card.debit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
wallet.paypal = { connector_list = "adyen,novalnet" } # Mandate supported payment method type and connector for wallets
pay_later.klarna = { connector_list = "adyen" } # Mandate supported payment method type and connector for pay_later
bank_debit.ach = { connector_list = "gocardless,adyen" } # Mandate supported payment method type and connector for bank_debit
bank_debit.becs = { connector_list = "gocardless" } # Mandate supported payment method type and connector for bank_debit
bank_debit.bacs = { connector_list = "adyen" } # Mandate supported payment method type and connector for bank_debit
bank_debit.sepa = { connector_list = "gocardless,adyen" } # Mandate supported payment method type and connector for bank_debit
bank_redirect.ideal = { connector_list = "stripe,adyen,globalpay" } # Mandate supported payment method type and connector for bank_redirect
bank_redirect.sofort = { connector_list = "stripe,globalpay" }
wallet.apple_pay = { connector_list = "stripe,adyen,cybersource,noon,bankofamerica,authorizedotnet,novalnet" }
wallet.samsung_pay = { connector_list = "cybersource" }
wallet.google_pay = { connector_list = "bankofamerica,authorizedotnet,novalnet" }
bank_redirect.giropay = { connector_list = "globalpay" }
[mandates.update_mandate_supported]
card.credit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
card.debit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
# Required fields info used while listing the payment_method_data
[required_fields.pay_later] # payment_method = "pay_later"
afterpay_clearpay = { fields = { stripe = [ # payment_method_type = afterpay_clearpay, connector = "stripe"
# Required fields vector with its respective display name in front-end and field_type
{ required_field = "shipping.address.first_name", display_name = "first_name", field_type = "text" },
{ required_field = "shipping.address.last_name", display_name = "last_name", field_type = "text" },
{ required_field = "shipping.address.country", display_name = "country", field_type = { drop_down = { options = [
"US",
"IN",
] } } },
] } }
[payouts]
payout_eligibility = true # Defaults the eligibility of a payout method to true in case connector does not provide checks for payout eligibility
[pm_filters.adyen]
sofort = { country = "AT,BE,DE,ES,CH,NL", currency = "CHF,EUR" }
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NO,PL,PT,RO,ES,SE,CH,NL,GB,US", currency = "AUD,EUR,CAD,CZK,DKK,NOK,PLN,RON,SEK,CHF,GBP,USD" }
ideal = { country = "NL", currency = "EUR" }
online_banking_fpx = { country = "MY", currency = "MYR" }
online_banking_thailand = { country = "TH", currency = "THB" }
touch_n_go = { country = "MY", currency = "MYR" }
atome = { country = "MY,SG", currency = "MYR,SGD" }
swish = { country = "SE", currency = "SEK" }
permata_bank_transfer = { country = "ID", currency = "IDR" }
bca_bank_transfer = { country = "ID", currency = "IDR" }
bni_va = { country = "ID", currency = "IDR" }
bri_va = { country = "ID", currency = "IDR" }
cimb_va = { country = "ID", currency = "IDR" }
danamon_va = { country = "ID", currency = "IDR" }
mandiri_va = { country = "ID", currency = "IDR" }
alfamart = { country = "ID", currency = "IDR" }
indomaret = { country = "ID", currency = "IDR" }
open_banking_uk = { country = "GB", currency = "GBP" }
oxxo = { country = "MX", currency = "MXN" }
pay_safe_card = { country = "AT,AU,BE,BR,BE,CA,HR,CY,CZ,DK,FI,FR,GE,DE,GI,HU,IS,IE,KW,LV,IE,LI,LT,LU,MT,MX,MD,ME,NL,NZ,NO,PY,PE,PL,PT,RO,SA,RS,SK,SI,ES,SE,CH,TR,AE,GB,US,UY", currency = "EUR,AUD,BRL,CAD,CZK,DKK,GEL,GIP,HUF,KWD,CHF,MXN,MDL,NZD,NOK,PYG,PEN,PLN,RON,SAR,RSD,SEK,TRY,AED,GBP,USD,UYU" }
seven_eleven = { country = "JP", currency = "JPY" }
lawson = { country = "JP", currency = "JPY" }
mini_stop = { country = "JP", currency = "JPY" }
family_mart = { country = "JP", currency = "JPY" }
seicomart = { country = "JP", currency = "JPY" }
pay_easy = { country = "JP", currency = "JPY" }
boleto = { country = "BR", currency = "BRL" }
[pm_filters.airwallex]
credit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
google_pay = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.elavon]
credit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.xendit]
credit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
debit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
[pm_filters.tsys]
credit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
debit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
[pm_filters.billwerk]
credit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
debit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
[pm_filters.fiservemea]
credit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.bambora]
credit = { country = "US,CA", currency = "USD" }
debit = { country = "US,CA", currency = "USD" }
[pm_filters.volt]
open_banking_uk = { country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL" }
[pm_filters.razorpay]
upi_collect = { country = "IN", currency = "INR" }
[pm_filters.plaid]
open_banking_pis = {currency = "EUR,GBP"}
[pm_filters.zen]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
boleto = { country = "BR", currency = "BRL" }
efecty = { country = "CO", currency = "COP" }
multibanco = { country = "PT", currency = "EUR" }
pago_efectivo = { country = "PE", currency = "PEN" }
pse = { country = "CO", currency = "COP" }
pix = { country = "BR", currency = "BRL" }
red_compra = { country = "CL", currency = "CLP" }
red_pagos = { country = "UY", currency = "UYU" }
[pm_filters.zsl]
local_bank_transfer = { country = "CN", currency = "CNY" }
[pm_filters.bankofamerica]
credit = { currency = "USD" }
debit = { currency = "USD" }
apple_pay = { currency = "USD" }
google_pay = { currency = "USD" }
samsung_pay = { currency = "USD" }
[pm_filters.cybersource]
credit = { currency = "USD,GBP,EUR,PLN" }
debit = { currency = "USD,GBP,EUR,PLN" }
apple_pay = { currency = "USD,GBP,EUR,PLN" }
google_pay = { currency = "USD,GBP,EUR,PLN" }
samsung_pay = { currency = "USD,GBP,EUR" }
paze = { currency = "USD" }
[pm_filters.stax]
credit = { currency = "USD" }
debit = { currency = "USD" }
ach = { currency = "USD" }
[pm_filters.prophetpay]
card_redirect = { currency = "USD" }
[pm_filters.payu]
debit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
credit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
google_pay = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
[pm_filters.jpmorgan]
debit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
credit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
[pm_filters.bitpay]
crypto_currency = { country = "US, CA, GB, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, AUD, CAD, GBP, MXN, NZD, CHF, EUR"}
[pm_filters.paybox]
debit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
credit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
[pm_filters.digitalvirgo]
direct_carrier_billing = {country = "MA, CM, ZA, EG, SN, DZ, TN, ML, GN, GH, LY, GA, CG, MG, BW, SD, NG, ID, SG, AZ, TR, FR, ES, PL, GB, PT, DE, IT, BE, IE, SK, GR, NL, CH, BR, MX, AR, CL, AE, IQ, KW, BH, SA, QA, PS, JO, OM, RU" , currency = "MAD, XOF, XAF, ZAR, EGP, DZD, TND, GNF, GHS, LYD, XAF, CDF, MGA, BWP, SDG, NGN, IDR, SGD, RUB, AZN, TRY, EUR, PLN, GBP, CHF, BRL, MXN, ARS, CLP, AED, IQD, KWD, BHD, SAR, QAR, ILS, JOD, OMR" }
[pm_filters.helcim]
credit = { country = "US, CA", currency = "USD, CAD" }
debit = { country = "US, CA", currency = "USD, CAD" }
[pm_filters.globalpay]
credit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
debit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,DE,ES,IT,NL", currency = "EUR" }
[pm_filters.klarna]
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD" }
[pm_filters.nexixpay]
credit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
debit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
[pm_filters.square]
credit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
debit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
[pm_filters.iatapay]
upi_collect = { country = "IN", currency = "INR" }
upi_intent = { country = "IN", currency = "INR" }
ideal = { country = "NL", currency = "EUR" }
local_bank_redirect = { country = "AT,BE,EE,FI,FR,DE,IE,IT,LV,LT,LU,NL,PT,ES,GB,IN,HK,SG,TH,BR,MX,GH,VN,MY,PH,JO,AU,CO", currency = "EUR,GBP,INR,HKD,SGD,THB,BRL,MXN,GHS,VND,MYR,PHP,JOD,AUD,COP" }
duit_now = { country = "MY", currency = "MYR" }
fps = { country = "GB", currency = "GBP" }
prompt_pay = { country = "TH", currency = "THB" }
viet_qr = { country = "VN", currency = "VND" }
[pm_filters.coinbase]
crypto_currency = { country = "ZA,US,BR,CA,TR,SG,VN,GB,DE,FR,ES,PT,IT,NL,AU" }
[pm_filters.novalnet]
credit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
debit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
apple_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
google_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
paypal = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
[pm_filters.mifinity]
mifinity = { country = "BR,CN,SG,MY,DE,CH,DK,GB,ES,AD,GI,FI,FR,GR,HR,IT,JP,MX,AR,CO,CL,PE,VE,UY,PY,BO,EC,GT,HN,SV,NI,CR,PA,DO,CU,PR,NL,NO,PL,PT,SE,RU,TR,TW,HK,MO,AX,AL,DZ,AS,AO,AI,AG,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BE,BZ,BJ,BM,BT,BQ,BA,BW,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CX,CC,KM,CG,CK,CI,CW,CY,CZ,DJ,DM,EG,GQ,ER,EE,ET,FK,FO,FJ,GF,PF,TF,GA,GM,GE,GH,GL,GD,GP,GU,GG,GN,GW,GY,HT,HM,VA,IS,IN,ID,IE,IM,IL,JE,JO,KZ,KE,KI,KW,KG,LA,LV,LB,LS,LI,LT,LU,MK,MG,MW,MV,ML,MT,MH,MQ,MR,MU,YT,FM,MD,MC,MN,ME,MS,MA,MZ,NA,NR,NP,NC,NZ,NE,NG,NU,NF,MP,OM,PK,PW,PS,PG,PH,PN,QA,RE,RO,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SX,SK,SI,SB,SO,ZA,GS,KR,LK,SR,SJ,SZ,TH,TL,TG,TK,TO,TT,TN,TM,TC,TV,UG,UA,AE,UZ,VU,VN,VG,VI,WF,EH,ZM", currency = "AUD,CAD,CHF,CNY,CZK,DKK,EUR,GBP,INR,JPY,NOK,NZD,PLN,RUB,SEK,ZAR,USD,EGP,UYU,UZS" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }
[pm_filters.trustpay]
instant_bank_transfer = { country = "CZ,SK,GB,AT,DE,IT", currency = "CZK, EUR, GBP" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,GB", currency = "EUR" }
[pm_filters.dlocal]
credit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
debit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
[pm_filters.mollie]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
eps = { country = "AT", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
przelewy24 = { country = "PL", currency = "PLN,EUR" }
[pm_filters.rapyd]
apple_pay = { country = "AL,AS,AD,AR,AM,AU,AT,AZ,BH,BE,BM,BA,BR,BG,CA,KH,KY,CL,CO,CR,HR,CY,CZ,DK,DO,EC,SV,EE,FO,FI,FR,GE,DE,GI,GR,GL,GU,GT,GG,HN,HK,HU,IS,IE,IM,IL,IT,JP,KZ,KG,KW,LV,LI,LT,LU,MO,MY,MT,MX,MD,MC,ME,MA,NL,NZ,NI,MK,MP,NO,PA,PY,PR,PE,PL,PT,QA,RO,SM,RS,SG,SK,SI,ZA,ES,SE,CH,TW,TJ,TH,UA,AE,GB,US,UY,VI,VN", currency = "EUR,GBP,ISK,USD" }
google_pay = { country = "AM,AT,AU,AZ,BA,BE,BG,BY,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,EC,EE,EG,ES,FI,FR,GB,GE,GL,GR,GT,HK,HN,HR,HU,IE,IL,IM,IS,IT,JE,JP,JO,KZ,KW,LA,LI,LT,LU,LV,MA,MC,MD,ME,MO,MN,MT,MX,MY,NC,NL,NO,NZ,OM,PA,PE,PL,PR,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,SV,TH,TW,UA,US,UY,VA,VN,ZA", currency = "EUR,GBP,ISK,USD" }
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.bamboraapac]
credit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.gocardless]
ach = { country = "US", currency = "USD" }
becs = { country = "AU", currency = "AUD" }
sepa = { country = "AU,AT,BE,BG,CA,HR,CY,CZ,DK,FI,FR,DE,HU,IT,LU,MT,NL,NZ,NO,PL,PT,IE,RO,SK,SI,ZA,ES,SE,CH,GB", currency = "GBP,EUR,SEK,DKK,AUD,NZD,CAD" }
[pm_filters.powertranz]
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
[pm_filters.worldline]
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.shift4]
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,CH,DE,ES,FI,FR,GB,IT,NL,PL,SE", currency = "CHF,EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[connector_customer]
connector_list = "gocardless,stax,stripe"
payout_connector_list = "nomupay,stripe,wise"
[bank_config.online_banking_fpx]
adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
fiuu.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_of_china,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
[bank_config.online_banking_thailand]
adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank"
[applepay_decrypt_keys]
apple_pay_ppc = "APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE" # Payment Processing Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Payment Processing Certificate
apple_pay_ppc_key = "APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_KEY" # Private key generated by Elliptic-curve prime256v1 curve. You can use `openssl ecparam -out private.key -name prime256v1 -genkey` to generate the private key
apple_pay_merchant_cert = "APPLE_PAY_MERCHNAT_CERTIFICATE" # Merchant Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Merchant Identity Certificate
apple_pay_merchant_cert_key = "APPLE_PAY_MERCHNAT_CERTIFICATE_KEY" # Private key generated by RSA:2048 algorithm. Refer Hyperswitch Docs (https://docs.hyperswitch.io/hyperswitch-cloud/payment-methods-setup/wallets/apple-pay/ios-application/) to generate the private key
[paze_decrypt_keys]
paze_private_key = "PAZE_PRIVATE_KEY" # Base 64 Encoded Private Key File cakey.pem generated for Paze -> Command to create private key: openssl req -newkey rsa:2048 -x509 -keyout cakey.pem -out cacert.pem -days 365
paze_private_key_passphrase = "PAZE_PRIVATE_KEY_PASSPHRASE" # PEM Passphrase used for generating Private Key File cakey.pem
[google_pay_decrypt_keys]
google_pay_root_signing_keys = "GOOGLE_PAY_ROOT_SIGNING_KEYS" # Base 64 Encoded Root Signing Keys provided by Google Pay (https://developers.google.com/pay/api/web/guides/resources/payment-data-cryptography)
[applepay_merchant_configs]
# Run below command to get common merchant identifier for applepay in shell
#
# CERT_PATH="path/to/certificate.pem"
# MERCHANT_ID=$(openssl x509 -in "$CERT_PATH" -noout -text |
# awk -v oid="1.2.840.113635.100.6.32" '
# BEGIN { RS = "\n\n" }
# /X509v3 extensions/ { in_extension=1 }
# in_extension && /'"$oid"'/ { print $0; exit }' |
# grep -oE '\.@[A-F0-9]+' | sed 's/^\.@//'
# )
# echo "Merchant ID: $MERCHANT_ID"
common_merchant_identifier = "APPLE_PAY_COMMON_MERCHANT_IDENTIFIER" # This can be obtained by decrypting the apple_pay_ppc_key as shown above in comments
merchant_cert = "APPLE_PAY_MERCHANT_CERTIFICATE" # Merchant Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Merchant Identity Certificate
merchant_cert_key = "APPLE_PAY_MERCHANT_CERTIFICATE_KEY" # Private key generate by RSA:2048 algorithm. Refer Hyperswitch Docs (https://docs.hyperswitch.io/hyperswitch-cloud/payment-methods-setup/wallets/apple-pay/ios-application/) to generate the private key
applepay_endpoint = "https://apple-pay-gateway.apple.com/paymentservices/registerMerchant" # Apple pay gateway merchant endpoint
[generic_link]
[generic_link.payment_method_collect]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payment_method_collect.ui_config]
theme = "#1A1A1A"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payment_method_collect.enabled_payment_methods]
card = "credit,debit"
bank_transfer = "ach,bacs,sepa"
wallet = "paypal,pix,venmo"
[generic_link.payout_link]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payout_link.ui_config]
theme = "#1A1A1A"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payout_link.enabled_payment_methods]
card = "credit,debit"
#Payout Method Filters Based on Country and Currency
[payout_method_filters.adyenplatform]
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,CZ,DE,HU,NO,PL,SE,GB,CH", currency = "EUR,CZK,DKK,HUF,NOK,PLN,SEK,GBP,CHF" }
[payout_method_filters.stripe]
ach = { country = "US", currency = "USD" }
[payment_link]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
[payment_method_auth]
redis_expiry = 900
pm_auth_key = "Some_pm_auth_key"
# Analytics configuration.
[analytics]
source = "sqlx" # The Analytics source/strategy to be used
forex_enabled = false # Enable or disable forex conversion for analytics
[analytics.clickhouse]
username = "" # Clickhouse username
password = "" # Clickhouse password (optional)
host = "" # Clickhouse host in http(s)://<URL>:<PORT> format
database_name = "" # Clickhouse database name
[analytics.sqlx]
username = "db_user" # Analytics DB Username
password = "db_pass" # Analytics DB Password
host = "localhost" # Analytics DB Host
port = 5432 # Analytics DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
# Config for KV setup
[kv_config]
# TTL for KV in seconds
ttl = 900
[frm]
enabled = true
[paypal_onboarding]
client_id = "paypal_client_id" # Client ID for PayPal onboarding
client_secret = "paypal_secret_key" # Secret key for PayPal onboarding
partner_id = "paypal_partner_id" # Partner ID for PayPal onboarding
enabled = true # Switch to enable or disable PayPal onboarding
[events]
source = "logs" # The event sink to push events supports kafka or logs (stdout)
[events.kafka]
brokers = [] # Kafka broker urls for bootstrapping the client
fraud_check_analytics_topic = "topic" # Kafka topic to be used for FraudCheck events
intent_analytics_topic = "topic" # Kafka topic to be used for PaymentIntent events
attempt_analytics_topic = "topic" # Kafka topic to be used for PaymentAttempt events
refund_analytics_topic = "topic" # Kafka topic to be used for Refund events
api_logs_topic = "topic" # Kafka topic to be used for incoming api events
connector_logs_topic = "topic" # Kafka topic to be used for connector api events
outgoing_webhook_logs_topic = "topic" # Kafka topic to be used for outgoing webhook events
dispute_analytics_topic = "topic" # Kafka topic to be used for Dispute events
audit_events_topic = "topic" # Kafka topic to be used for Payment Audit events
payout_analytics_topic = "topic" # Kafka topic to be used for Payouts and PayoutAttempt events
consolidated_events_topic = "topic" # Kafka topic to be used for Consolidated events
authentication_analytics_topic = "topic" # Kafka topic to be used for Authentication events
# File storage configuration
[file_storage]
file_storage_backend = "aws_s3" # File storage backend to be used
[file_storage.aws_s3]
region = "us-east-1" # The AWS region used by the AWS S3 for file storage
bucket_name = "bucket1" # The AWS S3 bucket name for file storage
[secrets_management]
secrets_manager = "aws_kms" # Secrets manager client to be used
[secrets_management.aws_kms]
key_id = "kms_key_id" # The AWS key ID used by the KMS SDK for decrypting data.
region = "kms_region" # The AWS region used by the KMS SDK for decrypting data.
[encryption_management]
encryption_manager = "aws_kms" # Encryption manager client to be used
[encryption_management.aws_kms]
key_id = "kms_key_id" # The AWS key ID used by the KMS SDK for decrypting data.
region = "kms_region" # The AWS region used by the KMS SDK for decrypting data.
[opensearch]
host = "https://localhost:9200"
enabled = false
[opensearch.auth]
auth = "basic"
username = "admin"
password = "admin"
region = "eu-central-1"
[opensearch.indexes]
payment_attempts = "hyperswitch-payment-attempt-events"
payment_intents = "hyperswitch-payment-intent-events"
refunds = "hyperswitch-refund-events"
disputes = "hyperswitch-dispute-events"
sessionizer_payment_attempts = "sessionizer-payment-attempt-events"
sessionizer_payment_intents = "sessionizer-payment-intent-events"
sessionizer_refunds = "sessionizer-refund-events"
sessionizer_disputes = "sessionizer-dispute-events"
[saved_payment_methods]
sdk_eligible_payment_methods = "card"
[multitenancy]
enabled = false
global_tenant = { tenant_id = "global", schema = "public", redis_key_prefix = "", clickhouse_database = "default"}
[multitenancy.tenants.public]
base_url = "http://localhost:8080" # URL of the tenant
schema = "public" # Postgres db schema
accounts_schema = "public"
redis_key_prefix = "" # Redis key distinguisher
clickhouse_database = "default" # Clickhouse database
[multitenancy.tenants.public.user]
control_center_url = "http://localhost:9000" # Control center URL
[user_auth_methods]
encryption_key = "" # Encryption key used for encrypting data in user_authentication_methods table
[locker_based_open_banking_connectors]
connector_list = ""
[recipient_emails]
recon = "test@example.com"
[cell_information]
id = "12345" # Default CellID for Global Cell Information
[network_tokenization_supported_card_networks]
card_networks = "Visa, AmericanExpress, Mastercard" # Supported card networks for network tokenization
[network_tokenization_service] # Network Tokenization Service Configuration
generate_token_url= "" # base url to generate token
fetch_token_url= "" # base url to fetch token
token_service_api_key= "" # api key for token service
public_key= "" # public key to encrypt data for token service
private_key= "" # private key to decrypt response payload from token service
key_id= "" # key id to encrypt data for token service
delete_token_url= "" # base url to delete token from token service
check_token_status_url= "" # base url to check token status from token service
[network_tokenization_supported_connectors]
connector_list = "cybersource" # Supported connectors for network tokenization
[network_transaction_id_supported_connectors]
connector_list = "adyen,cybersource,novalnet,stripe,worldpay" # Supported connectors for network transaction id
[grpc_client.dynamic_routing_client] # Dynamic Routing Client Configuration
host = "localhost" # Client Host
port = 7000 # Client Port
service = "dynamo" # Service name
[theme.storage]
file_storage_backend = "file_system" # Theme storage backend to be used
[theme.email_config]
entity_name = "Hyperswitch" # Display name in emails
entity_logo_url = "https://app.hyperswitch.io/email-assets/HyperswitchLogo.png" # Logo URL for emails
foreground_color = "#111326" # Text color
primary_color = "#006DF9" # Primary color
background_color = "#FFFFFF" # Email background color
[billing_connectors_payment_sync]
billing_connectors_which_require_payment_sync = "stripebilling, recurly" # List of billing connectors which has payment sync api call | 34,199 | 8,816 |
hyperswitch | config/loki.yaml | .yaml | auth_enabled: false
server:
http_listen_port: 3100
common:
path_prefix: /loki
storage:
filesystem:
chunks_directory: /loki/chunks
rules_directory: /loki/rules
replication_factor: 1
ring:
kvstore:
store: inmemory
ingester:
# These ingester settings are configured for local setup only
# for more quicker log viewing at the expense of perf efficiency
chunk_idle_period: 10s
max_chunk_age: 1m
schema_config:
configs:
- from: 2020-10-24
store: tsdb
object_store: filesystem
schema: v13
index:
prefix: index_
period: 24h
analytics:
reporting_enabled: false
| 187 | 8,817 |
hyperswitch | config/redis.conf | .conf | # Redis configuration file example.
#
# Note that in order to read the configuration file, Redis must be
# started with the file path as first argument:
#
# ./redis-server /path/to/redis.conf
# Note on units: when memory size is needed, it is possible to specify
# it in the usual form of 1k 5GB 4M and so forth:
#
# 1k => 1000 bytes
# 1kb => 1024 bytes
# 1m => 1000000 bytes
# 1mb => 1024*1024 bytes
# 1g => 1000000000 bytes
# 1gb => 1024*1024*1024 bytes
#
# units are case insensitive so 1GB 1Gb 1gB are all the same.
################################## INCLUDES ###################################
# Include one or more other config files here. This is useful if you
# have a standard template that goes to all Redis servers but also need
# to customize a few per-server settings. Include files can include
# other files, so use this wisely.
#
# Note that option "include" won't be rewritten by command "CONFIG REWRITE"
# from admin or Redis Sentinel. Since Redis always uses the last processed
# line as value of a configuration directive, you'd better put includes
# at the beginning of this file to avoid overwriting config change at runtime.
#
# If instead you are interested in using includes to override configuration
# options, it is better to use include as the last line.
#
# Included paths may contain wildcards. All files matching the wildcards will
# be included in alphabetical order.
# Note that if an include path contains a wildcards but no files match it when
# the server is started, the include statement will be ignored and no error will
# be emitted. It is safe, therefore, to include wildcard files from empty
# directories.
#
# include /path/to/local.conf
# include /path/to/other.conf
# include /path/to/fragments/*.conf
#
################################## MODULES #####################################
# Load modules at startup. If the server is not able to load modules
# it will abort. It is possible to use multiple loadmodule directives.
#
# loadmodule /path/to/my_module.so
# loadmodule /path/to/other_module.so
################################## NETWORK #####################################
# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all available network interfaces on the host machine.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
# Each address can be prefixed by "-", which means that redis will not fail to
# start if the address is not available. Being not available only refers to
# addresses that does not correspond to any network interface. Addresses that
# are already in use will always fail, and unsupported protocols will always BE
# silently skipped.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1 # listens on two specific IPv4 addresses
# bind 127.0.0.1 ::1 # listens on loopback IPv4 and IPv6
# bind * -::* # like the default, all available interfaces
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the
# instance to everybody on the internet. So by default we uncomment the
# following bind directive, that will force Redis to listen only on the
# IPv4 and IPv6 (if available) loopback interface addresses (this means Redis
# will only be able to accept client connections from the same host that it is
# running on).
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
# COMMENT OUT THE FOLLOWING LINE.
#
# You will also need to set a password unless you explicitly disable protected
# mode.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# bind 127.0.0.1 -::1
# By default, outgoing connections (from replica to master, from Sentinel to
# instances, cluster bus, etc.) are not bound to a specific local address. In
# most cases, this means the operating system will handle that based on routing
# and the interface through which the connection goes out.
#
# Using bind-source-addr it is possible to configure a specific address to bind
# to, which may also affect how the connection gets routed.
#
# Example:
#
# bind-source-addr 10.0.0.1
# Protected mode is a layer of security protection, in order to avoid that
# Redis instances left open on the internet are accessed and exploited.
#
# When protected mode is on and the default user has no password, the server
# only accepts local connections from the IPv4 address (127.0.0.1), IPv6 address
# (::1) or Unix domain sockets.
#
# By default protected mode is enabled. You should disable it only if
# you are sure you want clients from other hosts to connect to Redis
# even if no authentication is configured.
protected-mode no
# Redis uses default hardened security configuration directives to reduce the
# attack surface on innocent users. Therefore, several sensitive configuration
# directives are immutable, and some potentially-dangerous commands are blocked.
#
# Configuration directives that control files that Redis writes to (e.g., 'dir'
# and 'dbfilename') and that aren't usually modified during runtime
# are protected by making them immutable.
#
# Commands that can increase the attack surface of Redis and that aren't usually
# called by users are blocked by default.
#
# These can be exposed to either all connections or just local ones by setting
# each of the configs listed below to either of these values:
#
# no - Block for any connection (remain immutable)
# yes - Allow for any connection (no protection)
# local - Allow only for local connections. Ones originating from the
# IPv4 address (127.0.0.1), IPv6 address (::1) or Unix domain sockets.
#
# enable-protected-configs no
# enable-debug-command no
# enable-module-command no
# Accept connections on the specified port, default is 6379 (IANA #815344).
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379
# TCP listen() backlog.
#
# In high requests-per-second environments you need a high backlog in order
# to avoid slow clients connection issues. Note that the Linux kernel
# will silently truncate it to the value of /proc/sys/net/core/somaxconn so
# make sure to raise both the value of somaxconn and tcp_max_syn_backlog
# in order to get the desired effect.
tcp-backlog 511
# Unix socket.
#
# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
# on a unix socket when not specified.
#
# unixsocket /run/redis.sock
# unixsocketperm 700
# Close the connection after a client is idle for N seconds (0 to disable)
timeout 0
# TCP keepalive.
#
# If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
# of communication. This is useful for two reasons:
#
# 1) Detect dead peers.
# 2) Force network equipment in the middle to consider the connection to be
# alive.
#
# On Linux, the specified value (in seconds) is the period used to send ACKs.
# Note that to close the connection the double of the time is needed.
# On other kernels the period depends on the kernel configuration.
#
# A reasonable value for this option is 300 seconds, which is the new
# Redis default starting with Redis 3.2.1.
tcp-keepalive 300
# Apply OS-specific mechanism to mark the listening socket with the specified
# ID, to support advanced routing and filtering capabilities.
#
# On Linux, the ID represents a connection mark.
# On FreeBSD, the ID represents a socket cookie ID.
# On OpenBSD, the ID represents a route table ID.
#
# The default value is 0, which implies no marking is required.
# socket-mark-id 0
################################# TLS/SSL #####################################
# By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration
# directive can be used to define TLS-listening ports. To enable TLS on the
# default port, use:
#
# port 0
# tls-port 6379
# Configure a X.509 certificate and private key to use for authenticating the
# server to connected clients, masters or cluster peers. These files should be
# PEM formatted.
#
# tls-cert-file redis.crt
# tls-key-file redis.key
#
# If the key file is encrypted using a passphrase, it can be included here
# as well.
#
# tls-key-file-pass secret
# Normally Redis uses the same certificate for both server functions (accepting
# connections) and client functions (replicating from a master, establishing
# cluster bus connections, etc.).
#
# Sometimes certificates are issued with attributes that designate them as
# client-only or server-only certificates. In that case it may be desired to use
# different certificates for incoming (server) and outgoing (client)
# connections. To do that, use the following directives:
#
# tls-client-cert-file client.crt
# tls-client-key-file client.key
#
# If the key file is encrypted using a passphrase, it can be included here
# as well.
#
# tls-client-key-file-pass secret
# Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange,
# required by older versions of OpenSSL (<3.0). Newer versions do not require
# this configuration and recommend against it.
#
# tls-dh-params-file redis.dh
# Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL
# clients and peers. Redis requires an explicit configuration of at least one
# of these, and will not implicitly use the system wide configuration.
#
# tls-ca-cert-file ca.crt
# tls-ca-cert-dir /etc/ssl/certs
# By default, clients (including replica servers) on a TLS port are required
# to authenticate using valid client side certificates.
#
# If "no" is specified, client certificates are not required and not accepted.
# If "optional" is specified, client certificates are accepted and must be
# valid if provided, but are not required.
#
# tls-auth-clients no
# tls-auth-clients optional
# By default, a Redis replica does not attempt to establish a TLS connection
# with its master.
#
# Use the following directive to enable TLS on replication links.
#
# tls-replication yes
# By default, the Redis Cluster bus uses a plain TCP connection. To enable
# TLS for the bus protocol, use the following directive:
#
# tls-cluster yes
# By default, only TLSv1.2 and TLSv1.3 are enabled and it is highly recommended
# that older formally deprecated versions are kept disabled to reduce the attack surface.
# You can explicitly specify TLS versions to support.
# Allowed values are case insensitive and include "TLSv1", "TLSv1.1", "TLSv1.2",
# "TLSv1.3" (OpenSSL >= 1.1.1) or any combination.
# To enable only TLSv1.2 and TLSv1.3, use:
#
# tls-protocols "TLSv1.2 TLSv1.3"
# Configure allowed ciphers. See the ciphers(1ssl) manpage for more information
# about the syntax of this string.
#
# Note: this configuration applies only to <= TLSv1.2.
#
# tls-ciphers DEFAULT:!MEDIUM
# Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more
# information about the syntax of this string, and specifically for TLSv1.3
# ciphersuites.
#
# tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256
# When choosing a cipher, use the server's preference instead of the client
# preference. By default, the server follows the client's preference.
#
# tls-prefer-server-ciphers yes
# By default, TLS session caching is enabled to allow faster and less expensive
# reconnections by clients that support it. Use the following directive to disable
# caching.
#
# tls-session-caching no
# Change the default number of TLS sessions cached. A zero value sets the cache
# to unlimited size. The default size is 20480.
#
# tls-session-cache-size 5000
# Change the default timeout of cached TLS sessions. The default timeout is 300
# seconds.
#
# tls-session-cache-timeout 60
################################# GENERAL #####################################
# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
# When Redis is supervised by upstart or systemd, this parameter has no impact.
daemonize no
# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# requires "expect stop" in your upstart job config
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# on startup, and updating Redis status on a regular
# basis.
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous pings back to your supervisor.
#
# The default is "no". To run under upstart/systemd, you can simply uncomment
# the line below:
#
# supervised auto
# If a pid file is specified, Redis writes it where specified at startup
# and removes it at exit.
#
# When the server runs non daemonized, no pid file is created if none is
# specified in the configuration. When the server is daemonized, the pid file
# is used even if not specified, defaulting to "/var/run/redis.pid".
#
# Creating a pid file is best effort: if Redis is not able to create it
# nothing bad happens, the server will start and run normally.
#
# Note that on modern Linux systems "/run/redis.pid" is more conforming
# and should be used instead.
pidfile /var/run/redis_6379.pid
# Specify the server verbosity level.
# This can be one of:
# debug (a lot of information, useful for development/testing)
# verbose (many rarely useful info, but not a mess like the debug level)
# notice (moderately verbose, what you want in production probably)
# warning (only very important / critical messages are logged)
loglevel notice
# Specify the log file name. Also the empty string can be used to force
# Redis to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
logfile ""
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
# and optionally update the other syslog parameters to suit your needs.
# syslog-enabled no
# Specify the syslog identity.
# syslog-ident redis
# Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
# syslog-facility local0
# To disable the built in crash log, which will possibly produce cleaner core
# dumps when they are needed, uncomment the following:
#
# crash-log-enabled no
# To disable the fast memory check that's run as part of the crash log, which
# will possibly let redis terminate sooner, uncomment the following:
#
# crash-memcheck-enabled no
# Set the number of databases. The default database is DB 0, you can select
# a different one on a per-connection basis using SELECT <dbid> where
# dbid is a number between 0 and 'databases'-1
databases 16
# By default Redis shows an ASCII art logo only when started to log to the
# standard output and if the standard output is a TTY and syslog logging is
# disabled. Basically this means that normally a logo is displayed only in
# interactive sessions.
#
# However it is possible to force the pre-4.0 behavior and always show a
# ASCII art logo in startup logs by setting the following option to yes.
always-show-logo no
# By default, Redis modifies the process title (as seen in 'top' and 'ps') to
# provide some runtime information. It is possible to disable this and leave
# the process name as executed by setting the following to no.
set-proc-title yes
# When changing the process title, Redis uses the following template to construct
# the modified title.
#
# Template variables are specified in curly brackets. The following variables are
# supported:
#
# {title} Name of process as executed if parent, or type of child process.
# {listen-addr} Bind address or '*' followed by TCP or TLS port listening on, or
# Unix socket if only that's available.
# {server-mode} Special mode, i.e. "[sentinel]" or "[cluster]".
# {port} TCP port listening on, or 0.
# {tls-port} TLS port listening on, or 0.
# {unixsocket} Unix domain socket listening on, or "".
# {config-file} Name of configuration file used.
#
proc-title-template "{title} {listen-addr} {server-mode}"
################################ SNAPSHOTTING ################################
# Save the DB to disk.
#
# save <seconds> <changes> [<seconds> <changes> ...]
#
# Redis will save the DB if the given number of seconds elapsed and it
# surpassed the given number of write operations against the DB.
#
# Snapshotting can be completely disabled with a single empty string argument
# as in following example:
#
# save ""
#
# Unless specified otherwise, by default Redis will save the DB:
# * After 3600 seconds (an hour) if at least 1 change was performed
# * After 300 seconds (5 minutes) if at least 100 changes were performed
# * After 60 seconds if at least 10000 changes were performed
#
# You can set these explicitly by uncommenting the following line.
#
# save 3600 1 300 100 60 10000
# By default Redis will stop accepting writes if RDB snapshots are enabled
# (at least one save point) and the latest background save failed.
# This will make the user aware (in a hard way) that data is not persisting
# on disk properly, otherwise chances are that no one will notice and some
# disaster will happen.
#
# If the background saving process will start working again Redis will
# automatically allow writes again.
#
# However if you have setup your proper monitoring of the Redis server
# and persistence, you may want to disable this feature so that Redis will
# continue to work as usual even if there are problems with disk,
# permissions, and so forth.
stop-writes-on-bgsave-error yes
# Compress string objects using LZF when dump .rdb databases?
# By default compression is enabled as it's almost always a win.
# If you want to save some CPU in the saving child set it to 'no' but
# the dataset will likely be bigger if you have compressible values or keys.
rdbcompression yes
# Since version 5 of RDB a CRC64 checksum is placed at the end of the file.
# This makes the format more resistant to corruption but there is a performance
# hit to pay (around 10%) when saving and loading RDB files, so you can disable it
# for maximum performances.
#
# RDB files created with checksum disabled have a checksum of zero that will
# tell the loading code to skip the check.
rdbchecksum yes
# Enables or disables full sanitization checks for ziplist and listpack etc when
# loading an RDB or RESTORE payload. This reduces the chances of a assertion or
# crash later on while processing commands.
# Options:
# no - Never perform full sanitization
# yes - Always perform full sanitization
# clients - Perform full sanitization only for user connections.
# Excludes: RDB files, RESTORE commands received from the master
# connection, and client connections which have the
# skip-sanitize-payload ACL flag.
# The default should be 'clients' but since it currently affects cluster
# resharding via MIGRATE, it is temporarily set to 'no' by default.
#
# sanitize-dump-payload no
# The filename where to dump the DB
dbfilename dump.rdb
# Remove RDB files used by replication in instances without persistence
# enabled. By default this option is disabled, however there are environments
# where for regulations or other security concerns, RDB files persisted on
# disk by masters in order to feed replicas, or stored on disk by replicas
# in order to load them for the initial synchronization, should be deleted
# ASAP. Note that this option ONLY WORKS in instances that have both AOF
# and RDB persistence disabled, otherwise is completely ignored.
#
# An alternative (and sometimes better) way to obtain the same effect is
# to use diskless replication on both master and replicas instances. However
# in the case of replicas, diskless is not always an option.
rdb-del-sync-files no
# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir ./
################################# REPLICATION #################################
# Master-Replica replication. Use replicaof to make a Redis instance a copy of
# another Redis server. A few things to understand ASAP about Redis replication.
#
# +------------------+ +---------------+
# | Master | ---> | Replica |
# | (receive writes) | | (exact copy) |
# +------------------+ +---------------+
#
# 1) Redis replication is asynchronous, but you can configure a master to
# stop accepting writes if it appears to be not connected with at least
# a given number of replicas.
# 2) Redis replicas are able to perform a partial resynchronization with the
# master if the replication link is lost for a relatively small amount of
# time. You may want to configure the replication backlog size (see the next
# sections of this file) with a sensible value depending on your needs.
# 3) Replication is automatic and does not need user intervention. After a
# network partition replicas automatically try to reconnect to masters
# and resynchronize with them.
#
# replicaof <masterip> <masterport>
# If the master is password protected (using the "requirepass" configuration
# directive below) it is possible to tell the replica to authenticate before
# starting the replication synchronization process, otherwise the master will
# refuse the replica request.
#
# masterauth <master-password>
#
# However this is not enough if you are using Redis ACLs (for Redis version
# 6 or greater), and the default user is not capable of running the PSYNC
# command and/or other commands needed for replication. In this case it's
# better to configure a special user to use with replication, and specify the
# masteruser configuration as such:
#
# masteruser <username>
#
# When masteruser is specified, the replica will authenticate against its
# master using the new AUTH form: AUTH <username> <password>.
# When a replica loses its connection with the master, or when the replication
# is still in progress, the replica can act in two different ways:
#
# 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will
# still reply to client requests, possibly with out of date data, or the
# data set may just be empty if this is the first synchronization.
#
# 2) If replica-serve-stale-data is set to 'no' the replica will reply with error
# "MASTERDOWN Link with MASTER is down and replica-serve-stale-data is set to 'no'"
# to all data access commands, excluding commands such as:
# INFO, REPLICAOF, AUTH, SHUTDOWN, REPLCONF, ROLE, CONFIG, SUBSCRIBE,
# UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, COMMAND, POST,
# HOST and LATENCY.
#
replica-serve-stale-data yes
# You can configure a replica instance to accept writes or not. Writing against
# a replica instance may be useful to store some ephemeral data (because data
# written on a replica will be easily deleted after resync with the master) but
# may also cause problems if clients are writing to it because of a
# misconfiguration.
#
# Since Redis 2.6 by default replicas are read-only.
#
# Note: read only replicas are not designed to be exposed to untrusted clients
# on the internet. It's just a protection layer against misuse of the instance.
# Still a read only replica exports by default all the administrative commands
# such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
# security of read only replicas using 'rename-command' to shadow all the
# administrative / dangerous commands.
replica-read-only yes
# Replication SYNC strategy: disk or socket.
#
# New replicas and reconnecting replicas that are not able to continue the
# replication process just receiving differences, need to do what is called a
# "full synchronization". An RDB file is transmitted from the master to the
# replicas.
#
# The transmission can happen in two different ways:
#
# 1) Disk-backed: The Redis master creates a new process that writes the RDB
# file on disk. Later the file is transferred by the parent
# process to the replicas incrementally.
# 2) Diskless: The Redis master creates a new process that directly writes the
# RDB file to replica sockets, without touching the disk at all.
#
# With disk-backed replication, while the RDB file is generated, more replicas
# can be queued and served with the RDB file as soon as the current child
# producing the RDB file finishes its work. With diskless replication instead
# once the transfer starts, new replicas arriving will be queued and a new
# transfer will start when the current one terminates.
#
# When diskless replication is used, the master waits a configurable amount of
# time (in seconds) before starting the transfer in the hope that multiple
# replicas will arrive and the transfer can be parallelized.
#
# With slow disks and fast (large bandwidth) networks, diskless replication
# works better.
repl-diskless-sync yes
# When diskless replication is enabled, it is possible to configure the delay
# the server waits in order to spawn the child that transfers the RDB via socket
# to the replicas.
#
# This is important since once the transfer starts, it is not possible to serve
# new replicas arriving, that will be queued for the next RDB transfer, so the
# server waits a delay in order to let more replicas arrive.
#
# The delay is specified in seconds, and by default is 5 seconds. To disable
# it entirely just set it to 0 seconds and the transfer will start ASAP.
repl-diskless-sync-delay 5
# When diskless replication is enabled with a delay, it is possible to let
# the replication start before the maximum delay is reached if the maximum
# number of replicas expected have connected. Default of 0 means that the
# maximum is not defined and Redis will wait the full delay.
repl-diskless-sync-max-replicas 0
# -----------------------------------------------------------------------------
# WARNING: RDB diskless load is experimental. Since in this setup the replica
# does not immediately store an RDB on disk, it may cause data loss during
# failovers. RDB diskless load + Redis modules not handling I/O reads may also
# cause Redis to abort in case of I/O errors during the initial synchronization
# stage with the master. Use only if you know what you are doing.
# -----------------------------------------------------------------------------
#
# Replica can load the RDB it reads from the replication link directly from the
# socket, or store the RDB to a file and read that file after it was completely
# received from the master.
#
# In many cases the disk is slower than the network, and storing and loading
# the RDB file may increase replication time (and even increase the master's
# Copy on Write memory and replica buffers).
# However, parsing the RDB file directly from the socket may mean that we have
# to flush the contents of the current database before the full rdb was
# received. For this reason we have the following options:
#
# "disabled" - Don't use diskless load (store the rdb file to the disk first)
# "on-empty-db" - Use diskless load only when it is completely safe.
# "swapdb" - Keep current db contents in RAM while parsing the data directly
# from the socket. Replicas in this mode can keep serving current
# data set while replication is in progress, except for cases where
# they can't recognize master as having a data set from same
# replication history.
# Note that this requires sufficient memory, if you don't have it,
# you risk an OOM kill.
repl-diskless-load disabled
# Master send PINGs to its replicas in a predefined interval. It's possible to
# change this interval with the repl_ping_replica_period option. The default
# value is 10 seconds.
#
# repl-ping-replica-period 10
# The following option sets the replication timeout for:
#
# 1) Bulk transfer I/O during SYNC, from the point of view of replica.
# 2) Master timeout from the point of view of replicas (data, pings).
# 3) Replica timeout from the point of view of masters (REPLCONF ACK pings).
#
# It is important to make sure that this value is greater than the value
# specified for repl-ping-replica-period otherwise a timeout will be detected
# every time there is low traffic between the master and the replica. The default
# value is 60 seconds.
#
# repl-timeout 60
# Disable TCP_NODELAY on the replica socket after SYNC?
#
# If you select "yes" Redis will use a smaller number of TCP packets and
# less bandwidth to send data to replicas. But this can add a delay for
# the data to appear on the replica side, up to 40 milliseconds with
# Linux kernels using a default configuration.
#
# If you select "no" the delay for data to appear on the replica side will
# be reduced but more bandwidth will be used for replication.
#
# By default we optimize for low latency, but in very high traffic conditions
# or when the master and replicas are many hops away, turning this to "yes" may
# be a good idea.
repl-disable-tcp-nodelay no
# Set the replication backlog size. The backlog is a buffer that accumulates
# replica data when replicas are disconnected for some time, so that when a
# replica wants to reconnect again, often a full resync is not needed, but a
# partial resync is enough, just passing the portion of data the replica
# missed while disconnected.
#
# The bigger the replication backlog, the longer the replica can endure the
# disconnect and later be able to perform a partial resynchronization.
#
# The backlog is only allocated if there is at least one replica connected.
#
# repl-backlog-size 1mb
# After a master has no connected replicas for some time, the backlog will be
# freed. The following option configures the amount of seconds that need to
# elapse, starting from the time the last replica disconnected, for the backlog
# buffer to be freed.
#
# Note that replicas never free the backlog for timeout, since they may be
# promoted to masters later, and should be able to correctly "partially
# resynchronize" with other replicas: hence they should always accumulate backlog.
#
# A value of 0 means to never release the backlog.
#
# repl-backlog-ttl 3600
# The replica priority is an integer number published by Redis in the INFO
# output. It is used by Redis Sentinel in order to select a replica to promote
# into a master if the master is no longer working correctly.
#
# A replica with a low priority number is considered better for promotion, so
# for instance if there are three replicas with priority 10, 100, 25 Sentinel
# will pick the one with priority 10, that is the lowest.
#
# However a special priority of 0 marks the replica as not able to perform the
# role of master, so a replica with priority of 0 will never be selected by
# Redis Sentinel for promotion.
#
# By default the priority is 100.
replica-priority 100
# The propagation error behavior controls how Redis will behave when it is
# unable to handle a command being processed in the replication stream from a master
# or processed while reading from an AOF file. Errors that occur during propagation
# are unexpected, and can cause data inconsistency. However, there are edge cases
# in earlier versions of Redis where it was possible for the server to replicate or persist
# commands that would fail on future versions. For this reason the default behavior
# is to ignore such errors and continue processing commands.
#
# If an application wants to ensure there is no data divergence, this configuration
# should be set to 'panic' instead. The value can also be set to 'panic-on-replicas'
# to only panic when a replica encounters an error on the replication stream. One of
# these two panic values will become the default value in the future once there are
# sufficient safety mechanisms in place to prevent false positive crashes.
#
# propagation-error-behavior ignore
# Replica ignore disk write errors controls the behavior of a replica when it is
# unable to persist a write command received from its master to disk. By default,
# this configuration is set to 'no' and will crash the replica in this condition.
# It is not recommended to change this default, however in order to be compatible
# with older versions of Redis this config can be toggled to 'yes' which will just
# log a warning and execute the write command it got from the master.
#
# replica-ignore-disk-write-errors no
# -----------------------------------------------------------------------------
# By default, Redis Sentinel includes all replicas in its reports. A replica
# can be excluded from Redis Sentinel's announcements. An unannounced replica
# will be ignored by the 'sentinel replicas <master>' command and won't be
# exposed to Redis Sentinel's clients.
#
# This option does not change the behavior of replica-priority. Even with
# replica-announced set to 'no', the replica can be promoted to master. To
# prevent this behavior, set replica-priority to 0.
#
# replica-announced yes
# It is possible for a master to stop accepting writes if there are less than
# N replicas connected, having a lag less or equal than M seconds.
#
# The N replicas need to be in "online" state.
#
# The lag in seconds, that must be <= the specified value, is calculated from
# the last ping received from the replica, that is usually sent every second.
#
# This option does not GUARANTEE that N replicas will accept the write, but
# will limit the window of exposure for lost writes in case not enough replicas
# are available, to the specified number of seconds.
#
# For example to require at least 3 replicas with a lag <= 10 seconds use:
#
# min-replicas-to-write 3
# min-replicas-max-lag 10
#
# Setting one or the other to 0 disables the feature.
#
# By default min-replicas-to-write is set to 0 (feature disabled) and
# min-replicas-max-lag is set to 10.
# A Redis master is able to list the address and port of the attached
# replicas in different ways. For example the "INFO replication" section
# offers this information, which is used, among other tools, by
# Redis Sentinel in order to discover replica instances.
# Another place where this info is available is in the output of the
# "ROLE" command of a master.
#
# The listed IP address and port normally reported by a replica is
# obtained in the following way:
#
# IP: The address is auto detected by checking the peer address
# of the socket used by the replica to connect with the master.
#
# Port: The port is communicated by the replica during the replication
# handshake, and is normally the port that the replica is using to
# listen for connections.
#
# However when port forwarding or Network Address Translation (NAT) is
# used, the replica may actually be reachable via different IP and port
# pairs. The following two options can be used by a replica in order to
# report to its master a specific set of IP and port, so that both INFO
# and ROLE will report those values.
#
# There is no need to use both the options if you need to override just
# the port or the IP address.
#
# replica-announce-ip 5.5.5.5
# replica-announce-port 1234
############################### KEYS TRACKING #################################
# Redis implements server assisted support for client side caching of values.
# This is implemented using an invalidation table that remembers, using
# a radix key indexed by key name, what clients have which keys. In turn
# this is used in order to send invalidation messages to clients. Please
# check this page to understand more about the feature:
#
# https://redis.io/topics/client-side-caching
#
# When tracking is enabled for a client, all the read only queries are assumed
# to be cached: this will force Redis to store information in the invalidation
# table. When keys are modified, such information is flushed away, and
# invalidation messages are sent to the clients. However if the workload is
# heavily dominated by reads, Redis could use more and more memory in order
# to track the keys fetched by many clients.
#
# For this reason it is possible to configure a maximum fill value for the
# invalidation table. By default it is set to 1M of keys, and once this limit
# is reached, Redis will start to evict keys in the invalidation table
# even if they were not modified, just to reclaim memory: this will in turn
# force the clients to invalidate the cached values. Basically the table
# maximum size is a trade off between the memory you want to spend server
# side to track information about who cached what, and the ability of clients
# to retain cached objects in memory.
#
# If you set the value to 0, it means there are no limits, and Redis will
# retain as many keys as needed in the invalidation table.
# In the "stats" INFO section, you can find information about the number of
# keys in the invalidation table at every given moment.
#
# Note: when key tracking is used in broadcasting mode, no memory is used
# in the server side so this setting is useless.
#
# tracking-table-max-keys 1000000
################################## SECURITY ###################################
# Warning: since Redis is pretty fast, an outside user can try up to
# 1 million passwords per second against a modern box. This means that you
# should use very strong passwords, otherwise they will be very easy to break.
# Note that because the password is really a shared secret between the client
# and the server, and should not be memorized by any human, the password
# can be easily a long string from /dev/urandom or whatever, so by using a
# long and unguessable password no brute force attack will be possible.
# Redis ACL users are defined in the following format:
#
# user <username> ... acl rules ...
#
# For example:
#
# user worker +@list +@connection ~jobs:* on >ffa9203c493aa99
#
# The special username "default" is used for new connections. If this user
# has the "nopass" rule, then new connections will be immediately authenticated
# as the "default" user without the need of any password provided via the
# AUTH command. Otherwise if the "default" user is not flagged with "nopass"
# the connections will start in not authenticated state, and will require
# AUTH (or the HELLO command AUTH option) in order to be authenticated and
# start to work.
#
# The ACL rules that describe what a user can do are the following:
#
# on Enable the user: it is possible to authenticate as this user.
# off Disable the user: it's no longer possible to authenticate
# with this user, however the already authenticated connections
# will still work.
# skip-sanitize-payload RESTORE dump-payload sanitization is skipped.
# sanitize-payload RESTORE dump-payload is sanitized (default).
# +<command> Allow the execution of that command.
# May be used with `|` for allowing subcommands (e.g "+config|get")
# -<command> Disallow the execution of that command.
# May be used with `|` for blocking subcommands (e.g "-config|set")
# +@<category> Allow the execution of all the commands in such category
# with valid categories are like @admin, @set, @sortedset, ...
# and so forth, see the full list in the server.c file where
# the Redis command table is described and defined.
# The special category @all means all the commands, but currently
# present in the server, and that will be loaded in the future
# via modules.
# +<command>|first-arg Allow a specific first argument of an otherwise
# disabled command. It is only supported on commands with
# no sub-commands, and is not allowed as negative form
# like -SELECT|1, only additive starting with "+". This
# feature is deprecated and may be removed in the future.
# allcommands Alias for +@all. Note that it implies the ability to execute
# all the future commands loaded via the modules system.
# nocommands Alias for -@all.
# ~<pattern> Add a pattern of keys that can be mentioned as part of
# commands. For instance ~* allows all the keys. The pattern
# is a glob-style pattern like the one of KEYS.
# It is possible to specify multiple patterns.
# %R~<pattern> Add key read pattern that specifies which keys can be read
# from.
# %W~<pattern> Add key write pattern that specifies which keys can be
# written to.
# allkeys Alias for ~*
# resetkeys Flush the list of allowed keys patterns.
# &<pattern> Add a glob-style pattern of Pub/Sub channels that can be
# accessed by the user. It is possible to specify multiple channel
# patterns.
# allchannels Alias for &*
# resetchannels Flush the list of allowed channel patterns.
# ><password> Add this password to the list of valid password for the user.
# For example >mypass will add "mypass" to the list.
# This directive clears the "nopass" flag (see later).
# <<password> Remove this password from the list of valid passwords.
# nopass All the set passwords of the user are removed, and the user
# is flagged as requiring no password: it means that every
# password will work against this user. If this directive is
# used for the default user, every new connection will be
# immediately authenticated with the default user without
# any explicit AUTH command required. Note that the "resetpass"
# directive will clear this condition.
# resetpass Flush the list of allowed passwords. Moreover removes the
# "nopass" status. After "resetpass" the user has no associated
# passwords and there is no way to authenticate without adding
# some password (or setting it as "nopass" later).
# reset Performs the following actions: resetpass, resetkeys, off,
# -@all. The user returns to the same state it has immediately
# after its creation.
# (<options>) Create a new selector with the options specified within the
# parentheses and attach it to the user. Each option should be
# space separated. The first character must be ( and the last
# character must be ).
# clearselectors Remove all of the currently attached selectors.
# Note this does not change the "root" user permissions,
# which are the permissions directly applied onto the
# user (outside the parentheses).
#
# ACL rules can be specified in any order: for instance you can start with
# passwords, then flags, or key patterns. However note that the additive
# and subtractive rules will CHANGE MEANING depending on the ordering.
# For instance see the following example:
#
# user alice on +@all -DEBUG ~* >somepassword
#
# This will allow "alice" to use all the commands with the exception of the
# DEBUG command, since +@all added all the commands to the set of the commands
# alice can use, and later DEBUG was removed. However if we invert the order
# of two ACL rules the result will be different:
#
# user alice on -DEBUG +@all ~* >somepassword
#
# Now DEBUG was removed when alice had yet no commands in the set of allowed
# commands, later all the commands are added, so the user will be able to
# execute everything.
#
# Basically ACL rules are processed left-to-right.
#
# The following is a list of command categories and their meanings:
# * keyspace - Writing or reading from keys, databases, or their metadata
# in a type agnostic way. Includes DEL, RESTORE, DUMP, RENAME, EXISTS, DBSIZE,
# KEYS, EXPIRE, TTL, FLUSHALL, etc. Commands that may modify the keyspace,
# key or metadata will also have `write` category. Commands that only read
# the keyspace, key or metadata will have the `read` category.
# * read - Reading from keys (values or metadata). Note that commands that don't
# interact with keys, will not have either `read` or `write`.
# * write - Writing to keys (values or metadata)
# * admin - Administrative commands. Normal applications will never need to use
# these. Includes REPLICAOF, CONFIG, DEBUG, SAVE, MONITOR, ACL, SHUTDOWN, etc.
# * dangerous - Potentially dangerous (each should be considered with care for
# various reasons). This includes FLUSHALL, MIGRATE, RESTORE, SORT, KEYS,
# CLIENT, DEBUG, INFO, CONFIG, SAVE, REPLICAOF, etc.
# * connection - Commands affecting the connection or other connections.
# This includes AUTH, SELECT, COMMAND, CLIENT, ECHO, PING, etc.
# * blocking - Potentially blocking the connection until released by another
# command.
# * fast - Fast O(1) commands. May loop on the number of arguments, but not the
# number of elements in the key.
# * slow - All commands that are not Fast.
# * pubsub - PUBLISH / SUBSCRIBE related
# * transaction - WATCH / MULTI / EXEC related commands.
# * scripting - Scripting related.
# * set - Data type: sets related.
# * sortedset - Data type: zsets related.
# * list - Data type: lists related.
# * hash - Data type: hashes related.
# * string - Data type: strings related.
# * bitmap - Data type: bitmaps related.
# * hyperloglog - Data type: hyperloglog related.
# * geo - Data type: geo related.
# * stream - Data type: streams related.
#
# For more information about ACL configuration please refer to
# the Redis web site at https://redis.io/topics/acl
# ACL LOG
#
# The ACL Log tracks failed commands and authentication events associated
# with ACLs. The ACL Log is useful to troubleshoot failed commands blocked
# by ACLs. The ACL Log is stored in memory. You can reclaim memory with
# ACL LOG RESET. Define the maximum entry length of the ACL Log below.
acllog-max-len 128
# Using an external ACL file
#
# Instead of configuring users here in this file, it is possible to use
# a stand-alone file just listing users. The two methods cannot be mixed:
# if you configure users here and at the same time you activate the external
# ACL file, the server will refuse to start.
#
# The format of the external ACL user file is exactly the same as the
# format that is used inside redis.conf to describe users.
#
# aclfile /etc/redis/users.acl
# IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
# layer on top of the new ACL system. The option effect will be just setting
# the password for the default user. Clients will still authenticate using
# AUTH <password> as usually, or more explicitly with AUTH default <password>
# if they follow the new protocol: both will work.
#
# The requirepass is not compatible with aclfile option and the ACL LOAD
# command, these will cause requirepass to be ignored.
#
# requirepass foobared
# New users are initialized with restrictive permissions by default, via the
# equivalent of this ACL rule 'off resetkeys -@all'. Starting with Redis 6.2, it
# is possible to manage access to Pub/Sub channels with ACL rules as well. The
# default Pub/Sub channels permission if new users is controlled by the
# acl-pubsub-default configuration directive, which accepts one of these values:
#
# allchannels: grants access to all Pub/Sub channels
# resetchannels: revokes access to all Pub/Sub channels
#
# From Redis 7.0, acl-pubsub-default defaults to 'resetchannels' permission.
#
# acl-pubsub-default resetchannels
# Command renaming (DEPRECATED).
#
# ------------------------------------------------------------------------
# WARNING: avoid using this option if possible. Instead use ACLs to remove
# commands from the default user, and put them only in some admin user you
# create for administrative purposes.
# ------------------------------------------------------------------------
#
# It is possible to change the name of dangerous commands in a shared
# environment. For instance the CONFIG command may be renamed into something
# hard to guess so that it will still be available for internal-use tools
# but not available for general clients.
#
# Example:
#
# rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
#
# It is also possible to completely kill a command by renaming it into
# an empty string:
#
# rename-command CONFIG ""
#
# Please note that changing the name of commands that are logged into the
# AOF file or transmitted to replicas may cause problems.
################################### CLIENTS ####################################
# Set the max number of connected clients at the same time. By default
# this limit is set to 10000 clients, however if the Redis server is not
# able to configure the process file limit to allow for the specified limit
# the max number of allowed clients is set to the current file limit
# minus 32 (as Redis reserves a few file descriptors for internal uses).
#
# Once the limit is reached Redis will close all the new connections sending
# an error 'max number of clients reached'.
#
# IMPORTANT: When Redis Cluster is used, the max number of connections is also
# shared with the cluster bus: every node in the cluster will use two
# connections, one incoming and another outgoing. It is important to size the
# limit accordingly in case of very large clusters.
#
# maxclients 10000
############################## MEMORY MANAGEMENT ################################
# Set a memory usage limit to the specified amount of bytes.
# When the memory limit is reached Redis will try to remove keys
# according to the eviction policy selected (see maxmemory-policy).
#
# If Redis can't remove keys according to the policy, or if the policy is
# set to 'noeviction', Redis will start to reply with errors to commands
# that would use more memory, like SET, LPUSH, and so on, and will continue
# to reply to read-only commands like GET.
#
# This option is usually useful when using Redis as an LRU or LFU cache, or to
# set a hard memory limit for an instance (using the 'noeviction' policy).
#
# WARNING: If you have replicas attached to an instance with maxmemory on,
# the size of the output buffers needed to feed the replicas are subtracted
# from the used memory count, so that network problems / resyncs will
# not trigger a loop where keys are evicted, and in turn the output
# buffer of replicas is full with DELs of keys evicted triggering the deletion
# of more keys, and so forth until the database is completely emptied.
#
# In short... if you have replicas attached it is suggested that you set a lower
# limit for maxmemory so that there is some free RAM on the system for replica
# output buffers (but this is not needed if the policy is 'noeviction').
#
# maxmemory <bytes>
# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
# is reached. You can select one from the following behaviors:
#
# volatile-lru -> Evict using approximated LRU, only keys with an expire set.
# allkeys-lru -> Evict any key using approximated LRU.
# volatile-lfu -> Evict using approximated LFU, only keys with an expire set.
# allkeys-lfu -> Evict any key using approximated LFU.
# volatile-random -> Remove a random key having an expire set.
# allkeys-random -> Remove a random key, any key.
# volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
# noeviction -> Don't evict anything, just return an error on write operations.
#
# LRU means Least Recently Used
# LFU means Least Frequently Used
#
# Both LRU, LFU and volatile-ttl are implemented using approximated
# randomized algorithms.
#
# Note: with any of the above policies, when there are no suitable keys for
# eviction, Redis will return an error on write operations that require
# more memory. These are usually commands that create new keys, add data or
# modify existing keys. A few examples are: SET, INCR, HSET, LPUSH, SUNIONSTORE,
# SORT (due to the STORE argument), and EXEC (if the transaction includes any
# command that requires memory).
#
# The default is:
#
# maxmemory-policy noeviction
# LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
# algorithms (in order to save memory), so you can tune it for speed or
# accuracy. By default Redis will check five keys and pick the one that was
# used least recently, you can change the sample size using the following
# configuration directive.
#
# The default of 5 produces good enough results. 10 Approximates very closely
# true LRU but costs more CPU. 3 is faster but not very accurate.
#
# maxmemory-samples 5
# Eviction processing is designed to function well with the default setting.
# If there is an unusually large amount of write traffic, this value may need to
# be increased. Decreasing this value may reduce latency at the risk of
# eviction processing effectiveness
# 0 = minimum latency, 10 = default, 100 = process without regard to latency
#
# maxmemory-eviction-tenacity 10
# Starting from Redis 5, by default a replica will ignore its maxmemory setting
# (unless it is promoted to master after a failover or manually). It means
# that the eviction of keys will be just handled by the master, sending the
# DEL commands to the replica as keys evict in the master side.
#
# This behavior ensures that masters and replicas stay consistent, and is usually
# what you want, however if your replica is writable, or you want the replica
# to have a different memory setting, and you are sure all the writes performed
# to the replica are idempotent, then you may change this default (but be sure
# to understand what you are doing).
#
# Note that since the replica by default does not evict, it may end using more
# memory than the one set via maxmemory (there are certain buffers that may
# be larger on the replica, or data structures may sometimes take more memory
# and so forth). So make sure you monitor your replicas and make sure they
# have enough memory to never hit a real out-of-memory condition before the
# master hits the configured maxmemory setting.
#
# replica-ignore-maxmemory yes
# Redis reclaims expired keys in two ways: upon access when those keys are
# found to be expired, and also in background, in what is called the
# "active expire key". The key space is slowly and interactively scanned
# looking for expired keys to reclaim, so that it is possible to free memory
# of keys that are expired and will never be accessed again in a short time.
#
# The default effort of the expire cycle will try to avoid having more than
# ten percent of expired keys still in memory, and will try to avoid consuming
# more than 25% of total memory and to add latency to the system. However
# it is possible to increase the expire "effort" that is normally set to
# "1", to a greater value, up to the value "10". At its maximum value the
# system will use more CPU, longer cycles (and technically may introduce
# more latency), and will tolerate less already expired keys still present
# in the system. It's a tradeoff between memory, CPU and latency.
#
# active-expire-effort 1
############################# LAZY FREEING ####################################
# Redis has two primitives to delete keys. One is called DEL and is a blocking
# deletion of the object. It means that the server stops processing new commands
# in order to reclaim all the memory associated with an object in a synchronous
# way. If the key deleted is associated with a small object, the time needed
# in order to execute the DEL command is very small and comparable to most other
# O(1) or O(log_N) commands in Redis. However if the key is associated with an
# aggregated value containing millions of elements, the server can block for
# a long time (even seconds) in order to complete the operation.
#
# For the above reasons Redis also offers non blocking deletion primitives
# such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and
# FLUSHDB commands, in order to reclaim memory in background. Those commands
# are executed in constant time. Another thread will incrementally free the
# object in the background as fast as possible.
#
# DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled.
# It's up to the design of the application to understand when it is a good
# idea to use one or the other. However the Redis server sometimes has to
# delete keys or flush the whole database as a side effect of other operations.
# Specifically Redis deletes objects independently of a user call in the
# following scenarios:
#
# 1) On eviction, because of the maxmemory and maxmemory policy configurations,
# in order to make room for new data, without going over the specified
# memory limit.
# 2) Because of expire: when a key with an associated time to live (see the
# EXPIRE command) must be deleted from memory.
# 3) Because of a side effect of a command that stores data on a key that may
# already exist. For example the RENAME command may delete the old key
# content when it is replaced with another one. Similarly SUNIONSTORE
# or SORT with STORE option may delete existing keys. The SET command
# itself removes any old content of the specified key in order to replace
# it with the specified string.
# 4) During replication, when a replica performs a full resynchronization with
# its master, the content of the whole database is removed in order to
# load the RDB file just transferred.
#
# In all the above cases the default is to delete objects in a blocking way,
# like if DEL was called. However you can configure each case specifically
# in order to instead release memory in a non-blocking way like if UNLINK
# was called, using the following configuration directives.
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no
# It is also possible, for the case when to replace the user code DEL calls
# with UNLINK calls is not easy, to modify the default behavior of the DEL
# command to act exactly like UNLINK, using the following configuration
# directive:
lazyfree-lazy-user-del no
# FLUSHDB, FLUSHALL, SCRIPT FLUSH and FUNCTION FLUSH support both asynchronous and synchronous
# deletion, which can be controlled by passing the [SYNC|ASYNC] flags into the
# commands. When neither flag is passed, this directive will be used to determine
# if the data should be deleted asynchronously.
lazyfree-lazy-user-flush no
################################ THREADED I/O #################################
# Redis is mostly single threaded, however there are certain threaded
# operations such as UNLINK, slow I/O accesses and other things that are
# performed on side threads.
#
# Now it is also possible to handle Redis clients socket reads and writes
# in different I/O threads. Since especially writing is so slow, normally
# Redis users use pipelining in order to speed up the Redis performances per
# core, and spawn multiple instances in order to scale more. Using I/O
# threads it is possible to easily speedup two times Redis without resorting
# to pipelining nor sharding of the instance.
#
# By default threading is disabled, we suggest enabling it only in machines
# that have at least 4 or more cores, leaving at least one spare core.
# Using more than 8 threads is unlikely to help much. We also recommend using
# threaded I/O only if you actually have performance problems, with Redis
# instances being able to use a quite big percentage of CPU time, otherwise
# there is no point in using this feature.
#
# So for instance if you have a four cores boxes, try to use 2 or 3 I/O
# threads, if you have a 8 cores, try to use 6 threads. In order to
# enable I/O threads use the following configuration directive:
#
# io-threads 4
#
# Setting io-threads to 1 will just use the main thread as usual.
# When I/O threads are enabled, we only use threads for writes, that is
# to thread the write(2) syscall and transfer the client buffers to the
# socket. However it is also possible to enable threading of reads and
# protocol parsing using the following configuration directive, by setting
# it to yes:
#
# io-threads-do-reads no
#
# Usually threading reads doesn't help much.
#
# NOTE 1: This configuration directive cannot be changed at runtime via
# CONFIG SET. Also, this feature currently does not work when SSL is
# enabled.
#
# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
# sure you also run the benchmark itself in threaded mode, using the
# --threads option to match the number of Redis threads, otherwise you'll not
# be able to notice the improvements.
############################ KERNEL OOM CONTROL ##############################
# On Linux, it is possible to hint the kernel OOM killer on what processes
# should be killed first when out of memory.
#
# Enabling this feature makes Redis actively control the oom_score_adj value
# for all its processes, depending on their role. The default scores will
# attempt to have background child processes killed before all others, and
# replicas killed before masters.
#
# Redis supports these options:
#
# no: Don't make changes to oom-score-adj (default).
# yes: Alias to "relative" see below.
# absolute: Values in oom-score-adj-values are written as is to the kernel.
# relative: Values are used relative to the initial value of oom_score_adj when
# the server starts and are then clamped to a range of -1000 to 1000.
# Because typically the initial value is 0, they will often match the
# absolute values.
oom-score-adj no
# When oom-score-adj is used, this directive controls the specific values used
# for master, replica and background child processes. Values range -2000 to
# 2000 (higher means more likely to be killed).
#
# Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities)
# can freely increase their value, but not decrease it below its initial
# settings. This means that setting oom-score-adj to "relative" and setting the
# oom-score-adj-values to positive values will always succeed.
oom-score-adj-values 0 200 800
#################### KERNEL transparent hugepage CONTROL ######################
# Usually the kernel Transparent Huge Pages control is set to "madvise" or
# or "never" by default (/sys/kernel/mm/transparent_hugepage/enabled), in which
# case this config has no effect. On systems in which it is set to "always",
# redis will attempt to disable it specifically for the redis process in order
# to avoid latency problems specifically with fork(2) and CoW.
# If for some reason you prefer to keep it enabled, you can set this config to
# "no" and the kernel global to "always".
disable-thp yes
############################## APPEND ONLY MODE ###############################
# By default Redis asynchronously dumps the dataset on disk. This mode is
# good enough in many applications, but an issue with the Redis process or
# a power outage may result into a few minutes of writes lost (depending on
# the configured save points).
#
# The Append Only File is an alternative persistence mode that provides
# much better durability. For instance using the default data fsync policy
# (see later in the config file) Redis can lose just one second of writes in a
# dramatic event like a server power outage, or a single write if something
# wrong with the Redis process itself happens, but the operating system is
# still running correctly.
#
# AOF and RDB persistence can be enabled at the same time without problems.
# If the AOF is enabled on startup Redis will load the AOF, that is the file
# with the better durability guarantees.
#
# Please check https://redis.io/topics/persistence for more information.
appendonly no
# The base name of the append only file.
#
# Redis 7 and newer use a set of append-only files to persist the dataset
# and changes applied to it. There are two basic types of files in use:
#
# - Base files, which are a snapshot representing the complete state of the
# dataset at the time the file was created. Base files can be either in
# the form of RDB (binary serialized) or AOF (textual commands).
# - Incremental files, which contain additional commands that were applied
# to the dataset following the previous file.
#
# In addition, manifest files are used to track the files and the order in
# which they were created and should be applied.
#
# Append-only file names are created by Redis following a specific pattern.
# The file name's prefix is based on the 'appendfilename' configuration
# parameter, followed by additional information about the sequence and type.
#
# For example, if appendfilename is set to appendonly.aof, the following file
# names could be derived:
#
# - appendonly.aof.1.base.rdb as a base file.
# - appendonly.aof.1.incr.aof, appendonly.aof.2.incr.aof as incremental files.
# - appendonly.aof.manifest as a manifest file.
appendfilename "appendonly.aof"
# For convenience, Redis stores all persistent append-only files in a dedicated
# directory. The name of the directory is determined by the appenddirname
# configuration parameter.
appenddirname "appendonlydir"
# The fsync() call tells the Operating System to actually write data on disk
# instead of waiting for more data in the output buffer. Some OS will really flush
# data on disk, some other OS will just try to do it ASAP.
#
# Redis supports three different modes:
#
# no: don't fsync, just let the OS flush the data when it wants. Faster.
# always: fsync after every write to the append only log. Slow, Safest.
# everysec: fsync only one time every second. Compromise.
#
# The default is "everysec", as that's usually the right compromise between
# speed and data safety. It's up to you to understand if you can relax this to
# "no" that will let the operating system flush the output buffer when
# it wants, for better performances (but if you can live with the idea of
# some data loss consider the default persistence mode that's snapshotting),
# or on the contrary, use "always" that's very slow but a bit safer than
# everysec.
#
# More details please check the following article:
# http://antirez.com/post/redis-persistence-demystified.html
#
# If unsure, use "everysec".
# appendfsync always
appendfsync everysec
# appendfsync no
# When the AOF fsync policy is set to always or everysec, and a background
# saving process (a background save or AOF log background rewriting) is
# performing a lot of I/O against the disk, in some Linux configurations
# Redis may block too long on the fsync() call. Note that there is no fix for
# this currently, as even performing fsync in a different thread will block
# our synchronous write(2) call.
#
# In order to mitigate this problem it's possible to use the following option
# that will prevent fsync() from being called in the main process while a
# BGSAVE or BGREWRITEAOF is in progress.
#
# This means that while another child is saving, the durability of Redis is
# the same as "appendfsync no". In practical terms, this means that it is
# possible to lose up to 30 seconds of log in the worst scenario (with the
# default Linux settings).
#
# If you have latency problems turn this to "yes". Otherwise leave it as
# "no" that is the safest pick from the point of view of durability.
no-appendfsync-on-rewrite no
# Automatic rewrite of the append only file.
# Redis is able to automatically rewrite the log file implicitly calling
# BGREWRITEAOF when the AOF log size grows by the specified percentage.
#
# This is how it works: Redis remembers the size of the AOF file after the
# latest rewrite (if no rewrite has happened since the restart, the size of
# the AOF at startup is used).
#
# This base size is compared to the current size. If the current size is
# bigger than the specified percentage, the rewrite is triggered. Also
# you need to specify a minimal size for the AOF file to be rewritten, this
# is useful to avoid rewriting the AOF file even if the percentage increase
# is reached but it is still pretty small.
#
# Specify a percentage of zero in order to disable the automatic AOF
# rewrite feature.
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
# An AOF file may be found to be truncated at the end during the Redis
# startup process, when the AOF data gets loaded back into memory.
# This may happen when the system where Redis is running
# crashes, especially when an ext4 filesystem is mounted without the
# data=ordered option (however this can't happen when Redis itself
# crashes or aborts but the operating system still works correctly).
#
# Redis can either exit with an error when this happens, or load as much
# data as possible (the default now) and start if the AOF file is found
# to be truncated at the end. The following option controls this behavior.
#
# If aof-load-truncated is set to yes, a truncated AOF file is loaded and
# the Redis server starts emitting a log to inform the user of the event.
# Otherwise if the option is set to no, the server aborts with an error
# and refuses to start. When the option is set to no, the user requires
# to fix the AOF file using the "redis-check-aof" utility before to restart
# the server.
#
# Note that if the AOF file will be found to be corrupted in the middle
# the server will still exit with an error. This option only applies when
# Redis will try to read more data from the AOF file but not enough bytes
# will be found.
aof-load-truncated yes
# Redis can create append-only base files in either RDB or AOF formats. Using
# the RDB format is always faster and more efficient, and disabling it is only
# supported for backward compatibility purposes.
aof-use-rdb-preamble yes
# Redis supports recording timestamp annotations in the AOF to support restoring
# the data from a specific point-in-time. However, using this capability changes
# the AOF format in a way that may not be compatible with existing AOF parsers.
aof-timestamp-enabled no
################################ SHUTDOWN #####################################
# Maximum time to wait for replicas when shutting down, in seconds.
#
# During shut down, a grace period allows any lagging replicas to catch up with
# the latest replication offset before the master exists. This period can
# prevent data loss, especially for deployments without configured disk backups.
#
# The 'shutdown-timeout' value is the grace period's duration in seconds. It is
# only applicable when the instance has replicas. To disable the feature, set
# the value to 0.
#
# shutdown-timeout 10
# When Redis receives a SIGINT or SIGTERM, shutdown is initiated and by default
# an RDB snapshot is written to disk in a blocking operation if save points are configured.
# The options used on signaled shutdown can include the following values:
# default: Saves RDB snapshot only if save points are configured.
# Waits for lagging replicas to catch up.
# save: Forces a DB saving operation even if no save points are configured.
# nosave: Prevents DB saving operation even if one or more save points are configured.
# now: Skips waiting for lagging replicas.
# force: Ignores any errors that would normally prevent the server from exiting.
#
# Any combination of values is allowed as long as "save" and "nosave" are not set simultaneously.
# Example: "nosave force now"
#
# shutdown-on-sigint default
# shutdown-on-sigterm default
################ NON-DETERMINISTIC LONG BLOCKING COMMANDS #####################
# Maximum time in milliseconds for EVAL scripts, functions and in some cases
# modules' commands before Redis can start processing or rejecting other clients.
#
# If the maximum execution time is reached Redis will start to reply to most
# commands with a BUSY error.
#
# In this state Redis will only allow a handful of commands to be executed.
# For instance, SCRIPT KILL, FUNCTION KILL, SHUTDOWN NOSAVE and possibly some
# module specific 'allow-busy' commands.
#
# SCRIPT KILL and FUNCTION KILL will only be able to stop a script that did not
# yet call any write commands, so SHUTDOWN NOSAVE may be the only way to stop
# the server in the case a write command was already issued by the script when
# the user doesn't want to wait for the natural termination of the script.
#
# The default is 5 seconds. It is possible to set it to 0 or a negative value
# to disable this mechanism (uninterrupted execution). Note that in the past
# this config had a different name, which is now an alias, so both of these do
# the same:
# lua-time-limit 5000
# busy-reply-threshold 5000
################################ REDIS CLUSTER ###############################
# Normal Redis instances can't be part of a Redis Cluster; only nodes that are
# started as cluster nodes can. In order to start a Redis instance as a
# cluster node enable the cluster support uncommenting the following:
#
cluster-enabled yes
# Every cluster node has a cluster configuration file. This file is not
# intended to be edited by hand. It is created and updated by Redis nodes.
# Every Redis Cluster node requires a different cluster configuration file.
# Make sure that instances running in the same system do not have
# overlapping cluster configuration file names.
#
cluster-config-file nodes-6379.conf
# Cluster node timeout is the amount of milliseconds a node must be unreachable
# for it to be considered in failure state.
# Most other internal time limits are a multiple of the node timeout.
#
cluster-node-timeout 15000
# The cluster port is the port that the cluster bus will listen for inbound connections on. When set
# to the default value, 0, it will be bound to the command port + 10000. Setting this value requires
# you to specify the cluster bus port when executing cluster meet.
cluster-port 16379
# A replica of a failing master will avoid to start a failover if its data
# looks too old.
#
# There is no simple way for a replica to actually have an exact measure of
# its "data age", so the following two checks are performed:
#
# 1) If there are multiple replicas able to failover, they exchange messages
# in order to try to give an advantage to the replica with the best
# replication offset (more data from the master processed).
# Replicas will try to get their rank by offset, and apply to the start
# of the failover a delay proportional to their rank.
#
# 2) Every single replica computes the time of the last interaction with
# its master. This can be the last ping or command received (if the master
# is still in the "connected" state), or the time that elapsed since the
# disconnection with the master (if the replication link is currently down).
# If the last interaction is too old, the replica will not try to failover
# at all.
#
# The point "2" can be tuned by user. Specifically a replica will not perform
# the failover if, since the last interaction with the master, the time
# elapsed is greater than:
#
# (node-timeout * cluster-replica-validity-factor) + repl-ping-replica-period
#
# So for example if node-timeout is 30 seconds, and the cluster-replica-validity-factor
# is 10, and assuming a default repl-ping-replica-period of 10 seconds, the
# replica will not try to failover if it was not able to talk with the master
# for longer than 310 seconds.
#
# A large cluster-replica-validity-factor may allow replicas with too old data to failover
# a master, while a too small value may prevent the cluster from being able to
# elect a replica at all.
#
# For maximum availability, it is possible to set the cluster-replica-validity-factor
# to a value of 0, which means, that replicas will always try to failover the
# master regardless of the last time they interacted with the master.
# (However they'll always try to apply a delay proportional to their
# offset rank).
#
# Zero is the only value able to guarantee that when all the partitions heal
# the cluster will always be able to continue.
#
cluster-replica-validity-factor 10
# Cluster replicas are able to migrate to orphaned masters, that are masters
# that are left without working replicas. This improves the cluster ability
# to resist to failures as otherwise an orphaned master can't be failed over
# in case of failure if it has no working replicas.
#
# Replicas migrate to orphaned masters only if there are still at least a
# given number of other working replicas for their old master. This number
# is the "migration barrier". A migration barrier of 1 means that a replica
# will migrate only if there is at least 1 other working replica for its master
# and so forth. It usually reflects the number of replicas you want for every
# master in your cluster.
#
# Default is 1 (replicas migrate only if their masters remain with at least
# one replica). To disable migration just set it to a very large value or
# set cluster-allow-replica-migration to 'no'.
# A value of 0 can be set but is useful only for debugging and dangerous
# in production.
#
cluster-migration-barrier 1
# Turning off this option allows to use less automatic cluster configuration.
# It both disables migration to orphaned masters and migration from masters
# that became empty.
#
# Default is 'yes' (allow automatic migrations).
#
cluster-allow-replica-migration yes
# By default Redis Cluster nodes stop accepting queries if they detect there
# is at least a hash slot uncovered (no available node is serving it).
# This way if the cluster is partially down (for example a range of hash slots
# are no longer covered) all the cluster becomes, eventually, unavailable.
# It automatically returns available as soon as all the slots are covered again.
#
# However sometimes you want the subset of the cluster which is working,
# to continue to accept queries for the part of the key space that is still
# covered. In order to do so, just set the cluster-require-full-coverage
# option to no.
#
cluster-require-full-coverage no
# This option, when set to yes, prevents replicas from trying to failover its
# master during master failures. However the replica can still perform a
# manual failover, if forced to do so.
#
# This is useful in different scenarios, especially in the case of multiple
# data center operations, where we want one side to never be promoted if not
# in the case of a total DC failure.
#
cluster-replica-no-failover no
# This option, when set to yes, allows nodes to serve read traffic while the
# cluster is in a down state, as long as it believes it owns the slots.
#
# This is useful for two cases. The first case is for when an application
# doesn't require consistency of data during node failures or network partitions.
# One example of this is a cache, where as long as the node has the data it
# should be able to serve it.
#
# The second use case is for configurations that don't meet the recommended
# three shards but want to enable cluster mode and scale later. A
# master outage in a 1 or 2 shard configuration causes a read/write outage to the
# entire cluster without this option set, with it set there is only a write outage.
# Without a quorum of masters, slot ownership will not change automatically.
#
cluster-allow-reads-when-down no
# This option, when set to yes, allows nodes to serve pubsub shard traffic while
# the cluster is in a down state, as long as it believes it owns the slots.
#
# This is useful if the application would like to use the pubsub feature even when
# the cluster global stable state is not OK. If the application wants to make sure only
# one shard is serving a given channel, this feature should be kept as yes.
#
cluster-allow-pubsubshard-when-down yes
# Cluster link send buffer limit is the limit on the memory usage of an individual
# cluster bus link's send buffer in bytes. Cluster links would be freed if they exceed
# this limit. This is to primarily prevent send buffers from growing unbounded on links
# toward slow peers (E.g. PubSub messages being piled up).
# This limit is disabled by default. Enable this limit when 'mem_cluster_links' INFO field
# and/or 'send-buffer-allocated' entries in the 'CLUSTER LINKS` command output continuously increase.
# Minimum limit of 1gb is recommended so that cluster link buffer can fit in at least a single
# PubSub message by default. (client-query-buffer-limit default value is 1gb)
#
cluster-link-sendbuf-limit 0
# Clusters can configure their announced hostname using this config. This is a common use case for
# applications that need to use TLS Server Name Indication (SNI) or dealing with DNS based
# routing. By default this value is only shown as additional metadata in the CLUSTER SLOTS
# command, but can be changed using 'cluster-preferred-endpoint-type' config. This value is
# communicated along the clusterbus to all nodes, setting it to an empty string will remove
# the hostname and also propagate the removal.
#
# cluster-announce-hostname ""
# Clusters can advertise how clients should connect to them using either their IP address,
# a user defined hostname, or by declaring they have no endpoint. Which endpoint is
# shown as the preferred endpoint is set by using the cluster-preferred-endpoint-type
# config with values 'ip', 'hostname', or 'unknown-endpoint'. This value controls how
# the endpoint returned for MOVED/ASKING requests as well as the first field of CLUSTER SLOTS.
# If the preferred endpoint type is set to hostname, but no announced hostname is set, a '?'
# will be returned instead.
#
# When a cluster advertises itself as having an unknown endpoint, it's indicating that
# the server doesn't know how clients can reach the cluster. This can happen in certain
# networking situations where there are multiple possible routes to the node, and the
# server doesn't know which one the client took. In this case, the server is expecting
# the client to reach out on the same endpoint it used for making the last request, but use
# the port provided in the response.
#
# cluster-preferred-endpoint-type ip
# In order to setup your cluster make sure to read the documentation
# available at https://redis.io web site.
########################## CLUSTER DOCKER/NAT support ########################
# In certain deployments, Redis Cluster nodes address discovery fails, because
# addresses are NAT-ted or because ports are forwarded (the typical case is
# Docker and other containers).
#
# In order to make Redis Cluster working in such environments, a static
# configuration where each node knows its public address is needed. The
# following four options are used for this scope, and are:
#
# * cluster-announce-ip
# * cluster-announce-port
# * cluster-announce-tls-port
# * cluster-announce-bus-port
#
# Each instructs the node about its address, client ports (for connections
# without and with TLS) and cluster message bus port. The information is then
# published in the header of the bus packets so that other nodes will be able to
# correctly map the address of the node publishing the information.
#
# If cluster-tls is set to yes and cluster-announce-tls-port is omitted or set
# to zero, then cluster-announce-port refers to the TLS port. Note also that
# cluster-announce-tls-port has no effect if cluster-tls is set to no.
#
# If the above options are not used, the normal Redis Cluster auto-detection
# will be used instead.
#
# Note that when remapped, the bus port may not be at the fixed offset of
# clients port + 10000, so you can specify any port and bus-port depending
# on how they get remapped. If the bus-port is not set, a fixed offset of
# 10000 will be used as usual.
#
# Example:
#
# cluster-announce-ip 10.1.1.5
# cluster-announce-tls-port 6379
# cluster-announce-port 0
# cluster-announce-bus-port 6380
################################## SLOW LOG ###################################
# The Redis Slow Log is a system to log queries that exceeded a specified
# execution time. The execution time does not include the I/O operations
# like talking with the client, sending the reply and so forth,
# but just the time needed to actually execute the command (this is the only
# stage of command execution where the thread is blocked and can not serve
# other requests in the meantime).
#
# You can configure the slow log with two parameters: one tells Redis
# what is the execution time, in microseconds, to exceed in order for the
# command to get logged, and the other parameter is the length of the
# slow log. When a new command is logged the oldest one is removed from the
# queue of logged commands.
# The following time is expressed in microseconds, so 1000000 is equivalent
# to one second. Note that a negative number disables the slow log, while
# a value of zero forces the logging of every command.
slowlog-log-slower-than 10000
# There is no limit to this length. Just be aware that it will consume memory.
# You can reclaim memory used by the slow log with SLOWLOG RESET.
slowlog-max-len 128
################################ LATENCY MONITOR ##############################
# The Redis latency monitoring subsystem samples different operations
# at runtime in order to collect data related to possible sources of
# latency of a Redis instance.
#
# Via the LATENCY command this information is available to the user that can
# print graphs and obtain reports.
#
# The system only logs operations that were performed in a time equal or
# greater than the amount of milliseconds specified via the
# latency-monitor-threshold configuration directive. When its value is set
# to zero, the latency monitor is turned off.
#
# By default latency monitoring is disabled since it is mostly not needed
# if you don't have latency issues, and collecting data has a performance
# impact, that while very small, can be measured under big load. Latency
# monitoring can easily be enabled at runtime using the command
# "CONFIG SET latency-monitor-threshold <milliseconds>" if needed.
latency-monitor-threshold 0
################################ LATENCY TRACKING ##############################
# The Redis extended latency monitoring tracks the per command latencies and enables
# exporting the percentile distribution via the INFO latencystats command,
# and cumulative latency distributions (histograms) via the LATENCY command.
#
# By default, the extended latency monitoring is enabled since the overhead
# of keeping track of the command latency is very small.
# latency-tracking yes
# By default the exported latency percentiles via the INFO latencystats command
# are the p50, p99, and p999.
# latency-tracking-info-percentiles 50 99 99.9
############################# EVENT NOTIFICATION ##############################
# Redis can notify Pub/Sub clients about events happening in the key space.
# This feature is documented at https://redis.io/topics/notifications
#
# For instance if keyspace events notification is enabled, and a client
# performs a DEL operation on key "foo" stored in the Database 0, two
# messages will be published via Pub/Sub:
#
# PUBLISH __keyspace@0__:foo del
# PUBLISH __keyevent@0__:del foo
#
# It is possible to select the events that Redis will notify among a set
# of classes. Every class is identified by a single character:
#
# K Keyspace events, published with __keyspace@<db>__ prefix.
# E Keyevent events, published with __keyevent@<db>__ prefix.
# g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
# $ String commands
# l List commands
# s Set commands
# h Hash commands
# z Sorted set commands
# x Expired events (events generated every time a key expires)
# e Evicted events (events generated when a key is evicted for maxmemory)
# n New key events (Note: not included in the 'A' class)
# t Stream commands
# d Module key type events
# m Key-miss events (Note: It is not included in the 'A' class)
# A Alias for g$lshzxetd, so that the "AKE" string means all the events
# (Except key-miss events which are excluded from 'A' due to their
# unique nature).
#
# The "notify-keyspace-events" takes as argument a string that is composed
# of zero or multiple characters. The empty string means that notifications
# are disabled.
#
# Example: to enable list and generic events, from the point of view of the
# event name, use:
#
# notify-keyspace-events Elg
#
# Example 2: to get the stream of the expired keys subscribing to channel
# name __keyevent@0__:expired use:
#
# notify-keyspace-events Ex
#
# By default all notifications are disabled because most users don't need
# this feature and the feature has some overhead. Note that if you don't
# specify at least one of K or E, no events will be delivered.
notify-keyspace-events ""
############################### ADVANCED CONFIG ###############################
# Hashes are encoded using a memory efficient data structure when they have a
# small number of entries, and the biggest entry does not exceed a given
# threshold. These thresholds can be configured using the following directives.
hash-max-listpack-entries 512
hash-max-listpack-value 64
# Lists are also encoded in a special way to save a lot of space.
# The number of entries allowed per internal list node can be specified
# as a fixed maximum size or a maximum number of elements.
# For a fixed maximum size, use -5 through -1, meaning:
# -5: max size: 64 Kb <-- not recommended for normal workloads
# -4: max size: 32 Kb <-- not recommended
# -3: max size: 16 Kb <-- probably not recommended
# -2: max size: 8 Kb <-- good
# -1: max size: 4 Kb <-- good
# Positive numbers mean store up to _exactly_ that number of elements
# per list node.
# The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size),
# but if your use case is unique, adjust the settings as necessary.
list-max-listpack-size -2
# Lists may also be compressed.
# Compress depth is the number of quicklist ziplist nodes from *each* side of
# the list to *exclude* from compression. The head and tail of the list
# are always uncompressed for fast push/pop operations. Settings are:
# 0: disable all list compression
# 1: depth 1 means "don't start compressing until after 1 node into the list,
# going from either the head or tail"
# So: [head]->node->node->...->node->[tail]
# [head], [tail] will always be uncompressed; inner nodes will compress.
# 2: [head]->[next]->node->node->...->node->[prev]->[tail]
# 2 here means: don't compress head or head->next or tail->prev or tail,
# but compress all nodes between them.
# 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail]
# etc.
list-compress-depth 0
# Sets have a special encoding in just one case: when a set is composed
# of just strings that happen to be integers in radix 10 in the range
# of 64 bit signed integers.
# The following configuration setting sets the limit in the size of the
# set in order to use this special memory saving encoding.
set-max-intset-entries 512
# Similarly to hashes and lists, sorted sets are also specially encoded in
# order to save a lot of space. This encoding is only used when the length and
# elements of a sorted set are below the following limits:
zset-max-listpack-entries 128
zset-max-listpack-value 64
# HyperLogLog sparse representation bytes limit. The limit includes the
# 16 bytes header. When an HyperLogLog using the sparse representation crosses
# this limit, it is converted into the dense representation.
#
# A value greater than 16000 is totally useless, since at that point the
# dense representation is more memory efficient.
#
# The suggested value is ~ 3000 in order to have the benefits of
# the space efficient encoding without slowing down too much PFADD,
# which is O(N) with the sparse encoding. The value can be raised to
# ~ 10000 when CPU is not a concern, but space is, and the data set is
# composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
hll-sparse-max-bytes 3000
# Streams macro node max size / items. The stream data structure is a radix
# tree of big nodes that encode multiple items inside. Using this configuration
# it is possible to configure how big a single node can be in bytes, and the
# maximum number of items it may contain before switching to a new node when
# appending new stream entries. If any of the following settings are set to
# zero, the limit is ignored, so for instance it is possible to set just a
# max entries limit by setting max-bytes to 0 and max-entries to the desired
# value.
stream-node-max-bytes 4096
stream-node-max-entries 100
# Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
# order to help rehashing the main Redis hash table (the one mapping top-level
# keys to values). The hash table implementation Redis uses (see dict.c)
# performs a lazy rehashing: the more operation you run into a hash table
# that is rehashing, the more rehashing "steps" are performed, so if the
# server is idle the rehashing is never complete and some more memory is used
# by the hash table.
#
# The default is to use this millisecond 10 times every second in order to
# actively rehash the main dictionaries, freeing memory when possible.
#
# If unsure:
# use "activerehashing no" if you have hard latency requirements and it is
# not a good thing in your environment that Redis can reply from time to time
# to queries with 2 milliseconds delay.
#
# use "activerehashing yes" if you don't have such hard requirements but
# want to free memory asap when possible.
activerehashing yes
# The client output buffer limits can be used to force disconnection of clients
# that are not reading data from the server fast enough for some reason (a
# common reason is that a Pub/Sub client can't consume messages as fast as the
# publisher can produce them).
#
# The limit can be set differently for the three different classes of clients:
#
# normal -> normal clients including MONITOR clients
# replica -> replica clients
# pubsub -> clients subscribed to at least one pubsub channel or pattern
#
# The syntax of every client-output-buffer-limit directive is the following:
#
# client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
#
# A client is immediately disconnected once the hard limit is reached, or if
# the soft limit is reached and remains reached for the specified number of
# seconds (continuously).
# So for instance if the hard limit is 32 megabytes and the soft limit is
# 16 megabytes / 10 seconds, the client will get disconnected immediately
# if the size of the output buffers reach 32 megabytes, but will also get
# disconnected if the client reaches 16 megabytes and continuously overcomes
# the limit for 10 seconds.
#
# By default normal clients are not limited because they don't receive data
# without asking (in a push way), but just after a request, so only
# asynchronous clients may create a scenario where data is requested faster
# than it can read.
#
# Instead there is a default limit for pubsub and replica clients, since
# subscribers and replicas receive data in a push fashion.
#
# Note that it doesn't make sense to set the replica clients output buffer
# limit lower than the repl-backlog-size config (partial sync will succeed
# and then replica will get disconnected).
# Such a configuration is ignored (the size of repl-backlog-size will be used).
# This doesn't have memory consumption implications since the replica client
# will share the backlog buffers memory.
#
# Both the hard or the soft limit can be disabled by setting them to zero.
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
# Client query buffers accumulate new commands. They are limited to a fixed
# amount by default in order to avoid that a protocol desynchronization (for
# instance due to a bug in the client) will lead to unbound memory usage in
# the query buffer. However you can configure it here if you have very special
# needs, such us huge multi/exec requests or alike.
#
# client-query-buffer-limit 1gb
# In some scenarios client connections can hog up memory leading to OOM
# errors or data eviction. To avoid this we can cap the accumulated memory
# used by all client connections (all pubsub and normal clients). Once we
# reach that limit connections will be dropped by the server freeing up
# memory. The server will attempt to drop the connections using the most
# memory first. We call this mechanism "client eviction".
#
# Client eviction is configured using the maxmemory-clients setting as follows:
# 0 - client eviction is disabled (default)
#
# A memory value can be used for the client eviction threshold,
# for example:
# maxmemory-clients 1g
#
# A percentage value (between 1% and 100%) means the client eviction threshold
# is based on a percentage of the maxmemory setting. For example to set client
# eviction at 5% of maxmemory:
# maxmemory-clients 5%
# In the Redis protocol, bulk requests, that are, elements representing single
# strings, are normally limited to 512 mb. However you can change this limit
# here, but must be 1mb or greater
#
# proto-max-bulk-len 512mb
# Redis calls an internal function to perform many background tasks, like
# closing connections of clients in timeout, purging expired keys that are
# never requested, and so forth.
#
# Not all tasks are performed with the same frequency, but Redis checks for
# tasks to perform according to the specified "hz" value.
#
# By default "hz" is set to 10. Raising the value will use more CPU when
# Redis is idle, but at the same time will make Redis more responsive when
# there are many keys expiring at the same time, and timeouts may be
# handled with more precision.
#
# The range is between 1 and 500, however a value over 100 is usually not
# a good idea. Most users should use the default of 10 and raise this up to
# 100 only in environments where very low latency is required.
hz 10
# Normally it is useful to have an HZ value which is proportional to the
# number of clients connected. This is useful in order, for instance, to
# avoid too many clients are processed for each background task invocation
# in order to avoid latency spikes.
#
# Since the default HZ value by default is conservatively set to 10, Redis
# offers, and enables by default, the ability to use an adaptive HZ value
# which will temporarily raise when there are many connected clients.
#
# When dynamic HZ is enabled, the actual configured HZ will be used
# as a baseline, but multiples of the configured HZ value will be actually
# used as needed once more clients are connected. In this way an idle
# instance will use very little CPU time while a busy instance will be
# more responsive.
dynamic-hz yes
# When a child rewrites the AOF file, if the following option is enabled
# the file will be fsync-ed every 4 MB of data generated. This is useful
# in order to commit the file to the disk more incrementally and avoid
# big latency spikes.
aof-rewrite-incremental-fsync yes
# When redis saves RDB file, if the following option is enabled
# the file will be fsync-ed every 4 MB of data generated. This is useful
# in order to commit the file to the disk more incrementally and avoid
# big latency spikes.
rdb-save-incremental-fsync yes
# Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good
# idea to start with the default settings and only change them after investigating
# how to improve the performances and how the keys LFU change over time, which
# is possible to inspect via the OBJECT FREQ command.
#
# There are two tunable parameters in the Redis LFU implementation: the
# counter logarithm factor and the counter decay time. It is important to
# understand what the two parameters mean before changing them.
#
# The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis
# uses a probabilistic increment with logarithmic behavior. Given the value
# of the old counter, when a key is accessed, the counter is incremented in
# this way:
#
# 1. A random number R between 0 and 1 is extracted.
# 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1).
# 3. The counter is incremented only if R < P.
#
# The default lfu-log-factor is 10. This is a table of how the frequency
# counter changes with a different number of accesses with different
# logarithmic factors:
#
# +--------+------------+------------+------------+------------+------------+
# | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits |
# +--------+------------+------------+------------+------------+------------+
# | 0 | 104 | 255 | 255 | 255 | 255 |
# +--------+------------+------------+------------+------------+------------+
# | 1 | 18 | 49 | 255 | 255 | 255 |
# +--------+------------+------------+------------+------------+------------+
# | 10 | 10 | 18 | 142 | 255 | 255 |
# +--------+------------+------------+------------+------------+------------+
# | 100 | 8 | 11 | 49 | 143 | 255 |
# +--------+------------+------------+------------+------------+------------+
#
# NOTE: The above table was obtained by running the following commands:
#
# redis-benchmark -n 1000000 incr foo
# redis-cli object freq foo
#
# NOTE 2: The counter initial value is 5 in order to give new objects a chance
# to accumulate hits.
#
# The counter decay time is the time, in minutes, that must elapse in order
# for the key counter to be divided by two (or decremented if it has a value
# less <= 10).
#
# The default value for the lfu-decay-time is 1. A special value of 0 means to
# decay the counter every time it happens to be scanned.
#
# lfu-log-factor 10
# lfu-decay-time 1
########################### ACTIVE DEFRAGMENTATION #######################
#
# What is active defragmentation?
# -------------------------------
#
# Active (online) defragmentation allows a Redis server to compact the
# spaces left between small allocations and deallocations of data in memory,
# thus allowing to reclaim back memory.
#
# Fragmentation is a natural process that happens with every allocator (but
# less so with Jemalloc, fortunately) and certain workloads. Normally a server
# restart is needed in order to lower the fragmentation, or at least to flush
# away all the data and create it again. However thanks to this feature
# implemented by Oran Agra for Redis 4.0 this process can happen at runtime
# in a "hot" way, while the server is running.
#
# Basically when the fragmentation is over a certain level (see the
# configuration options below) Redis will start to create new copies of the
# values in contiguous memory regions by exploiting certain specific Jemalloc
# features (in order to understand if an allocation is causing fragmentation
# and to allocate it in a better place), and at the same time, will release the
# old copies of the data. This process, repeated incrementally for all the keys
# will cause the fragmentation to drop back to normal values.
#
# Important things to understand:
#
# 1. This feature is disabled by default, and only works if you compiled Redis
# to use the copy of Jemalloc we ship with the source code of Redis.
# This is the default with Linux builds.
#
# 2. You never need to enable this feature if you don't have fragmentation
# issues.
#
# 3. Once you experience fragmentation, you can enable this feature when
# needed with the command "CONFIG SET activedefrag yes".
#
# The configuration parameters are able to fine tune the behavior of the
# defragmentation process. If you are not sure about what they mean it is
# a good idea to leave the defaults untouched.
# Active defragmentation is disabled by default
# activedefrag no
# Minimum amount of fragmentation waste to start active defrag
# active-defrag-ignore-bytes 100mb
# Minimum percentage of fragmentation to start active defrag
# active-defrag-threshold-lower 10
# Maximum percentage of fragmentation at which we use maximum effort
# active-defrag-threshold-upper 100
# Minimal effort for defrag in CPU percentage, to be used when the lower
# threshold is reached
# active-defrag-cycle-min 1
# Maximal effort for defrag in CPU percentage, to be used when the upper
# threshold is reached
# active-defrag-cycle-max 25
# Maximum number of set/hash/zset/list fields that will be processed from
# the main dictionary scan
# active-defrag-max-scan-fields 1000
# Jemalloc background thread for purging will be enabled by default
jemalloc-bg-thread yes
# It is possible to pin different threads and processes of Redis to specific
# CPUs in your system, in order to maximize the performances of the server.
# This is useful both in order to pin different Redis threads in different
# CPUs, but also in order to make sure that multiple Redis instances running
# in the same host will be pinned to different CPUs.
#
# Normally you can do this using the "taskset" command, however it is also
# possible to this via Redis configuration directly, both in Linux and FreeBSD.
#
# You can pin the server/IO threads, bio threads, aof rewrite child process, and
# the bgsave child process. The syntax to specify the cpu list is the same as
# the taskset command:
#
# Set redis server/io threads to cpu affinity 0,2,4,6:
# server_cpulist 0-7:2
#
# Set bio threads to cpu affinity 1,3:
# bio_cpulist 1,3
#
# Set aof rewrite child process to cpu affinity 8,9,10,11:
# aof_rewrite_cpulist 8-11
#
# Set bgsave child process to cpu affinity 1,10,11
# bgsave_cpulist 1,10-11
# In some cases redis will emit warnings and even refuse to start if it detects
# that the system is in bad state, it is possible to suppress these warnings
# by setting the following config which takes a space delimited list of warnings
# to suppress
#
# ignore-warnings ARM64-COW-BUG | 24,850 | 8,818 |
hyperswitch | config/grafana.ini | .ini | ##################### Grafana Configuration Defaults #####################
#
# Do not modify this file in grafana installs
#
# possible values : production, development
app_mode = production
# instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty
instance_name = ${HOSTNAME}
# force migration will run migrations that might cause dataloss
force_migration = false
#################################### Paths ###############################
[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = data
# Temporary files in `data` directory older than given duration will be removed
temp_data_lifetime = 24h
# Directory where grafana can store logs
logs = data/log
# Directory where grafana will automatically scan and look for plugins
plugins = data/plugins
# folder that contains provisioning config files that grafana will apply on startup and while running.
provisioning = conf/provisioning
#################################### Server ##############################
[server]
# Protocol (http, https, h2, socket)
protocol = http
# The ip address to bind to, empty will bind to all interfaces
http_addr =
# The http port to use
http_port = 3000
# The public facing domain name used to access grafana from a browser
domain = localhost
# Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks
enforce_domain = false
# The full public facing url
root_url = %(protocol)s://%(domain)s:%(http_port)s/
# Serve Grafana from subpath specified in `root_url` setting. By default it is set to `false` for compatibility reasons.
serve_from_sub_path = false
# Log web requests
router_logging = false
# the path relative working path
static_root_path = public
# enable gzip
enable_gzip = false
# https certs & key file
cert_file =
cert_key =
# Unix socket path
socket = /tmp/grafana.sock
# CDN Url
cdn_url =
# Sets the maximum time in minutes before timing out read of an incoming request and closing idle connections.
# `0` means there is no timeout for reading the request.
read_timeout = 0
#################################### Database ############################
[database]
# You can configure the database connection by specifying type, host, name, user and password
# as separate properties or as on string using the url property.
# Either "mysql", "postgres" or "sqlite3", it's your choice
type = sqlite3
host = 127.0.0.1:3306
name = grafana
user = root
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
password =
# Use either URL or the previous fields to configure the database
# Example: mysql://user:secret@host:port/database
url =
# Max idle conn setting default is 2
max_idle_conn = 2
# Max conn setting default is 0 (mean not set)
max_open_conn =
# Connection Max Lifetime default is 14400 (means 14400 seconds or 4 hours)
conn_max_lifetime = 14400
# Set to true to log the sql calls and execution times.
log_queries =
# For "postgres", use either "disable", "require" or "verify-full"
# For "mysql", use either "true", "false", or "skip-verify".
ssl_mode = disable
# Database drivers may support different transaction isolation levels.
# Currently, only "mysql" driver supports isolation levels.
# If the value is empty - driver's default isolation level is applied.
# For "mysql" use "READ-UNCOMMITTED", "READ-COMMITTED", "REPEATABLE-READ" or "SERIALIZABLE".
isolation_level =
ca_cert_path =
client_key_path =
client_cert_path =
server_cert_name =
# For "sqlite3" only, path relative to data_path setting
path = grafana.db
# For "sqlite3" only. cache mode setting used for connecting to the database
cache_mode = private
# For "mysql" only if migrationLocking feature toggle is set. How many seconds to wait before failing to lock the database for the migrations, default is 0.
locking_attempt_timeout_sec = 0
#################################### Cache server #############################
[remote_cache]
# Either "redis", "memcached" or "database" default is "database"
type = database
# cache connectionstring options
# database: will use Grafana primary database.
# redis: config like redis server e.g. `addr=127.0.0.1:6379,pool_size=100,db=0,ssl=false`. Only addr is required. ssl may be 'true', 'false', or 'insecure'.
# memcache: 127.0.0.1:11211
connstr =
#################################### Data proxy ###########################
[dataproxy]
# This enables data proxy logging, default is false
logging = false
# How long the data proxy waits to read the headers of the response before timing out, default is 30 seconds.
# This setting also applies to core backend HTTP data sources where query requests use an HTTP client with timeout set.
timeout = 30
# How long the data proxy waits to establish a TCP connection before timing out, default is 10 seconds.
dialTimeout = 10
# How many seconds the data proxy waits before sending a keepalive request.
keep_alive_seconds = 30
# How many seconds the data proxy waits for a successful TLS Handshake before timing out.
tls_handshake_timeout_seconds = 10
# How many seconds the data proxy will wait for a server's first response headers after
# fully writing the request headers if the request has an "Expect: 100-continue"
# header. A value of 0 will result in the body being sent immediately, without
# waiting for the server to approve.
expect_continue_timeout_seconds = 1
# Optionally limits the total number of connections per host, including connections in the dialing,
# active, and idle states. On limit violation, dials will block.
# A value of zero (0) means no limit.
max_conns_per_host = 0
# The maximum number of idle connections that Grafana will keep alive.
max_idle_connections = 100
# How many seconds the data proxy keeps an idle connection open before timing out.
idle_conn_timeout_seconds = 90
# If enabled and user is not anonymous, data proxy will add X-Grafana-User header with username into the request.
send_user_header = false
# Limit the amount of bytes that will be read/accepted from responses of outgoing HTTP requests.
response_limit = 0
# Limits the number of rows that Grafana will process from SQL data sources.
row_limit = 1000000
#################################### Analytics ###########################
[analytics]
# Server reporting, sends usage counters to stats.grafana.org every 24 hours.
# No ip addresses are being tracked, only simple counters to track
# running instances, dashboard and error counts. It is very helpful to us.
# Change this option to false to disable reporting.
reporting_enabled = true
# The name of the distributor of the Grafana instance. Ex hosted-grafana, grafana-labs
reporting_distributor = grafana-labs
# Set to false to disable all checks to https://grafana.com
# for new versions of grafana. The check is used
# in some UI views to notify that a grafana update exists.
# This option does not cause any auto updates, nor send any information
# only a GET request to https://raw.githubusercontent.com/grafana/grafana/main/latest.json to get the latest version.
check_for_updates = true
# Set to false to disable all checks to https://grafana.com
# for new versions of plugins. The check is used
# in some UI views to notify that a plugin update exists.
# This option does not cause any auto updates, nor send any information
# only a GET request to https://grafana.com to get the latest versions.
check_for_plugin_updates = true
# Google Analytics universal tracking code, only enabled if you specify an id here
google_analytics_ua_id =
# Google Tag Manager ID, only enabled if you specify an id here
google_tag_manager_id =
# Rudderstack write key, enabled only if rudderstack_data_plane_url is also set
rudderstack_write_key =
# Rudderstack data plane url, enabled only if rudderstack_write_key is also set
rudderstack_data_plane_url =
# Rudderstack SDK url, optional, only valid if rudderstack_write_key and rudderstack_data_plane_url is also set
rudderstack_sdk_url =
# Rudderstack Config url, optional, used by Rudderstack SDK to fetch source config
rudderstack_config_url =
# Application Insights connection string. Specify an URL string to enable this feature.
application_insights_connection_string =
# Optional. Specifies an Application Insights endpoint URL where the endpoint string is wrapped in backticks ``.
application_insights_endpoint_url =
# Controls if the UI contains any links to user feedback forms
feedback_links_enabled = true
#################################### Security ############################
[security]
# disable creation of admin user on first start of grafana
disable_initial_admin_creation = false
# default admin user, created on startup
admin_user = admin
# default admin password, can be changed before first start of grafana, or in profile settings
admin_password = admin
# used for signing
secret_key = MyVerySecretSigningKey
# current key provider used for envelope encryption, default to static value specified by secret_key
encryption_provider = secretKey.v1
# list of configured key providers, space separated (Enterprise only): e.g., awskms.v1 azurekv.v1
available_encryption_providers =
# disable gravatar profile images
disable_gravatar = false
# data source proxy whitelist (ip_or_domain:port separated by spaces)
data_source_proxy_whitelist =
# disable protection against brute force login attempts
disable_brute_force_login_protection = false
# set to true if you host Grafana behind HTTPS. default is false.
cookie_secure = false
# set cookie SameSite attribute. defaults to `lax`. can be set to "lax", "strict", "none" and "disabled"
cookie_samesite = lax
# set to true if you want to allow browsers to render Grafana in a <frame>, <iframe>, <embed> or <object>. default is false.
allow_embedding = false
# Set to true if you want to enable http strict transport security (HSTS) response header.
# HSTS tells browsers that the site should only be accessed using HTTPS.
strict_transport_security = false
# Sets how long a browser should cache HSTS. Only applied if strict_transport_security is enabled.
strict_transport_security_max_age_seconds = 86400
# Set to true if to enable HSTS preloading option. Only applied if strict_transport_security is enabled.
strict_transport_security_preload = false
# Set to true if to enable the HSTS includeSubDomains option. Only applied if strict_transport_security is enabled.
strict_transport_security_subdomains = false
# Set to true to enable the X-Content-Type-Options response header.
# The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised
# in the Content-Type headers should not be changed and be followed.
x_content_type_options = true
# Set to true to enable the X-XSS-Protection header, which tells browsers to stop pages from loading
# when they detect reflected cross-site scripting (XSS) attacks.
x_xss_protection = true
# Enable adding the Content-Security-Policy header to your requests.
# CSP allows to control resources the user agent is allowed to load and helps prevent XSS attacks.
content_security_policy = false
# Set Content Security Policy template used when adding the Content-Security-Policy header to your requests.
# $NONCE in the template includes a random nonce.
# $ROOT_PATH is server.root_url without the protocol.
content_security_policy_template = """script-src 'self' 'unsafe-eval' 'unsafe-inline' 'strict-dynamic' $NONCE;object-src 'none';font-src 'self';style-src 'self' 'unsafe-inline' blob:;img-src * data:;base-uri 'self';connect-src 'self' grafana.com ws://$ROOT_PATH wss://$ROOT_PATH;manifest-src 'self';media-src 'none';form-action 'self';"""
# Controls if old angular plugins are supported or not. This will be disabled by default in future release
angular_support_enabled = true
[security.encryption]
# Defines the time-to-live (TTL) for decrypted data encryption keys stored in memory (cache).
# Please note that small values may cause performance issues due to a high frequency decryption operations.
data_keys_cache_ttl = 15m
# Defines the frequency of data encryption keys cache cleanup interval.
# On every interval, decrypted data encryption keys that reached the TTL are removed from the cache.
data_keys_cache_cleanup_interval = 1m
#################################### Snapshots ###########################
[snapshots]
# snapshot sharing options
external_enabled = true
external_snapshot_url = https://snapshots.raintank.io
external_snapshot_name = Publish to snapshots.raintank.io
# Set to true to enable this Grafana instance act as an external snapshot server and allow unauthenticated requests for
# creating and deleting snapshots.
public_mode = false
# remove expired snapshot
snapshot_remove_expired = true
#################################### Dashboards ##################
[dashboards]
# Number dashboard versions to keep (per dashboard). Default: 20, Minimum: 1
versions_to_keep = 20
# Minimum dashboard refresh interval. When set, this will restrict users to set the refresh interval of a dashboard lower than given interval. Per default this is 5 seconds.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
min_refresh_interval = 5s
# Path to the default home dashboard. If this value is empty, then Grafana uses StaticRootPath + "dashboards/home.json"
default_home_dashboard_path =
################################### Data sources #########################
[datasources]
# Upper limit of data sources that Grafana will return. This limit is a temporary configuration and it will be deprecated when pagination will be introduced on the list data sources API.
datasource_limit = 5000
#################################### Users ###############################
[users]
# disable user signup / registration
allow_sign_up = false
# Allow non admin users to create organizations
allow_org_create = false
# Set to true to automatically assign new users to the default organization (id 1)
auto_assign_org = true
# Set this value to automatically add new users to the provided organization (if auto_assign_org above is set to true)
auto_assign_org_id = 1
# Default role new users will be automatically assigned (if auto_assign_org above is set to true)
auto_assign_org_role = Viewer
# Require email validation before sign up completes
verify_email_enabled = false
# Background text for the user field on the login page
login_hint = email or username
password_hint = password
# Default UI theme ("dark" or "light")
default_theme = dark
# Default locale (supported IETF language tag, such as en-US)
default_locale = en-US
# Path to a custom home page. Users are only redirected to this if the default home dashboard is used. It should match a frontend route and contain a leading slash.
home_page =
# External user management
external_manage_link_url =
external_manage_link_name =
external_manage_info =
# Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard.
viewers_can_edit = false
# Editors can administrate dashboard, folders and teams they create
editors_can_admin = false
# The duration in time a user invitation remains valid before expiring. This setting should be expressed as a duration. Examples: 6h (hours), 2d (days), 1w (week). Default is 24h (24 hours). The minimum supported duration is 15m (15 minutes).
user_invite_max_lifetime_duration = 24h
# Enter a comma-separated list of usernames to hide them in the Grafana UI. These users are shown to Grafana admins and to themselves.
hidden_users =
[auth]
# Login cookie name
login_cookie_name = grafana_session
# The maximum lifetime (duration) an authenticated user can be inactive before being required to login at next visit. Default is 7 days (7d). This setting should be expressed as a duration, e.g. 5m (minutes), 6h (hours), 10d (days), 2w (weeks), 1M (month). The lifetime resets at each successful token rotation (token_rotation_interval_minutes).
login_maximum_inactive_lifetime_duration =
# The maximum lifetime (duration) an authenticated user can be logged in since login time before being required to login. Default is 30 days (30d). This setting should be expressed as a duration, e.g. 5m (minutes), 6h (hours), 10d (days), 2w (weeks), 1M (month).
login_maximum_lifetime_duration =
# How often should auth tokens be rotated for authenticated users when being active. The default is each 10 minutes.
token_rotation_interval_minutes = 10
# Set to true to disable (hide) the login form, useful if you use OAuth
disable_login_form = false
# Set to true to disable the sign out link in the side menu. Useful if you use auth.proxy or auth.jwt.
disable_signout_menu = false
# URL to redirect the user to after sign out
signout_redirect_url =
# Set to true to attempt login with OAuth automatically, skipping the login screen.
# This setting is ignored if multiple OAuth providers are configured.
oauth_auto_login = false
# OAuth state max age cookie duration in seconds. Defaults to 600 seconds.
oauth_state_cookie_max_age = 600
# Skip forced assignment of OrgID 1 or 'auto_assign_org_id' for social logins
oauth_skip_org_role_update_sync = false
# limit of api_key seconds to live before expiration
api_key_max_seconds_to_live = -1
# Set to true to enable SigV4 authentication option for HTTP-based datasources
sigv4_auth_enabled = false
# Set to true to enable verbose logging of SigV4 request signing
sigv4_verbose_logging = false
# Set to true to enable Azure authentication option for HTTP-based datasources
azure_auth_enabled = false
#################################### Anonymous Auth ######################
[auth.anonymous]
# enable anonymous access
enabled = false
# specify organization name that should be used for unauthenticated users
org_name = Main Org.
# specify role for unauthenticated users
org_role = Viewer
# mask the Grafana version number for unauthenticated users
hide_version = false
#################################### GitHub Auth #########################
[auth.github]
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = user:email,read:org
auth_url = https://github.com/login/oauth/authorize
token_url = https://github.com/login/oauth/access_token
api_url = https://api.github.com/user
allowed_domains =
team_ids =
allowed_organizations =
role_attribute_path =
role_attribute_strict = false
#################################### GitLab Auth #########################
[auth.gitlab]
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = api
auth_url = https://gitlab.com/oauth/authorize
token_url = https://gitlab.com/oauth/token
api_url = https://gitlab.com/api/v4
allowed_domains =
allowed_groups =
role_attribute_path =
role_attribute_strict = false
#################################### Google Auth #########################
[auth.google]
enabled = false
allow_sign_up = true
client_id = some_client_id
client_secret =
scopes = https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
auth_url = https://accounts.google.com/o/oauth2/auth
token_url = https://accounts.google.com/o/oauth2/token
api_url = https://www.googleapis.com/oauth2/v1/userinfo
allowed_domains =
hosted_domain =
#################################### Grafana.com Auth ####################
# legacy key names (so they work in env variables)
[auth.grafananet]
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = user:email
allowed_organizations =
[auth.grafana_com]
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = user:email
allowed_organizations =
#################################### Azure AD OAuth #######################
[auth.azuread]
name = Azure AD
enabled = false
allow_sign_up = true
client_id = some_client_id
client_secret =
scopes = openid email profile
auth_url = https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize
token_url = https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/token
allowed_domains =
allowed_groups =
role_attribute_strict = false
#################################### Okta OAuth #######################
[auth.okta]
name = Okta
icon = okta
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = openid profile email groups
auth_url = https://<tenant-id>.okta.com/oauth2/v1/authorize
token_url = https://<tenant-id>.okta.com/oauth2/v1/token
api_url = https://<tenant-id>.okta.com/oauth2/v1/userinfo
allowed_domains =
allowed_groups =
role_attribute_path =
role_attribute_strict = false
#################################### Generic OAuth #######################
[auth.generic_oauth]
name = OAuth
icon = signin
enabled = false
allow_sign_up = true
client_id = some_id
client_secret =
scopes = user:email
empty_scopes = false
email_attribute_name = email:primary
email_attribute_path =
login_attribute_path =
name_attribute_path =
role_attribute_path =
role_attribute_strict = false
groups_attribute_path =
id_token_attribute_name =
team_ids_attribute_path =
auth_url =
token_url =
api_url =
teams_url =
allowed_domains =
team_ids =
allowed_organizations =
tls_skip_verify_insecure = false
tls_client_cert =
tls_client_key =
tls_client_ca =
use_pkce = false
auth_style =
#################################### Basic Auth ##########################
[auth.basic]
enabled = true
#################################### Auth Proxy ##########################
[auth.proxy]
enabled = false
header_name = X-WEBAUTH-USER
header_property = username
auto_sign_up = true
sync_ttl = 60
whitelist =
headers =
headers_encoded = false
enable_login_token = false
#################################### Auth JWT ##########################
[auth.jwt]
enabled = false
enable_login_token = false
header_name =
email_claim =
username_claim =
jwk_set_url =
jwk_set_file =
cache_ttl = 60m
expected_claims = {}
key_file =
auto_sign_up = false
#################################### Auth LDAP ###########################
[auth.ldap]
enabled = false
config_file = /etc/grafana/ldap.toml
allow_sign_up = true
# LDAP background sync (Enterprise only)
# At 1 am every day
sync_cron = "0 1 * * *"
active_sync_enabled = true
#################################### AWS ###########################
[aws]
# Enter a comma-separated list of allowed AWS authentication providers.
# Options are: default (AWS SDK Default), keys (Access && secret key), credentials (Credentials field), ec2_iam_role (EC2 IAM Role)
allowed_auth_providers = default,keys,credentials
# Allow AWS users to assume a role using temporary security credentials.
# If true, assume role will be enabled for all AWS authentication providers that are specified in aws_auth_providers
assume_role_enabled = true
# Specify max no of pages to be returned by the ListMetricPages API
list_metrics_page_limit = 500
#################################### Azure ###############################
[azure]
# Azure cloud environment where Grafana is hosted
# Possible values are AzureCloud, AzureChinaCloud, AzureUSGovernment and AzureGermanCloud
# Default value is AzureCloud (i.e. public cloud)
cloud = AzureCloud
# Specifies whether Grafana hosted in Azure service with Managed Identity configured (e.g. Azure Virtual Machines instance)
# If enabled, the managed identity can be used for authentication of Grafana in Azure services
# Disabled by default, needs to be explicitly enabled
managed_identity_enabled = false
# Client ID to use for user-assigned managed identity
# Should be set for user-assigned identity and should be empty for system-assigned identity
managed_identity_client_id =
#################################### Role-based Access Control ###########
[rbac]
# If enabled, cache permissions in a in memory cache (Enterprise only)
permission_cache = true
#################################### SMTP / Emailing #####################
[smtp]
enabled = false
host = localhost:25
user =
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
password =
cert_file =
key_file =
skip_verify = false
from_address = admin@grafana.localhost
from_name = Grafana
ehlo_identity =
startTLS_policy =
[emails]
welcome_email_on_sign_up = false
templates_pattern = emails/*.html, emails/*.txt
content_types = text/html
#################################### Logging ##########################
[log]
# Either "console", "file", "syslog". Default is console and file
# Use space to separate multiple modes, e.g. "console file"
mode = console file
# Either "debug", "info", "warn", "error", "critical", default is "info"
level = info
# optional settings to set different levels for specific loggers. Ex filters = sqlstore:debug
filters =
# For "console" mode only
[log.console]
level =
# log line format, valid options are text, console and json
format = console
# For "file" mode only
[log.file]
level =
# log line format, valid options are text, console and json
format = text
# This enables automated log rotate(switch of following options), default is true
log_rotate = true
# Max line number of single file, default is 1000000
max_lines = 1000000
# Max size shift of single file, default is 28 means 1 << 28, 256MB
max_size_shift = 28
# Segment log daily, default is true
daily_rotate = true
# Expired days of log file(delete after max days), default is 7
max_days = 7
[log.syslog]
level =
# log line format, valid options are text, console and json
format = text
# Syslog network type and address. This can be udp, tcp, or unix. If left blank, the default unix endpoints will be used.
network =
address =
# Syslog facility. user, daemon and local0 through local7 are valid.
facility =
# Syslog tag. By default, the process' argv[0] is used.
tag =
[log.frontend]
# Should Sentry javascript agent be initialized
enabled = false
# Defines which provider to use sentry or grafana
provider = sentry
# Sentry DSN if you want to send events to Sentry.
sentry_dsn =
# Custom HTTP endpoint to send events to. Default will log the events to stdout.
custom_endpoint =
# Rate of events to be reported to Sentry between 0 (none) and 1 (all), float
sample_rate = 1.0
# Requests per second limit enforced per an extended period, for Grafana backend log ingestion endpoint (/log).
log_endpoint_requests_per_second_limit = 3
# Max requests accepted per short interval of time for Grafana backend log ingestion endpoint (/log)
log_endpoint_burst_limit = 15
# Should error instrumentation be enabled, only affects Grafana Javascript Agent
instrumentations_errors_enabled = true
# Should console instrumentation be enabled, only affects Grafana Javascript Agent
instrumentations_console_enabled = false
# Should webvitals instrumentation be enabled, only affects Grafana Javascript Agent
instrumentations_webvitals_enabled = false
# Api Key, only applies to Grafana Javascript Agent provider
api_key =
#################################### Usage Quotas ########################
[quota]
enabled = false
#### set quotas to -1 to make unlimited. ####
# limit number of users per Org.
org_user = 10
# limit number of dashboards per Org.
org_dashboard = 100
# limit number of data_sources per Org.
org_data_source = 10
# limit number of api_keys per Org.
org_api_key = 10
# limit number of alerts per Org.
org_alert_rule = 100
# limit number of orgs a user can create.
user_org = 10
# Global limit of users.
global_user = -1
# global limit of orgs.
global_org = -1
# global limit of dashboards
global_dashboard = -1
# global limit of api_keys
global_api_key = -1
# global limit on number of logged in users.
global_session = -1
# global limit of alerts
global_alert_rule = -1
# global limit of files uploaded to the SQL DB
global_file = 1000
#################################### Unified Alerting ####################
[unified_alerting]
# Enable the Unified Alerting sub-system and interface. When enabled we'll migrate all of your alert rules and notification channels to the new system. New alert rules will be created and your notification channels will be converted into an Alertmanager configuration. Previous data is preserved to enable backwards compatibility but new data is removed when switching. When this configuration section and flag are not defined, the state is defined at runtime. See the documentation for more details.
enabled =
# Comma-separated list of organization IDs for which to disable unified alerting. Only supported if unified alerting is enabled.
disabled_orgs =
# Specify the frequency of polling for admin config changes.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
admin_config_poll_interval = 60s
# Specify the frequency of polling for Alertmanager config changes.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
alertmanager_config_poll_interval = 60s
# Listen address/hostname and port to receive unified alerting messages for other Grafana instances. The port is used for both TCP and UDP. It is assumed other Grafana instances are also running on the same port.
ha_listen_address = "0.0.0.0:9094"
# Explicit address/hostname and port to advertise other Grafana instances. The port is used for both TCP and UDP.
ha_advertise_address = ""
# Comma-separated list of initial instances (in a format of host:port) that will form the HA cluster. Configuring this setting will enable High Availability mode for alerting.
ha_peers = ""
# Time to wait for an instance to send a notification via the Alertmanager. In HA, each Grafana instance will
# be assigned a position (e.g. 0, 1). We then multiply this position with the timeout to indicate how long should
# each instance wait before sending the notification to take into account replication lag.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
ha_peer_timeout = 15s
# The interval between sending gossip messages. By lowering this value (more frequent) gossip messages are propagated
# across cluster more quickly at the expense of increased bandwidth usage.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
ha_gossip_interval = 200ms
# The interval between gossip full state syncs. Setting this interval lower (more frequent) will increase convergence speeds
# across larger clusters at the expense of increased bandwidth usage.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
ha_push_pull_interval = 60s
# Enable or disable alerting rule execution. The alerting UI remains visible. This option has a legacy version in the `[alerting]` section that takes precedence.
execute_alerts = true
# Alert evaluation timeout when fetching data from the datasource. This option has a legacy version in the `[alerting]` section that takes precedence.
# The timeout string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
evaluation_timeout = 30s
# Number of times we'll attempt to evaluate an alert rule before giving up on that evaluation. This option has a legacy version in the `[alerting]` section that takes precedence.
max_attempts = 3
# Minimum interval to enforce between rule evaluations. Rules will be adjusted if they are less than this value or if they are not multiple of the scheduler interval (10s). Higher values can help with resource management as we'll schedule fewer evaluations over time. This option has a legacy version in the `[alerting]` section that takes precedence.
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
min_interval = 10s
[unified_alerting.screenshots]
# Enable screenshots in notifications. This option requires the Grafana Image Renderer plugin.
# For more information on configuration options, refer to [rendering].
capture = false
# The maximum number of screenshots that can be taken at the same time. This option is different from
# concurrent_render_request_limit as max_concurrent_screenshots sets the number of concurrent screenshots
# that can be taken at the same time for all firing alerts where as concurrent_render_request_limit sets
# the total number of concurrent screenshots across all Grafana services.
max_concurrent_screenshots = 5
# Uploads screenshots to the local Grafana server or remote storage such as Azure, S3 and GCS. Please
# see [external_image_storage] for further configuration options. If this option is false then
# screenshots will be persisted to disk for up to temp_data_lifetime.
upload_external_image_storage = false
[unified_alerting.reserved_labels]
# Comma-separated list of reserved labels added by the Grafana Alerting engine that should be disabled.
# For example: `disabled_labels=grafana_folder`
disabled_labels =
#################################### Alerting ############################
[alerting]
# Enable the legacy alerting sub-system and interface. If Unified Alerting is already enabled and you try to go back to legacy alerting, all data that is part of Unified Alerting will be deleted. When this configuration section and flag are not defined, the state is defined at runtime. See the documentation for more details.
enabled =
# Makes it possible to turn off alert execution but alerting UI is visible
execute_alerts = true
# Default setting for new alert rules. Defaults to categorize error and timeouts as alerting. (alerting, keep_state)
error_or_timeout = alerting
# Default setting for how Grafana handles nodata or null values in alerting. (alerting, no_data, keep_state, ok)
nodata_or_nullvalues = no_data
# Alert notifications can include images, but rendering many images at the same time can overload the server
# This limit will protect the server from render overloading and make sure notifications are sent out quickly
concurrent_render_limit = 5
# Default setting for alert calculation timeout. Default value is 30
evaluation_timeout_seconds = 30
# Default setting for alert notification timeout. Default value is 30
notification_timeout_seconds = 30
# Default setting for max attempts to sending alert notifications. Default value is 3
max_attempts = 3
# Makes it possible to enforce a minimal interval between evaluations, to reduce load on the backend
min_interval_seconds = 1
# Configures for how long alert annotations are stored. Default is 0, which keeps them forever.
# This setting should be expressed as an duration. Ex 6h (hours), 10d (days), 2w (weeks), 1M (month).
max_annotation_age =
# Configures max number of alert annotations that Grafana stores. Default value is 0, which keeps all alert annotations.
max_annotations_to_keep =
#################################### Annotations #########################
[annotations]
# Configures the batch size for the annotation clean-up job. This setting is used for dashboard, API, and alert annotations.
cleanupjob_batchsize = 100
[annotations.dashboard]
# Dashboard annotations means that annotations are associated with the dashboard they are created on.
# Configures how long dashboard annotations are stored. Default is 0, which keeps them forever.
# This setting should be expressed as a duration. Examples: 6h (hours), 10d (days), 2w (weeks), 1M (month).
max_age =
# Configures max number of dashboard annotations that Grafana stores. Default value is 0, which keeps all dashboard annotations.
max_annotations_to_keep =
[annotations.api]
# API annotations means that the annotations have been created using the API without any
# association with a dashboard.
# Configures how long Grafana stores API annotations. Default is 0, which keeps them forever.
# This setting should be expressed as a duration. Examples: 6h (hours), 10d (days), 2w (weeks), 1M (month).
max_age =
# Configures max number of API annotations that Grafana keeps. Default value is 0, which keeps all API annotations.
max_annotations_to_keep =
#################################### Explore #############################
[explore]
# Enable the Explore section
enabled = true
#################################### Help #############################
[help]
# Enable the Help section
enabled = true
#################################### Profile #############################
[profile]
# Enable the Profile section
enabled = true
#################################### Query History #############################
[query_history]
# Enable the Query history
enabled = true
#################################### Internal Grafana Metrics ############
# Metrics available at HTTP URL /metrics and /metrics/plugins/:pluginId
[metrics]
enabled = true
interval_seconds = 10
# Disable total stats (stat_totals_*) metrics to be generated
disable_total_stats = false
#If both are set, basic auth will be required for the metrics endpoints.
basic_auth_username =
basic_auth_password =
# Metrics environment info adds dimensions to the `grafana_environment_info` metric, which
# can expose more information about the Grafana instance.
[metrics.environment_info]
#exampleLabel1 = exampleValue1
#exampleLabel2 = exampleValue2
# Send internal Grafana metrics to graphite
[metrics.graphite]
# Enable by setting the address setting (ex localhost:2003)
address =
prefix = prod.grafana.%(instance_name)s.
#################################### Grafana.com integration ##########################
[grafana_net]
url = https://grafana.com
[grafana_com]
url = https://grafana.com
#################################### Distributed tracing ############
# Opentracing is deprecated use opentelemetry instead
[tracing.jaeger]
# jaeger destination (ex localhost:6831)
address =
# tag that will always be included in when creating new spans. ex (tag1:value1,tag2:value2)
always_included_tag =
# Type specifies the type of the sampler: const, probabilistic, rateLimiting, or remote
sampler_type = const
# jaeger samplerconfig param
# for "const" sampler, 0 or 1 for always false/true respectively
# for "probabilistic" sampler, a probability between 0 and 1
# for "rateLimiting" sampler, the number of spans per second
# for "remote" sampler, param is the same as for "probabilistic"
# and indicates the initial sampling rate before the actual one
# is received from the mothership
sampler_param = 1
# sampling_server_url is the URL of a sampling manager providing a sampling strategy.
sampling_server_url =
# Whether or not to use Zipkin span propagation (x-b3- HTTP headers).
zipkin_propagation = false
# Setting this to true disables shared RPC spans.
# Not disabling is the most common setting when using Zipkin elsewhere in your infrastructure.
disable_shared_zipkin_spans = false
[tracing.opentelemetry.jaeger]
# jaeger destination (ex http://localhost:14268/api/traces)
address =
# Propagation specifies the text map propagation format: w3c, jaeger
propagation =
# This is a configuration for OTLP exporter with GRPC protocol
[tracing.opentelemetry.otlp]
# otlp destination (ex localhost:4317)
address =
# Propagation specifies the text map propagation format: w3c, jaeger
propagation =
#################################### External Image Storage ##############
[external_image_storage]
# Used for uploading images to public servers so they can be included in slack/email messages.
# You can choose between (s3, webdav, gcs, azure_blob, local)
provider =
[external_image_storage.s3]
endpoint =
path_style_access =
bucket_url =
bucket =
region =
path =
access_key =
secret_key =
[external_image_storage.webdav]
url =
username =
password =
public_url =
[external_image_storage.gcs]
key_file =
bucket =
path =
enable_signed_urls = false
signed_url_expiration =
[external_image_storage.azure_blob]
account_name =
account_key =
container_name =
[external_image_storage.local]
# does not require any configuration
[rendering]
# Options to configure a remote HTTP image rendering service, e.g. using https://github.com/grafana/grafana-image-renderer.
# URL to a remote HTTP image renderer service, e.g. http://localhost:8081/render, will enable Grafana to render panels and dashboards to PNG-images using HTTP requests to an external service.
server_url =
# If the remote HTTP image renderer service runs on a different server than the Grafana server you may have to configure this to a URL where Grafana is reachable, e.g. http://grafana.domain/.
callback_url =
# Concurrent render request limit affects when the /render HTTP endpoint is used. Rendering many images at the same time can overload the server,
# which this setting can help protect against by only allowing a certain amount of concurrent requests.
concurrent_render_request_limit = 30
[panels]
# here for to support old env variables, can remove after a few months
enable_alpha = false
disable_sanitize_html = false
[plugins]
enable_alpha = false
app_tls_skip_verify_insecure = false
# Enter a comma-separated list of plugin identifiers to identify plugins to load even if they are unsigned. Plugins with modified signatures are never loaded.
allow_loading_unsigned_plugins =
# Enable or disable installing / uninstalling / updating plugins directly from within Grafana.
plugin_admin_enabled = true
plugin_admin_external_manage_enabled = false
plugin_catalog_url = https://grafana.com/grafana/plugins/
# Enter a comma-separated list of plugin identifiers to hide in the plugin catalog.
plugin_catalog_hidden_plugins =
#################################### Grafana Live ##########################################
[live]
# max_connections to Grafana Live WebSocket endpoint per Grafana server instance. See Grafana Live docs
# if you are planning to make it higher than default 100 since this can require some OS and infrastructure
# tuning. 0 disables Live, -1 means unlimited connections.
max_connections = 100
# allowed_origins is a comma-separated list of origins that can establish connection with Grafana Live.
# If not set then origin will be matched over root_url. Supports wildcard symbol "*".
allowed_origins =
# engine defines an HA (high availability) engine to use for Grafana Live. By default no engine used - in
# this case Live features work only on a single Grafana server.
# Available options: "redis".
# Setting ha_engine is an EXPERIMENTAL feature.
ha_engine =
# ha_engine_address sets a connection address for Live HA engine. Depending on engine type address format can differ.
# For now we only support Redis connection address in "host:port" format.
# This option is EXPERIMENTAL.
ha_engine_address = "127.0.0.1:6379"
#################################### Grafana Image Renderer Plugin ##########################
[plugin.grafana-image-renderer]
# Instruct headless browser instance to use a default timezone when not provided by Grafana, e.g. when rendering panel image of alert.
# See ICU’s metaZones.txt (https://cs.chromium.org/chromium/src/third_party/icu/source/data/misc/metaZones.txt) for a list of supported
# timezone IDs. Fallbacks to TZ environment variable if not set.
rendering_timezone =
# Instruct headless browser instance to use a default language when not provided by Grafana, e.g. when rendering panel image of alert.
# Please refer to the HTTP header Accept-Language to understand how to format this value, e.g. 'fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5'.
rendering_language =
# Instruct headless browser instance to use a default device scale factor when not provided by Grafana, e.g. when rendering panel image of alert.
# Default is 1. Using a higher value will produce more detailed images (higher DPI), but will require more disk space to store an image.
rendering_viewport_device_scale_factor =
# Instruct headless browser instance whether to ignore HTTPS errors during navigation. Per default HTTPS errors are not ignored. Due to
# the security risk it's not recommended to ignore HTTPS errors.
rendering_ignore_https_errors =
# Instruct headless browser instance whether to capture and log verbose information when rendering an image. Default is false and will
# only capture and log error messages. When enabled, debug messages are captured and logged as well.
# For the verbose information to be included in the Grafana server log you have to adjust the rendering log level to debug, configure
# [log].filter = rendering:debug.
rendering_verbose_logging =
# Instruct headless browser instance whether to output its debug and error messages into running process of remote rendering service.
# Default is false. This can be useful to enable (true) when troubleshooting.
rendering_dumpio =
# Additional arguments to pass to the headless browser instance. Default is --no-sandbox. The list of Chromium flags can be found
# here (https://peter.sh/experiments/chromium-command-line-switches/). Multiple arguments is separated with comma-character.
rendering_args =
# You can configure the plugin to use a different browser binary instead of the pre-packaged version of Chromium.
# Please note that this is not recommended, since you may encounter problems if the installed version of Chrome/Chromium is not
# compatible with the plugin.
rendering_chrome_bin =
# Instruct how headless browser instances are created. Default is 'default' and will create a new browser instance on each request.
# Mode 'clustered' will make sure that only a maximum of browsers/incognito pages can execute concurrently.
# Mode 'reusable' will have one browser instance and will create a new incognito page on each request.
rendering_mode =
# When rendering_mode = clustered, you can instruct how many browsers or incognito pages can execute concurrently. Default is 'browser'
# and will cluster using browser instances.
# Mode 'context' will cluster using incognito pages.
rendering_clustering_mode =
# When rendering_mode = clustered, you can define the maximum number of browser instances/incognito pages that can execute concurrently. Default is '5'.
rendering_clustering_max_concurrency =
# When rendering_mode = clustered, you can specify the duration a rendering request can take before it will time out. Default is `30` seconds.
rendering_clustering_timeout =
# Limit the maximum viewport width, height and device scale factor that can be requested.
rendering_viewport_max_width =
rendering_viewport_max_height =
rendering_viewport_max_device_scale_factor =
# Change the listening host and port of the gRPC server. Default host is 127.0.0.1 and default port is 0 and will automatically assign
# a port not in use.
grpc_host =
grpc_port =
[enterprise]
license_path =
[feature_toggles]
# there are currently two ways to enable feature toggles in the `grafana.ini`.
# you can either pass an array of feature you want to enable to the `enable` field or
# configure each toggle by setting the name of the toggle to true/false. Toggles set to true/false
# will take precedence over toggles in the `enable` list.
# enable = feature1,feature2
enable =
# The new prometheus visual query builder
promQueryBuilder = true
# The new loki visual query builder
lokiQueryBuilder = true
# Experimental Explore to Dashboard workflow
explore2Dashboard = true
# Experimental Command Palette
commandPalette = true
# Use dynamic labels in CloudWatch datasource
cloudWatchDynamicLabels = true
# feature1 = true
# feature2 = false
[date_formats]
# For information on what formatting patterns that are supported https://momentjs.com/docs/#/displaying/
# Default system date format used in time range picker and other places where full time is displayed
full_date = YYYY-MM-DD HH:mm:ss
# Used by graph and other places where we only show small intervals
interval_second = HH:mm:ss
interval_minute = HH:mm
interval_hour = MM/DD HH:mm
interval_day = MM/DD
interval_month = YYYY-MM
interval_year = YYYY
# Experimental feature
use_browser_locale = false
# Default timezone for user preferences. Options are 'browser' for the browser local timezone or a timezone name from IANA Time Zone database, e.g. 'UTC' or 'Europe/Amsterdam' etc.
default_timezone = browser
[expressions]
# Enable or disable the expressions functionality.
enabled = true
[geomap]
# Set the JSON configuration for the default basemap
default_baselayer_config =
# Enable or disable loading other base map layers
enable_custom_baselayers = true
#################################### Dashboard previews #####################################
[dashboard_previews.crawler]
# Number of dashboards rendered in parallel. Default is 6.
thread_count =
# Timeout passed down to the Image Renderer plugin. It is used in two separate places within a single rendering request:
# First during the initial navigation to the dashboard and then when waiting for all the panels to load. Default is 20s.
# This setting should be expressed as a duration. Examples: 10s (seconds), 1m (minutes).
rendering_timeout =
# Maximum duration of a single crawl. Default is 1h.
# This setting should be expressed as a duration. Examples: 10s (seconds), 1m (minutes).
max_crawl_duration =
# Minimum interval between two subsequent scheduler runs. Default is 12h.
# This setting should be expressed as a duration. Examples: 10s (seconds), 1m (minutes).
scheduler_interval =
#################################### Storage ################################################
[storage]
# Allow uploading SVG files without sanitization.
allow_unsanitized_svg_upload = false
| 11,050 | 8,819 |
hyperswitch | config/tempo.yaml | .yaml | server:
http_listen_port: 3200
distributor:
receivers:
otlp:
protocols:
grpc:
ingester:
trace_idle_period: 10s # the length of time after a trace has not received spans to consider it complete and flush it
max_block_bytes: 1_000_000 # cut the head block when it hits this size or ...
max_block_duration: 5m # this much time passes
compactor:
compaction:
compaction_window: 1h # blocks in this time window will be compacted together
max_block_bytes: 100_000_000 # maximum size of compacted blocks
block_retention: 1h
compacted_block_retention: 10m
storage:
trace:
backend: local # backend configuration to use
block:
bloom_filter_false_positive: .05 # bloom filter false positive rate. lower values create larger filters but fewer false positives
v2_index_downsample_bytes: 1000 # number of bytes per index record
v2_encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
wal:
path: /tmp/tempo/wal # where to store the wal locally
v2_encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
local:
path: /tmp/tempo/blocks
pool:
max_workers: 100 # worker pool determines the number of parallel requests to the object store backend
queue_depth: 10000
| 430 | 8,820 |
hyperswitch | config/deployments/production.toml | .toml | # Bank redirect configs for allowed banks
[bank_config]
eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag"
eps.stripe.banks = "arzte_und_apotheker_bank,austrian_anadi_bank_ag,bank_austria,bankhaus_carl_spangler,bankhaus_schelhammer_und_schattera_ag,bawag_psk_ag,bks_bank_ag,brull_kallmus_bank_ag,btv_vier_lander_bank,capital_bank_grawe_gruppe_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_alpeadriabank_international_ag,hypo_noe_lb_fur_niederosterreich_u_wien,hypo_oberosterreich_salzburg_steiermark,hypo_tirol_bank_ag,hypo_vorarlberg_bank_ag,hypo_bank_burgenland_aktiengesellschaft,marchfelder_bank,oberbank_ag,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag,vr_bank_braunau"
ideal.adyen.banks = "abn_amro,asn_bank,bunq,ing,knab,n26,nationale_nederlanden,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot,yoursafe"
ideal.stripe.banks = "abn_amro,asn_bank,bunq,handelsbanken,ing,knab,moneyou,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot"
ideal.multisafepay.banks = "abn_amro, asn_bank, bunq, handelsbanken, nationale_nederlanden, n26, ing, knab, rabobank, regiobank, revolut, sns_bank,triodos_bank, van_lanschot, yoursafe"
online_banking_czech_republic.adyen.banks = "ceska_sporitelna,komercni_banka,platnosc_online_karta_platnicza"
online_banking_fpx.adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_fpx.fiuu.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_of_china,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_poland.adyen.banks = "blik_psp,place_zipko,m_bank,pay_with_ing,santander_przelew24,bank_pekaosa,bank_millennium,pay_with_alior_bank,banki_spoldzielcze,pay_with_inteligo,bnp_paribas_poland,bank_nowy_sa,credit_agricole,pay_with_bos,pay_with_citi_handlowy,pay_with_plus_bank,toyota_bank,velo_bank,e_transfer_pocztowy24"
online_banking_slovakia.adyen.banks = "e_platby_vub,postova_banka,sporo_pay,tatra_pay,viamo,volksbank_gruppe,volkskreditbank_ag,vr_bank_braunau"
online_banking_thailand.adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank"
open_banking_uk.adyen.banks = "aib,bank_of_scotland,danske_bank,first_direct,first_trust,halifax,lloyds,monzo,nat_west,nationwide_bank,royal_bank_of_scotland,starling,tsb_bank,tesco_bank,ulster_bank,barclays,hsbc_bank,revolut,santander_przelew24,open_bank_success,open_bank_failure,open_bank_cancelled"
przelewy24.stripe.banks = "alior_bank,bank_millennium,bank_nowy_bfg_sa,bank_pekao_sa,banki_spbdzielcze,blik,bnp_paribas,boz,citi,credit_agricole,e_transfer_pocztowy24,getin_bank,idea_bank,inteligo,mbank_mtransfer,nest_przelew,noble_pay,pbac_z_ipko,plus_bank,santander_przelew24,toyota_bank,volkswagen_bank"
[connector_customer]
connector_list = "stax,stripe,gocardless"
payout_connector_list = "nomupay,stripe,wise"
# Connector configuration, provided attributes will be used to fulfill API requests.
# Examples provided here are sandbox/test base urls, can be replaced by live or mock
# base urls based on your need.
# Note: These are not optional attributes. hyperswitch request can fail due to invalid/empty values.
[connectors]
aci.base_url = "https://eu-test.oppwa.com/"
adyen.base_url = "https://{{merchant_endpoint_prefix}}-checkout-live.adyenpayments.com/checkout/"
adyen.payout_base_url = "https://{{merchant_endpoint_prefix}}-pal-live.adyenpayments.com/"
adyen.dispute_base_url = "https://{{merchant_endpoint_prefix}}-ca-live.adyen.com/"
adyenplatform.base_url = "https://balanceplatform-api-live.adyen.com/"
airwallex.base_url = "https://api.airwallex.com/"
amazonpay.base_url = "https://pay-api.amazon.com/v2"
applepay.base_url = "https://apple-pay-gateway.apple.com/"
authorizedotnet.base_url = "https://api.authorize.net/xml/v1/request.api"
bambora.base_url = "https://api.na.bambora.com"
bamboraapac.base_url = "https://demo.bambora.co.nz/interface/api/dts.asmx"
bankofamerica.base_url = "https://api.merchant-services.bankofamerica.com/"
billwerk.base_url = "https://api.reepay.com/"
billwerk.secondary_base_url = "https://card.reepay.com/"
bitpay.base_url = "https://bitpay.com"
bluesnap.base_url = "https://ws.bluesnap.com/"
bluesnap.secondary_base_url = "https://pay.bluesnap.com/"
boku.base_url = "https://country-api4-stage.boku.com"
braintree.base_url = "https://payments.braintree-api.com/graphql"
cashtocode.base_url = "https://cluster14.api.cashtocode.com"
chargebee.base_url = "https://$.chargebee.com/api/"
checkout.base_url = "https://api.checkout.com/"
coinbase.base_url = "https://api.commerce.coinbase.com"
coingate.base_url = "https://api.coingate.com"
cryptopay.base_url = "https://business.cryptopay.me/"
cybersource.base_url = "https://api.cybersource.com/"
datatrans.base_url = "https://api.datatrans.com/"
datatrans.secondary_base_url = "https://pay.datatrans.com/"
deutschebank.base_url = "https://merch.directpos.de/rest-api"
digitalvirgo.base_url = "https://dcb-integration-service-sandbox-external.staging.digitalvirgo.pl"
dlocal.base_url = "https://sandbox.dlocal.com/"
dummyconnector.base_url = "http://localhost:8080/dummy-connector"
ebanx.base_url = "https://sandbox.ebanxpay.com/"
elavon.base_url = "https://api.convergepay.com/VirtualMerchant/"
facilitapay.base_url = "https://api.facilitapay.com/api/v1"
fiserv.base_url = "https://cert.api.fiservapps.com/"
fiservemea.base_url = "https://prod.emea.api.fiservapps.com"
fiuu.base_url = "https://pay.merchant.razer.com/"
fiuu.secondary_base_url="https://api.merchant.razer.com/"
fiuu.third_base_url="https://api.merchant.razer.com/"
forte.base_url = "https://sandbox.forte.net/api/v3"
getnet.base_url = "https://api.getneteurope.com/engine/rest"
globalpay.base_url = "https://apis.globalpay.com/ucp/"
globepay.base_url = "https://pay.globepay.co/"
gocardless.base_url = "https://api.gocardless.com"
gpayments.base_url = "https://{{merchant_endpoint_prefix}}-test.api.as1.gpayments.net"
helcim.base_url = "https://api.helcim.com/"
hipay.base_url = "https://secure-gateway.hipay-tpp.com/rest/"
hipay.secondary_base_url = "https://secure2-vault.hipay-tpp.com/rest/"
hipay.third_base_url = "https://api-gateway.hipay.com/"
iatapay.base_url = "https://iata-pay.iata.org/api/v1"
inespay.base_url = "https://apiflow.inespay.com/san/v21"
itaubank.base_url = "https://secure.api.itau/"
jpmorgan.base_url = "https://api-ms.payments.jpmorgan.com/api/v2"
juspaythreedsserver.base_url = "http://localhost:8000"
jpmorgan.secondary_base_url="https://id.payments.jpmorgan.com"
klarna.base_url = "https://api{{klarna_region}}.klarna.com/"
mifinity.base_url = "https://secure.mifinity.com/"
mollie.base_url = "https://api.mollie.com/v2/"
mollie.secondary_base_url = "https://api.cc.mollie.com/v1/"
moneris.base_url = "https://api.moneris.io"
multisafepay.base_url = "https://testapi.multisafepay.com/"
nexinets.base_url = "https://api.payengine.de/v1"
nexixpay.base_url = "https://xpay.nexigroup.com/api/phoenix-0.0/psp/api/v1"
nmi.base_url = "https://secure.nmi.com/"
nomupay.base_url = "https://payout-api.nomupay.com"
noon.base_url = "https://api.noonpayments.com/"
noon.key_mode = "Live"
novalnet.base_url = "https://payport.novalnet.de/v2"
nuvei.base_url = "https://ppp-test.nuvei.com/"
opayo.base_url = "https://pi-live.sagepay.com/"
opennode.base_url = "https://api.opennode.com"
paybox.base_url = "https://ppps.paybox.com/PPPS.php"
paybox.secondary_base_url="https://tpeweb.paybox.com/"
payeezy.base_url = "https://api.payeezy.com/"
payme.base_url = "https://live.payme.io/"
payone.base_url = "https://payment.payone.com/"
paypal.base_url = "https://api-m.paypal.com/"
paystack.base_url = "https://api.paystack.co"
payu.base_url = "https://secure.payu.com/api/"
placetopay.base_url = "https://checkout.placetopay.com/rest/gateway"
plaid.base_url = "https://production.plaid.com"
powertranz.base_url = "https://staging.ptranz.com/api/"
prophetpay.base_url = "https://ccm-thirdparty.cps.golf/"
rapyd.base_url = "https://sandboxapi.rapyd.net"
razorpay.base_url = "https://api.juspay.in"
recurly.base_url = "https://v3.recurly.com"
redsys.base_url = "https://sis.redsys.es"
riskified.base_url = "https://wh.riskified.com/api/"
shift4.base_url = "https://api.shift4.com/"
signifyd.base_url = "https://api.signifyd.com/"
square.base_url = "https://connect.squareupsandbox.com/"
square.secondary_base_url = "https://pci-connect.squareupsandbox.com/"
stax.base_url = "https://apiprod.fattlabs.com/"
stripe.base_url = "https://api.stripe.com/"
stripe.base_url_file_upload = "https://files.stripe.com/"
stripebilling.base_url = "https://api.stripe.com/"
taxjar.base_url = "https://api.taxjar.com/v2/"
thunes.base_url = "https://api.limonetik.com/"
trustpay.base_url = "https://tpgw.trustpay.eu/"
trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/"
tsys.base_url = "https://gateway.transit-pass.com/"
volt.base_url = "https://api.volt.io/"
wellsfargo.base_url = "https://api.cybersource.com/"
wellsfargopayout.base_url = "https://api.wellsfargo.com/"
wise.base_url = "https://api.sandbox.transferwise.tech/"
worldline.base_url = "https://eu.sandbox.api-ingenico.com/"
worldpay.base_url = "https://try.access.worldpay.com/"
xendit.base_url = "https://api.xendit.co"
zen.base_url = "https://api.zen.com/"
zen.secondary_base_url = "https://secure.zen.com/"
zsl.base_url = "https://apirh.prodoffalb.net/"
threedsecureio.base_url = "https://service.3dsecure.io"
netcetera.base_url = "https://{{merchant_endpoint_prefix}}.3ds-server.prod.netcetera-cloud-payment.ch"
[delayed_session_response]
connectors_with_delayed_session_response = "trustpay,payme" # List of connectors which have delayed session response
[dummy_connector]
enabled = false # Whether dummy connector is enabled or not
assets_base_url = "https://app.hyperswitch.io/assets/TestProcessor/" # Base url for dummy connector assets
authorize_ttl = 36000 # Time to live for dummy connector authorize request in redis
default_return_url = "https://app.hyperswitch.io/" # Default return url when no return url is passed while payment
discord_invite_url = "https://discord.gg/wJZ7DVW8mm" # Discord invite url for hyperswitch
payment_complete_duration = 500 # Fake delay duration for dummy connector payment complete
payment_complete_tolerance = 100 # Fake delay tolerance for dummy connector payment complete
payment_duration = 1000 # Fake delay duration for dummy connector payment
payment_retrieve_duration = 500 # Fake delay duration for dummy connector payment sync
payment_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector payment sync
payment_tolerance = 100 # Fake delay tolerance for dummy connector payment
payment_ttl = 172800 # Time to live for dummy connector payment in redis
refund_duration = 1000 # Fake delay duration for dummy connector refund
refund_retrieve_duration = 500 # Fake delay duration for dummy connector refund sync
refund_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector refund sync
refund_tolerance = 100 # Fake delay tolerance for dummy connector refund
refund_ttl = 172800 # Time to live for dummy connector refund in redis
slack_invite_url = "https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2awm23agh-p_G5xNpziv6yAiedTkkqLg" # Slack invite url for hyperswitch
[user]
password_validity_in_days = 90
two_factor_auth_expiry_in_secs = 300
totp_issuer_name = "Hyperswitch Production"
base_url = "https://live.hyperswitch.io"
force_two_factor_auth = true
force_cookies = false
[frm]
enabled = false
[mandates.supported_payment_methods]
bank_debit.ach = { connector_list = "gocardless,adyen,stripe" }
bank_debit.becs = { connector_list = "gocardless,stripe,adyen" }
bank_debit.bacs = { connector_list = "stripe,gocardless" }
bank_debit.sepa = { connector_list = "gocardless,adyen,stripe,deutschebank" }
card.credit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
card.debit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
pay_later.klarna.connector_list = "adyen"
wallet.apple_pay.connector_list = "stripe,adyen,cybersource,noon,bankofamerica,nexinets,novalnet,authorizedotnet"
wallet.samsung_pay.connector_list = "cybersource"
wallet.google_pay.connector_list = "stripe,adyen,cybersource,bankofamerica,noon,globalpay,multisafepay,novalnet,authorizedotnet"
wallet.paypal.connector_list = "adyen,globalpay,nexinets,novalnet,paypal"
wallet.momo.connector_list = "adyen"
wallet.kakao_pay.connector_list = "adyen"
wallet.go_pay.connector_list = "adyen"
wallet.gcash.connector_list = "adyen"
wallet.dana.connector_list = "adyen"
wallet.twint.connector_list = "adyen"
wallet.vipps.connector_list = "adyen"
bank_redirect.ideal.connector_list = "stripe,adyen,globalpay,multisafepay,nexinets"
bank_redirect.sofort.connector_list = "stripe,globalpay"
bank_redirect.giropay.connector_list = "globalpay,multisafepay,nexinets"
bank_redirect.bancontact_card.connector_list="adyen,stripe"
bank_redirect.trustly.connector_list="adyen"
bank_redirect.open_banking_uk.connector_list="adyen"
bank_redirect.eps.connector_list="globalpay,nexinets"
[mandates.update_mandate_supported]
card.credit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
card.debit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
[network_transaction_id_supported_connectors]
connector_list = "adyen,stripe"
[payouts]
payout_eligibility = true # Defaults the eligibility of a payout method to true in case connector does not provide checks for payout eligibility
#Payment Method Filters Based on Country and Currency
[pm_filters.default]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "AU,NZ,ES,GB,FR,IT,CA,US", currency = "GBP" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD,CNY" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA", currency = "AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay = { country = "AU,NZ,JP,HK,SG,MY,TH,VN,BH,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,RO,HR,LI,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,TR,IS,CA,US", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AT,ES,GB,SE,NO,AT,NL,DE,CH,BE,FR,DK,FI,PT,IE,IT,PL,CA,US", currency = "USD,GBP,EUR,CHF,DKK,SEK,NOK,AUD,PLN,CAD" }
mb_way = { country = "PT", currency = "EUR" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
pay_bright = { country = "CA", currency = "CAD" }
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
sofort = { country = "ES,GB,SE,AT,NL,DE,CH,BE,FR,FI,IT,PL", currency = "EUR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD" }
[pm_filters.adyen]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "AU,CA,NZ,GB,US", currency = "USD,AUD,CAD,NZD,GBP" }
alfamart = { country = "ID", currency = "IDR" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD" }
ali_pay_hk = { country = "HK", currency = "HKD" }
alma = { country = "FR", currency = "EUR" }
apple_pay = { country = "AE,AM,AR,AT,AU,AZ,BE,BG,BH,BR,BY,CA,CH,CN,CO,CR,CY,CZ,DE,DK,EE,ES,FI,FO,FR,GB,GE,GG,GL,GR,HK,HR,HU,IE,IL,IM,IS,IT,JE,JO,JP,KW,KZ,LI,LT,LU,LV,MC,MD,ME,MO,MT,MX,MY,NL,NO,NZ,PE,PL,PS,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,TW,UA,GB,UM,US", currency = "AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD,MYR" }
atome = { country = "MY,SG", currency = "MYR,SGD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
bca_bank_transfer = { country = "ID", currency = "IDR" }
bizum = { country = "ES", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
bni_va = { country = "ID", currency = "IDR" }
boleto = { country = "BR", currency = "BRL" }
bri_va = { country = "ID", currency = "IDR" }
cimb_va = { country = "ID", currency = "IDR" }
dana = { country = "ID", currency = "IDR" }
danamon_va = { country = "ID", currency = "IDR" }
eps = { country = "AT", currency = "EUR" }
family_mart = { country = "JP", currency = "JPY" }
gcash = { country = "PH", currency = "PHP" }
giropay = { country = "DE", currency = "EUR" }
go_pay = { country = "ID", currency = "IDR" }
google_pay = { country = "AE,AG,AL,AO,AR,AS,AT,AU,AZ,BE,BG,BH,BR,BY,CA,CH,CL,CO,CY,CZ,DE,DK,DO,DZ,EE,EG,ES,FI,FR,GB,GR,HK,HR,HU,ID,IE,IL,IN,IS,IT,JO,JP,KE,KW,KZ,LB,LI,LK,LT,LU,LV,MT,MX,MY,NL,NO,NZ,OM,PA,PE,PH,PK,PL,PT,QA,RO,RU,SA,SE,SG,SI,SK,TH,TR,TW,UA,GB,US,UY,VN,ZA", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
indomaret = { country = "ID", currency = "IDR" }
kakao_pay = { country = "KR", currency = "KRW" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NO,PL,PT,RO,ES,SE,CH,NL,GB,US", currency = "AUD,EUR,CAD,CZK,DKK,NOK,PLN,RON,SEK,CHF,GBP,USD"}
lawson = { country = "JP", currency = "JPY" }
mandiri_va = { country = "ID", currency = "IDR" }
mb_way = { country = "PT", currency = "EUR" }
mini_stop = { country = "JP", currency = "JPY" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
momo = { country = "VN", currency = "VND" }
momo_atm = { country = "VN", currency = "VND" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_fpx = { country = "MY", currency = "MYR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
online_banking_thailand = { country = "TH", currency = "THB" }
open_banking_uk = { country = "GB", currency = "GBP" }
oxxo = { country = "MX", currency = "MXN" }
pay_bright = { country = "CA", currency = "CAD" }
pay_easy = { country = "JP", currency = "JPY" }
pay_safe_card = { country = "AT,AU,BE,BR,BE,CA,HR,CY,CZ,DK,FI,FR,GE,DE,GI,HU,IS,IE,KW,LV,IE,LI,LT,LU,MT,MX,MD,ME,NL,NZ,NO,PY,PE,PL,PT,RO,SA,RS,SK,SI,ES,SE,CH,TR,AE,GB,US,UY", currency = "EUR,AUD,BRL,CAD,CZK,DKK,GEL,GIP,HUF,KWD,CHF,MXN,MDL,NZD,NOK,PYG,PEN,PLN,RON,SAR,RSD,SEK,TRY,AED,GBP,USD,UYU" }
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
permata_bank_transfer = { country = "ID", currency = "IDR" }
seicomart = { country = "JP", currency = "JPY" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
seven_eleven = { country = "JP", currency = "JPY" }
sofort = { country = "AT,BE,DE,ES,CH,NL", currency = "CHF,EUR"}
swish = { country = "SE", currency = "SEK" }
touch_n_go = { country = "MY", currency = "MYR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
twint = { country = "CH", currency = "CHF" }
vipps = { country = "NO", currency = "NOK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD" }
[pm_filters.airwallex]
credit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
google_pay = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.elavon]
credit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.xendit]
credit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
debit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
[pm_filters.tsys]
credit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
debit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
[pm_filters.billwerk]
credit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
debit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
[pm_filters.fiservemea]
credit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.authorizedotnet]
google_pay.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
paypal.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
[pm_filters.bambora]
credit = { country = "US,CA", currency = "USD" }
debit = { country = "US,CA", currency = "USD" }
[pm_filters.bankofamerica]
credit = { currency = "USD" }
debit = { currency = "USD" }
apple_pay = { currency = "USD" }
google_pay = { currency = "USD" }
samsung_pay = { currency = "USD" }
[pm_filters.cybersource]
credit = { currency = "USD,GBP,EUR,PLN" }
debit = { currency = "USD,GBP,EUR,PLN" }
apple_pay = { currency = "USD,GBP,EUR,PLN" }
google_pay = { currency = "USD,GBP,EUR,PLN" }
samsung_pay = { currency = "USD,GBP,EUR" }
paze = { currency = "USD" }
[pm_filters.nexixpay]
credit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
debit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
[pm_filters.square]
credit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
debit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
[pm_filters.iatapay]
upi_collect = { country = "IN", currency = "INR" }
upi_intent = { country = "IN", currency = "INR" }
ideal = { country = "NL", currency = "EUR" }
local_bank_redirect = { country = "AT,BE,EE,FI,FR,DE,IE,IT,LV,LT,LU,NL,PT,ES,GB,IN,HK,SG,TH,BR,MX,GH,VN,MY,PH,JO,AU,CO", currency = "EUR,GBP,INR,HKD,SGD,THB,BRL,MXN,GHS,VND,MYR,PHP,JOD,AUD,COP" }
duit_now = { country = "MY", currency = "MYR" }
fps = { country = "GB", currency = "GBP" }
prompt_pay = { country = "TH", currency = "THB" }
viet_qr = { country = "VN", currency = "VND" }
[pm_filters.coinbase]
crypto_currency = { country = "ZA,US,BR,CA,TR,SG,VN,GB,DE,FR,ES,PT,IT,NL,AU" }
[pm_filters.novalnet]
credit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
debit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
apple_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
google_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
paypal = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
[pm_filters.braintree]
paypal.currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD"
[pm_filters.forte]
credit.currency = "USD"
debit.currency = "USD"
[pm_filters.helcim]
credit = { country = "US, CA", currency = "USD, CAD" }
debit = { country = "US, CA", currency = "USD, CAD" }
[pm_filters.globalpay]
credit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC"}
debit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC"}
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,DE,ES,IT,NL", currency = "EUR" }
[pm_filters.globepay]
ali_pay.currency = "GBP,CNY"
we_chat_pay.currency = "GBP,CNY"
[pm_filters.jpmorgan]
debit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
credit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
[pm_filters.bitpay]
crypto_currency = { country = "US, CA, GB, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, AUD, CAD, GBP, MXN, NZD, CHF, EUR"}
[pm_filters.paybox]
debit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
credit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
[pm_filters.digitalvirgo]
direct_carrier_billing = {country = "MA, CM, ZA, EG, SN, DZ, TN, ML, GN, GH, LY, GA, CG, MG, BW, SD, NG, ID, SG, AZ, TR, FR, ES, PL, GB, PT, DE, IT, BE, IE, SK, GR, NL, CH, BR, MX, AR, CL, AE, IQ, KW, BH, SA, QA, PS, JO, OM, RU" , currency = "MAD, XOF, XAF, ZAR, EGP, DZD, TND, GNF, GHS, LYD, XAF, CDF, MGA, BWP, SDG, NGN, IDR, SGD, RUB, AZN, TRY, EUR, PLN, GBP, CHF, BRL, MXN, ARS, CLP, AED, IQD, KWD, BHD, SAR, QAR, ILS, JOD, OMR" }
[pm_filters.klarna]
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD" }
[pm_filters.mifinity]
mifinity = { country = "BR,CN,SG,MY,DE,CH,DK,GB,ES,AD,GI,FI,FR,GR,HR,IT,JP,MX,AR,CO,CL,PE,VE,UY,PY,BO,EC,GT,HN,SV,NI,CR,PA,DO,CU,PR,NL,NO,PL,PT,SE,RU,TR,TW,HK,MO,AX,AL,DZ,AS,AO,AI,AG,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BE,BZ,BJ,BM,BT,BQ,BA,BW,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CX,CC,KM,CG,CK,CI,CW,CY,CZ,DJ,DM,EG,GQ,ER,EE,ET,FK,FO,FJ,GF,PF,TF,GA,GM,GE,GH,GL,GD,GP,GU,GG,GN,GW,GY,HT,HM,VA,IS,IN,ID,IE,IM,IL,JE,JO,KZ,KE,KI,KW,KG,LA,LV,LB,LS,LI,LT,LU,MK,MG,MW,MV,ML,MT,MH,MQ,MR,MU,YT,FM,MD,MC,MN,ME,MS,MA,MZ,NA,NR,NP,NC,NZ,NE,NG,NU,NF,MP,OM,PK,PW,PS,PG,PH,PN,QA,RE,RO,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SX,SK,SI,SB,SO,ZA,GS,KR,LK,SR,SJ,SZ,TH,TL,TG,TK,TO,TT,TN,TM,TC,TV,UG,UA,AE,UZ,VU,VN,VG,VI,WF,EH,ZM", currency = "AUD,CAD,CHF,CNY,CZK,DKK,EUR,GBP,INR,JPY,NOK,NZD,PLN,RUB,SEK,ZAR,USD,EGP,UYU,UZS" }
[pm_filters.payu]
debit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
credit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
google_pay = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
[pm_filters.prophetpay]
card_redirect.currency = "USD"
[pm_filters.stax]
ach = { country = "US", currency = "USD" }
[pm_filters.stripe]
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ,FR,ES", currency = "USD,CAD,GBP,AUD,NZD" }
apple_pay.country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA"
cashapp = { country = "US", currency = "USD" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay.country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN"
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "AUD,CAD,CHF,CZK,DKK,EUR,GBP,NOK,NZD,PLN,SEK,USD" }
sofort = { country = "AT,BE,DE,IT,NL,ES", currency = "EUR" }
[pm_filters.volt]
open_banking_uk = {country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL"}
[pm_filters.razorpay]
upi_collect = {country = "IN", currency = "INR"}
[pm_filters.redsys]
credit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
debit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
[pm_filters.plaid]
open_banking_pis = {currency = "EUR,GBP"}
[pm_filters.worldpay]
debit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
credit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
google_pay = { country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US" }
[pm_filters.zen]
boleto = { country = "BR", currency = "BRL" }
efecty = { country = "CO", currency = "COP" }
multibanco = { country = "PT", currency = "EUR" }
pago_efectivo = { country = "PE", currency = "PEN" }
pix = { country = "BR", currency = "BRL" }
pse = { country = "CO", currency = "COP" }
red_compra = { country = "CL", currency = "CLP" }
red_pagos = { country = "UY", currency = "UYU" }
[pm_filters.zsl]
local_bank_transfer = { country = "CN", currency = "CNY" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }
apple_pay = { country = "MY", currency = "MYR" }
google_pay = { country = "MY", currency = "MYR" }
[pm_filters.trustpay]
instant_bank_transfer = { country = "CZ,SK,GB,AT,DE,IT", currency = "CZK, EUR, GBP" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,GB", currency = "EUR" }
[pm_filters.dlocal]
credit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
debit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
[pm_filters.mollie]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
eps = { country = "AT", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
przelewy24 = { country = "PL", currency = "PLN,EUR" }
[pm_filters.rapyd]
apple_pay = { country = "AL,AS,AD,AR,AM,AU,AT,AZ,BH,BE,BM,BA,BR,BG,CA,KH,KY,CL,CO,CR,HR,CY,CZ,DK,DO,EC,SV,EE,FO,FI,FR,GE,DE,GI,GR,GL,GU,GT,GG,HN,HK,HU,IS,IE,IM,IL,IT,JP,KZ,KG,KW,LV,LI,LT,LU,MO,MY,MT,MX,MD,MC,ME,MA,NL,NZ,NI,MK,MP,NO,PA,PY,PR,PE,PL,PT,QA,RO,SM,RS,SG,SK,SI,ZA,ES,SE,CH,TW,TJ,TH,UA,AE,GB,US,UY,VI,VN", currency = "EUR,GBP,ISK,USD" }
google_pay = { country = "AM,AT,AU,AZ,BA,BE,BG,BY,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,EC,EE,EG,ES,FI,FR,GB,GE,GL,GR,GT,HK,HN,HR,HU,IE,IL,IM,IS,IT,JE,JP,JO,KZ,KW,LA,LI,LT,LU,LV,MA,MC,MD,ME,MO,MN,MT,MX,MY,NC,NL,NO,NZ,OM,PA,PE,PL,PR,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,SV,TH,TW,UA,US,UY,VA,VN,ZA", currency = "EUR,GBP,ISK,USD" }
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.bamboraapac]
credit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.gocardless]
ach = { country = "US", currency = "USD" }
becs = { country = "AU", currency = "AUD" }
sepa = { country = "AU,AT,BE,BG,CA,HR,CY,CZ,DK,FI,FR,DE,HU,IT,LU,MT,NL,NZ,NO,PL,PT,IE,RO,SK,SI,ZA,ES,SE,CH,GB", currency = "GBP,EUR,SEK,DKK,AUD,NZD,CAD" }
[pm_filters.powertranz]
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
[pm_filters.worldline]
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.shift4]
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,CH,DE,ES,FI,FR,GB,IT,NL,PL,SE", currency = "CHF,EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[payout_method_filters.adyenplatform]
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,CZ,DE,HU,NO,PL,SE,GB,CH" , currency = "EUR,CZK,DKK,HUF,NOK,PLN,SEK,GBP,CHF" }
[payout_method_filters.stripe]
ach = { country = "US", currency = "USD" }
[temp_locker_enable_config]
bluesnap.payment_method = "card"
nuvei.payment_method = "card"
shift4.payment_method = "card"
stripe.payment_method = "bank_transfer"
bankofamerica = { payment_method = "card" }
cybersource = { payment_method = "card" }
nmi.payment_method = "card"
payme.payment_method = "card"
deutschebank = { payment_method = "bank_debit" }
paybox = { payment_method = "card" }
nexixpay = { payment_method = "card" }
redsys = { payment_method = "card" }
#tokenization configuration which describe token lifetime and payment method for specific connector
[tokenization]
braintree = { long_lived_token = false, payment_method = "card" }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
gocardless = { long_lived_token = true, payment_method = "bank_debit" }
hipay = { long_lived_token = false, payment_method = "card" }
mollie = { long_lived_token = false, payment_method = "card" }
payme = { long_lived_token = false, payment_method = "card" }
square = { long_lived_token = false, payment_method = "card" }
stax = { long_lived_token = true, payment_method = "card,bank_debit" }
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { list = "google_pay", type = "disable_only" } }
billwerk = {long_lived_token = false, payment_method = "card"}
[webhooks]
outgoing_enabled = true
[webhook_source_verification_call]
connectors_with_webhook_source_verification_call = "paypal" # List of connectors which has additional source verification api-call
[unmasked_headers]
keys = "accept-language,user-agent,x-profile-id"
[saved_payment_methods]
sdk_eligible_payment_methods = "card"
[locker_based_open_banking_connectors]
connector_list = ""
[network_tokenization_supported_card_networks]
card_networks = "Visa, AmericanExpress, Mastercard"
[network_tokenization_supported_connectors]
connector_list = "cybersource"
[platform]
enabled = false
[billing_connectors_payment_sync]
billing_connectors_which_require_payment_sync = "stripebilling, recurly" | 33,984 | 8,821 |
hyperswitch | config/deployments/env_specific.toml | .toml | # For explanantion of each config, please refer to the `config/config.example.toml` file
[analytics.clickhouse]
username = "clickhouse_username" # Clickhouse username
password = "clickhouse_password" # Clickhouse password (optional)
host = "http://localhost:8123" # Clickhouse host in http(s)://<URL>:<PORT> format
database_name = "clickhouse_db_name" # Clickhouse database name
# Analytics configuration.
[analytics]
source = "sqlx" # The Analytics source/strategy to be used
forex_enabled = false # Boolean to enable or disable forex conversion
[analytics.sqlx]
username = "db_user" # Analytics DB Username
password = "db_pass" # Analytics DB Password
host = "localhost" # Analytics DB Host
port = 5432 # Analytics DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
[api_keys]
hash_key = "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" # API key hashing key.
[applepay_decrypt_keys]
apple_pay_ppc = "APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE" # Payment Processing Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Payment Processing Certificate
apple_pay_ppc_key = "APPLE_PAY_PAYMENT_PROCESSING_CERTIFICATE_KEY" # Private key generated by Elliptic-curve prime256v1 curve. You can use `openssl ecparam -out private.key -name prime256v1 -genkey` to generate the private key
apple_pay_merchant_cert = "APPLE_PAY_MERCHNAT_CERTIFICATE" # Merchant Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Merchant Identity Certificate
apple_pay_merchant_cert_key = "APPLE_PAY_MERCHNAT_CERTIFICATE_KEY" # Private key generated by RSA:2048 algorithm. Refer Hyperswitch Docs (https://docs.hyperswitch.io/hyperswitch-cloud/payment-methods-setup/wallets/apple-pay/ios-application/) to generate the private key
[paze_decrypt_keys]
paze_private_key = "PAZE_PRIVATE_KEY" # Base 64 Encoded Private Key File cakey.pem generated for Paze -> Command to create private key: openssl req -newkey rsa:2048 -x509 -keyout cakey.pem -out cacert.pem -days 365
paze_private_key_passphrase = "PAZE_PRIVATE_KEY_PASSPHRASE" # PEM Passphrase used for generating Private Key File cakey.pem
[google_pay_decrypt_keys]
google_pay_root_signing_keys = "GOOGLE_PAY_ROOT_SIGNING_KEYS" # Base 64 Encoded Root Signing Keys provided by Google Pay (https://developers.google.com/pay/api/web/guides/resources/payment-data-cryptography)
[applepay_merchant_configs]
common_merchant_identifier = "APPLE_PAY_COMMON_MERCHANT_IDENTIFIER" # Refer to config.example.toml to learn how you can generate this value
merchant_cert = "APPLE_PAY_MERCHANT_CERTIFICATE" # Merchant Certificate provided by Apple Pay (https://developer.apple.com/) Certificates, Identifiers & Profiles > Apple Pay Merchant Identity Certificate
merchant_cert_key = "APPLE_PAY_MERCHANT_CERTIFICATE_KEY" # Private key generate by RSA:2048 algorithm. Refer Hyperswitch Docs (https://docs.hyperswitch.io/hyperswitch-cloud/payment-methods-setup/wallets/apple-pay/ios-application/) to generate the private key
applepay_endpoint = "https://apple-pay-gateway.apple.com/paymentservices/registerMerchant" # Apple pay gateway merchant endpoint
[connector_onboarding.paypal]
enabled = true # boolean
client_id = "paypal_client_id"
client_secret = "paypal_client_secret"
partner_id = "paypal_partner_id"
[connector_request_reference_id_config]
merchant_ids_send_payment_id_as_connector_request_id = [
"merchant_id_1",
"merchant_id_2",
"etc.,",
]
[cors]
max_age = 30 # Maximum time (in seconds) for which this CORS request may be cached.
origins = "http://localhost:8080" # List of origins that are allowed to make requests.
allowed_methods = "GET,POST,PUT,DELETE" # List of methods that are allowed
wildcard_origin = false # If true, allows any origin to make requests
# EmailClient configuration. Only applicable when the `email` feature flag is enabled.
[email]
sender_email = "example@example.com" # Sender email
aws_region = "" # AWS region used by AWS SES
allowed_unverified_days = 1 # Number of days the api calls ( with jwt token ) can be made without verifying the email
active_email_client = "SES" # The currently active email client
recon_recipient_email = "recon@example.com" # Recipient email for recon request email
prod_intent_recipient_email = "business@example.com" # Recipient email for prod intent email
# Configuration for aws ses, applicable when the active email client is SES
[email.aws_ses]
email_role_arn = "" # The amazon resource name ( arn ) of the role which has permission to send emails
sts_role_session_name = "" # An identifier for the assumed role session, used to uniquely identify a session.
[events]
source = "logs" # The event sink to push events supports kafka or logs (stdout)
[events.kafka]
brokers = [] # Kafka broker urls for bootstrapping the client
intent_analytics_topic = "topic" # Kafka topic to be used for PaymentIntent events
attempt_analytics_topic = "topic" # Kafka topic to be used for PaymentAttempt events
refund_analytics_topic = "topic" # Kafka topic to be used for Refund events
api_logs_topic = "topic" # Kafka topic to be used for incoming api events
connector_logs_topic = "topic" # Kafka topic to be used for connector api events
outgoing_webhook_logs_topic = "topic" # Kafka topic to be used for outgoing webhook events
dispute_analytics_topic = "topic" # Kafka topic to be used for Dispute events
audit_events_topic = "topic" # Kafka topic to be used for Payment Audit events
payout_analytics_topic = "topic" # Kafka topic to be used for Payouts and PayoutAttempt events
consolidated_events_topic = "topic" # Kafka topic to be used for Consolidated events
authentication_analytics_topic = "topic" # Kafka topic to be used for Authentication events
fraud_check_analytics_topic = "topic" # Kafka topic to be used for Fraud Check events
# File storage configuration
[file_storage]
file_storage_backend = "aws_s3" # File storage backend to be used
[file_storage.aws_s3]
region = "bucket_region" # The AWS region used by AWS S3 for file storage
bucket_name = "bucket" # The AWS S3 bucket name for file storage
# This section provides configs for currency conversion api
[forex_api]
api_key = "" # Api key for making request to foreign exchange Api
fallback_api_key = "" # Api key for the fallback service
data_expiration_delay_in_seconds = 21600 # Expiration time for data in cache as well as redis in seconds
redis_lock_timeout_in_seconds = 100 # Redis remains write locked for 100 s once the acquire_redis_lock is called
redis_ttl_in_seconds = 172800 # Time to expire for forex data stored in Redis
[jwekey] # 3 priv/pub key pair
vault_encryption_key = "" # public key in pem format, corresponding private key in rust locker
rust_locker_encryption_key = "" # public key in pem format, corresponding private key in rust locker
vault_private_key = "" # private key in pem format, corresponding public key in rust locker
# Locker settings contain details for accessing a card locker, a
# PCI Compliant storage entity which stores payment method information
# like card details
[locker]
host = "" # Locker host
host_rs = "" # Rust Locker host
mock_locker = true # Emulate a locker locally using Postgres
locker_signing_key_id = "1" # Key_id to sign basilisk hs locker
locker_enabled = true # Boolean to enable or disable saving cards in locker
redis_temp_locker_encryption_key = "redis_temp_locker_encryption_key" # Encryption key for redis temp locker
ttl_for_storage_in_secs = 220752000 # Time to live for storage entries in locker
[log.console]
enabled = true
level = "DEBUG"
log_format = "json"
[log.file]
enabled = false
level = "DEBUG"
log_format = "json"
# Telemetry configuration for metrics and traces
[log.telemetry]
traces_enabled = false # boolean [true or false], whether traces are enabled
metrics_enabled = false # boolean [true or false], whether metrics are enabled
ignore_errors = false # boolean [true or false], whether to ignore errors during traces or metrics pipeline setup
sampling_rate = 0.1 # decimal rate between 0.0 - 1.0
otel_exporter_otlp_endpoint = "http://localhost:4317" # endpoint to send metrics and traces to, can include port number
otel_exporter_otlp_timeout = 5000 # timeout (in milliseconds) for sending metrics and traces
use_xray_generator = false # Set this to true for AWS X-ray compatible traces
route_to_trace = ["*/confirm"]
bg_metrics_collection_interval_in_secs = 15 # Interval for collecting the metrics in background thread
[lock_settings]
delay_between_retries_in_milliseconds = 500 # Delay between retries in milliseconds
redis_lock_expiry_seconds = 180 # Seconds before the redis lock expires
# Main SQL data store credentials
[master_database]
username = "db_user" # DB Username
password = "db_pass" # DB Password. Use base-64 encoded kms encrypted value here when kms is enabled
host = "localhost" # DB Host
port = 5432 # DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
[generic_link]
[generic_link.payment_method_collect]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payment_method_collect.ui_config]
theme = "#4285F4"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payment_method_collect.enabled_payment_methods]
card = "credit,debit"
bank_transfer = "ach,bacs,sepa"
wallet = "paypal,pix,venmo"
[generic_link.payout_link]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
expiry = 900
[generic_link.payout_link.ui_config]
theme = "#4285F4"
logo = "https://app.hyperswitch.io/HyperswitchFavicon.png"
merchant_name = "HyperSwitch"
[generic_link.payout_link.enabled_payment_methods]
card = "credit,debit"
[payment_link]
sdk_url = "http://localhost:9090/0.16.7/v0/HyperLoader.js"
[payment_method_auth]
pm_auth_key = "pm_auth_key" # Payment method auth key used for authorization
redis_expiry = 900 # Redis expiry time in milliseconds
[proxy]
http_url = "http://proxy_http_url" # Proxy all HTTP traffic via this proxy
https_url = "https://proxy_https_url" # Proxy all HTTPS traffic via this proxy
bypass_proxy_hosts = "localhost, cluster.local" # A comma-separated list of domains or IP addresses that should not use the proxy. Whitespace between entries would be ignored.
# Redis credentials
[redis]
host = "127.0.0.1"
port = 6379
pool_size = 5 # Number of connections to keep open
reconnect_max_attempts = 5 # Maximum number of reconnection attempts to make before failing. Set to 0 to retry forever.
reconnect_delay = 5 # Delay between reconnection attempts, in milliseconds
default_ttl = 300 # Default TTL for entries, in seconds
default_hash_ttl = 900 # Default TTL for hashes entries, in seconds
use_legacy_version = false # RESP protocol for fred crate (set this to true if using RESPv2 or redis version < 6)
stream_read_count = 1 # Default number of entries to read from stream if not provided in stream read options
auto_pipeline = true # Whether or not the client should automatically pipeline commands across tasks when possible.
disable_auto_backpressure = false # Whether or not to disable the automatic backpressure features when pipelining is enabled.
max_in_flight_commands = 5000 # The maximum number of in-flight commands (per connection) before backpressure will be applied.
default_command_timeout = 30 # An optional timeout to apply to all commands. In seconds
unresponsive_timeout = 10 # An optional timeout for Unresponsive commands in seconds. This should be less than default_command_timeout.
max_feed_count = 200 # The maximum number of frames that will be fed to a socket before flushing.
cluster_enabled = true # boolean
cluster_urls = [
"redis.cluster.uri-1:8080",
"redis.cluster.uri-2:4115",
] # List of redis cluster urls
# Replica SQL data store credentials
[replica_database]
username = "replica_user" # DB Username
password = "db_pass" # DB Password. Use base-64 encoded kms encrypted value here when kms is enabled
host = "localhost" # DB Host
port = 5432 # DB Port
dbname = "hyperswitch_db" # Name of Database
pool_size = 5 # Number of connections to keep open
connection_timeout = 10 # Timeout for database connection in seconds
queue_strategy = "Fifo" # Add the queue strategy used by the database bb8 client
[report_download_config]
dispute_function = "report_download_config_dispute_function" # Config to download dispute report
payment_function = "report_download_config_payment_function" # Config to download payment report
refund_function = "report_download_config_refund_function" # Config to download refund report
region = "report_download_config_region" # Region of the bucket
[opensearch]
host = "https://localhost:9200"
enabled = false
[opensearch.auth]
auth = "basic"
username = "admin"
password = "admin"
region = "eu-central-1"
[opensearch.indexes]
payment_attempts = "hyperswitch-payment-attempt-events"
payment_intents = "hyperswitch-payment-intent-events"
refunds = "hyperswitch-refund-events"
disputes = "hyperswitch-dispute-events"
sessionizer_payment_attempts = "sessionizer-payment-attempt-events"
sessionizer_payment_intents = "sessionizer-payment-intent-events"
sessionizer_refunds = "sessionizer-refund-events"
sessionizer_disputes = "sessionizer-dispute-events"
# Configuration for the Key Manager Service
[key_manager]
url = "http://localhost:5000" # URL of the encryption service
# This section provides some secret values.
[secrets]
master_enc_key = "sample_key" # Master Encryption key used to encrypt merchant wise encryption key. Should be 32-byte long.
admin_api_key = "test_admin" # admin API key for admin authentication.
jwt_secret = "secret" # JWT secret used for user authentication.
# Server configuration
[server]
workers = 8
port = 8080
host = "127.0.0.1"
# This is the grace time (in seconds) given to the actix-server to stop the execution
# For more details: https://actix.rs/docs/server/#graceful-shutdown
shutdown_timeout = 30
# HTTP Request body limit. Defaults to 32kB
request_body_limit = 32_768
# HTTPS Server Configuration
# Self-signed Private Key and Certificate can be generated with mkcert for local development
[server.tls]
port = 8081
host = "127.0.0.1"
private_key = "/path/to/private_key.pem"
certificate = "/path/to/certificate.pem"
[secrets_management]
secrets_manager = "aws_kms" # Secrets manager client to be used
[secrets_management.aws_kms]
key_id = "kms_key_id" # The AWS key ID used by the KMS SDK for decrypting data.
region = "kms_region" # The AWS region used by the KMS SDK for decrypting data.
[encryption_management]
encryption_manager = "aws_kms" # Encryption manager client to be used
[encryption_management.aws_kms]
key_id = "kms_key_id" # The AWS key ID used by the KMS SDK for decrypting data.
region = "kms_region" # The AWS region used by the KMS SDK for decrypting data.
[multitenancy]
enabled = false
global_tenant = { tenant_id = "global", schema = "public", redis_key_prefix = "", clickhouse_database = "default"}
[multitenancy.tenants.public]
base_url = "http://localhost:8080"
schema = "public"
accounts_schema = "public"
redis_key_prefix = ""
clickhouse_database = "default"
[multitenancy.tenants.public.user]
control_center_url = "http://localhost:9000"
[user_auth_methods]
encryption_key = "user_auth_table_encryption_key" # Encryption key used for encrypting data in user_authentication_methods table
[cell_information]
id = "12345" # Default CellID for Global Cell Information
[network_tokenization_service] # Network Tokenization Service Configuration
generate_token_url= "" # base url to generate token
fetch_token_url= "" # base url to fetch token
token_service_api_key= "" # api key for token service
public_key= "" # public key to encrypt data for token service
private_key= "" # private key to decrypt response payload from token service
key_id= "" # key id to encrypt data for token service
delete_token_url= "" # base url to delete token from token service
check_token_status_url= "" # base url to check token status from token service
[grpc_client.dynamic_routing_client] # Dynamic Routing Client Configuration
host = "localhost" # Client Host
port = 7000 # Client Port
service = "dynamo" # Service name
[theme.storage]
file_storage_backend = "aws_s3" # Theme storage backend to be used
[theme.storage.aws_s3]
region = "bucket_region" # AWS region where the S3 bucket for theme storage is located
bucket_name = "bucket" # AWS S3 bucket name for theme storage
[theme.email_config]
entity_name = "Hyperswitch" # Name of the entity to be showed in emails
entity_logo_url = "https://example.com/logo.svg" # Logo URL of the entity to be used in emails
foreground_color = "#000000" # Foreground color of email text
primary_color = "#006DF9" # Primary color of email body
background_color = "#FFFFFF" # Background color of email body
[connectors.unified_authentication_service] #Unified Authentication Service Configuration
base_url = "http://localhost:8000" #base url to call unified authentication service
| 4,415 | 8,822 |
hyperswitch | config/deployments/integration_test.toml | .toml | # Bank redirect configs for allowed banks
[bank_config]
eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag"
eps.stripe.banks = "arzte_und_apotheker_bank,austrian_anadi_bank_ag,bank_austria,bankhaus_carl_spangler,bankhaus_schelhammer_und_schattera_ag,bawag_psk_ag,bks_bank_ag,brull_kallmus_bank_ag,btv_vier_lander_bank,capital_bank_grawe_gruppe_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_alpeadriabank_international_ag,hypo_noe_lb_fur_niederosterreich_u_wien,hypo_oberosterreich_salzburg_steiermark,hypo_tirol_bank_ag,hypo_vorarlberg_bank_ag,hypo_bank_burgenland_aktiengesellschaft,marchfelder_bank,oberbank_ag,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag,vr_bank_braunau"
ideal.adyen.banks = "abn_amro,asn_bank,bunq,ing,knab,n26,nationale_nederlanden,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot,yoursafe"
ideal.stripe.banks = "abn_amro,asn_bank,bunq,handelsbanken,ing,knab,moneyou,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot"
ideal.multisafepay.banks = "abn_amro, asn_bank, bunq, handelsbanken, nationale_nederlanden, n26, ing, knab, rabobank, regiobank, revolut, sns_bank,triodos_bank, van_lanschot, yoursafe"
online_banking_czech_republic.adyen.banks = "ceska_sporitelna,komercni_banka,platnosc_online_karta_platnicza"
online_banking_fpx.adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_fpx.fiuu.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_of_china,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_poland.adyen.banks = "blik_psp,place_zipko,m_bank,pay_with_ing,santander_przelew24,bank_pekaosa,bank_millennium,pay_with_alior_bank,banki_spoldzielcze,pay_with_inteligo,bnp_paribas_poland,bank_nowy_sa,credit_agricole,pay_with_bos,pay_with_citi_handlowy,pay_with_plus_bank,toyota_bank,velo_bank,e_transfer_pocztowy24"
online_banking_slovakia.adyen.banks = "e_platby_vub,postova_banka,sporo_pay,tatra_pay,viamo"
online_banking_thailand.adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank"
open_banking_uk.adyen.banks = "aib,bank_of_scotland,danske_bank,first_direct,first_trust,halifax,lloyds,monzo,nat_west,nationwide_bank,royal_bank_of_scotland,starling,tsb_bank,tesco_bank,ulster_bank,barclays,hsbc_bank,revolut,santander_przelew24,open_bank_success,open_bank_failure,open_bank_cancelled"
przelewy24.stripe.banks = "alior_bank,bank_millennium,bank_nowy_bfg_sa,bank_pekao_sa,banki_spbdzielcze,blik,bnp_paribas,boz,citi,credit_agricole,e_transfer_pocztowy24,getin_bank,idea_bank,inteligo,mbank_mtransfer,nest_przelew,noble_pay,pbac_z_ipko,plus_bank,santander_przelew24,toyota_bank,volkswagen_bank"
# Connector configuration, provided attributes will be used to fulfill API requests.
# Examples provided here are sandbox/test base urls, can be replaced by live or mock
# base urls based on your need.
# Note: These are not optional attributes. hyperswitch request can fail due to invalid/empty values.
[connectors]
aci.base_url = "https://eu-test.oppwa.com/"
adyen.base_url = "https://checkout-test.adyen.com/"
adyen.payout_base_url = "https://pal-test.adyen.com/"
adyen.dispute_base_url = "https://ca-test.adyen.com/"
adyenplatform.base_url = "https://balanceplatform-api-test.adyen.com/"
airwallex.base_url = "https://api-demo.airwallex.com/"
amazonpay.base_url = "https://pay-api.amazon.com/v2"
applepay.base_url = "https://apple-pay-gateway.apple.com/"
authorizedotnet.base_url = "https://apitest.authorize.net/xml/v1/request.api"
bambora.base_url = "https://api.na.bambora.com"
bamboraapac.base_url = "https://demo.ippayments.com.au/interface/api"
bankofamerica.base_url = "https://apitest.merchant-services.bankofamerica.com/"
billwerk.base_url = "https://api.reepay.com/"
billwerk.secondary_base_url = "https://card.reepay.com/"
bitpay.base_url = "https://test.bitpay.com"
bluesnap.base_url = "https://sandbox.bluesnap.com/"
bluesnap.secondary_base_url = "https://sandpay.bluesnap.com/"
boku.base_url = "https://$-api4-stage.boku.com"
braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
chargebee.base_url = "https://$.chargebee.com/api/"
checkout.base_url = "https://api.sandbox.checkout.com/"
coinbase.base_url = "https://api.commerce.coinbase.com"
coingate.base_url = "https://api-sandbox.coingate.com"
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
cybersource.base_url = "https://apitest.cybersource.com/"
datatrans.base_url = "https://api.sandbox.datatrans.com/"
datatrans.secondary_base_url = "https://pay.sandbox.datatrans.com/"
deutschebank.base_url = "https://testmerch.directpos.de/rest-api"
digitalvirgo.base_url = "https://dcb-integration-service-sandbox-external.staging.digitalvirgo.pl"
dlocal.base_url = "https://sandbox.dlocal.com/"
dummyconnector.base_url = "http://localhost:8080/dummy-connector"
ebanx.base_url = "https://sandbox.ebanxpay.com/"
elavon.base_url = "https://api.demo.convergepay.com/VirtualMerchantDemo/"
facilitapay.base_url = "https://sandbox-api.facilitapay.com/api/v1"
fiserv.base_url = "https://cert.api.fiservapps.com/"
fiservemea.base_url = "https://prod.emea.api.fiservapps.com/sandbox"
fiuu.base_url = "https://sandbox.merchant.razer.com/"
fiuu.secondary_base_url="https://sandbox.merchant.razer.com/"
fiuu.third_base_url="https://api.merchant.razer.com/"
forte.base_url = "https://sandbox.forte.net/api/v3"
getnet.base_url = "https://api-test.getneteurope.com/engine/rest"
globalpay.base_url = "https://apis.sandbox.globalpay.com/ucp/"
globepay.base_url = "https://pay.globepay.co/"
gocardless.base_url = "https://api-sandbox.gocardless.com"
gpayments.base_url = "https://{{merchant_endpoint_prefix}}-test.api.as1.gpayments.net"
helcim.base_url = "https://api.helcim.com/"
hipay.base_url = "https://stage-secure-gateway.hipay-tpp.com/rest/"
hipay.secondary_base_url = "https://stage-secure2-vault.hipay-tpp.com/rest/"
hipay.third_base_url = "https://stage-api-gateway.hipay.com/"
iatapay.base_url = "https://sandbox.iata-pay.iata.org/api/v1"
inespay.base_url = "https://apiflow.inespay.com/san/v21"
itaubank.base_url = "https://sandbox.devportal.itau.com.br/"
jpmorgan.base_url = "https://api-mock.payments.jpmorgan.com/api/v2"
juspaythreedsserver.base_url = "http://localhost:8000"
jpmorgan.secondary_base_url="https://id.payments.jpmorgan.com"
klarna.base_url = "https://api{{klarna_region}}.playground.klarna.com/"
mifinity.base_url = "https://demo.mifinity.com/"
mollie.base_url = "https://api.mollie.com/v2/"
mollie.secondary_base_url = "https://api.cc.mollie.com/v1/"
moneris.base_url = "https://api.sb.moneris.io"
multisafepay.base_url = "https://testapi.multisafepay.com/"
nexinets.base_url = "https://apitest.payengine.de/v1"
nexixpay.base_url = "https://xpaysandbox.nexigroup.com/api/phoenix-0.0/psp/api/v1"
nmi.base_url = "https://secure.nmi.com/"
nomupay.base_url = "https://payout-api.sandbox.nomupay.com"
noon.base_url = "https://api-test.noonpayments.com/"
noon.key_mode = "Test"
novalnet.base_url = "https://payport.novalnet.de/v2"
nuvei.base_url = "https://ppp-test.nuvei.com/"
opayo.base_url = "https://pi-test.sagepay.com/"
opennode.base_url = "https://dev-api.opennode.com"
paybox.base_url = "https://preprod-ppps.paybox.com/PPPS.php"
paybox.secondary_base_url="https://preprod-tpeweb.paybox.com/"
payeezy.base_url = "https://api-cert.payeezy.com/"
payme.base_url = "https://sandbox.payme.io/"
payone.base_url = "https://payment.preprod.payone.com/"
paypal.base_url = "https://api-m.sandbox.paypal.com/"
paystack.base_url = "https://api.paystack.co"
payu.base_url = "https://secure.snd.payu.com/"
placetopay.base_url = "https://test.placetopay.com/rest/gateway"
plaid.base_url = "https://sandbox.plaid.com"
powertranz.base_url = "https://staging.ptranz.com/api/"
prophetpay.base_url = "https://ccm-thirdparty.cps.golf/"
rapyd.base_url = "https://sandboxapi.rapyd.net"
razorpay.base_url = "https://sandbox.juspay.in/"
recurly.base_url = "https://v3.recurly.com"
redsys.base_url = "https://sis-t.redsys.es:25443"
shift4.base_url = "https://api.shift4.com/"
signifyd.base_url = "https://api.signifyd.com/"
riskified.base_url = "https://sandbox.riskified.com/api"
square.base_url = "https://connect.squareupsandbox.com/"
square.secondary_base_url = "https://pci-connect.squareupsandbox.com/"
stax.base_url = "https://apiprod.fattlabs.com/"
stripe.base_url = "https://api.stripe.com/"
stripe.base_url_file_upload = "https://files.stripe.com/"
stripebilling.base_url = "https://api.stripe.com/"
taxjar.base_url = "https://api.sandbox.taxjar.com/v2/"
thunes.base_url = "https://api.limonetikqualif.com/"
trustpay.base_url = "https://test-tpgw.trustpay.eu/"
trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/"
tsys.base_url = "https://stagegw.transnox.com/"
volt.base_url = "https://api.sandbox.volt.io/"
wellsfargo.base_url = "https://apitest.cybersource.com/"
wellsfargopayout.base_url = "https://api-sandbox.wellsfargo.com/"
wise.base_url = "https://api.sandbox.transferwise.tech/"
worldline.base_url = "https://eu.sandbox.api-ingenico.com/"
worldpay.base_url = "https://try.access.worldpay.com/"
xendit.base_url = "https://api.xendit.co"
zen.base_url = "https://api.zen-test.com/"
zen.secondary_base_url = "https://secure.zen-test.com/"
zsl.base_url = "https://api.sitoffalb.net/"
threedsecureio.base_url = "https://service.sandbox.3dsecure.io"
netcetera.base_url = "https://{{merchant_endpoint_prefix}}.3ds-server.prev.netcetera-cloud-payment.ch"
[dummy_connector]
enabled = true # Whether dummy connector is enabled or not
assets_base_url = "https://app.hyperswitch.io/assets/TestProcessor/" # Base url for dummy connector assets
authorize_ttl = 36000 # Time to live for dummy connector authorize request in redis
default_return_url = "https://app.hyperswitch.io/" # Default return url when no return url is passed while payment
discord_invite_url = "https://discord.gg/wJZ7DVW8mm" # Discord invite url for hyperswitch
payment_complete_duration = 500 # Fake delay duration for dummy connector payment complete
payment_complete_tolerance = 100 # Fake delay tolerance for dummy connector payment complete
payment_duration = 1000 # Fake delay duration for dummy connector payment
payment_retrieve_duration = 500 # Fake delay duration for dummy connector payment sync
payment_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector payment sync
payment_tolerance = 100 # Fake delay tolerance for dummy connector payment
payment_ttl = 172800 # Time to live for dummy connector payment in redis
refund_duration = 1000 # Fake delay duration for dummy connector refund
refund_retrieve_duration = 500 # Fake delay duration for dummy connector refund sync
refund_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector refund sync
refund_tolerance = 100 # Fake delay tolerance for dummy connector refund
refund_ttl = 172800 # Time to live for dummy connector refund in redis
slack_invite_url = "https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2awm23agh-p_G5xNpziv6yAiedTkkqLg" # Slack invite url for hyperswitch
[user]
password_validity_in_days = 90
two_factor_auth_expiry_in_secs = 300
totp_issuer_name = "Hyperswitch Integ"
base_url = "https://integ.hyperswitch.io"
force_two_factor_auth = false
force_cookies = true
[frm]
enabled = true
[connector_customer]
connector_list = "gocardless,stax,stripe"
payout_connector_list = "nomupay,stripe,wise"
[delayed_session_response]
connectors_with_delayed_session_response = "trustpay,payme" # List of connectors which have delayed session response
[mandates.supported_payment_methods]
bank_debit.ach = { connector_list = "gocardless,adyen,stripe" }
bank_debit.becs = { connector_list = "gocardless,stripe,adyen" }
bank_debit.bacs = { connector_list = "stripe,gocardless" }
bank_debit.sepa = { connector_list = "gocardless,adyen,stripe,deutschebank" }
card.credit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
card.debit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
pay_later.klarna.connector_list = "adyen"
wallet.apple_pay.connector_list = "stripe,adyen,cybersource,noon,bankofamerica,nexinets,novalnet,authorizedotnet"
wallet.samsung_pay.connector_list = "cybersource"
wallet.google_pay.connector_list = "stripe,adyen,cybersource,bankofamerica,noon,globalpay,multisafepay,novalnet,authorizedotnet"
wallet.paypal.connector_list = "adyen,globalpay,nexinets,novalnet,paypal"
wallet.momo.connector_list = "adyen"
wallet.kakao_pay.connector_list = "adyen"
wallet.go_pay.connector_list = "adyen"
wallet.gcash.connector_list = "adyen"
wallet.dana.connector_list = "adyen"
wallet.twint.connector_list = "adyen"
wallet.vipps.connector_list = "adyen"
bank_redirect.ideal.connector_list = "stripe,adyen,globalpay,multisafepay,nexinets"
bank_redirect.sofort.connector_list = "stripe,globalpay"
bank_redirect.giropay.connector_list = "globalpay,multisafepay,nexinets"
bank_redirect.bancontact_card.connector_list="adyen,stripe"
bank_redirect.trustly.connector_list="adyen"
bank_redirect.open_banking_uk.connector_list="adyen"
bank_redirect.eps.connector_list="globalpay,nexinets"
[mandates.update_mandate_supported]
card.credit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
card.debit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
[network_transaction_id_supported_connectors]
connector_list = "adyen,cybersource,novalnet,stripe,worldpay"
[payouts]
payout_eligibility = true # Defaults the eligibility of a payout method to true in case connector does not provide checks for payout eligibility
#Payment Method Filters Based on Country and Currency
[pm_filters.default]
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ,FR,ES", currency = "GBP" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA", currency = "AED,AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay.country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN"
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AT,BE,DK,FI,FR,DE,IE,IT,NL,NO,ES,SE,GB,US,CA", currency = "USD,GBP,EUR,CHF,DKK,SEK,NOK,AUD,PLN,CAD" }
paypal.currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD"
sofort = { country = "ES,GB,SE,AT,NL,DE,CH,BE,FR,FI,IT,PL", currency = "EUR" }
[pm_filters.adyen]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ", currency = "GBP,AUD,NZD,CAD,USD" }
alfamart = { country = "ID", currency = "IDR" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD" }
ali_pay_hk = { country = "HK", currency = "HKD" }
alma = { country = "FR", currency = "EUR" }
apple_pay = { country = "AU,NZ,CN,JP,HK,SG,MY,BH,AE,KW,BR,ES,GB,SE,NO,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,LI,UA,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD,MYR" }
atome = { country = "MY,SG", currency = "MYR,SGD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
bca_bank_transfer = { country = "ID", currency = "IDR" }
bizum = { country = "ES", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
bni_va = { country = "ID", currency = "IDR" }
boleto = { country = "BR", currency = "BRL" }
bri_va = { country = "ID", currency = "IDR" }
cimb_va = { country = "ID", currency = "IDR" }
dana = { country = "ID", currency = "IDR" }
danamon_va = { country = "ID", currency = "IDR" }
eps = { country = "AT", currency = "EUR" }
family_mart = { country = "JP", currency = "JPY" }
gcash = { country = "PH", currency = "PHP" }
giropay = { country = "DE", currency = "EUR" }
go_pay = { country = "ID", currency = "IDR" }
google_pay = { country = "AU,NZ,JP,HK,SG,MY,TH,VN,BH,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,RO,HR,LI,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,TR,IS,CA,US", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
indomaret = { country = "ID", currency = "IDR" }
kakao_pay = { country = "KR", currency = "KRW" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NO,PL,PT,RO,ES,SE,CH,NL,GB,US", currency = "AUD,EUR,CAD,CZK,DKK,NOK,PLN,RON,SEK,CHF,GBP,USD"}
lawson = { country = "JP", currency = "JPY" }
mandiri_va = { country = "ID", currency = "IDR" }
mb_way = { country = "PT", currency = "EUR" }
mini_stop = { country = "JP", currency = "JPY" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
momo = { country = "VN", currency = "VND" }
momo_atm = { country = "VN", currency = "VND" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_fpx = { country = "MY", currency = "MYR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
online_banking_thailand = { country = "TH", currency = "THB" }
open_banking_uk = { country = "GB", currency = "GBP" }
oxxo = { country = "MX", currency = "MXN" }
pay_bright = { country = "CA", currency = "CAD" }
pay_easy = { country = "JP", currency = "JPY" }
pay_safe_card = { country = "AT,AU,BE,BR,BE,CA,HR,CY,CZ,DK,FI,FR,GE,DE,GI,HU,IS,IE,KW,LV,IE,LI,LT,LU,MT,MX,MD,ME,NL,NZ,NO,PY,PE,PL,PT,RO,SA,RS,SK,SI,ES,SE,CH,TR,AE,GB,US,UY", currency = "EUR,AUD,BRL,CAD,CZK,DKK,GEL,GIP,HUF,KWD,CHF,MXN,MDL,NZD,NOK,PYG,PEN,PLN,RON,SAR,RSD,SEK,TRY,AED,GBP,USD,UYU" }
permata_bank_transfer = { country = "ID", currency = "IDR" }
seicomart = { country = "JP", currency = "JPY" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
seven_eleven = { country = "JP", currency = "JPY" }
sofort = { country = "AT,BE,DE,ES,CH,NL", currency = "CHF,EUR"}
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
swish = { country = "SE", currency = "SEK" }
touch_n_go = { country = "MY", currency = "MYR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
twint = { country = "CH", currency = "CHF" }
vipps = { country = "NO", currency = "NOK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD,CNY" }
[pm_filters.airwallex]
credit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
google_pay = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.elavon]
credit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.xendit]
credit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
debit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
[pm_filters.tsys]
credit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
debit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
[pm_filters.billwerk]
credit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
debit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
[pm_filters.fiservemea]
credit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.authorizedotnet]
google_pay.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
paypal.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
[pm_filters.bambora]
credit = { country = "US,CA", currency = "USD" }
debit = { country = "US,CA", currency = "USD" }
[pm_filters.bankofamerica]
credit = { currency = "USD" }
debit = { currency = "USD" }
apple_pay = { currency = "USD" }
google_pay = { currency = "USD" }
samsung_pay = { currency = "USD" }
[pm_filters.braintree]
paypal.currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD"
[pm_filters.forte]
credit.currency = "USD"
debit.currency = "USD"
[pm_filters.helcim]
credit = { country = "US, CA", currency = "USD, CAD" }
debit = { country = "US, CA", currency = "USD, CAD" }
[pm_filters.globalpay]
credit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
debit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,DE,ES,IT,NL", currency = "EUR" }
[pm_filters.globepay]
ali_pay.currency = "GBP,CNY"
we_chat_pay.currency = "GBP,CNY"
[pm_filters.jpmorgan]
debit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
credit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
[pm_filters.bitpay]
crypto_currency = { country = "US, CA, GB, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, AUD, CAD, GBP, MXN, NZD, CHF, EUR"}
[pm_filters.paybox]
debit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
credit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
[pm_filters.digitalvirgo]
direct_carrier_billing = {country = "MA, CM, ZA, EG, SN, DZ, TN, ML, GN, GH, LY, GA, CG, MG, BW, SD, NG, ID, SG, AZ, TR, FR, ES, PL, GB, PT, DE, IT, BE, IE, SK, GR, NL, CH, BR, MX, AR, CL, AE, IQ, KW, BH, SA, QA, PS, JO, OM, RU" , currency = "MAD, XOF, XAF, ZAR, EGP, DZD, TND, GNF, GHS, LYD, XAF, CDF, MGA, BWP, SDG, NGN, IDR, SGD, RUB, AZN, TRY, EUR, PLN, GBP, CHF, BRL, MXN, ARS, CLP, AED, IQD, KWD, BHD, SAR, QAR, ILS, JOD, OMR" }
[pm_filters.klarna]
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD" }
[pm_filters.mifinity]
mifinity = { country = "BR,CN,SG,MY,DE,CH,DK,GB,ES,AD,GI,FI,FR,GR,HR,IT,JP,MX,AR,CO,CL,PE,VE,UY,PY,BO,EC,GT,HN,SV,NI,CR,PA,DO,CU,PR,NL,NO,PL,PT,SE,RU,TR,TW,HK,MO,AX,AL,DZ,AS,AO,AI,AG,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BE,BZ,BJ,BM,BT,BQ,BA,BW,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CX,CC,KM,CG,CK,CI,CW,CY,CZ,DJ,DM,EG,GQ,ER,EE,ET,FK,FO,FJ,GF,PF,TF,GA,GM,GE,GH,GL,GD,GP,GU,GG,GN,GW,GY,HT,HM,VA,IS,IN,ID,IE,IM,IL,JE,JO,KZ,KE,KI,KW,KG,LA,LV,LB,LS,LI,LT,LU,MK,MG,MW,MV,ML,MT,MH,MQ,MR,MU,YT,FM,MD,MC,MN,ME,MS,MA,MZ,NA,NR,NP,NC,NZ,NE,NG,NU,NF,MP,OM,PK,PW,PS,PG,PH,PN,QA,RE,RO,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SX,SK,SI,SB,SO,ZA,GS,KR,LK,SR,SJ,SZ,TH,TL,TG,TK,TO,TT,TN,TM,TC,TV,UG,UA,AE,UZ,VU,VN,VG,VI,WF,EH,ZM", currency = "AUD,CAD,CHF,CNY,CZK,DKK,EUR,GBP,INR,JPY,NOK,NZD,PLN,RUB,SEK,ZAR,USD,EGP,UYU,UZS" }
[pm_filters.payu]
debit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
credit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
google_pay = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
[pm_filters.prophetpay]
card_redirect.currency = "USD"
[pm_filters.stax]
ach = { country = "US", currency = "USD" }
[pm_filters.stripe]
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ,FR,ES", currency = "USD,CAD,GBP,AUD,NZD" }
apple_pay.country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA"
cashapp = { country = "US", currency = "USD" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay.country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN"
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "AUD,CAD,CHF,CZK,DKK,EUR,GBP,NOK,NZD,PLN,SEK,USD" }
sofort = { country = "AT,BE,DE,IT,NL,ES", currency = "EUR" }
[pm_filters.cybersource]
credit = { currency = "USD,GBP,EUR,PLN" }
debit = { currency = "USD,GBP,EUR,PLN" }
apple_pay = { currency = "USD,GBP,EUR,PLN" }
google_pay = { currency = "USD,GBP,EUR,PLN" }
samsung_pay = { currency = "USD,GBP,EUR" }
paze = { currency = "USD" }
[pm_filters.nexixpay]
credit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
debit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
[pm_filters.square]
credit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
debit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
[pm_filters.iatapay]
upi_collect = { country = "IN", currency = "INR" }
upi_intent = { country = "IN", currency = "INR" }
ideal = { country = "NL", currency = "EUR" }
local_bank_redirect = { country = "AT,BE,EE,FI,FR,DE,IE,IT,LV,LT,LU,NL,PT,ES,GB,IN,HK,SG,TH,BR,MX,GH,VN,MY,PH,JO,AU,CO", currency = "EUR,GBP,INR,HKD,SGD,THB,BRL,MXN,GHS,VND,MYR,PHP,JOD,AUD,COP" }
duit_now = { country = "MY", currency = "MYR" }
fps = { country = "GB", currency = "GBP" }
prompt_pay = { country = "TH", currency = "THB" }
viet_qr = { country = "VN", currency = "VND" }
[pm_filters.coinbase]
crypto_currency = { country = "ZA,US,BR,CA,TR,SG,VN,GB,DE,FR,ES,PT,IT,NL,AU" }
[pm_filters.novalnet]
credit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
debit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
apple_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
google_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
paypal = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
[pm_filters.volt]
open_banking_uk = {country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL"}
[pm_filters.razorpay]
upi_collect = {country = "IN", currency = "INR"}
[pm_filters.redsys]
credit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
debit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
[pm_filters.plaid]
open_banking_pis = {currency = "EUR,GBP"}
[pm_filters.worldpay]
debit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
credit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
google_pay = { country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US" }
[pm_filters.zen]
boleto = { country = "BR", currency = "BRL" }
efecty = { country = "CO", currency = "COP" }
multibanco = { country = "PT", currency = "EUR" }
pago_efectivo = { country = "PE", currency = "PEN" }
pix = { country = "BR", currency = "BRL" }
pse = { country = "CO", currency = "COP" }
red_compra = { country = "CL", currency = "CLP" }
red_pagos = { country = "UY", currency = "UYU" }
[pm_filters.zsl]
local_bank_transfer = { country = "CN", currency = "CNY" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }
apple_pay = { country = "MY", currency = "MYR" }
google_pay = { country = "MY", currency = "MYR" }
[pm_filters.trustpay]
instant_bank_transfer = { country = "CZ,SK,GB,AT,DE,IT", currency = "CZK, EUR, GBP" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,GB", currency = "EUR" }
[pm_filters.dlocal]
credit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
debit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
[pm_filters.mollie]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
eps = { country = "AT", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
przelewy24 = { country = "PL", currency = "PLN,EUR" }
[pm_filters.rapyd]
apple_pay = { country = "AL,AS,AD,AR,AM,AU,AT,AZ,BH,BE,BM,BA,BR,BG,CA,KH,KY,CL,CO,CR,HR,CY,CZ,DK,DO,EC,SV,EE,FO,FI,FR,GE,DE,GI,GR,GL,GU,GT,GG,HN,HK,HU,IS,IE,IM,IL,IT,JP,KZ,KG,KW,LV,LI,LT,LU,MO,MY,MT,MX,MD,MC,ME,MA,NL,NZ,NI,MK,MP,NO,PA,PY,PR,PE,PL,PT,QA,RO,SM,RS,SG,SK,SI,ZA,ES,SE,CH,TW,TJ,TH,UA,AE,GB,US,UY,VI,VN", currency = "EUR,GBP,ISK,USD" }
google_pay = { country = "AM,AT,AU,AZ,BA,BE,BG,BY,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,EC,EE,EG,ES,FI,FR,GB,GE,GL,GR,GT,HK,HN,HR,HU,IE,IL,IM,IS,IT,JE,JP,JO,KZ,KW,LA,LI,LT,LU,LV,MA,MC,MD,ME,MO,MN,MT,MX,MY,NC,NL,NO,NZ,OM,PA,PE,PL,PR,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,SV,TH,TW,UA,US,UY,VA,VN,ZA", currency = "EUR,GBP,ISK,USD" }
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.bamboraapac]
credit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.gocardless]
ach = { country = "US", currency = "USD" }
becs = { country = "AU", currency = "AUD" }
sepa = { country = "AU,AT,BE,BG,CA,HR,CY,CZ,DK,FI,FR,DE,HU,IT,LU,MT,NL,NZ,NO,PL,PT,IE,RO,SK,SI,ZA,ES,SE,CH,GB", currency = "GBP,EUR,SEK,DKK,AUD,NZD,CAD" }
[pm_filters.powertranz]
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
[pm_filters.worldline]
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.shift4]
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,CH,DE,ES,FI,FR,GB,IT,NL,PL,SE", currency = "CHF,EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[payout_method_filters.adyenplatform]
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,CZ,DE,HU,NO,PL,SE,GB,CH" , currency = "EUR,CZK,DKK,HUF,NOK,PLN,SEK,GBP,CHF" }
[payout_method_filters.stripe]
ach = { country = "US", currency = "USD" }
[temp_locker_enable_config]
bluesnap.payment_method = "card"
nuvei.payment_method = "card"
shift4.payment_method = "card"
stripe.payment_method = "bank_transfer"
bankofamerica = { payment_method = "card" }
cybersource = { payment_method = "card" }
nmi.payment_method = "card"
payme.payment_method = "card"
deutschebank = { payment_method = "bank_debit" }
paybox = { payment_method = "card" }
nexixpay = { payment_method = "card" }
redsys = { payment_method = "card" }
#tokenization configuration which describe token lifetime and payment method for specific connector
[tokenization]
braintree = { long_lived_token = false, payment_method = "card" }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
gocardless = { long_lived_token = true, payment_method = "bank_debit" }
hipay = { long_lived_token = false, payment_method = "card" }
mollie = { long_lived_token = false, payment_method = "card" }
payme = { long_lived_token = false, payment_method = "card" }
square = { long_lived_token = false, payment_method = "card" }
stax = { long_lived_token = true, payment_method = "card,bank_debit" }
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { list = "google_pay", type = "disable_only" } }
billwerk = {long_lived_token = false, payment_method = "card"}
[webhooks]
outgoing_enabled = true
[webhook_source_verification_call]
connectors_with_webhook_source_verification_call = "paypal" # List of connectors which has additional source verification api-call
[unmasked_headers]
keys = "accept-language,user-agent,x-profile-id"
[saved_payment_methods]
sdk_eligible_payment_methods = "card"
[locker_based_open_banking_connectors]
connector_list = ""
[network_tokenization_supported_card_networks]
card_networks = "Visa, AmericanExpress, Mastercard"
[network_tokenization_supported_connectors]
connector_list = "cybersource"
[platform]
enabled = true
[billing_connectors_payment_sync]
billing_connectors_which_require_payment_sync = "stripebilling, recurly"
| 33,025 | 8,823 |
hyperswitch | config/deployments/drainer.toml | .toml | [drainer]
loop_interval = 500
max_read_count = 100
num_partitions = 64
shutdown_interval = 1000
stream_name = "drainer_stream"
[secrets_management]
secrets_manager = "aws_kms"
[secrets_management.aws_kms]
key_id = "kms_key_id"
region = "kms_region"
[encryption_management]
encryption_manager = "aws_kms"
[encryption_management.aws_kms]
key_id = "kms_key_id"
region = "kms_region"
[log.console]
enabled = true
level = "DEBUG"
log_format = "json"
[log.telemetry]
metrics_enabled = true
otel_exporter_otlp_endpoint = "http://localhost:4317"
[master_database]
dbname = "master_database_name"
host = "localhost"
password = "master_database_password"
pool_size = 3
port = 5432
username = "username"
[redis]
cluster_enabled = false
cluster_urls = ["redis.cluster.uri-1:8080", "redis.cluster.uri-2:4115"] # List of redis cluster urls
default_ttl = 300
host = "localhost"
pool_size = 5
port = 6379
reconnect_delay = 5
reconnect_max_attempts = 5
stream_read_count = 1
use_legacy_version = false
| 303 | 8,824 |
hyperswitch | config/deployments/sandbox.toml | .toml | # Bank redirect configs for allowed banks
[bank_config]
eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag"
eps.stripe.banks = "arzte_und_apotheker_bank,austrian_anadi_bank_ag,bank_austria,bankhaus_carl_spangler,bankhaus_schelhammer_und_schattera_ag,bawag_psk_ag,bks_bank_ag,brull_kallmus_bank_ag,btv_vier_lander_bank,capital_bank_grawe_gruppe_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_alpeadriabank_international_ag,hypo_noe_lb_fur_niederosterreich_u_wien,hypo_oberosterreich_salzburg_steiermark,hypo_tirol_bank_ag,hypo_vorarlberg_bank_ag,hypo_bank_burgenland_aktiengesellschaft,marchfelder_bank,oberbank_ag,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag,vr_bank_braunau"
ideal.adyen.banks = "abn_amro,asn_bank,bunq,ing,knab,n26,nationale_nederlanden,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot,yoursafe"
ideal.stripe.banks = "abn_amro,asn_bank,bunq,handelsbanken,ing,knab,moneyou,rabobank,regiobank,revolut,sns_bank,triodos_bank,van_lanschot"
ideal.multisafepay.banks = "abn_amro, asn_bank, bunq, handelsbanken, nationale_nederlanden, n26, ing, knab, rabobank, regiobank, revolut, sns_bank,triodos_bank, van_lanschot, yoursafe"
online_banking_czech_republic.adyen.banks = "ceska_sporitelna,komercni_banka,platnosc_online_karta_platnicza"
online_banking_fpx.adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_fpx.fiuu.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_of_china,bank_islam,bank_muamalat,bank_rakyat,bank_simpanan_nasional,cimb_bank,hong_leong_bank,hsbc_bank,kuwait_finance_house,maybank,ocbc_bank,public_bank,rhb_bank,standard_chartered_bank,uob_bank"
online_banking_poland.adyen.banks = "blik_psp,place_zipko,m_bank,pay_with_ing,santander_przelew24,bank_pekaosa,bank_millennium,pay_with_alior_bank,banki_spoldzielcze,pay_with_inteligo,bnp_paribas_poland,bank_nowy_sa,credit_agricole,pay_with_bos,pay_with_citi_handlowy,pay_with_plus_bank,toyota_bank,velo_bank,e_transfer_pocztowy24"
online_banking_slovakia.adyen.banks = "e_platby_vub,postova_banka,sporo_pay,tatra_pay,viamo"
online_banking_thailand.adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank"
open_banking_uk.adyen.banks = "aib,bank_of_scotland,danske_bank,first_direct,first_trust,halifax,lloyds,monzo,nat_west,nationwide_bank,royal_bank_of_scotland,starling,tsb_bank,tesco_bank,ulster_bank,barclays,hsbc_bank,revolut,santander_przelew24,open_bank_success,open_bank_failure,open_bank_cancelled"
przelewy24.stripe.banks = "alior_bank,bank_millennium,bank_nowy_bfg_sa,bank_pekao_sa,banki_spbdzielcze,blik,bnp_paribas,boz,citi,credit_agricole,e_transfer_pocztowy24,getin_bank,idea_bank,inteligo,mbank_mtransfer,nest_przelew,noble_pay,pbac_z_ipko,plus_bank,santander_przelew24,toyota_bank,volkswagen_bank"
[connector_customer]
connector_list = "stax,stripe,gocardless"
payout_connector_list = "nomupay,stripe,wise"
# Connector configuration, provided attributes will be used to fulfill API requests.
# Examples provided here are sandbox/test base urls, can be replaced by live or mock
# base urls based on your need.
# Note: These are not optional attributes. hyperswitch request can fail due to invalid/empty values.
[connectors]
aci.base_url = "https://eu-test.oppwa.com/"
adyen.base_url = "https://checkout-test.adyen.com/"
adyen.payout_base_url = "https://pal-test.adyen.com/"
adyen.dispute_base_url = "https://ca-test.adyen.com/"
adyenplatform.base_url = "https://balanceplatform-api-test.adyen.com/"
airwallex.base_url = "https://api-demo.airwallex.com/"
amazonpay.base_url = "https://pay-api.amazon.com/v2"
applepay.base_url = "https://apple-pay-gateway.apple.com/"
authorizedotnet.base_url = "https://apitest.authorize.net/xml/v1/request.api"
bambora.base_url = "https://api.na.bambora.com"
bamboraapac.base_url = "https://demo.ippayments.com.au/interface/api"
bankofamerica.base_url = "https://apitest.merchant-services.bankofamerica.com/"
billwerk.base_url = "https://api.reepay.com/"
billwerk.secondary_base_url = "https://card.reepay.com/"
bitpay.base_url = "https://test.bitpay.com"
bluesnap.base_url = "https://sandbox.bluesnap.com/"
bluesnap.secondary_base_url = "https://sandpay.bluesnap.com/"
boku.base_url = "https://$-api4-stage.boku.com"
braintree.base_url = "https://payments.sandbox.braintree-api.com/graphql"
cashtocode.base_url = "https://cluster05.api-test.cashtocode.com"
checkout.base_url = "https://api.sandbox.checkout.com/"
chargebee.base_url = "https://$.chargebee.com/api/"
coinbase.base_url = "https://api.commerce.coinbase.com"
coingate.base_url = "https://api-sandbox.coingate.com"
cryptopay.base_url = "https://business-sandbox.cryptopay.me"
cybersource.base_url = "https://apitest.cybersource.com/"
datatrans.base_url = "https://api.sandbox.datatrans.com/"
datatrans.secondary_base_url = "https://pay.sandbox.datatrans.com/"
deutschebank.base_url = "https://testmerch.directpos.de/rest-api"
digitalvirgo.base_url = "https://dcb-integration-service-sandbox-external.staging.digitalvirgo.pl"
dlocal.base_url = "https://sandbox.dlocal.com/"
dummyconnector.base_url = "http://localhost:8080/dummy-connector"
ebanx.base_url = "https://sandbox.ebanxpay.com/"
elavon.base_url = "https://api.demo.convergepay.com/VirtualMerchantDemo/"
facilitapay.base_url = "https://sandbox-api.facilitapay.com/api/v1"
fiserv.base_url = "https://cert.api.fiservapps.com/"
fiservemea.base_url = "https://prod.emea.api.fiservapps.com/sandbox"
fiuu.base_url = "https://sandbox.merchant.razer.com/"
fiuu.secondary_base_url="https://sandbox.merchant.razer.com/"
fiuu.third_base_url="https://api.merchant.razer.com/"
forte.base_url = "https://sandbox.forte.net/api/v3"
getnet.base_url = "https://api-test.getneteurope.com/engine/rest"
globalpay.base_url = "https://apis.sandbox.globalpay.com/ucp/"
globepay.base_url = "https://pay.globepay.co/"
gocardless.base_url = "https://api-sandbox.gocardless.com"
gpayments.base_url = "https://{{merchant_endpoint_prefix}}-test.api.as1.gpayments.net"
helcim.base_url = "https://api.helcim.com/"
hipay.base_url = "https://stage-secure-gateway.hipay-tpp.com/rest/"
hipay.secondary_base_url = "https://stage-secure2-vault.hipay-tpp.com/rest/"
hipay.third_base_url = "https://stage-api-gateway.hipay.com/"
iatapay.base_url = "https://sandbox.iata-pay.iata.org/api/v1"
inespay.base_url = "https://apiflow.inespay.com/san/v21"
itaubank.base_url = "https://sandbox.devportal.itau.com.br/"
jpmorgan.base_url = "https://api-mock.payments.jpmorgan.com/api/v2"
juspaythreedsserver.base_url = "http://localhost:8000"
jpmorgan.secondary_base_url="https://id.payments.jpmorgan.com"
klarna.base_url = "https://api{{klarna_region}}.playground.klarna.com/"
mifinity.base_url = "https://demo.mifinity.com/"
mollie.base_url = "https://api.mollie.com/v2/"
mollie.secondary_base_url = "https://api.cc.mollie.com/v1/"
moneris.base_url = "https://api.sb.moneris.io"
multisafepay.base_url = "https://testapi.multisafepay.com/"
nexinets.base_url = "https://apitest.payengine.de/v1"
nexixpay.base_url = "https://xpaysandbox.nexigroup.com/api/phoenix-0.0/psp/api/v1"
nmi.base_url = "https://secure.nmi.com/"
nomupay.base_url = "https://payout-api.sandbox.nomupay.com"
noon.base_url = "https://api-test.noonpayments.com/"
noon.key_mode = "Test"
novalnet.base_url = "https://payport.novalnet.de/v2"
nuvei.base_url = "https://ppp-test.nuvei.com/"
opayo.base_url = "https://pi-test.sagepay.com/"
opennode.base_url = "https://dev-api.opennode.com"
paybox.base_url = "https://preprod-ppps.paybox.com/PPPS.php"
paybox.secondary_base_url="https://preprod-tpeweb.paybox.com/"
payeezy.base_url = "https://api-cert.payeezy.com/"
payme.base_url = "https://sandbox.payme.io/"
payone.base_url = "https://payment.preprod.payone.com/"
paypal.base_url = "https://api-m.sandbox.paypal.com/"
paystack.base_url = "https://api.paystack.co"
payu.base_url = "https://secure.snd.payu.com/"
placetopay.base_url = "https://test.placetopay.com/rest/gateway"
plaid.base_url = "https://sandbox.plaid.com"
powertranz.base_url = "https://staging.ptranz.com/api/"
prophetpay.base_url = "https://ccm-thirdparty.cps.golf/"
rapyd.base_url = "https://sandboxapi.rapyd.net"
razorpay.base_url = "https://sandbox.juspay.in/"
recurly.base_url = "https://v3.recurly.com"
redsys.base_url = "https://sis-t.redsys.es:25443"
riskified.base_url = "https://sandbox.riskified.com/api"
shift4.base_url = "https://api.shift4.com/"
signifyd.base_url = "https://api.signifyd.com/"
square.base_url = "https://connect.squareupsandbox.com/"
square.secondary_base_url = "https://pci-connect.squareupsandbox.com/"
stax.base_url = "https://apiprod.fattlabs.com/"
stripe.base_url = "https://api.stripe.com/"
stripe.base_url_file_upload = "https://files.stripe.com/"
stripebilling.base_url = "https://api.stripe.com/"
taxjar.base_url = "https://api.sandbox.taxjar.com/v2/"
thunes.base_url = "https://api.limonetikqualif.com/"
trustpay.base_url = "https://test-tpgw.trustpay.eu/"
trustpay.base_url_bank_redirects = "https://aapi.trustpay.eu/"
tsys.base_url = "https://stagegw.transnox.com/"
volt.base_url = "https://api.sandbox.volt.io/"
wellsfargo.base_url = "https://apitest.cybersource.com/"
wellsfargopayout.base_url = "https://api-sandbox.wellsfargo.com/"
wise.base_url = "https://api.sandbox.transferwise.tech/"
worldline.base_url = "https://eu.sandbox.api-ingenico.com/"
worldpay.base_url = "https://try.access.worldpay.com/"
xendit.base_url = "https://api.xendit.co"
zen.base_url = "https://api.zen-test.com/"
zen.secondary_base_url = "https://secure.zen-test.com/"
zsl.base_url = "https://api.sitoffalb.net/"
threedsecureio.base_url = "https://service.sandbox.3dsecure.io"
netcetera.base_url = "https://{{merchant_endpoint_prefix}}.3ds-server.prev.netcetera-cloud-payment.ch"
[delayed_session_response]
connectors_with_delayed_session_response = "trustpay,payme" # List of connectors which have delayed session response
[dummy_connector]
enabled = true # Whether dummy connector is enabled or not
assets_base_url = "https://app.hyperswitch.io/assets/TestProcessor/" # Base url for dummy connector assets
authorize_ttl = 36000 # Time to live for dummy connector authorize request in redis
default_return_url = "https://app.hyperswitch.io/" # Default return url when no return url is passed while payment
discord_invite_url = "https://discord.gg/wJZ7DVW8mm" # Discord invite url for hyperswitch
payment_complete_duration = 500 # Fake delay duration for dummy connector payment complete
payment_complete_tolerance = 100 # Fake delay tolerance for dummy connector payment complete
payment_duration = 1000 # Fake delay duration for dummy connector payment
payment_retrieve_duration = 500 # Fake delay duration for dummy connector payment sync
payment_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector payment sync
payment_tolerance = 100 # Fake delay tolerance for dummy connector payment
payment_ttl = 172800 # Time to live for dummy connector payment in redis
refund_duration = 1000 # Fake delay duration for dummy connector refund
refund_retrieve_duration = 500 # Fake delay duration for dummy connector refund sync
refund_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector refund sync
refund_tolerance = 100 # Fake delay tolerance for dummy connector refund
refund_ttl = 172800 # Time to live for dummy connector refund in redis
slack_invite_url = "https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2awm23agh-p_G5xNpziv6yAiedTkkqLg" # Slack invite url for hyperswitch
[user]
password_validity_in_days = 90
two_factor_auth_expiry_in_secs = 300
totp_issuer_name = "Hyperswitch Sandbox"
base_url = "https://app.hyperswitch.io"
force_two_factor_auth = false
force_cookies = false
[frm]
enabled = true
[mandates.supported_payment_methods]
bank_debit.ach = { connector_list = "gocardless,adyen,stripe" }
bank_debit.becs = { connector_list = "gocardless,stripe,adyen" }
bank_debit.bacs = { connector_list = "stripe,gocardless" }
bank_debit.sepa = { connector_list = "gocardless,adyen,stripe,deutschebank" }
card.credit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
card.debit.connector_list = "stripe,adyen,authorizedotnet,cybersource,datatrans,globalpay,worldpay,multisafepay,nmi,nexinets,noon,bankofamerica,braintree,nuvei,payme,wellsfargo,bamboraapac,elavon,fiuu,nexixpay,novalnet,paybox,paypal,xendit"
pay_later.klarna.connector_list = "adyen"
wallet.apple_pay.connector_list = "stripe,adyen,cybersource,noon,bankofamerica,nexinets,novalnet,authorizedotnet"
wallet.samsung_pay.connector_list = "cybersource"
wallet.google_pay.connector_list = "stripe,adyen,cybersource,bankofamerica,noon,globalpay,multisafepay,novalnet,authorizedotnet"
wallet.paypal.connector_list = "adyen,globalpay,nexinets,novalnet,paypal"
wallet.momo.connector_list = "adyen"
wallet.kakao_pay.connector_list = "adyen"
wallet.go_pay.connector_list = "adyen"
wallet.gcash.connector_list = "adyen"
wallet.dana.connector_list = "adyen"
wallet.twint.connector_list = "adyen"
wallet.vipps.connector_list = "adyen"
bank_redirect.ideal.connector_list = "stripe,adyen,globalpay,multisafepay,nexinets"
bank_redirect.sofort.connector_list = "stripe,globalpay"
bank_redirect.giropay.connector_list = "globalpay,multisafepay,nexinets"
bank_redirect.bancontact_card.connector_list="adyen,stripe"
bank_redirect.trustly.connector_list="adyen"
bank_redirect.open_banking_uk.connector_list="adyen"
bank_redirect.eps.connector_list="globalpay,nexinets"
[mandates.update_mandate_supported]
card.credit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
card.debit = { connector_list = "cybersource" } # Update Mandate supported payment method type and connector for card
[network_transaction_id_supported_connectors]
connector_list = "adyen,cybersource,novalnet,stripe,worldpay"
[payouts]
payout_eligibility = true # Defaults the eligibility of a payout method to true in case connector does not provide checks for payout eligibility
#Payment Method Filters Based on Country and Currency
[pm_filters.default]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "AU,NZ,ES,GB,FR,IT,CA,US", currency = "GBP" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA", currency = "AED,AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay = { country = "AU,NZ,JP,HK,SG,MY,TH,VN,BH,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,RO,HR,LI,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,TR,IS,CA,US", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AT,ES,GB,SE,NO,AT,NL,DE,CH,BE,FR,DK,FI,PT,IE,IT,PL,CA,US", currency = "USD,GBP,EUR,CHF,DKK,SEK,NOK,AUD,PLN,CAD" }
mb_way = { country = "PT", currency = "EUR" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
pay_bright = { country = "CA", currency = "CAD" }
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
sofort = { country = "ES,GB,SE,AT,NL,DE,CH,BE,FR,FI,IT,PL", currency = "EUR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD" }
[pm_filters.adyen]
ach = { country = "US", currency = "USD" }
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ", currency = "GBP,AUD,NZD,CAD,USD" }
alfamart = { country = "ID", currency = "IDR" }
ali_pay = { country = "AU,JP,HK,SG,MY,TH,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,FI,RO,MT,SI,GR,PT,IE,IT,CA,US", currency = "USD,EUR,GBP,JPY,AUD,SGD,CHF,SEK,NOK,NZD,THB,HKD,CAD" }
ali_pay_hk = { country = "HK", currency = "HKD" }
alma = { country = "FR", currency = "EUR" }
apple_pay = { country = "AU,NZ,CN,JP,HK,SG,MY,BH,AE,KW,BR,ES,GB,SE,NO,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,LI,UA,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,CHF,CAD,EUR,GBP,HKD,SGD,USD,MYR" }
atome = { country = "MY,SG", currency = "MYR,SGD" }
bacs = { country = "GB", currency = "GBP" }
bancontact_card = { country = "BE", currency = "EUR" }
bca_bank_transfer = { country = "ID", currency = "IDR" }
bizum = { country = "ES", currency = "EUR" }
blik = { country = "PL", currency = "PLN" }
bni_va = { country = "ID", currency = "IDR" }
boleto = { country = "BR", currency = "BRL" }
bri_va = { country = "ID", currency = "IDR" }
cimb_va = { country = "ID", currency = "IDR" }
dana = { country = "ID", currency = "IDR" }
danamon_va = { country = "ID", currency = "IDR" }
eps = { country = "AT", currency = "EUR" }
family_mart = { country = "JP", currency = "JPY" }
gcash = { country = "PH", currency = "PHP" }
giropay = { country = "DE", currency = "EUR" }
go_pay = { country = "ID", currency = "IDR" }
google_pay = { country = "AU,NZ,JP,HK,SG,MY,TH,VN,BH,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,RO,HR,LI,MT,SI,GR,PT,IE,CZ,EE,LT,LV,IT,PL,TR,IS,CA,US", currency = "AED,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HTG,HUF,IDR,ILS,INR,IQD,JMD,JOD,JPY,KES,KGS,KHR,KMF,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LYD,MAD,MDL,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLE,SOS,SRD,STN,SVC,SZL,THB,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
ideal = { country = "NL", currency = "EUR" }
indomaret = { country = "ID", currency = "IDR" }
kakao_pay = { country = "KR", currency = "KRW" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NO,PL,PT,RO,ES,SE,CH,NL,GB,US", currency = "AUD,EUR,CAD,CZK,DKK,NOK,PLN,RON,SEK,CHF,GBP,USD" }
lawson = { country = "JP", currency = "JPY" }
mandiri_va = { country = "ID", currency = "IDR" }
mb_way = { country = "PT", currency = "EUR" }
mini_stop = { country = "JP", currency = "JPY" }
mobile_pay = { country = "DK,FI", currency = "DKK,SEK,NOK,EUR" }
momo = { country = "VN", currency = "VND" }
momo_atm = { country = "VN", currency = "VND" }
online_banking_czech_republic = { country = "CZ", currency = "EUR,CZK" }
online_banking_finland = { country = "FI", currency = "EUR" }
online_banking_fpx = { country = "MY", currency = "MYR" }
online_banking_poland = { country = "PL", currency = "PLN" }
online_banking_slovakia = { country = "SK", currency = "EUR,CZK" }
online_banking_thailand = { country = "TH", currency = "THB" }
open_banking_uk = { country = "GB", currency = "GBP" }
oxxo = { country = "MX", currency = "MXN" }
pay_bright = { country = "CA", currency = "CAD" }
pay_easy = { country = "JP", currency = "JPY" }
pay_safe_card = { country = "AT,AU,BE,BR,BE,CA,HR,CY,CZ,DK,FI,FR,GE,DE,GI,HU,IS,IE,KW,LV,IE,LI,LT,LU,MT,MX,MD,ME,NL,NZ,NO,PY,PE,PL,PT,RO,SA,RS,SK,SI,ES,SE,CH,TR,AE,GB,US,UY", currency = "EUR,AUD,BRL,CAD,CZK,DKK,GEL,GIP,HUF,KWD,CHF,MXN,MDL,NZD,NOK,PYG,PEN,PLN,RON,SAR,RSD,SEK,TRY,AED,GBP,USD,UYU" }
paypal = { country = "AU,NZ,CN,JP,HK,MY,TH,KR,PH,ID,AE,KW,BR,ES,GB,SE,NO,SK,AT,NL,DE,HU,CY,LU,CH,BE,FR,DK,FI,RO,HR,UA,MT,SI,GI,PT,IE,CZ,EE,LT,LV,IT,PL,IS,CA,US", currency = "AUD,BRL,CAD,CZK,DKK,EUR,HKD,HUF,INR,JPY,MYR,MXN,NZD,NOK,PHP,PLN,RUB,GBP,SGD,SEK,CHF,THB,USD" }
permata_bank_transfer = { country = "ID", currency = "IDR" }
seicomart = { country = "JP", currency = "JPY" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT", currency = "EUR" }
seven_eleven = { country = "JP", currency = "JPY" }
sofort = { country = "AT,BE,DE,ES,CH,NL", currency = "CHF,EUR" }
swish = { country = "SE", currency = "SEK" }
touch_n_go = { country = "MY", currency = "MYR" }
trustly = { country = "ES,GB,SE,NO,AT,NL,DE,DK,FI,EE,LT,LV", currency = "CZK,DKK,EUR,GBP,NOK,SEK" }
twint = { country = "CH", currency = "CHF" }
vipps = { country = "NO", currency = "NOK" }
walley = { country = "SE,NO,DK,FI", currency = "DKK,EUR,NOK,SEK" }
we_chat_pay = { country = "AU,NZ,CN,JP,HK,SG,ES,GB,SE,NO,AT,NL,DE,CY,CH,BE,FR,DK,LI,MT,SI,GR,PT,IT,CA,US", currency = "AUD,CAD,CNY,EUR,GBP,HKD,JPY,NZD,SGD,USD" }
pix = { country = "BR", currency = "BRL" }
[pm_filters.airwallex]
credit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
google_pay = { country = "AU,HK,SG,NZ,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.elavon]
credit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.xendit]
credit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
debit = { country = "ID,PH", currency = "IDR,PHP,USD,SGD,MYR" }
[pm_filters.tsys]
credit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
debit = { country = "NA", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BTN, BWP, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLE, SOS, SRD, SSP, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL, BYN, KPW, STN, MRU, VES" }
[pm_filters.billwerk]
credit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
debit = { country = "DE, DK, FR, SE", currency = "DKK, NOK" }
[pm_filters.fiservemea]
credit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "DE, FR, IT, NL, PL, ES, ZA, GB, AE", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,STN,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.authorizedotnet]
google_pay.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
paypal.currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD"
[pm_filters.bambora]
credit = { country = "US,CA", currency = "USD" }
debit = { country = "US,CA", currency = "USD" }
[pm_filters.bankofamerica]
credit = { currency = "USD" }
debit = { currency = "USD" }
apple_pay = { currency = "USD" }
google_pay = { currency = "USD" }
samsung_pay = { currency = "USD" }
[pm_filters.cybersource]
credit = { currency = "USD,GBP,EUR,PLN" }
debit = { currency = "USD,GBP,EUR,PLN" }
apple_pay = { currency = "USD,GBP,EUR,PLN" }
google_pay = { currency = "USD,GBP,EUR,PLN" }
samsung_pay = { currency = "USD,GBP,EUR" }
paze = { currency = "USD" }
[pm_filters.nexixpay]
credit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
debit = { country = "AT,BE,CY,EE,FI,FR,DE,GR,IE,IT,LV,LT,LU,MT,NL,PT,SK,SI,ES,BG,HR,DK,GB,NO,PL,CZ,RO,SE,CH,HU,AU,BR,US", currency = "ARS,AUD,BHD,CAD,CLP,CNY,COP,HRK,CZK,DKK,HKD,HUF,INR,JPY,KZT,JOD,KRW,KWD,MYR,MXN,NGN,NOK,PHP,QAR,RUB,SAR,SGD,VND,ZAR,SEK,CHF,THB,AED,EGP,GBP,USD,TWD,BYN,RSD,AZN,RON,TRY,AOA,BGN,EUR,UAH,PLN,BRL" }
[pm_filters.square]
credit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
debit = { country = "AU,CA,FR,IE,JP,ES,GB,US", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLE,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW" }
[pm_filters.iatapay]
upi_collect = { country = "IN", currency = "INR" }
upi_intent = { country = "IN", currency = "INR" }
ideal = { country = "NL", currency = "EUR" }
local_bank_redirect = { country = "AT,BE,EE,FI,FR,DE,IE,IT,LV,LT,LU,NL,PT,ES,GB,IN,HK,SG,TH,BR,MX,GH,VN,MY,PH,JO,AU,CO", currency = "EUR,GBP,INR,HKD,SGD,THB,BRL,MXN,GHS,VND,MYR,PHP,JOD,AUD,COP" }
duit_now = { country = "MY", currency = "MYR" }
fps = { country = "GB", currency = "GBP" }
prompt_pay = { country = "TH", currency = "THB" }
viet_qr = { country = "VN", currency = "VND" }
[pm_filters.coinbase]
crypto_currency = { country = "ZA,US,BR,CA,TR,SG,VN,GB,DE,FR,ES,PT,IT,NL,AU" }
[pm_filters.novalnet]
credit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
debit = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
apple_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
google_pay = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
paypal = { country = "AD,AE,AL,AM,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BM,BN,BO,BR,BS,BW,BY,BZ,CA,CD,CH,CL,CN,CO,CR,CU,CY,CZ,DE,DJ,DK,DO,DZ,EE,EG,ET,ES,FI,FJ,FR,GB,GE,GH,GI,GM,GR,GT,GY,HK,HN,HR,HU,ID,IE,IL,IN,IS,IT,JM,JO,JP,KE,KH,KR,KW,KY,KZ,LB,LK,LT,LV,LY,MA,MC,MD,ME,MG,MK,MN,MO,MT,MV,MW,MX,MY,NG,NI,NO,NP,NL,NZ,OM,PA,PE,PG,PH,PK,PL,PT,PY,QA,RO,RS,RU,RW,SA,SB,SC,SE,SG,SH,SI,SK,SL,SO,SM,SR,ST,SV,SY,TH,TJ,TN,TO,TR,TW,TZ,UA,UG,US,UY,UZ,VE,VA,VN,VU,WS,CF,AG,DM,GD,KN,LC,VC,YE,ZA,ZM", currency = "AED,ALL,AMD,ARS,AUD,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CZK,DJF,DKK,DOP,DZD,EGP,ETB,EUR,FJD,GBP,GEL,GHS,GIP,GMD,GTQ,GYD,HKD,HNL,HRK,HUF,IDR,ILS,INR,ISK,JMD,JOD,JPY,KES,KHR,KRW,KWD,KYD,KZT,LBP,LKR,LYD,MAD,MDL,MGA,MKD,MNT,MOP,MVR,MWK,MXN,MYR,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SEK,SGD,SHP,SLL,SOS,SRD,STN,SVC,SYP,THB,TJS,TND,TOP,TRY,TWD,TZS,UAH,UGX,USD,UYU,UZS,VES,VND,VUV,WST,XAF,XCD,YER,ZAR,ZMW"}
[pm_filters.braintree]
paypal.currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD"
[pm_filters.forte]
credit.currency = "USD"
debit.currency = "USD"
[pm_filters.helcim]
credit = { country = "US, CA", currency = "USD, CAD" }
debit = { country = "US, CA", currency = "USD, CAD" }
[pm_filters.globalpay]
credit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC"}
debit = { country = "AF,AX,AL,DZ,AS,AD,AO,AI,AQ,AG,AR,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BY,BE,BZ,BJ,BM,BT,BO,BQ,BA,BW,BV,BR,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CL,CN,CX,CC,CO,KM,CG,CD,CK,CR,CI,HR,CU,CW,CY,CZ,DK,DJ,DM,DO,EC,EG,SV,GQ,ER,EE,SZ,ET,FK,FO,FJ,FI,FR,GF,PF,TF,GA,GM,GE,DE,GH,GI,GR,GL,GD,GP,GU,GT,GG,GN,GW,GY,HT,HM,VA,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IM,IL,IT,JM,JP,JE,JO,KZ,KE,KI,KP,KR,KW,KG,LA,LV,LB,LS,LR,LY,LI,LT,LU,MO,MK,MG,MW,MY,MV,ML,MT,MH,MQ,MR,MU,YT,MX,FM,MD,MC,MN,ME,MS,MA,MZ,MM,NA,NR,NP,NL,NC,NZ,NI,NE,NG,NU,NF,MP,NO,OM,PK,PW,PS,PA,PG,PY,PE,PH,PN,PL,PT,PR,QA,RE,RO,RU,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SG,SX,SK,SI,SB,SO,ZA,GS,SS,ES,LK,SD,SR,SJ,SE,CH,SY,TW,TJ,TZ,TH,TL,TG,TK,TO,TT,TN,TR,TM,TC,TV,UG,UA,AE,GB,US,UM,UY,UZ,VU,VE,VN,VG,VI,WF,EH,YE,ZM,ZW", currency = "AFN,DZD,ARS,AMD,AWG,AUD,AZN,BSD,BHD,THB,PAB,BBD,BYN,BZD,BMD,BOB,BRL,BND,BGN,BIF,CVE,CAD,CLP,COP,KMF,CDF,NIO,CRC,CUP,CZK,GMD,DKK,MKD,DJF,DOP,VND,XCD,EGP,SVC,ETB,EUR,FKP,FJD,HUF,GHS,GIP,HTG,PYG,GNF,GYD,HKD,UAH,ISK,INR,IRR,IQD,JMD,JOD,KES,PGK,HRK,KWD,AOA,MMK,LAK,GEL,LBP,ALL,HNL,SLL,LRD,LYD,SZL,LSL,MGA,MWK,MYR,MUR,MXN,MDL,MAD,MZN,NGN,ERN,NAD,NPR,ANG,ILS,TWD,NZD,BTN,KPW,NOK,TOP,PKR,MOP,UYU,PHP,GBP,BWP,QAR,GTQ,ZAR,OMR,KHR,RON,MVR,IDR,RUB,RWF,SHP,SAR,RSD,SCR,SGD,PEN,SBD,KGS,SOS,TJS,SSP,LKR,SDG,SRD,SEK,CHF,SYP,BDT,WST,TZS,KZT,TTD,MNT,TND,TRY,TMT,AED,UGX,USD,UZS,VUV,KRW,YER,JPY,CNY,ZMW,ZWL,PLN,CLF,STD,CUC" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,DE,ES,IT,NL", currency = "EUR" }
[pm_filters.globepay]
ali_pay.currency = "GBP,CNY"
we_chat_pay.currency = "GBP,CNY"
[pm_filters.jpmorgan]
debit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
credit = { country = "CA, GB, US, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, EUR, GBP, AUD, NZD, SGD, CAD, JPY, HKD, KRW, TWD, MXN, BRL, DKK, NOK, ZAR, SEK, CHF, CZK, PLN, TRY, AFN, ALL, DZD, AOA, ARS, AMD, AWG, AZN, BSD, BDT, BBD, BYN, BZD, BMD, BOB, BAM, BWP, BND, BGN, BIF, BTN, XOF, XAF, XPF, KHR, CVE, KYD, CLP, CNY, COP, KMF, CDF, CRC, HRK, DJF, DOP, XCD, EGP, ETB, FKP, FJD, GMD, GEL, GHS, GIP, GTQ, GYD, HTG, HNL, HUF, ISK, INR, IDR, ILS, JMD, KZT, KES, LAK, LBP, LSL, LRD, MOP, MKD, MGA, MWK, MYR, MVR, MRU, MUR, MDL, MNT, MAD, MZN, MMK, NAD, NPR, ANG, PGK, NIO, NGN, PKR, PAB, PYG, PEN, PHP, QAR, RON, RWF, SHP, WST, STN, SAR, RSD, SCR, SLL, SBD, SOS, LKR, SRD, SZL, TJS, TZS, THB, TOP, TTD, UGX, UAH, AED, UYU, UZS, VUV, VND, YER, ZMW" }
[pm_filters.bitpay]
crypto_currency = { country = "US, CA, GB, AT, BE, BG, HR, CY, CZ, DK, EE, FI, FR, DE, GR, HU, IE, IT, LV, LT, LU, MT, NL, PL, PT, RO, SK, SI, ES, SE", currency = "USD, AUD, CAD, GBP, MXN, NZD, CHF, EUR"}
[pm_filters.digitalvirgo]
direct_carrier_billing = {country = "MA, CM, ZA, EG, SN, DZ, TN, ML, GN, GH, LY, GA, CG, MG, BW, SD, NG, ID, SG, AZ, TR, FR, ES, PL, GB, PT, DE, IT, BE, IE, SK, GR, NL, CH, BR, MX, AR, CL, AE, IQ, KW, BH, SA, QA, PS, JO, OM, RU" , currency = "MAD, XOF, XAF, ZAR, EGP, DZD, TND, GNF, GHS, LYD, XAF, CDF, MGA, BWP, SDG, NGN, IDR, SGD, RUB, AZN, TRY, EUR, PLN, GBP, CHF, BRL, MXN, ARS, CLP, AED, IQD, KWD, BHD, SAR, QAR, ILS, JOD, OMR" }
[pm_filters.paybox]
debit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
credit = { country = "FR", currency = "CAD, AUD, EUR, USD" }
[pm_filters.klarna]
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "CHF,DKK,EUR,GBP,NOK,PLN,SEK,USD,AUD,NZD,CAD" }
[pm_filters.mifinity]
mifinity = { country = "BR,CN,SG,MY,DE,CH,DK,GB,ES,AD,GI,FI,FR,GR,HR,IT,JP,MX,AR,CO,CL,PE,VE,UY,PY,BO,EC,GT,HN,SV,NI,CR,PA,DO,CU,PR,NL,NO,PL,PT,SE,RU,TR,TW,HK,MO,AX,AL,DZ,AS,AO,AI,AG,AM,AW,AU,AT,AZ,BS,BH,BD,BB,BE,BZ,BJ,BM,BT,BQ,BA,BW,IO,BN,BG,BF,BI,KH,CM,CA,CV,KY,CF,TD,CX,CC,KM,CG,CK,CI,CW,CY,CZ,DJ,DM,EG,GQ,ER,EE,ET,FK,FO,FJ,GF,PF,TF,GA,GM,GE,GH,GL,GD,GP,GU,GG,GN,GW,GY,HT,HM,VA,IS,IN,ID,IE,IM,IL,JE,JO,KZ,KE,KI,KW,KG,LA,LV,LB,LS,LI,LT,LU,MK,MG,MW,MV,ML,MT,MH,MQ,MR,MU,YT,FM,MD,MC,MN,ME,MS,MA,MZ,NA,NR,NP,NC,NZ,NE,NG,NU,NF,MP,OM,PK,PW,PS,PG,PH,PN,QA,RE,RO,RW,BL,SH,KN,LC,MF,PM,VC,WS,SM,ST,SA,SN,RS,SC,SL,SX,SK,SI,SB,SO,ZA,GS,KR,LK,SR,SJ,SZ,TH,TL,TG,TK,TO,TT,TN,TM,TC,TV,UG,UA,AE,UZ,VU,VN,VG,VI,WF,EH,ZM", currency = "AUD,CAD,CHF,CNY,CZK,DKK,EUR,GBP,INR,JPY,NOK,NZD,PLN,RUB,SEK,ZAR,USD,EGP,UYU,UZS" }
[pm_filters.payu]
debit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
credit = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
google_pay = { country = "AE, AF, AL, AM, CW, AO, AR, AU, AW, AZ, BA, BB, BG, BH, BI, BM, BN, BO, BR, BS, BW, BY, BZ, CA, CD, LI, CL, CN, CO, CR, CV, CZ, DJ, DK, DO, DZ, EG, ET, AD, FJ, FK, GG, GE, GH, GI, GM, GN, GT, GY, HK, HN, HR, HT, HU, ID, IL, IQ, IS, JM, JO, JP, KG, KH, KM, KR, KW, KY, KZ, LA, LB, LR, LS, MA, MD, MG, MK, MN, MO, MR, MV, MW, MX, MY, MZ, NA, NG, NI, BV, CK, OM, PA, PE, PG, PL, PY, QA, RO, RS, RW, SA, SB, SC, SE, SG, SH, SO, SR, SV, SZ, TH, TJ, TM, TN, TO, TR, TT, TW, TZ, UG, AS, UY, UZ, VE, VN, VU, WS, CM, AI, BJ, PF, YE, ZA, ZM, ZW", currency = "AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYN, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, ISK, JMD, JOD, JPY, KGS, KHR, KMF, KRW, KWD, KYD, KZT, LAK, LBP, LRD, LSL, MAD, MDL, MGA, MKD, MNT, MOP, MRU, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NZD, OMR, PAB, PEN, PGK, PLN, PYG, QAR, RON, RSD, RWF, SAR, SBD, SCR, SEK, SGD, SHP, SOS, SRD, SVC, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UGX, USD, UYU, UZS, VES, VND, VUV, WST, XAF, XCD, XOF, XPF, YER, ZAR, ZMW, ZWL" }
[pm_filters.prophetpay]
card_redirect.currency = "USD"
[pm_filters.stax]
ach = { country = "US", currency = "USD" }
[pm_filters.stripe]
affirm = { country = "US", currency = "USD" }
afterpay_clearpay = { country = "US,CA,GB,AU,NZ,FR,ES", currency = "USD,CAD,GBP,AUD,NZD" }
apple_pay.country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US,KR,VN,MA,ZA,VA,CL,SV,GT,HN,PA"
cashapp = { country = "US", currency = "USD" }
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
google_pay.country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN"
ideal = { country = "NL", currency = "EUR" }
klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,CH,GB,US", currency = "AUD,CAD,CHF,CZK,DKK,EUR,GBP,NOK,NZD,PLN,SEK,USD" }
sofort = { country = "AT,BE,DE,IT,NL,ES", currency = "EUR" }
[pm_filters.volt]
open_banking_uk = { country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL" }
[pm_filters.razorpay]
upi_collect = {country = "IN", currency = "INR"}
[pm_filters.redsys]
credit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
debit = { currency = "AUD,BGN,CAD,CHF,COP,CZK,DKK,EUR,GBP,HRK,HUF,ILS,INR,JPY,MYR,NOK,NZD,PEN,PLN,RUB,SAR,SEK,SGD,THB,USD,ZAR", country="ES" }
[pm_filters.plaid]
open_banking_pis = {currency = "EUR,GBP"}
[pm_filters.worldpay]
debit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
credit = { country = "AF,DZ,AW,AU,AZ,BS,BH,BD,BB,BZ,BM,BT,BO,BA,BW,BR,BN,BG,BI,KH,CA,CV,KY,CL,CO,KM,CD,CR,CZ,DK,DJ,ST,DO,EC,EG,SV,ER,ET,FK,FJ,GM,GE,GH,GI,GT,GN,GY,HT,HN,HK,HU,IS,IN,ID,IR,IQ,IE,IL,IT,JM,JP,JO,KZ,KE,KW,LA,LB,LS,LR,LY,LT,MO,MK,MG,MW,MY,MV,MR,MU,MX,MD,MN,MA,MZ,MM,NA,NZ,NI,NG,KP,NO,AR,PK,PG,PY,PE,UY,PH,PL,GB,QA,OM,RO,RU,RW,WS,SG,ST,ZA,KR,LK,SH,SD,SR,SZ,SE,CH,SY,TW,TJ,TZ,TH,TT,TN,TR,UG,UA,US,UZ,VU,VE,VN,ZM,ZW", currency = "AFN,DZD,ANG,AWG,AUD,AZN,BSD,BHD,BDT,BBD,BZD,BMD,BTN,BOB,BAM,BWP,BRL,BND,BGN,BIF,KHR,CAD,CVE,KYD,XOF,XAF,XPF,CLP,COP,KMF,CDF,CRC,EUR,CZK,DKK,DJF,DOP,XCD,EGP,SVC,ERN,ETB,EUR,FKP,FJD,GMD,GEL,GHS,GIP,GTQ,GNF,GYD,HTG,HNL,HKD,HUF,ISK,INR,IDR,IRR,IQD,ILS,JMD,JPY,JOD,KZT,KES,KWD,LAK,LBP,LSL,LRD,LYD,MOP,MKD,MGA,MWK,MYR,MVR,MRU,MUR,MXN,MDL,MNT,MAD,MZN,MMK,NAD,NPR,NZD,NIO,NGN,KPW,NOK,ARS,PKR,PAB,PGK,PYG,PEN,UYU,PHP,PLN,GBP,QAR,OMR,RON,RUB,RWF,WST,SAR,RSD,SCR,SLL,SGD,STN,SBD,SOS,ZAR,KRW,LKR,SHP,SDG,SRD,SZL,SEK,CHF,SYP,TWD,TJS,TZS,THB,TOP,TTD,TND,TRY,TMT,AED,UGX,UAH,USD,UZS,VUV,VND,YER,CNY,ZMW,ZWL" }
google_pay = { country = "AL,DZ,AS,AO,AG,AR,AU,AT,AZ,BH,BY,BE,BR,BG,CA,CL,CO,HR,CZ,DK,DO,EG,EE,FI,FR,DE,GR,HK,HU,IN,ID,IE,IL,IT,JP,JO,KZ,KE,KW,LV,LB,LT,LU,MY,MX,NL,NZ,NO,OM,PK,PA,PE,PH,PL,PT,QA,RO,RU,SA,SG,SK,ZA,ES,LK,SE,CH,TW,TH,TR,UA,AE,GB,US,UY,VN" }
apple_pay = { country = "AU,CN,HK,JP,MO,MY,NZ,SG,TW,AM,AT,AZ,BY,BE,BG,HR,CY,CZ,DK,EE,FO,FI,FR,GE,DE,GR,GL,GG,HU,IS,IE,IM,IT,KZ,JE,LV,LI,LT,LU,MT,MD,MC,ME,NL,NO,PL,PT,RO,SM,RS,SK,SI,ES,SE,CH,UA,GB,AR,CO,CR,BR,MX,PE,BH,IL,JO,KW,PS,QA,SA,AE,CA,UM,US" }
[pm_filters.zen]
boleto = { country = "BR", currency = "BRL" }
efecty = { country = "CO", currency = "COP" }
multibanco = { country = "PT", currency = "EUR" }
pago_efectivo = { country = "PE", currency = "PEN" }
pix = { country = "BR", currency = "BRL" }
pse = { country = "CO", currency = "COP" }
red_compra = { country = "CL", currency = "CLP" }
red_pagos = { country = "UY", currency = "UYU" }
[pm_filters.zsl]
local_bank_transfer = { country = "CN", currency = "CNY" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }
apple_pay = { country = "MY", currency = "MYR" }
google_pay = { country = "MY", currency = "MYR" }
[pm_filters.trustpay]
instant_bank_transfer = { country = "CZ,SK,GB,AT,DE,IT", currency = "CZK, EUR, GBP" }
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,GB", currency = "EUR" }
[pm_filters.dlocal]
credit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
debit = {country = "AR,BD,BO,BR,CM,CL,CN,CO,CR,DO,EC,SV,EG,GH,GT,HN,IN,ID,CI,JP,KE,MY,MX,MA,NI,NG,PK,PA,PY,PE,PH,RW,SA,SN,ZA,TZ,TH,TR,UG,UY,VN,ZM", currency = "ARS,BDT,BOB,BRL,XAF,CLP,CNY,COP,CRC,DOP,USD,EGP,GHS,GTQ,HNL,INR,IDR,XOF,JPY,KES,MYR,MXN,MAD,NIO,NGN,PKR,PYG,PEN,PHP,RWF,SAR,XOF,ZAR,TZS,THB,TRY,UGX,UYU,VND,ZMW"}
[pm_filters.mollie]
credit = { not_available_flows = { capture_method = "manual" } }
debit = { not_available_flows = { capture_method = "manual" } }
eps = { country = "AT", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
przelewy24 = { country = "PL", currency = "PLN,EUR" }
[payout_method_filters.adyenplatform]
sepa = { country = "ES,SK,AT,NL,DE,BE,FR,FI,PT,IE,EE,LT,LV,IT,CZ,DE,HU,NO,PL,SE,GB,CH" , currency = "EUR,CZK,DKK,HUF,NOK,PLN,SEK,GBP,CHF" }
[pm_filters.rapyd]
apple_pay = { country = "AL,AS,AD,AR,AM,AU,AT,AZ,BH,BE,BM,BA,BR,BG,CA,KH,KY,CL,CO,CR,HR,CY,CZ,DK,DO,EC,SV,EE,FO,FI,FR,GE,DE,GI,GR,GL,GU,GT,GG,HN,HK,HU,IS,IE,IM,IL,IT,JP,KZ,KG,KW,LV,LI,LT,LU,MO,MY,MT,MX,MD,MC,ME,MA,NL,NZ,NI,MK,MP,NO,PA,PY,PR,PE,PL,PT,QA,RO,SM,RS,SG,SK,SI,ZA,ES,SE,CH,TW,TJ,TH,UA,AE,GB,US,UY,VI,VN", currency = "EUR,GBP,ISK,USD" }
google_pay = { country = "AM,AT,AU,AZ,BA,BE,BG,BY,CA,CH,CL,CN,CO,CR,CY,CZ,DE,DK,DO,EC,EE,EG,ES,FI,FR,GB,GE,GL,GR,GT,HK,HN,HR,HU,IE,IL,IM,IS,IT,JE,JP,JO,KZ,KW,LA,LI,LT,LU,LV,MA,MC,MD,ME,MO,MN,MT,MX,MY,NC,NL,NO,NZ,OM,PA,PE,PL,PR,PT,QA,RO,RS,SA,SE,SG,SI,SK,SM,SV,TH,TW,UA,US,UY,VA,VN,ZA", currency = "EUR,GBP,ISK,USD" }
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.bamboraapac]
credit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
debit = { country = "AD,AE,AG,AL,AM,AO,AR,AT,AU,AZ,BA,BB,BD,BE,BG,BH,BI,BJ,BN,BO,BR,BS,BT,BW,BY,BZ,CA,CD,CF,CG,CH,CI,CL,CM,CN,CO,CR,CV,CY,CZ,DE,DK,DJ,DM,DO,DZ,EC,EE,EG,ER,ES,ET,FI,FJ,FM,FR,GA,GB,GD,GE,GG,GH,GM,GN,GQ,GR,GT,GW,GY,HN,HR,HT,HU,ID,IE,IL,IN,IS,IT,JM,JP,JO,KE,KG,KH,KI,KM,KN,KR,KW,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,MA,MC,MD,ME,MG,MH,MK,ML,MM,MN,MR,MT,MU,MV,MW,MX,MY,MZ,NA,NE,NG,NI,NL,NO,NP,NR,NZ,OM,PA,PE,PG,PH,PK,PL,PS,PT,PW,PY,QA,RO,RS,RW,SA,SB,SC,SE,SG,SI,SK,SL,SM,SN,SO,SR,SS,ST,SV,SZ,TD,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TZ,UA,UG,US,UY,UZ,VA,VC,VE,VN,VU,WS,ZA,ZM,ZW", currency = "AED,AUD,BDT,BGN,BND,BOB,BRL,BWP,CAD,CHF,CNY,COP,CZK,DKK,EGP,EUR,FJD,GBP,GEL,GHS,HKD,HRK,HUF,IDR,ILS,INR,IQD,IRR,ISK,JPY,KES,KRW,KWD,KZT,LAK,LKR,MAD,MDL,MMK,MOP,MXN,MYR,MZN,NAD,NGN,NOK,NPR,NZD,PEN,PHP,PKR,PLN,QAR,RON,RSD,RUB,RWF,SAR,SCR,SEK,SGD,SLL,THB,TRY,TWD,TZS,UAH,UGX,USD,UYU,VND,XAF,XOF,ZAR,ZMW,MWK" }
[pm_filters.gocardless]
ach = { country = "US", currency = "USD" }
becs = { country = "AU", currency = "AUD" }
sepa = { country = "AU,AT,BE,BG,CA,HR,CY,CZ,DK,FI,FR,DE,HU,IT,LU,MT,NL,NZ,NO,PL,PT,IE,RO,SK,SI,ZA,ES,SE,CH,GB", currency = "GBP,EUR,SEK,DKK,AUD,NZD,CAD" }
[pm_filters.powertranz]
credit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
debit = { country = "AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "BBD,BMD,BSD,CRC,GTQ,HNL,JMD,KYD,TTD,USD" }
[pm_filters.worldline]
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[pm_filters.shift4]
eps = { country = "AT", currency = "EUR" }
giropay = { country = "DE", currency = "EUR" }
ideal = { country = "NL", currency = "EUR" }
sofort = { country = "AT,BE,CH,DE,ES,FI,FR,GB,IT,NL,PL,SE", currency = "CHF,EUR" }
credit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
debit = { country = "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW", currency = "AED,AFN,ALL,AMD,ANG,AOA,ARS,AUD,AWG,AZN,BAM,BBD,BDT,BGN,BHD,BIF,BMD,BND,BOB,BRL,BSD,BTN,BWP,BYN,BZD,CAD,CDF,CHF,CLP,CNY,COP,CRC,CUP,CVE,CZK,DJF,DKK,DOP,DZD,EGP,ERN,ETB,EUR,FJD,FKP,GBP,GEL,GHS,GIP,GMD,GNF,GTQ,GYD,HKD,HNL,HRK,HTG,HUF,IDR,ILS,INR,IQD,IRR,ISK,JMD,JOD,JPY,KES,KGS,KHR,KMF,KPW,KRW,KWD,KYD,KZT,LAK,LBP,LKR,LRD,LSL,LYD,MAD,MDL,MGA,MKD,MMK,MNT,MOP,MRU,MUR,MVR,MWK,MXN,MYR,MZN,NAD,NGN,NIO,NOK,NPR,NZD,OMR,PAB,PEN,PGK,PHP,PKR,PLN,PYG,QAR,RON,RSD,RUB,RWF,SAR,SBD,SCR,SDG,SEK,SGD,SHP,SLL,SOS,SRD,SSP,SVC,SYP,SZL,THB,TJS,TMT,TND,TOP,TRY,TTD,TWD,TZS,UAH,UGX,USD,UYU,UZS,VND,VUV,WST,XAF,XCD,XOF,XPF,YER,ZAR,ZMW,ZWL" }
[payout_method_filters.stripe]
ach = { country = "US", currency = "USD" }
[temp_locker_enable_config]
bluesnap.payment_method = "card"
nuvei.payment_method = "card"
shift4.payment_method = "card"
stripe.payment_method = "bank_transfer"
bankofamerica = { payment_method = "card" }
cybersource = { payment_method = "card" }
nmi.payment_method = "card"
payme.payment_method = "card"
deutschebank = { payment_method = "bank_debit" }
paybox = { payment_method = "card" }
nexixpay = { payment_method = "card" }
redsys = { payment_method = "card" }
#tokenization configuration which describe token lifetime and payment method for specific connector
[tokenization]
braintree = { long_lived_token = false, payment_method = "card" }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
gocardless = { long_lived_token = true, payment_method = "bank_debit" }
hipay = { long_lived_token = false, payment_method = "card" }
mollie = { long_lived_token = false, payment_method = "card" }
payme = { long_lived_token = false, payment_method = "card" }
square = { long_lived_token = false, payment_method = "card" }
stax = { long_lived_token = true, payment_method = "card,bank_debit" }
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { list = "google_pay", type = "disable_only" } }
billwerk = {long_lived_token = false, payment_method = "card"}
[webhooks]
outgoing_enabled = true
[webhook_source_verification_call]
connectors_with_webhook_source_verification_call = "paypal" # List of connectors which has additional source verification api-call
[unmasked_headers]
keys = "accept-language,user-agent,x-profile-id"
[saved_payment_methods]
sdk_eligible_payment_methods = "card"
[locker_based_open_banking_connectors]
connector_list = ""
[network_tokenization_supported_card_networks]
card_networks = "Visa, AmericanExpress, Mastercard"
[network_tokenization_supported_connectors]
connector_list = "cybersource"
[platform]
enabled = false
[billing_connectors_payment_sync]
billing_connectors_which_require_payment_sync = "stripebilling, recurly" | 33,918 | 8,825 |
hyperswitch | config/deployments/README.md | .md | # Configs for deployments
## Introduction
This directory contains the configs for deployments of Hyperswitch in different hosted environments.
Hyperswitch has **3** components namely,
- router
- drainer
- scheduler
- consumer
- producer
We maintain configs for the `router` component for 3 different environments, namely,
- Integration Test
- Sandbox
- Production
To learn about what "router", "drainer" and "scheduler" is, please refer to the [Hyperswitch architecture][architecture] documentation.
### Tree structure
```text
config/deployments # Root directory for the deployment configs
├── README.md # This file
├── drainer.toml # Config specific to drainer
├── env_specific.toml # Config for environment specific values which are meant to be sensitive (to be set by the user)
├── integration_test.toml # Config specific to integration_test environment
├── production.toml # Config specific to production environment
├── sandbox.toml # Config specific to sandbox environment
└── scheduler # Directory for scheduler configs
├── consumer.toml # Config specific to consumer
└── producer.toml # Config specific to producer
```
## Router
The `integration_test.toml`, `sandbox.toml`, and `production.toml` files are configuration files for the environments `integration_test`, `sandbox`, and `production`, respectively. These files maintain a 1:1 mapping with the environment names, and it is recommended to use the same name for the environment throughout this document.
### Generating a Config File for the Router
The `env_specific.toml` file contains values that are specific to the environment. This file is kept separate because the values in it are sensitive and are meant to be set by the user. The `env_specific.toml` file is merged with the `integration_test.toml`, `sandbox.toml`, or `production.toml` file to create the final configuration file for the router.
For example, to build and deploy Hyperswitch in the **sandbox environment**, you can duplicate the `env_specific.toml` file and rename it as `sandbox_config.toml`. Then, update the values in the file with the proper values for the sandbox environment.
The environment-specific `sandbox.toml` file, which contains the Hyperswitch recommended defaults, is merged with the `sandbox_config.toml` file to create the final configuration file called `sandbox_release.toml`. This file is marked as ready for deploying on the sandbox environment.
1. Duplicate the `env_specific.toml` file and rename it as `sandbox_config.toml`:
```shell
cp config/deployments/env_specific.toml config/deployments/sandbox_config.toml
```
2. Update the values in the `sandbox_config.toml` file with the proper values for the sandbox environment:
```shell
vi config/deployments/sandbox_config.toml
```
3. To merge the files you can use `cat`:
```shell
cat config/deployments/sandbox.toml config/deployments/sandbox_config.toml > config/deployments/sandbox_release.toml
```
> [!NOTE]
> You can refer to the [`config.example.toml`][config_example] file to understand the variables that used are in the `env_specific.toml` file.
## Scheduler
The scheduler has two components, namely `consumer` and `producer`.
The `consumer.toml` and `producer.toml` files are the configuration files for the `consumer` and `producer`, respectively. These files contain the default values recommended by Hyperswitch.
### Generating a Config File for the Scheduler
Scheduler configuration files are built on top of the router configuration files. So, the `sandbox_release.toml` file is merged with the `consumer.toml` or `producer.toml` file to create the final configuration file for the scheduler.
You can use `cat` to merge the files in the terminal.
- Below is an example for consumer in sandbox environment:
```shell
cat config/deployments/scheduler/consumer.toml config/deployments/sandbox_release.toml > config/deployments/consumer_sandbox_release.toml
```
- Below is an example for producer in sandbox environment:
```shell
cat config/deployments/scheduler/producer.toml config/deployments/sandbox_release.toml > config/deployments/producer_sandbox_release.toml
```
## Drainer
Drainer is an independent component, and hence, the drainer configs can be used directly provided that the user updates the `drainer.toml` file with proper values before using.
## Running Hyperswitch through Docker Compose
To run the router, you can use the following snippet in the `docker-compose.yml` file:
```yaml
### Application services
hyperswitch-server:
image: docker.juspay.io/juspaydotin/hyperswitch-router:latest # This pulls the latest image from Docker Hub. If you wish to use a version without added features (like KMS), you can replace `latest` with `standalone`. However, please note that the standalone version is not recommended for production use.
command: /local/bin/router --config-path /local/config/deployments/sandbox_release.toml # <--- Change this to the config file that is generated for the environment.
ports:
- "8080:8080"
volumes:
- ./config:/local/config
```
To run the producer, you can use the following snippet in the `docker-compose.yml` file:
```yaml
hyperswitch-producer:
image: docker.juspay.io/juspaydotin/hyperswitch-producer:latest
command: /local/bin/scheduler --config-path /local/config/deployments/producer_sandbox_release.toml # <--- Change this to the config file that is generated for the environment.
volumes:
- ./config:/local/config
environment:
- SCHEDULER_FLOW=producer
```
To run the consumer, you can use the following snippet in the `docker-compose.yml` file:
```yaml
hyperswitch-consumer:
image: docker.juspay.io/juspaydotin/hyperswitch-consumer:latest
command: /local/bin/scheduler --config-path /local/config/deployments/consumer_sandbox_release.toml # <--- Change this to the config file that is generated for the environment
volumes:
- ./config:/local/config
environment:
- SCHEDULER_FLOW=consumer
```
To run the drainer, you can use the following snippet in the `docker-compose.yml` file:
```yaml
hyperswitch-drainer:
image: docker.juspay.io/juspaydotin/hyperswitch-drainer:latest
command: /local/bin/drainer --config-path /local/config/deployments/drainer.toml
volumes:
- ./config:/local/config
```
> [!NOTE]
> You can replace the term `sandbox` with the environment name that you are deploying to (e.g., `production`, `integration_test`, etc.) with respective changes (optional) and use the same steps to generate the final configuration file for the environment.
You can verify that the server is up and running by hitting the health check endpoint:
```shell
curl --head --request GET 'http://localhost:8080/health'
```
[architecture]: /docs/architecture.md
[config_example]: /config/config.example.toml
| 1,600 | 8,826 |
hyperswitch | config/deployments/scheduler/producer.toml | .toml | # Scheduler settings provides a point to modify the behaviour of scheduler flow.
# It defines the streams/queues name and configuration as well as event selection variables
[scheduler]
consumer_group = "scheduler_group"
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
loop_interval = 30000 # Specifies how much time to wait before starting the defined behaviour of producer or consumer (in milliseconds)
stream = "scheduler_stream"
[scheduler.producer]
batch_size = 50 # Specifies the batch size the producer will push under a single entry in the redis queue
lock_key = "producer_locking_key" # The following keys defines the producer lock that is created in redis with
lock_ttl = 160 # the ttl being the expiry (in seconds)
lower_fetch_limit = 900 # Lower limit for fetching entries from redis queue (in seconds)
upper_fetch_limit = 0 # Upper limit for fetching entries from the redis queue (in seconds)0
# Scheduler server configuration
[scheduler.server]
port = 3000 # Port on which the server will listen for incoming requests
host = "127.0.0.1" # Host IP address to bind the server to
workers = 1 # Number of actix workers to handle incoming requests concurrently
| 296 | 8,827 |
hyperswitch | config/deployments/scheduler/consumer.toml | .toml | # Scheduler settings provides a point to modify the behaviour of scheduler flow.
# It defines the streams/queues name and configuration as well as event selection variables
[scheduler]
consumer_group = "scheduler_group"
graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown for a service (in milliseconds)
loop_interval = 3000 # Specifies how much time to wait before starting the defined behaviour of producer or consumer (in milliseconds)0
stream = "scheduler_stream"
[scheduler.consumer]
consumer_group = "scheduler_group"
disabled = false # This flag decides if the consumer should actively consume task
# Scheduler server configuration
[scheduler.server]
port = 3000 # Port on which the server will listen for incoming requests
host = "127.0.0.1" # Host IP address to bind the server to
workers = 1 # Number of actix workers to handle incoming requests concurrently
| 207 | 8,828 |
hyperswitch | aws/beta_schema.sql | .sql | -- File: migrations/00000000000000_diesel_initial_setup/up.sql
-- This file was automatically created by Diesel to setup helper functions
-- and other internal bookkeeping. This file is safe to edit, any future
-- changes will be added to existing projects as new migrations.
-- Sets up a trigger for the given table to automatically set a column called
-- `updated_at` whenever the row is modified (unless `updated_at` was included
-- in the modified columns)
--
-- # Example
--
-- ```sql
-- CREATE TABLE users (id SERIAL PRIMARY KEY, updated_at TIMESTAMP NOT NULL DEFAULT NOW());
--
-- SELECT diesel_manage_updated_at('users');
-- ```
CREATE OR REPLACE FUNCTION diesel_manage_updated_at(_tbl regclass) RETURNS VOID AS $$
BEGIN
EXECUTE format('CREATE TRIGGER set_updated_at BEFORE UPDATE ON %s
FOR EACH ROW EXECUTE PROCEDURE diesel_set_updated_at()', _tbl);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION diesel_set_updated_at() RETURNS trigger AS $$
BEGIN
IF (
NEW IS DISTINCT FROM OLD AND
NEW.updated_at IS NOT DISTINCT FROM OLD.updated_at
) THEN
NEW.updated_at := current_timestamp;
END IF;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
-- File: migrations/2022-09-29-084920_create_initial_tables/up.sql
-- Types
CREATE TYPE "AttemptStatus" AS ENUM (
'started',
'authentication_failed',
'juspay_declined',
'pending_vbv',
'vbv_successful',
'authorized',
'authorization_failed',
'charged',
'authorizing',
'cod_initiated',
'voided',
'void_initiated',
'capture_initiated',
'capture_failed',
'void_failed',
'auto_refunded',
'partial_charged',
'pending',
'failure',
'payment_method_awaited',
'confirmation_awaited'
);
CREATE TYPE "AuthenticationType" AS ENUM ('three_ds', 'no_three_ds');
CREATE TYPE "CaptureMethod" AS ENUM ('automatic', 'manual', 'scheduled');
CREATE TYPE "ConnectorType" AS ENUM (
'payment_processor',
'payment_vas',
'fin_operations',
'fiz_operations',
'networks',
'banking_entities',
'non_banking_finance'
);
CREATE TYPE "Currency" AS ENUM (
'AED',
'ALL',
'AMD',
'ARS',
'AUD',
'AWG',
'AZN',
'BBD',
'BDT',
'BHD',
'BMD',
'BND',
'BOB',
'BRL',
'BSD',
'BWP',
'BZD',
'CAD',
'CHF',
'CNY',
'COP',
'CRC',
'CUP',
'CZK',
'DKK',
'DOP',
'DZD',
'EGP',
'ETB',
'EUR',
'FJD',
'GBP',
'GHS',
'GIP',
'GMD',
'GTQ',
'GYD',
'HKD',
'HNL',
'HRK',
'HTG',
'HUF',
'IDR',
'ILS',
'INR',
'JMD',
'JOD',
'JPY',
'KES',
'KGS',
'KHR',
'KRW',
'KWD',
'KYD',
'KZT',
'LAK',
'LBP',
'LKR',
'LRD',
'LSL',
'MAD',
'MDL',
'MKD',
'MMK',
'MNT',
'MOP',
'MUR',
'MVR',
'MWK',
'MXN',
'MYR',
'NAD',
'NGN',
'NIO',
'NOK',
'NPR',
'NZD',
'OMR',
'PEN',
'PGK',
'PHP',
'PKR',
'PLN',
'QAR',
'RUB',
'SAR',
'SCR',
'SEK',
'SGD',
'SLL',
'SOS',
'SSP',
'SVC',
'SZL',
'THB',
'TTD',
'TWD',
'TZS',
'USD',
'UYU',
'UZS',
'YER',
'ZAR'
);
CREATE TYPE "EventClass" AS ENUM ('payments');
CREATE TYPE "EventObjectType" AS ENUM ('payment_details');
CREATE TYPE "EventType" AS ENUM ('payment_succeeded');
CREATE TYPE "FutureUsage" AS ENUM ('on_session', 'off_session');
CREATE TYPE "IntentStatus" AS ENUM (
'succeeded',
'failed',
'processing',
'requires_customer_action',
'requires_payment_method',
'requires_confirmation'
);
CREATE TYPE "MandateStatus" AS ENUM (
'active',
'inactive',
'pending',
'revoked'
);
CREATE TYPE "MandateType" AS ENUM ('single_use', 'multi_use');
CREATE TYPE "PaymentFlow" AS ENUM (
'vsc',
'emi',
'otp',
'upi_intent',
'upi_collect',
'upi_scan_and_pay',
'sdk'
);
CREATE TYPE "PaymentMethodIssuerCode" AS ENUM (
'jp_hdfc',
'jp_icici',
'jp_googlepay',
'jp_applepay',
'jp_phonepe',
'jp_wechat',
'jp_sofort',
'jp_giropay',
'jp_sepa',
'jp_bacs'
);
CREATE TYPE "PaymentMethodSubType" AS ENUM (
'credit',
'debit',
'upi_intent',
'upi_collect',
'credit_card_installments',
'pay_later_installments'
);
CREATE TYPE "PaymentMethodType" AS ENUM (
'card',
'bank_transfer',
'netbanking',
'upi',
'open_banking',
'consumer_finance',
'wallet',
'payment_container',
'bank_debit',
'pay_later'
);
CREATE TYPE "ProcessTrackerStatus" AS ENUM (
'processing',
'new',
'pending',
'process_started',
'finish'
);
CREATE TYPE "RefundStatus" AS ENUM (
'failure',
'manual_review',
'pending',
'success',
'transaction_failure'
);
CREATE TYPE "RefundType" AS ENUM (
'instant_refund',
'regular_refund',
'retry_refund'
);
CREATE TYPE "RoutingAlgorithm" AS ENUM (
'round_robin',
'max_conversion',
'min_cost',
'custom'
);
-- Tables
CREATE TABLE address (
id SERIAL,
address_id VARCHAR(255) PRIMARY KEY,
city VARCHAR(255),
country VARCHAR(255),
line1 VARCHAR(255),
line2 VARCHAR(255),
line3 VARCHAR(255),
state VARCHAR(255),
zip VARCHAR(255),
first_name VARCHAR(255),
last_name VARCHAR(255),
phone_number VARCHAR(255),
country_code VARCHAR(255),
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
modified_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP
);
CREATE TABLE configs (
id SERIAL,
key VARCHAR(255) NOT NULL,
config TEXT NOT NULL,
PRIMARY KEY (key)
);
CREATE TABLE customers (
id SERIAL,
customer_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
NAME VARCHAR(255),
email VARCHAR(255),
phone VARCHAR(255),
phone_country_code VARCHAR(255),
description VARCHAR(255),
address JSON,
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
metadata JSON,
PRIMARY KEY (customer_id, merchant_id)
);
CREATE TABLE events (
id SERIAL PRIMARY KEY,
event_id VARCHAR(255) NOT NULL,
event_type "EventType" NOT NULL,
event_class "EventClass" NOT NULL,
is_webhook_notified BOOLEAN NOT NULL DEFAULT FALSE,
intent_reference_id VARCHAR(255),
primary_object_id VARCHAR(255) NOT NULL,
primary_object_type "EventObjectType" NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP
);
CREATE TABLE locker_mock_up (
id SERIAL PRIMARY KEY,
card_id VARCHAR(255) NOT NULL,
external_id VARCHAR(255) NOT NULL,
card_fingerprint VARCHAR(255) NOT NULL,
card_global_fingerprint VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
card_number VARCHAR(255) NOT NULL,
card_exp_year VARCHAR(255) NOT NULL,
card_exp_month VARCHAR(255) NOT NULL,
name_on_card VARCHAR(255),
nickname VARCHAR(255),
customer_id VARCHAR(255),
duplicate BOOLEAN
);
CREATE TABLE mandate (
id SERIAL PRIMARY KEY,
mandate_id VARCHAR(255) NOT NULL,
customer_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
payment_method_id VARCHAR(255) NOT NULL,
mandate_status "MandateStatus" NOT NULL,
mandate_type "MandateType" NOT NULL,
customer_accepted_at TIMESTAMP,
customer_ip_address VARCHAR(255),
customer_user_agent VARCHAR(255),
network_transaction_id VARCHAR(255),
previous_transaction_id VARCHAR(255),
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP
);
CREATE TABLE merchant_account (
id SERIAL PRIMARY KEY,
merchant_id VARCHAR(255) NOT NULL,
api_key VARCHAR(255),
return_url VARCHAR(255),
enable_payment_response_hash BOOLEAN NOT NULL DEFAULT FALSE,
payment_response_hash_key VARCHAR(255) DEFAULT NULL,
redirect_to_merchant_with_http_post BOOLEAN NOT NULL DEFAULT FALSE,
merchant_name VARCHAR(255),
merchant_details JSON,
webhook_details JSON,
routing_algorithm "RoutingAlgorithm",
custom_routing_rules JSON,
sub_merchants_enabled BOOLEAN DEFAULT FALSE,
parent_merchant_id VARCHAR(255),
publishable_key VARCHAR(255)
);
CREATE TABLE merchant_connector_account (
id SERIAL PRIMARY KEY,
merchant_id VARCHAR(255) NOT NULL,
connector_name VARCHAR(255) NOT NULL,
connector_account_details JSON NOT NULL,
test_mode BOOLEAN,
disabled BOOLEAN,
merchant_connector_id SERIAL NOT NULL,
payment_methods_enabled JSON [ ],
connector_type "ConnectorType" NOT NULL DEFAULT 'payment_processor'::"ConnectorType"
);
CREATE TABLE payment_attempt (
id SERIAL PRIMARY KEY,
payment_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
txn_id VARCHAR(255) NOT NULL,
status "AttemptStatus" NOT NULL,
amount INTEGER NOT NULL,
currency "Currency",
save_to_locker BOOLEAN,
connector VARCHAR(255) NOT NULL,
error_message TEXT,
offer_amount INTEGER,
surcharge_amount INTEGER,
tax_amount INTEGER,
payment_method_id VARCHAR(255),
payment_method "PaymentMethodType",
payment_flow "PaymentFlow",
redirect BOOLEAN,
connector_transaction_id VARCHAR(255),
capture_method "CaptureMethod",
capture_on TIMESTAMP,
confirm BOOLEAN NOT NULL,
authentication_type "AuthenticationType",
created_at TIMESTAMP NOT NULL,
modified_at TIMESTAMP NOT NULL,
last_synced TIMESTAMP
);
CREATE TABLE payment_intent (
id SERIAL PRIMARY KEY,
payment_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
status "IntentStatus" NOT NULL,
amount INTEGER NOT NULL,
currency "Currency",
amount_captured INTEGER,
customer_id VARCHAR(255),
description VARCHAR(255),
return_url VARCHAR(255),
metadata JSONB DEFAULT '{}'::JSONB,
connector_id VARCHAR(255),
shipping_address_id VARCHAR(255),
billing_address_id VARCHAR(255),
statement_descriptor_name VARCHAR(255),
statement_descriptor_suffix VARCHAR(255),
created_at TIMESTAMP NOT NULL,
modified_at TIMESTAMP NOT NULL,
last_synced TIMESTAMP,
setup_future_usage "FutureUsage",
off_session BOOLEAN,
client_secret VARCHAR(255)
);
CREATE TABLE payment_methods (
id SERIAL PRIMARY KEY,
customer_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
payment_method_id VARCHAR(255) NOT NULL,
accepted_currency "Currency" [ ],
scheme VARCHAR(255),
token VARCHAR(255),
cardholder_name VARCHAR(255),
issuer_name VARCHAR(255),
issuer_country VARCHAR(255),
payer_country TEXT [ ],
is_stored BOOLEAN,
swift_code VARCHAR(255),
direct_debit_token VARCHAR(255),
network_transaction_id VARCHAR(255),
created_at TIMESTAMP NOT NULL,
last_modified TIMESTAMP NOT NULL,
payment_method "PaymentMethodType" NOT NULL,
payment_method_type "PaymentMethodSubType",
payment_method_issuer VARCHAR(255),
payment_method_issuer_code "PaymentMethodIssuerCode"
);
CREATE TABLE process_tracker (
id VARCHAR(127) PRIMARY KEY,
NAME VARCHAR(255),
tag TEXT [ ] NOT NULL DEFAULT '{}'::TEXT [ ],
runner VARCHAR(255),
retry_count INTEGER NOT NULL,
schedule_time TIMESTAMP,
rule VARCHAR(255) NOT NULL,
tracking_data JSON NOT NULL,
business_status VARCHAR(255) NOT NULL,
status "ProcessTrackerStatus" NOT NULL,
event TEXT [ ] NOT NULL DEFAULT '{}'::TEXT [ ],
created_at TIMESTAMP NOT NULL DEFAULT now(),
updated_at TIMESTAMP NOT NULL DEFAULT now()
);
CREATE TABLE refund (
id SERIAL PRIMARY KEY,
internal_reference_id VARCHAR(255) NOT NULL,
refund_id VARCHAR(255) NOT NULL,
payment_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
transaction_id VARCHAR(255) NOT NULL,
connector VARCHAR(255) NOT NULL,
pg_refund_id VARCHAR(255),
external_reference_id VARCHAR(255),
refund_type "RefundType" NOT NULL,
total_amount INTEGER NOT NULL,
currency "Currency" NOT NULL,
refund_amount INTEGER NOT NULL,
refund_status "RefundStatus" NOT NULL,
sent_to_gateway BOOLEAN NOT NULL DEFAULT FALSE,
refund_error_message TEXT,
metadata JSON,
refund_arn VARCHAR(255),
created_at TIMESTAMP NOT NULL,
modified_at TIMESTAMP NOT NULL,
description VARCHAR(255)
);
CREATE TABLE temp_card (
id SERIAL PRIMARY KEY,
date_created TIMESTAMP NOT NULL,
txn_id VARCHAR(255),
card_info JSON
);
-- Indices
CREATE INDEX customers_created_at_index ON customers (created_at);
CREATE UNIQUE INDEX merchant_account_api_key_index ON merchant_account (api_key);
CREATE UNIQUE INDEX merchant_account_merchant_id_index ON merchant_account (merchant_id);
CREATE UNIQUE INDEX merchant_account_publishable_key_index ON merchant_account (publishable_key);
CREATE INDEX merchant_connector_account_connector_type_index ON merchant_connector_account (connector_type);
CREATE INDEX merchant_connector_account_merchant_id_index ON merchant_connector_account (merchant_id);
CREATE UNIQUE INDEX payment_attempt_payment_id_merchant_id_index ON payment_attempt (payment_id, merchant_id);
CREATE UNIQUE INDEX payment_intent_payment_id_merchant_id_index ON payment_intent (payment_id, merchant_id);
CREATE INDEX payment_methods_created_at_index ON payment_methods (created_at);
CREATE INDEX payment_methods_customer_id_index ON payment_methods (customer_id);
CREATE INDEX payment_methods_last_modified_index ON payment_methods (last_modified);
CREATE INDEX payment_methods_payment_method_id_index ON payment_methods (payment_method_id);
CREATE INDEX refund_internal_reference_id_index ON refund (internal_reference_id);
CREATE INDEX refund_payment_id_merchant_id_index ON refund (payment_id, merchant_id);
CREATE INDEX refund_refund_id_index ON refund (refund_id);
CREATE UNIQUE INDEX refund_refund_id_merchant_id_index ON refund (refund_id, merchant_id);
CREATE INDEX temp_card_txn_id_index ON temp_card (txn_id);
-- File: migrations/2022-09-29-093314_create_seed_data/up.sql
INSERT INTO merchant_account (
merchant_id,
api_key,
merchant_name,
merchant_details,
custom_routing_rules,
publishable_key
)
VALUES (
'juspay_merchant',
'MySecretApiKey',
'Juspay Merchant',
'{ "primary_email": "merchant@juspay.in" }',
'[ { "connectors_pecking_order": [ "stripe" ] } ]',
'pk_MyPublicApiKey'
);
INSERT INTO merchant_connector_account (
merchant_id,
connector_name,
connector_account_details
)
VALUES (
'juspay_merchant',
'stripe',
'{ "auth_type": "HeaderKey", "api_key": "Basic MyStripeApiKey" }'
);
-- File: migrations/2022-10-20-100628_add_cancellation_reason/up.sql
ALTER TABLE payment_attempt
ADD COLUMN cancellation_reason VARCHAR(255);
-- File: migrations/2022-10-26-101016_update_payment_attempt_status_intent_status/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD IF NOT EXISTS amount_to_capture INTEGER;
ALTER TYPE "CaptureMethod" ADD VALUE 'manual_multiple' AFTER 'manual';
ALTER TYPE "IntentStatus" ADD VALUE 'requires_capture';
-- File: migrations/2022-11-03-130214_create_connector_response_table/up.sql
-- Your SQL goes here
CREATE TABLE connector_response (
id SERIAL PRIMARY KEY,
payment_id VARCHAR(255) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
txn_id VARCHAR(255) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
modified_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
connector_name VARCHAR(32) NOT NULL,
connector_transaction_id VARCHAR(255),
authentication_data JSON,
encoded_data TEXT
);
CREATE UNIQUE INDEX connector_response_id_index ON connector_response (payment_id, merchant_id, txn_id);
-- File: migrations/2022-11-08-101705_add_cancel_to_payment_intent_status/up.sql
-- Your SQL goes here
ALTER TYPE "IntentStatus" ADD VALUE 'cancelled' after 'failed';
-- File: migrations/2022-11-21-133803_add_mandate_id_in_payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD IF NOT EXISTS mandate_id VARCHAR(255);
-- File: migrations/2022-11-24-095709_add_browser_info_to_payment_attempt/up.sql
ALTER TABLE payment_attempt
ADD COLUMN browser_info JSONB DEFAULT NULL;
-- File: migrations/2022-11-25-121143_add_paypal_pmt/up.sql
-- Your SQL goes here
ALTER TYPE "PaymentMethodType" ADD VALUE 'paypal' after 'pay_later';
-- File: migrations/2022-11-30-084736_update-index-in-mca/up.sql
CREATE UNIQUE INDEX merchant_connector_account_merchant_id_connector_name_index ON merchant_connector_account (merchant_id, connector_name);
-- File: migrations/2022-12-05-090521_single_use_mandate_fields/up.sql
-- Your SQL goes here
ALTER TABLE mandate
ADD IF NOT EXISTS single_use_amount INTEGER DEFAULT NULL,
ADD IF NOT EXISTS single_use_currency "Currency" DEFAULT NULL;
-- File: migrations/2022-12-07-055441_add_use_kv_to_merchant_account/up.sql
-- Your SQL goes here
CREATE TYPE "MerchantStorageScheme" AS ENUM (
'postgres_only',
'redis_kv'
);
ALTER TABLE merchant_account ADD COLUMN storage_scheme "MerchantStorageScheme" NOT NULL DEFAULT 'postgres_only';
-- File: migrations/2022-12-07-133736_make_connector_field_optional/up.sql
ALTER TABLE payment_attempt ALTER COLUMN connector DROP NOT NULL;
ALTER TABLE connector_response ALTER COLUMN connector_name DROP NOT NULL;
-- File: migrations/2022-12-09-102635_mandate-connector-and-amount/up.sql
-- Your SQL goes here
ALTER TABLE mandate
RENAME COLUMN single_use_amount TO mandate_amount;
ALTER TABLE mandate
RENAME COLUMN single_use_currency TO mandate_currency;
ALTER TABLE mandate
ADD IF NOT EXISTS amount_captured INTEGER DEFAULT NULL,
ADD IF NOT EXISTS connector VARCHAR(255) NOT NULL DEFAULT 'dummy',
ADD IF NOT EXISTS connector_mandate_id VARCHAR(255) DEFAULT NULL;
-- File: migrations/2022-12-10-123613_update_address_and_customer/up.sql
-- Your SQL goes here
ALTER TABLE address
ADD COLUMN customer_id VARCHAR(255) NOT NULL,
ADD COLUMN merchant_id VARCHAR(255) NOT NULL;
CREATE INDEX address_customer_id_merchant_id_index ON address (customer_id, merchant_id);
ALTER TABLE customers DROP COLUMN address;
-- File: migrations/2022-12-11-190755_update_mock_up/up.sql
-- Your SQL goes here
ALTER TABLE locker_mock_up
ADD COLUMN card_cvc VARCHAR(8);
-- File: migrations/2022-12-12-132936_reverse_lookup/up.sql
CREATE TABLE reverse_lookup (
lookup_id VARCHAR(255) NOT NULL PRIMARY KEY,
sk_id VARCHAR(50) NOT NULL,
pk_id VARCHAR(255) NOT NULL,
source VARCHAR(30) NOT NULL
);
CREATE INDEX lookup_id_index ON reverse_lookup (lookup_id);
-- File: migrations/2022-12-13-170152_add_connector_metadata/up.sql
ALTER TABLE merchant_connector_account ADD COLUMN metadata JSONB DEFAULT NULL;
-- File: migrations/2022-12-14-074547_error-code-in-payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD IF NOT EXISTS error_code VARCHAR(255) DEFAULT NULL;
-- File: migrations/2022-12-14-090419_add_payment_token_in_payment_attempt/up.sql
ALTER TABLE payment_attempt ADD COLUMN payment_token VARCHAR(255);
-- File: migrations/2022-12-14-092540_i32_to_i64/up.sql
-- Your SQL goes here
ALTER TABLE mandate
ALTER COLUMN mandate_amount TYPE bigint,
ALTER COLUMN amount_captured TYPE bigint;
ALTER TABLE payment_attempt
ALTER COLUMN amount TYPE bigint,
ALTER COLUMN offer_amount TYPE bigint,
ALTER COLUMN surcharge_amount TYPE bigint,
ALTER COLUMN tax_amount TYPE bigint,
ALTER COLUMN amount_to_capture TYPE bigint;
ALTER TABLE payment_intent
ALTER COLUMN amount TYPE bigint,
ALTER COLUMN amount_captured TYPE bigint;
ALTER TABLE refund
ALTER COLUMN total_amount TYPE bigint,
ALTER COLUMN refund_amount TYPE bigint;
-- File: migrations/2022-12-14-162701_update_payment_method/up.sql
-- Your SQL goes here
ALTER TABLE payment_methods
ADD COLUMN metadata JSON;
-- File: migrations/2022-12-19-085322_rename_txn_id_to_attempt_id/up.sql
ALTER TABLE payment_attempt
RENAME COLUMN txn_id to attempt_id;
-- File: migrations/2022-12-19-085739_add_attempt_id_to_refund/up.sql
ALTER TABLE refund ADD COLUMN attempt_id VARCHAR(64) NOT NULL;
-- File: migrations/2022-12-20-065945_reduce_size_of_varchar_columns/up.sql
ALTER TABLE address
ALTER COLUMN address_id TYPE VARCHAR(64),
ALTER COLUMN city TYPE VARCHAR(128),
ALTER COLUMN country TYPE VARCHAR(64),
ALTER COLUMN state TYPE VARCHAR(128),
ALTER COLUMN zip TYPE VARCHAR(16),
ALTER COLUMN phone_number TYPE VARCHAR(32),
ALTER COLUMN country_code TYPE VARCHAR(8),
ALTER COLUMN customer_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64);
ALTER TABLE connector_response RENAME COLUMN txn_id TO attempt_id;
ALTER TABLE connector_response
ALTER COLUMN payment_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN attempt_id TYPE VARCHAR(64),
ALTER COLUMN connector_name TYPE VARCHAR(64),
ALTER COLUMN connector_transaction_id TYPE VARCHAR(128);
ALTER TABLE customers
ALTER COLUMN customer_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN phone TYPE VARCHAR(32),
ALTER COLUMN phone_country_code TYPE VARCHAR(8);
ALTER TABLE events
ALTER COLUMN event_id TYPE VARCHAR(64),
ALTER COLUMN intent_reference_id TYPE VARCHAR(64),
ALTER COLUMN primary_object_id TYPE VARCHAR(64);
ALTER TABLE mandate RENAME COLUMN previous_transaction_id to previous_attempt_id;
ALTER TABLE mandate
ALTER COLUMN mandate_id TYPE VARCHAR(64),
ALTER COLUMN customer_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN payment_method_id TYPE VARCHAR(64),
ALTER COLUMN customer_ip_address TYPE VARCHAR(64),
ALTER COLUMN network_transaction_id TYPE VARCHAR(128),
ALTER COLUMN previous_attempt_id TYPE VARCHAR(64),
ALTER COLUMN connector TYPE VARCHAR(64),
ALTER COLUMN connector_mandate_id TYPE VARCHAR(128);
ALTER TABLE merchant_account
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN api_key TYPE VARCHAR(128),
ALTER COLUMN merchant_name TYPE VARCHAR(128),
ALTER COLUMN parent_merchant_id TYPE VARCHAR(64),
ALTER COLUMN publishable_key TYPE VARCHAR(128);
ALTER TABLE merchant_connector_account
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN connector_name TYPE VARCHAR(64);
ALTER TABLE payment_attempt
ALTER COLUMN payment_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN attempt_id TYPE VARCHAR(64),
ALTER COLUMN connector TYPE VARCHAR(64),
ALTER COLUMN payment_method_id TYPE VARCHAR(64),
ALTER COLUMN connector_transaction_id TYPE VARCHAR(128),
ALTER COLUMN mandate_id TYPE VARCHAR(64),
ALTER COLUMN payment_token TYPE VARCHAR(128);
ALTER TABLE payment_intent
ALTER COLUMN payment_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN customer_id TYPE VARCHAR(64),
ALTER COLUMN connector_id TYPE VARCHAR(64),
ALTER COLUMN shipping_address_id TYPE VARCHAR(64),
ALTER COLUMN billing_address_id TYPE VARCHAR(64),
ALTER COLUMN client_secret TYPE VARCHAR(128);
ALTER TABLE payment_methods DROP COLUMN network_transaction_id;
ALTER TABLE payment_methods
ALTER COLUMN customer_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN payment_method_id TYPE VARCHAR(64),
ALTER COLUMN scheme TYPE VARCHAR(32),
ALTER COLUMN token TYPE VARCHAR(128),
ALTER COLUMN issuer_name TYPE VARCHAR(64),
ALTER COLUMN issuer_country TYPE VARCHAR(64),
ALTER COLUMN swift_code TYPE VARCHAR(32),
ALTER COLUMN direct_debit_token TYPE VARCHAR(128),
ALTER COLUMN payment_method_issuer TYPE VARCHAR(128);
ALTER TABLE process_tracker
ALTER COLUMN name TYPE VARCHAR(64),
ALTER COLUMN runner TYPE VARCHAR(64);
ALTER TABLE refund RENAME COLUMN transaction_id to connector_transaction_id;
ALTER TABLE refund RENAME COLUMN pg_refund_id to connector_refund_id;
ALTER TABLE refund
ALTER COLUMN internal_reference_id TYPE VARCHAR(64),
ALTER COLUMN refund_id TYPE VARCHAR(64),
ALTER COLUMN payment_id TYPE VARCHAR(64),
ALTER COLUMN merchant_id TYPE VARCHAR(64),
ALTER COLUMN connector_transaction_id TYPE VARCHAR(128),
ALTER COLUMN connector TYPE VARCHAR(64),
ALTER COLUMN connector_refund_id TYPE VARCHAR(128),
ALTER COLUMN external_reference_id TYPE VARCHAR(64),
ALTER COLUMN refund_arn TYPE VARCHAR(128);
ALTER TABLE reverse_lookup
ALTER COLUMN lookup_id TYPE VARCHAR(128),
ALTER COLUMN sk_id TYPE VARCHAR(128),
ALTER COLUMN pk_id TYPE VARCHAR(128),
ALTER COLUMN source TYPE VARCHAR(128);
-- File: migrations/2022-12-21-071825_add_refund_reason/up.sql
ALTER TABLE REFUND ADD COLUMN refund_reason VARCHAR(255) DEFAULT NULL;
-- File: migrations/2022-12-21-124904_remove_metadata_default_as_null/up.sql
ALTER TABLE payment_intent ALTER COLUMN metadata DROP DEFAULT;
-- File: migrations/2022-12-22-091431_attempt_status_rename/up.sql
ALTER TYPE "AttemptStatus" RENAME VALUE 'juspay_declined' TO 'router_declined';
ALTER TYPE "AttemptStatus" RENAME VALUE 'pending_vbv' TO 'authentication_successful';
ALTER TYPE "AttemptStatus" RENAME VALUE 'vbv_successful' TO 'authentication_pending';
-- File: migrations/2022-12-27-172643_update_locker_mock_up/up.sql
-- Your SQL goes here
ALTER TABLE locker_mock_up
ADD COLUMN payment_method_id VARCHAR(64);
-- File: migrations/2023-01-03-122401_update_merchant_account/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account
ADD COLUMN locker_id VARCHAR(64);
-- File: migrations/2023-01-10-035412_connector-metadata-payment-attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD COLUMN connector_metadata JSONB DEFAULT NULL;
-- File: migrations/2023-01-11-134448_add_metadata_to_merchant_account/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account ADD COLUMN metadata JSONB DEFAULT NULL;
-- File: migrations/2023-01-12-084710_update_merchant_routing_algorithm/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account DROP COLUMN routing_algorithm;
ALTER TABLE merchant_account DROP COLUMN custom_routing_rules;
ALTER TABLE merchant_account ADD COLUMN routing_algorithm JSON;
DROP TYPE "RoutingAlgorithm";
-- File: migrations/2023-01-12-140107_drop_temp_card/up.sql
DROP TABLE temp_card;
-- File: migrations/2023-01-19-122511_add_refund_error_code/up.sql
ALTER TABLE refund
ADD IF NOT EXISTS refund_error_code TEXT DEFAULT NULL;
-- File: migrations/2023-01-20-113235_add_attempt_id_to_payment_intent/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent ADD COLUMN active_attempt_id VARCHAR(64) NOT NULL DEFAULT 'xxx';
UPDATE payment_intent SET active_attempt_id = payment_attempt.attempt_id from payment_attempt where payment_intent.active_attempt_id = payment_attempt.payment_id;
CREATE UNIQUE INDEX payment_attempt_payment_id_merchant_id_attempt_id_index ON payment_attempt (payment_id, merchant_id, attempt_id);
-- Because payment_attempt table can have rows with same payment_id and merchant_id, this index is dropped.
DROP index payment_attempt_payment_id_merchant_id_index;
CREATE INDEX payment_attempt_payment_id_merchant_id_index ON payment_attempt (payment_id, merchant_id);
-- File: migrations/2023-02-01-135102_create_api_keys_table/up.sql
CREATE TABLE api_keys (
key_id VARCHAR(64) NOT NULL PRIMARY KEY,
merchant_id VARCHAR(64) NOT NULL,
NAME VARCHAR(64) NOT NULL,
description VARCHAR(256) DEFAULT NULL,
hash_key VARCHAR(64) NOT NULL,
hashed_api_key VARCHAR(128) NOT NULL,
prefix VARCHAR(16) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
expires_at TIMESTAMP DEFAULT NULL,
last_used TIMESTAMP DEFAULT NULL
);
-- File: migrations/2023-02-02-055700_add_payment_issuer_and_experience_in_payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS payment_issuer VARCHAR(50);
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS payment_experience VARCHAR(50);
-- File: migrations/2023-02-02-062215_remove_redirect_and_payment_flow_from_payment_attempt/up.sql
ALTER TABLE payment_attempt DROP COLUMN IF EXISTS redirect;
ALTER TABLE payment_attempt DROP COLUMN IF EXISTS payment_flow;
DROP TYPE IF EXISTS "PaymentFlow";
-- File: migrations/2023-02-07-070512_change_merchant_connector_id_data_type/up.sql
ALTER TABLE merchant_connector_account
ALTER COLUMN merchant_connector_id TYPE VARCHAR(128) USING merchant_connector_id::varchar;
ALTER TABLE merchant_connector_account
ALTER COLUMN merchant_connector_id DROP DEFAULT;
-- File: migrations/2023-02-09-093400_add_bank_redirect/up.sql
-- Your SQL goes here
ALTER TYPE "PaymentMethodType" ADD VALUE 'bank_redirect' after 'paypal';
-- File: migrations/2023-02-10-083146_make_payment_method_type_as_text/up.sql
-- Your SQL goes here
ALTER TABLE payment_methods
ALTER COLUMN payment_method_type TYPE VARCHAR(64);
ALTER TABLE payment_attempt
ADD COLUMN payment_method_type VARCHAR(64);
DROP TYPE IF EXISTS "PaymentMethodSubType";
-- File: migrations/2023-02-20-101809_update_merchant_connector_account/up.sql
ALTER TABLE merchant_connector_account
ADD COLUMN connector_label VARCHAR(255),
ADD COLUMN business_country VARCHAR(2) DEFAULT 'US' NOT NULL,
ADD COLUMN business_label VARCHAR(255) DEFAULT 'default' NOT NULL;
-- To backfill, use `US` as default country and `default` as the business_label
UPDATE merchant_connector_account AS m
SET connector_label = concat(
m.connector_name,
'_',
'US',
'_',
'default'
);
ALTER TABLE merchant_connector_account
ALTER COLUMN connector_label
SET NOT NULL,
ALTER COLUMN business_country DROP DEFAULT,
ALTER COLUMN business_label DROP DEFAULT;
DROP INDEX merchant_connector_account_merchant_id_connector_name_index;
CREATE UNIQUE INDEX merchant_connector_account_merchant_id_connector_label_index ON merchant_connector_account (merchant_id, connector_label);
-- File: migrations/2023-02-21-065628_update_merchant_account/up.sql
ALTER TABLE merchant_account
ADD COLUMN IF NOT EXISTS primary_business_details JSON NOT NULL DEFAULT '{"country": ["US"], "business": ["default"]}';
-- File: migrations/2023-02-21-094019_api_keys_remove_hash_key/up.sql
ALTER TABLE api_keys DROP COLUMN hash_key;
/*
Once we've dropped the `hash_key` column, we cannot use the existing API keys
from the `api_keys` table anymore, as the `hash_key` is a random string that
we no longer have.
*/
TRUNCATE TABLE api_keys;
ALTER TABLE api_keys
ADD CONSTRAINT api_keys_hashed_api_key_key UNIQUE (hashed_api_key);
-- File: migrations/2023-02-22-100331_rename_pm_type_enum/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ALTER COLUMN payment_method TYPE VARCHAR;
ALTER TABLE payment_methods
ALTER COLUMN payment_method TYPE VARCHAR;
ALTER TABLE payment_methods
ALTER COLUMN payment_method_type TYPE VARCHAR;
ALTER TABLE payment_attempt DROP COLUMN payment_issuer;
ALTER TABLE payment_attempt
ADD COLUMN payment_method_data JSONB;
DROP TYPE "PaymentMethodType";
-- File: migrations/2023-02-28-072631_ang-currency/up.sql
-- Your SQL goes here
ALTER TYPE "Currency" ADD VALUE 'ANG' after 'AMD';
-- File: migrations/2023-02-28-112730_add_refund_webhook_types/up.sql
-- Your SQL goes here
ALTER TYPE "EventClass" ADD VALUE 'refunds';
ALTER TYPE "EventObjectType" ADD VALUE 'refund_details';
ALTER TYPE "EventType" ADD VALUE 'refund_succeeded';
ALTER TYPE "EventType" ADD VALUE 'refund_failed';
-- File: migrations/2023-03-04-114058_remove_api_key_column_merchant_account_table/up.sql
ALTER TABLE merchant_account DROP COLUMN api_key;
-- File: migrations/2023-03-07-141638_make_payment_attempt_connector_json/up.sql
-- Alter column type to json
-- as well as the connector.
ALTER TABLE payment_attempt
ALTER COLUMN connector TYPE JSONB
USING jsonb_build_object(
'routed_through', connector,
'algorithm', NULL
);
-- File: migrations/2023-03-14-123541_add_cards_info_table/up.sql
-- Your SQL goes here
CREATE TABLE cards_info (
card_iin VARCHAR(16) PRIMARY KEY,
card_issuer TEXT,
card_network TEXT,
card_type TEXT,
card_subtype TEXT,
card_issuing_country TEXT,
bank_code_id VARCHAR(32),
bank_code VARCHAR(32),
country_code VARCHAR(32),
date_created TIMESTAMP NOT NULL,
last_updated TIMESTAMP,
last_updated_provider TEXT
);
-- File: migrations/2023-03-15-082312_add_connector_txn_id_merchant_id_index_in_payment_attempt/up.sql
-- Your SQL goes here
CREATE INDEX payment_attempt_connector_transaction_id_merchant_id_index ON payment_attempt (connector_transaction_id, merchant_id);
-- File: migrations/2023-03-15-185959_add_dispute_table/up.sql
CREATE TYPE "DisputeStage" AS ENUM ('pre_dispute', 'dispute', 'pre_arbitration');
CREATE TYPE "DisputeStatus" AS ENUM ('dispute_opened', 'dispute_expired', 'dispute_accepted', 'dispute_cancelled', 'dispute_challenged', 'dispute_won', 'dispute_lost');
CREATE TABLE dispute (
id SERIAL PRIMARY KEY,
dispute_id VARCHAR(64) NOT NULL,
amount VARCHAR(255) NOT NULL,
currency VARCHAR(255) NOT NULL,
dispute_stage "DisputeStage" NOT NULL,
dispute_status "DisputeStatus" NOT NULL,
payment_id VARCHAR(255) NOT NULL,
attempt_id VARCHAR(64) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
connector_status VARCHAR(255) NOT NULL,
connector_dispute_id VARCHAR(255) NOT NULL,
connector_reason VARCHAR(255),
connector_reason_code VARCHAR(255),
challenge_required_by VARCHAR(255),
dispute_created_at VARCHAR(255),
updated_at VARCHAR(255),
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
modified_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP
);
CREATE UNIQUE INDEX merchant_id_dispute_id_index ON dispute (merchant_id, dispute_id);
CREATE UNIQUE INDEX merchant_id_payment_id_connector_dispute_id_index ON dispute (merchant_id, payment_id, connector_dispute_id);
CREATE INDEX dispute_status_index ON dispute (dispute_status);
CREATE INDEX dispute_stage_index ON dispute (dispute_stage);
ALTER TYPE "EventClass" ADD VALUE 'disputes';
ALTER TYPE "EventObjectType" ADD VALUE 'dispute_details';
ALTER TYPE "EventType" ADD VALUE 'dispute_opened';
ALTER TYPE "EventType" ADD VALUE 'dispute_expired';
ALTER TYPE "EventType" ADD VALUE 'dispute_accepted';
ALTER TYPE "EventType" ADD VALUE 'dispute_cancelled';
ALTER TYPE "EventType" ADD VALUE 'dispute_challenged';
ALTER TYPE "EventType" ADD VALUE 'dispute_won';
ALTER TYPE "EventType" ADD VALUE 'dispute_lost';
-- File: migrations/2023-03-16-105114_add_data_collection_status/up.sql
ALTER TYPE "AttemptStatus" ADD VALUE IF NOT EXISTS 'device_data_collection_pending';
-- File: migrations/2023-03-23-095309_add_business_sub_label_to_mca/up.sql
ALTER TABLE merchant_connector_account
ADD COLUMN IF NOT EXISTS business_sub_label VARCHAR(64) DEFAULT 'default';
-- File: migrations/2023-03-23-123920_add_business_label_and_country_to_pi/up.sql
ALTER TABLE payment_intent
ADD COLUMN IF NOT EXISTS business_country VARCHAR(2) NOT NULL DEFAULT 'US',
ADD COLUMN IF NOT EXISTS business_label VARCHAR(64) NOT NULL DEFAULT 'default';
-- File: migrations/2023-03-26-163105_add_unresolved_status/up.sql
ALTER TYPE "AttemptStatus" ADD VALUE IF NOT EXISTS 'unresolved';
ALTER TYPE "IntentStatus" ADD VALUE IF NOT EXISTS 'requires_merchant_action' after 'requires_customer_action';
ALTER TYPE "EventType" ADD VALUE IF NOT EXISTS 'action_required';
ALTER TYPE "EventType" ADD VALUE IF NOT EXISTS 'payment_processing';
-- File: migrations/2023-03-27-091611_change_country_to_enum/up.sql
CREATE TYPE "CountryCode" AS ENUM (
'AF',
'AX',
'AL',
'DZ',
'AS',
'AD',
'AO',
'AI',
'AQ',
'AG',
'AR',
'AM',
'AW',
'AU',
'AT',
'AZ',
'BS',
'BH',
'BD',
'BB',
'BY',
'BE',
'BZ',
'BJ',
'BM',
'BT',
'BO',
'BQ',
'BA',
'BW',
'BV',
'BR',
'IO',
'BN',
'BG',
'BF',
'BI',
'KH',
'CM',
'CA',
'CV',
'KY',
'CF',
'TD',
'CL',
'CN',
'CX',
'CC',
'CO',
'KM',
'CG',
'CD',
'CK',
'CR',
'CI',
'HR',
'CU',
'CW',
'CY',
'CZ',
'DK',
'DJ',
'DM',
'DO',
'EC',
'EG',
'SV',
'GQ',
'ER',
'EE',
'ET',
'FK',
'FO',
'FJ',
'FI',
'FR',
'GF',
'PF',
'TF',
'GA',
'GM',
'GE',
'DE',
'GH',
'GI',
'GR',
'GL',
'GD',
'GP',
'GU',
'GT',
'GG',
'GN',
'GW',
'GY',
'HT',
'HM',
'VA',
'HN',
'HK',
'HU',
'IS',
'IN',
'ID',
'IR',
'IQ',
'IE',
'IM',
'IL',
'IT',
'JM',
'JP',
'JE',
'JO',
'KZ',
'KE',
'KI',
'KP',
'KR',
'KW',
'KG',
'LA',
'LV',
'LB',
'LS',
'LR',
'LY',
'LI',
'LT',
'LU',
'MO',
'MK',
'MG',
'MW',
'MY',
'MV',
'ML',
'MT',
'MH',
'MQ',
'MR',
'MU',
'YT',
'MX',
'FM',
'MD',
'MC',
'MN',
'ME',
'MS',
'MA',
'MZ',
'MM',
'NA',
'NR',
'NP',
'NL',
'NC',
'NZ',
'NI',
'NE',
'NG',
'NU',
'NF',
'MP',
'NO',
'OM',
'PK',
'PW',
'PS',
'PA',
'PG',
'PY',
'PE',
'PH',
'PN',
'PL',
'PT',
'PR',
'QA',
'RE',
'RO',
'RU',
'RW',
'BL',
'SH',
'KN',
'LC',
'MF',
'PM',
'VC',
'WS',
'SM',
'ST',
'SA',
'SN',
'RS',
'SC',
'SL',
'SG',
'SX',
'SK',
'SI',
'SB',
'SO',
'ZA',
'GS',
'SS',
'ES',
'LK',
'SD',
'SR',
'SJ',
'SZ',
'SE',
'CH',
'SY',
'TW',
'TJ',
'TZ',
'TH',
'TL',
'TG',
'TK',
'TO',
'TT',
'TN',
'TR',
'TM',
'TC',
'TV',
'UG',
'UA',
'AE',
'GB',
'US',
'UM',
'UY',
'UZ',
'VU',
'VE',
'VN',
'VG',
'VI',
'WF',
'EH',
'YE',
'ZM',
'ZW'
);
ALTER TABLE address
ALTER COLUMN country TYPE "CountryCode" USING country::"CountryCode";
-- File: migrations/2023-03-30-132338_add_start_end_date_for_mandates/up.sql
ALTER TABLE mandate
ADD IF NOT EXISTS start_date TIMESTAMP NULL,
ADD IF NOT EXISTS end_date TIMESTAMP NULL,
ADD COLUMN metadata JSONB DEFAULT NULL;
-- File: migrations/2023-04-03-082335_update_mca_frm_configs/up.sql
ALTER TABLE "merchant_connector_account" ADD COLUMN frm_configs jsonb;
-- File: migrations/2023-04-04-061926_add_dispute_api_schema/up.sql
-- Your SQL goes here
CREATE TABLE file_metadata (
file_id VARCHAR(64) NOT NULL,
merchant_id VARCHAR(255) NOT NULL,
file_name VARCHAR(255),
file_size INTEGER NOT NULL,
file_type VARCHAR(255) NOT NULL,
provider_file_id VARCHAR(255),
file_upload_provider VARCHAR(255),
available BOOLEAN NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now()::TIMESTAMP,
PRIMARY KEY (file_id, merchant_id)
);
-- File: migrations/2023-04-05-051523_add_business_sub_label_to_payment_attempt/up.sql
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS business_sub_label VARCHAR(64);
-- File: migrations/2023-04-05-121040_alter_mca_change_country_to_enum/up.sql
ALTER TABLE merchant_connector_account
ALTER COLUMN business_country TYPE "CountryCode" USING business_country::"CountryCode";
-- File: migrations/2023-04-05-121047_alter_pi_change_country_to_enum/up.sql
ALTER TABLE payment_intent
ALTER COLUMN business_country DROP DEFAULT,
ALTER COLUMN business_country TYPE "CountryCode" USING business_country::"CountryCode";
-- File: migrations/2023-04-06-063047_add_connector_col_in_dispute/up.sql
-- Your SQL goes here
ALTER TABLE dispute
ADD COLUMN connector VARCHAR(255) NOT NULL;
-- File: migrations/2023-04-06-092008_create_merchant_ek/up.sql
CREATE TABLE merchant_key_store(
merchant_id VARCHAR(255) NOT NULL PRIMARY KEY,
key bytea NOT NULL,
created_at TIMESTAMP NOT NULL
);
-- File: migrations/2023-04-11-084958_pii-migration/up.sql
-- Your SQL goes here
ALTER TABLE merchant_connector_account
ALTER COLUMN connector_account_details TYPE bytea
USING convert_to(connector_account_details::text, 'UTF8');
ALTER TABLE merchant_account
ALTER COLUMN merchant_name TYPE bytea USING convert_to(merchant_name, 'UTF8'),
ALTER merchant_details TYPE bytea USING convert_to(merchant_details::text, 'UTF8');
ALTER TABLE address
ALTER COLUMN line1 TYPE bytea USING convert_to(line1, 'UTF8'),
ALTER COLUMN line2 TYPE bytea USING convert_to(line2, 'UTF8'),
ALTER COLUMN line3 TYPE bytea USING convert_to(line3, 'UTF8'),
ALTER COLUMN state TYPE bytea USING convert_to(state, 'UTF8'),
ALTER COLUMN zip TYPE bytea USING convert_to(zip, 'UTF8'),
ALTER COLUMN first_name TYPE bytea USING convert_to(first_name, 'UTF8'),
ALTER COLUMN last_name TYPE bytea USING convert_to(last_name, 'UTF8'),
ALTER COLUMN phone_number TYPE bytea USING convert_to(phone_number, 'UTF8');
ALTER TABLE customers
ALTER COLUMN name TYPE bytea USING convert_to(name, 'UTF8'),
ALTER COLUMN email TYPE bytea USING convert_to(email, 'UTF8'),
ALTER COLUMN phone TYPE bytea USING convert_to(phone, 'UTF8');
-- File: migrations/2023-04-12-075449_separate_payment_attempt_algorithm_col/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD COLUMN straight_through_algorithm JSONB;
UPDATE payment_attempt SET straight_through_algorithm = connector->'algorithm'
WHERE connector->>'algorithm' IS NOT NULL;
ALTER TABLE payment_attempt
ALTER COLUMN connector TYPE VARCHAR(64)
USING connector->>'routed_through';
-- File: migrations/2023-04-13-094917_change_primary_business_type/up.sql
-- This change will allow older merchant accounts to be used with new changes
UPDATE merchant_account
SET primary_business_details = '[{"country": "US", "business": "default"}]';
-- Since this field is optional, default is not required
ALTER TABLE merchant_connector_account
ALTER COLUMN business_sub_label DROP DEFAULT;
-- File: migrations/2023-04-19-072152_merchant_account_add_intent_fulfilment_time/up.sql
ALTER TABLE merchant_account ADD COLUMN IF NOT EXISTS intent_fulfillment_time BIGINT;
-- File: migrations/2023-04-19-120503_update_customer_connector_customer/up.sql
-- Your SQL goes here
ALTER TABLE customers
ADD COLUMN connector_customer JSONB;
-- File: migrations/2023-04-19-120735_add_time_for_tables/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account
ADD COLUMN IF NOT EXISTS created_at TIMESTAMP NOT NULL DEFAULT now(),
ADD COLUMN IF NOT EXISTS modified_at TIMESTAMP NOT NULL DEFAULT now();
ALTER TABLE merchant_connector_account
ADD COLUMN IF NOT EXISTS created_at TIMESTAMP NOT NULL DEFAULT now(),
ADD COLUMN IF NOT EXISTS modified_at TIMESTAMP NOT NULL DEFAULT now();
ALTER TABLE customers
ADD COLUMN IF NOT EXISTS modified_at TIMESTAMP NOT NULL DEFAULT now();
-- File: migrations/2023-04-20-073704_allow_multiple_mandate_ids/up.sql
ALTER TABLE mandate
ADD COLUMN connector_mandate_ids jsonb;
UPDATE mandate SET connector_mandate_ids = jsonb_build_object(
'mandate_id', connector_mandate_id,
'payment_method_id', NULL
);
-- File: migrations/2023-04-20-162755_add_preprocessing_step_id_payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD COLUMN preprocessing_step_id VARCHAR DEFAULT NULL;
CREATE INDEX preprocessing_step_id_index ON payment_attempt (preprocessing_step_id);
-- File: migrations/2023-04-21-100150_create_index_for_api_keys/up.sql
CREATE UNIQUE INDEX api_keys_merchant_id_key_id_index ON api_keys (merchant_id, key_id);
-- File: migrations/2023-04-25-061159_rename_country_code_to_country_alpha2/up.sql
-- Your SQL goes here
ALTER TYPE "CountryCode" RENAME TO "CountryAlpha2";
-- File: migrations/2023-04-25-091017_merchant_account_add_frm_routing_algorithm.sql/up.sql
ALTER TABLE merchant_account
ADD COLUMN frm_routing_algorithm JSONB NULL;
-- File: migrations/2023-04-25-141011_add_connector_label_col_in_file_metadata/up.sql
-- Your SQL goes here
ALTER TABLE file_metadata
ADD COLUMN connector_label VARCHAR(255);
-- File: migrations/2023-04-26-062424_alter_dispute_table/up.sql
ALTER TABLE dispute
ALTER COLUMN challenge_required_by TYPE TIMESTAMP USING dispute_created_at::TIMESTAMP,
ALTER COLUMN dispute_created_at TYPE TIMESTAMP USING dispute_created_at::TIMESTAMP,
ALTER COLUMN updated_at TYPE TIMESTAMP USING dispute_created_at::TIMESTAMP;
-- File: migrations/2023-04-26-090005_remove_default_created_at_modified_at/up.sql
-- Merchant Account
ALTER TABLE merchant_account
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE merchant_account
ALTER COLUMN created_at DROP DEFAULT;
-- Merchant Connector Account
ALTER TABLE merchant_connector_account
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE merchant_connector_account
ALTER COLUMN created_at DROP DEFAULT;
-- Customers
ALTER TABLE customers
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE customers
ALTER COLUMN created_at DROP DEFAULT;
-- Address
ALTER TABLE address
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE address
ALTER COLUMN created_at DROP DEFAULT;
-- Refunds
ALTER TABLE refund
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE refund
ALTER COLUMN created_at DROP DEFAULT;
-- Connector Response
ALTER TABLE connector_response
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE connector_response
ALTER COLUMN created_at DROP DEFAULT;
-- Payment methods
ALTER TABLE payment_methods
ALTER COLUMN created_at DROP DEFAULT;
-- Payment Intent
ALTER TABLE payment_intent
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE payment_intent
ALTER COLUMN created_at DROP DEFAULT;
--- Payment Attempt
ALTER TABLE payment_attempt
ALTER COLUMN modified_at DROP DEFAULT;
ALTER TABLE payment_attempt
ALTER COLUMN created_at DROP DEFAULT;
-- File: migrations/2023-04-27-120010_add_payment_failed_event_type/up.sql
ALTER TYPE "EventType" ADD VALUE IF NOT EXISTS 'payment_failed';
-- File: migrations/2023-05-02-102332_payout_create/up.sql
CREATE type "PayoutStatus" AS ENUM (
'success',
'failed',
'cancelled',
'pending',
'ineligible',
'requires_creation',
'requires_payout_method_data',
'requires_fulfillment'
);
CREATE type "PayoutType" AS ENUM ('card', 'bank');
CREATE TABLE
PAYOUT_ATTEMPT (
payout_attempt_id VARCHAR (64) NOT NULL PRIMARY KEY,
payout_id VARCHAR (64) NOT NULL,
customer_id VARCHAR (64) NOT NULL,
merchant_id VARCHAR (64) NOT NULL,
address_id VARCHAR (64) NOT NULL,
connector VARCHAR (64) NOT NULL,
connector_payout_id VARCHAR (128) NOT NULL,
payout_token VARCHAR (64),
status "PayoutStatus" NOT NULL,
is_eligible BOOLEAN,
error_message TEXT,
error_code VARCHAR (64),
business_country "CountryAlpha2",
business_label VARCHAR(64),
created_at timestamp NOT NULL DEFAULT NOW():: timestamp,
last_modified_at timestamp NOT NULL DEFAULT NOW():: timestamp
);
CREATE TABLE
PAYOUTS (
payout_id VARCHAR (64) NOT NULL PRIMARY KEY,
merchant_id VARCHAR (64) NOT NULL,
customer_id VARCHAR (64) NOT NULL,
address_id VARCHAR (64) NOT NULL,
payout_type "PayoutType" NOT NULL,
payout_method_id VARCHAR (64),
amount BIGINT NOT NULL,
destination_currency "Currency" NOT NULL,
source_currency "Currency" NOT NULL,
description VARCHAR (255),
recurring BOOLEAN NOT NULL,
auto_fulfill BOOLEAN NOT NULL,
return_url VARCHAR (255),
entity_type VARCHAR (64) NOT NULL,
metadata JSONB DEFAULT '{}':: JSONB,
created_at timestamp NOT NULL DEFAULT NOW():: timestamp,
last_modified_at timestamp NOT NULL DEFAULT NOW():: timestamp
);
CREATE UNIQUE INDEX payout_attempt_index ON PAYOUT_ATTEMPT (
merchant_id,
payout_attempt_id,
payout_id
);
CREATE UNIQUE INDEX payouts_index ON PAYOUTS (merchant_id, payout_id);
-- Alterations
ALTER TABLE merchant_account
ADD
COLUMN payout_routing_algorithm JSONB;
ALTER TABLE locker_mock_up ADD COLUMN enc_card_data TEXT;
ALTER TYPE "ConnectorType" ADD VALUE 'payout_processor';
-- File: migrations/2023-05-03-121025_nest_straight_through_col_in_payment_attempt/up.sql
-- Your SQL goes here
UPDATE payment_attempt
SET straight_through_algorithm = jsonb_build_object('algorithm', straight_through_algorithm);
-- File: migrations/2023-05-05-112013_add_evidence_col_in_dispute/up.sql
-- Your SQL goes here
ALTER TABLE dispute
ADD COLUMN evidence JSONB NOT NULL DEFAULT '{}'::JSONB;
-- File: migrations/2023-05-08-141907_rename_dispute_cols/up.sql
-- Your SQL goes here
ALTER TABLE dispute
RENAME COLUMN dispute_created_at TO connector_created_at;
ALTER TABLE dispute
RENAME COLUMN updated_at TO connector_updated_at;
-- File: migrations/2023-05-16-145008_mandate_data_in_pa/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD COLUMN mandate_details JSONB;
-- File: migrations/2023-05-29-094747_order-details-as-a-separate-column.sql/up.sql
ALTER TABLE payment_intent ADD COLUMN order_details jsonb[];
-- File: migrations/2023-05-31-152153_add_connector_webhook_details_to_mca/up.sql
-- Your SQL goes here
ALTER TABLE merchant_connector_account
ADD COLUMN IF NOT EXISTS connector_webhook_details JSONB DEFAULT NULL;
-- File: migrations/2023-06-14-105035_add_reason_in_payment_attempt/up.sql
ALTER TABLE payment_attempt
ADD COLUMN error_reason TEXT;
-- File: migrations/2023-06-16-073615_add_ron_currency_to_db/up.sql
-- Your SQL goes here
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'RON' AFTER 'QAR';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'TRY' AFTER 'TTD';
-- File: migrations/2023-06-18-042123_add_udf_column_in_payments/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent ADD COLUMN udf JSONB;
-- File: migrations/2023-06-19-071300_merchant_key_store_shrink_merchant_id/up.sql
ALTER TABLE merchant_key_store
ALTER COLUMN merchant_id TYPE VARCHAR(64);
-- File: migrations/2023-06-22-161131_change-type-of-frm-configs.sql/up.sql
UPDATE merchant_connector_account set frm_configs = null ;
ALTER TABLE merchant_connector_account
ALTER COLUMN frm_configs TYPE jsonb[]
USING ARRAY[frm_configs]::jsonb[];
UPDATE merchant_connector_account set frm_configs = null ;
-- File: migrations/2023-06-26-124254_add_vnd_to_currency_enum/up.sql
-- Your SQL goes here
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'VND' AFTER 'UZS';
-- File: migrations/2023-06-29-094858_payment-intent-remove-udf-field/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent DROP COLUMN udf;
-- File: migrations/2023-07-01-184850_payment-intent-add-metadata-fields/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent
ADD COLUMN allowed_payment_method_types JSON,
ADD COLUMN connector_metadata JSON,
ADD COLUMN feature_metadata JSON;
-- File: migrations/2023-07-03-093552_add_attempt_count_in_payment_intent/up.sql
ALTER TABLE payment_intent ADD COLUMN attempt_count SMALLINT NOT NULL DEFAULT 1;
UPDATE payment_intent
SET attempt_count = payment_id_count.count
FROM (SELECT payment_id, count(payment_id) FROM payment_attempt GROUP BY payment_id) as payment_id_count
WHERE payment_intent.payment_id = payment_id_count.payment_id;
-- File: migrations/2023-07-04-131721_add_org_id_and_org_name/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account
ADD COLUMN IF NOT EXISTS organization_id VARCHAR(32);
-- File: migrations/2023-07-07-091223_create_captures_table/up.sql
CREATE TYPE "CaptureStatus" AS ENUM (
'started',
'charged',
'pending',
'failed'
);
ALTER TYPE "IntentStatus" ADD VALUE If NOT EXISTS 'partially_captured' AFTER 'requires_capture';
CREATE TABLE captures(
capture_id VARCHAR(64) NOT NULL PRIMARY KEY,
payment_id VARCHAR(64) NOT NULL,
merchant_id VARCHAR(64) NOT NULL,
status "CaptureStatus" NOT NULL,
amount BIGINT NOT NULL,
currency "Currency",
connector VARCHAR(255),
error_message VARCHAR(255),
error_code VARCHAR(255),
error_reason VARCHAR(255),
tax_amount BIGINT,
created_at TIMESTAMP NOT NULL,
modified_at TIMESTAMP NOT NULL,
authorized_attempt_id VARCHAR(64) NOT NULL,
connector_transaction_id VARCHAR(128),
capture_sequence SMALLINT NOT NULL
);
CREATE INDEX captures_merchant_id_payment_id_authorized_attempt_id_index ON captures (
merchant_id,
payment_id,
authorized_attempt_id
);
CREATE INDEX captures_connector_transaction_id_index ON captures (
connector_transaction_id
);
ALTER TABLE payment_attempt
ADD COLUMN multiple_capture_count SMALLINT; --number of captures available for this payment attempt in captures table
-- File: migrations/2023-07-08-134807_add_connector_response_reference_id_in_payment_intent/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt ADD COLUMN IF NOT EXISTS connector_response_reference_id VARCHAR(128);
-- File: migrations/2023-07-11-140347_add_is_recon_enabled_field_in_merchant_account/up.sql
-- Your SQL goes here
ALTER TABLE merchant_account ADD COLUMN "is_recon_enabled" BOOLEAN NOT NULL DEFAULT FALSE;
-- File: migrations/2023-07-17-111427_add-fraud-check-table.sql/up.sql
-- Your SQL goes here-- Your SQL goes here
CREATE TYPE "FraudCheckType" AS ENUM (
'pre_frm',
'post_frm'
);
CREATE TYPE "FraudCheckStatus" AS ENUM (
'fraud',
'manual_review',
'pending',
'legit',
'transaction_failure'
);
CREATE TABLE fraud_check (
frm_id VARCHAR(64) NOT NULL UNIQUE,
payment_id VARCHAR(64) NOT NULL,
merchant_id VARCHAR(64) NOT NULL,
attempt_id VARCHAR(64) NOT NULL UNIQUE,
created_at TIMESTAMP NOT NULL DEFAULT now(),
frm_name VARCHAR(255) NOT NULL,
frm_transaction_id VARCHAR(255) UNIQUE,
frm_transaction_type "FraudCheckType" NOT NULL,
frm_status "FraudCheckStatus" NOT NULL,
frm_score INTEGER,
frm_reason JSONB,
frm_error VARCHAR(255),
payment_details JSONB,
metadata JSONB,
modified_at TIMESTAMP NOT NULL DEFAULT now(),
PRIMARY KEY (frm_id, attempt_id, payment_id, merchant_id)
);
CREATE UNIQUE INDEX frm_id_index ON fraud_check (frm_id, attempt_id, payment_id, merchant_id);
-- File: migrations/2023-07-19-081050_add_zero_decimal_currencies/up.sql
-- Your SQL goes here
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'BIF' AFTER 'BHD';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'CLP' AFTER 'CHF';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'DJF' AFTER 'CZK';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'GNF' AFTER 'GMD';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'KMF' AFTER 'KHR';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'MGA' AFTER 'MDL';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'PYG' AFTER 'PLN';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'RWF' AFTER 'RUB';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'UGX' AFTER 'TZS';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'VUV' AFTER 'VND';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'XAF' AFTER 'VUV';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'XOF' AFTER 'XAF';
ALTER TYPE "Currency" ADD VALUE IF NOT EXISTS 'XPF' AFTER 'XOF';
-- File: migrations/2023-07-28-111829_update_columns_to_fix_db_diff/up.sql
ALTER TABLE dispute
ALTER COLUMN payment_id TYPE VARCHAR(64);
ALTER TABLE payment_methods
ALTER COLUMN payment_method_type TYPE VARCHAR(64);
ALTER TABLE merchant_account
ALTER COLUMN primary_business_details DROP DEFAULT;
-- File: migrations/2023-08-01-165717_make_event_id_unique_for_events_table/up.sql
-- Your SQL goes here
ALTER TABLE events
ADD CONSTRAINT event_id_unique UNIQUE (event_id);
-- File: migrations/2023-08-08-144148_add_business_profile_table/up.sql
-- Your SQL goes here
CREATE TABLE IF NOT EXISTS business_profile (
profile_id VARCHAR(64) PRIMARY KEY,
merchant_id VARCHAR(64) NOT NULL,
profile_name VARCHAR(64) NOT NULL,
created_at TIMESTAMP NOT NULL,
modified_at TIMESTAMP NOT NULL,
return_url TEXT,
enable_payment_response_hash BOOLEAN NOT NULL DEFAULT TRUE,
payment_response_hash_key VARCHAR(255) DEFAULT NULL,
redirect_to_merchant_with_http_post BOOLEAN NOT NULL DEFAULT FALSE,
webhook_details JSON,
metadata JSON,
routing_algorithm JSON,
intent_fulfillment_time BIGINT,
frm_routing_algorithm JSONB,
payout_routing_algorithm JSONB,
is_recon_enabled BOOLEAN NOT NULL DEFAULT FALSE
);
-- File: migrations/2023-08-11-073905_add_frm_config_in_mca/up.sql
ALTER TABLE "merchant_connector_account" ADD COLUMN frm_config jsonb[];
-- Do not run below migration in PROD as this only makes sandbox compatible to PROD version
ALTER TABLE merchant_connector_account
ALTER COLUMN frm_configs TYPE jsonb
USING frm_configs[1]::jsonb;
-- File: migrations/2023-08-16-080721_make_connector_field_mandatory_capture_table/up.sql
-- Your SQL goes here
ALTER TABLE captures ALTER COLUMN connector SET NOT NULL;
ALTER TABLE captures RENAME COLUMN connector_transaction_id TO connector_capture_id;
ALTER TABLE captures add COLUMN IF NOT EXISTS connector_response_reference_id VARCHAR(128);
-- File: migrations/2023-08-16-103806_add_last_executed_frm_step/up.sql
alter table fraud_check add column last_step VARCHAR(64) NOT NULL DEFAULT 'processing';
-- File: migrations/2023-08-16-112847_add_profile_id_in_affected_tables/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
ALTER TABLE merchant_connector_account
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
ALTER TABLE merchant_account
ADD COLUMN IF NOT EXISTS default_profile VARCHAR(64);
-- Profile id is needed in refunds for listing refunds by business profile
ALTER TABLE refund
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
-- For listing disputes by business profile
ALTER TABLE dispute
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
-- For a similar use case as to payments
ALTER TABLE payout_attempt
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
-- File: migrations/2023-08-23-090712_payment_attempt_perf_idx/up.sql
-- Your SQL goes here
CREATE INDEX payment_attempt_attempt_id_merchant_id_index ON payment_attempt (attempt_id, merchant_id);
-- File: migrations/2023-08-24-095037_add_profile_id_in_file_metadata/up.sql
-- Your SQL goes here
ALTER TABLE file_metadata
ADD COLUMN IF NOT EXISTS profile_id VARCHAR(64);
-- File: migrations/2023-08-25-094551_add_recon_status_in_merchant_account/up.sql
-- Your SQL goes here
CREATE TYPE "ReconStatus" AS ENUM ('requested','active', 'disabled','not_requested');
ALTER TABLE merchant_account ADD recon_status "ReconStatus" NOT NULL DEFAULT "ReconStatus"('not_requested');
-- File: migrations/2023-08-28-131238_make_business_details_optional/up.sql
-- Your SQL goes here
ALTER TABLE payment_intent
ALTER COLUMN business_country DROP NOT NULL;
ALTER TABLE payment_intent
ALTER COLUMN business_label DROP NOT NULL;
ALTER TABLE merchant_connector_account
ALTER COLUMN business_country DROP NOT NULL;
ALTER TABLE merchant_connector_account
ALTER COLUMN business_label DROP NOT NULL;
ALTER TABLE merchant_connector_account
ALTER COLUMN connector_label DROP NOT NULL;
DROP INDEX IF EXISTS merchant_connector_account_merchant_id_connector_label_index;
CREATE UNIQUE INDEX IF NOT EXISTS merchant_connector_account_profile_id_connector_id_index ON merchant_connector_account(profile_id, connector_name);
CREATE UNIQUE INDEX IF NOT EXISTS business_profile_merchant_id_profile_name_index ON business_profile(merchant_id, profile_name);
-- File: migrations/2023-08-31-093852_add_merchant_decision/up.sql
alter table payment_intent add column merchant_decision VARCHAR(64);
-- File: migrations/2023-09-06-101704_payment_method_data_in_payment_methods/up.sql
-- Your SQL goes here
ALTER TABLE payment_methods ADD COLUMN IF NOT EXISTS payment_method_data BYTEA DEFAULT NULL;
-- File: migrations/2023-09-07-113914_add_amount_capturable_field_payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS amount_capturable BIGINT NOT NULL DEFAULT 0;
-- File: migrations/2023-09-08-112817_applepay_verified_domains_in_business_profile/up.sql
ALTER TABLE business_profile
ADD COLUMN IF NOT EXISTS applepay_verified_domains text[];
-- File: migrations/2023-09-08-134514_add_payment_confirm_source_in_payment_intent/up.sql
-- Your SQL goes here
CREATE TYPE "PaymentSource" AS ENUM (
'merchant_server',
'postman',
'dashboard',
'sdk'
);
ALTER TABLE payment_intent
ADD COLUMN IF NOT EXISTS payment_confirm_source "PaymentSource";
-- File: migrations/2023-09-13-075226_applepay_verified_domains_in_mca/up.sql
ALTER TABLE merchant_connector_account
ADD COLUMN IF NOT EXISTS applepay_verified_domains text[];
-- File: migrations/2023-09-14-032447_add_payment_id_in_address/up.sql
-- Your SQL goes here
ALTER TABLE address ADD COLUMN payment_id VARCHAR(64);
ALTER TABLE customers ADD COLUMN address_id VARCHAR(64);
-- File: migrations/2023-09-17-152010_make_id_not_null_address/up.sql
-- Your SQL goes here
ALTER TABLE address ALTER COLUMN id DROP NOT NULL;
-- File: migrations/2023-09-18-104900_add_pm_auth_config_mca/up.sql
-- Your SQL goes here
ALTER TABLE merchant_connector_account ADD COLUMN IF NOT EXISTS pm_auth_config JSONB DEFAULT NULL;
ALTER TYPE "ConnectorType" ADD VALUE 'payment_method_auth';
-- File: migrations/2023-09-25-125007_add_surcharge_metadata_payment_attempt/up.sql
-- Your SQL goes here
ALTER TABLE payment_attempt
ADD COLUMN IF NOT EXISTS surcharge_metadata JSONB DEFAULT NULL;
-- File: migrations/2023-10-05-085859_make_org_id_mandatory_in_ma/up.sql
-- Your SQL goes here
UPDATE merchant_account
SET organization_id = 'org_abcdefghijklmn'
WHERE organization_id IS NULL;
ALTER TABLE merchant_account
ALTER COLUMN organization_id
SET NOT NULL;
-- File: migrations/2023-10-05-114138_add_payment_id_in_mandate/up.sql
-- Your SQL goes here
ALTER TABLE mandate ADD COLUMN original_payment_id VARCHAR(64);
-- File: migrations/2023-10-05-130917_add_mandate_webhook_types/up.sql
-- Your SQL goes here
ALTER TYPE "EventClass" ADD VALUE 'mandates';
ALTER TYPE "EventObjectType" ADD VALUE 'mandate_details';
ALTER TYPE "EventType" ADD VALUE 'mandate_active';
ALTER TYPE "EventType" ADD VALUE 'mandate_revoked';
| 16,573 | 8,829 |
hyperswitch | aws/hyperswitch_aws_setup.sh | .sh | #!/bin/bash
command_discovery() {
type $1 > /dev/null 2> /dev/null
if [[ $? != 0 ]]; then
echo "\`$1\` command not found"
exit 1
fi
}
command_discovery curl
command_discovery aws
command_discovery psql
echo "Please enter the AWS region (us-east-2): "
read REGION < /dev/tty
if [ -z "$REGION" ]; then
echo "Using default region: us-east-2"
REGION="us-east-2"
fi
while [[ -z "$MASTER_DB_PASSWORD" ]]; do
echo "Please enter the password for your RDS instance: "
echo "Minimum length: 8 Characters [A-Z][a-z][0-9]"
read MASTER_DB_PASSWORD < /dev/tty
done
while [[ -z "$ADMIN_API_KEY" ]]; do
echo "Please configure the Admin api key: (Required to access Hyperswitch APIs)"
read ADMIN_API_KEY < /dev/tty
done
############# APPLICATION ##################
# CREATE SECURITY GROUP FOR APPLICATION
echo "Creating Security Group for Application..."
export EC2_SG="application-sg"
echo "$(aws ec2 create-security-group \
--region $REGION \
--group-name $EC2_SG \
--description "Security Group for Hyperswitch EC2 instance" \
--tag-specifications "ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]")"
export APP_SG_ID=$(aws ec2 describe-security-groups --group-names $EC2_SG --region $REGION --output text --query 'SecurityGroups[0].GroupId')
echo "Security Group for Application CREATED.\n"
echo "Creating Security Group ingress for port 80..."
echo "$(aws ec2 authorize-security-group-ingress \
--group-id $APP_SG_ID \
--protocol tcp \
--port 80 \
--cidr 0.0.0.0/0 \
--region $REGION)"
echo "Security Group ingress for port 80 CREATED.\n"
echo "Creating Security Group ingress for port 22..."
echo "$(aws ec2 authorize-security-group-ingress \
--group-id $APP_SG_ID \
--protocol tcp \
--port 22 \
--cidr 0.0.0.0/0 \
--region $REGION)"
echo "Security Group ingress for port 22 CREATED.\n"
############# REDIS ##################
# CREATE SECURITY GROUP FOR ELASTICACHE
echo "Creating Security Group for Elasticache..."
export REDIS_GROUP_NAME=redis-sg
echo "$(aws ec2 create-security-group \
--group-name $REDIS_GROUP_NAME \
--description "SG attached to elasticache" \
--tag-specifications "ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
--region $REGION)"
echo "Security Group for Elasticache CREATED.\n"
echo "Creating Inbound rules for Redis..."
export REDIS_SG_ID=$(aws ec2 describe-security-groups --group-names $REDIS_GROUP_NAME --region $REGION --output text --query 'SecurityGroups[0].GroupId')
# CREATE INBOUND RULES
echo "$(aws ec2 authorize-security-group-ingress \
--group-id $REDIS_SG_ID \
--protocol tcp \
--port 6379 \
--source-group $EC2_SG \
--region $REGION)"
echo "Inbound rules for Redis CREATED.\n"
############# DB ##################
echo "Creating Security Group for RDS..."
export RDS_GROUP_NAME=rds-sg
echo "$(aws ec2 create-security-group \
--group-name $RDS_GROUP_NAME \
--description "SG attached to RDS" \
--tag-specifications "ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
--region $REGION)"
echo "Security Group for RDS CREATED.\n"
echo "Creating Inbound rules for RDS..."
export RDS_SG_ID=$(aws ec2 describe-security-groups --group-names $RDS_GROUP_NAME --region $REGION --output text --query 'SecurityGroups[0].GroupId')
# CREATE INBOUND RULES
echo "$(aws ec2 authorize-security-group-ingress \
--group-id $RDS_SG_ID \
--protocol tcp \
--port 5432 \
--source-group $EC2_SG \
--region $REGION)"
echo "Inbound rules for RDS CREATED.\n"
echo "$(aws ec2 authorize-security-group-ingress \
--group-id $RDS_SG_ID \
--protocol tcp \
--port 5432 \
--cidr 0.0.0.0/0 \
--region $REGION)"
echo "Inbound rules for RDS (from any IP) CREATED.\n"
echo "Creating Elasticache with Redis engine..."
export CACHE_CLUSTER_ID=hyperswitch-cluster
echo "$(aws elasticache create-cache-cluster \
--cache-cluster-id $CACHE_CLUSTER_ID \
--cache-node-type cache.t3.medium \
--engine redis \
--num-cache-nodes 1 \
--security-group-ids $REDIS_SG_ID \
--engine-version 7.0 \
--tags "Key=ManagedBy,Value=hyperswitch" \
--region $REGION)"
echo "Elasticache with Redis engine CREATED.\n"
echo "Creating RDS with PSQL..."
export DB_INSTANCE_ID=hyperswitch-db
echo "$(aws rds create-db-instance \
--db-instance-identifier $DB_INSTANCE_ID\
--db-instance-class db.t3.micro \
--engine postgres \
--allocated-storage 20 \
--master-username hyperswitch \
--master-user-password $MASTER_DB_PASSWORD \
--backup-retention-period 7 \
--region $REGION \
--db-name hyperswitch_db \
--tags "Key=ManagedBy,Value=hyperswitch" \
--vpc-security-group-ids $RDS_SG_ID)"
echo "RDS with PSQL CREATED.\n"
echo "Downloading Hyperswitch PSQL Schema..."
curl https://raw.githubusercontent.com/juspay/hyperswitch/main/aws/beta_schema.sql > schema.sql
echo "Schema.sql downloaded.\n"
echo "Awaiting RDS Initialization..."
export RDS_STATUS=$(aws rds describe-db-instances \
--db-instance-identifier $DB_INSTANCE_ID \
--region $REGION \
--query "DBInstances[0].DBInstanceStatus" \
--output text)
while [[ $RDS_STATUS != 'available' ]]; do
echo $RDS_STATUS
sleep 10
export RDS_STATUS=$(aws rds describe-db-instances \
--db-instance-identifier $DB_INSTANCE_ID \
--region $REGION \
--query "DBInstances[0].DBInstanceStatus" \
--output text)
done
echo "RDS Initialized.\n"
echo "Retrieving RDS Endpoint..."
export RDS_ENDPOINT=$(aws rds describe-db-instances --db-instance-identifier $DB_INSTANCE_ID --region $REGION --query "DBInstances[0].Endpoint.Address" --output text)
echo "RDS Endpoint retrieved.\n"
echo "Applying Schema to DB..."
psql -d postgresql://hyperswitch:$MASTER_DB_PASSWORD@$RDS_ENDPOINT/hyperswitch_db -a -f schema.sql > /dev/null
echo "Schema applied to DB.\n"
cat << EOF > user_data.sh
#!/bin/bash
sudo yum update -y
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user
docker pull docker.juspay.io/juspaydotin/hyperswitch-router:beta
curl https://raw.githubusercontent.com/juspay/hyperswitch/v1.55.0/config/development.toml > production.toml
EOF
echo "Awaiting Redis Initialization..."
export redis_status=$(aws elasticache describe-cache-clusters \
--region $REGION \
--cache-cluster-id $CACHE_CLUSTER_ID \
--query 'CacheClusters[0].CacheClusterStatus' \
--output text)
while [ $redis_status != 'available' ]
do
echo "$redis_status"
sleep 10
export redis_status=$(aws elasticache describe-cache-clusters \
--region $REGION \
--cache-cluster-id $CACHE_CLUSTER_ID \
--query 'CacheClusters[0].CacheClusterStatus' \
--output text)
done
echo "Redis Initialized.\n"
echo "Retrieving Redis Endpoint..."
export REDIS_ENDPOINT=$(aws elasticache describe-cache-clusters \
--region $REGION \
--cache-cluster-id $CACHE_CLUSTER_ID \
--show-cache-node-info \
--query 'CacheClusters[0].CacheNodes[].Endpoint.Address' \
--output text)
echo "Redis Endpoint retrieved.\n"
echo "\n# Add redis and DB configs.\n" >> user_data.sh
echo "cat << EOF >> .env" >> user_data.sh
echo "ROUTER__REDIS__HOST=$REDIS_ENDPOINT" >> user_data.sh
echo "ROUTER__MASTER_DATABASE__HOST=$RDS_ENDPOINT" >> user_data.sh
echo "ROUTER__REPLICA_DATABASE__HOST=$RDS_ENDPOINT" >> user_data.sh
echo "ROUTER__SERVER__HOST=0.0.0.0" >> user_data.sh
echo "ROUTER__MASTER_DATABASE__USERNAME=hyperswitch" >> user_data.sh
echo "ROUTER__MASTER_DATABASE__PASSWORD=$MASTER_DB_PASSWORD" >> user_data.sh
echo "ROUTER__SERVER__BASE_URL=\$(curl ifconfig.me)" >> user_data.sh
echo "ROUTER__SECRETS__ADMIN_API_KEY=$ADMIN_API_KEY" >> user_data.sh
echo "EOF" >> user_data.sh
echo "docker run --env-file .env -p 80:8080 -v \`pwd\`/:/local/config docker.juspay.io/juspaydotin/hyperswitch-router:beta ./router -f /local/config/production.toml
" >> user_data.sh
echo "Retrieving AWS AMI ID..."
export AWS_AMI_ID=$(aws ec2 describe-images --owners amazon --filters "Name=name,Values=amzn2-ami-hvm-2.0.*" --query 'sort_by(Images, &CreationDate)[-1].ImageId' --output text --region $REGION)
echo "AWS AMI ID retrieved.\n"
echo "Creating EC2 Keypair..."
rm -rf hyperswitch-keypair.pem
aws ec2 create-key-pair \
--key-name hyperswitch-ec2-keypair \
--query 'KeyMaterial' \
--tag-specifications "ResourceType=key-pair,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
--region $REGION \
--output text > hyperswitch-keypair.pem
echo "Keypair created and saved to hyperswitch-keypair.pem.\n"
chmod 400 hyperswitch-keypair.pem
echo "Launching EC2 Instance..."
export HYPERSWITCH_INSTANCE_ID=$(aws ec2 run-instances \
--image-id $AWS_AMI_ID \
--instance-type t3.medium \
--key-name hyperswitch-ec2-keypair \
--monitoring "Enabled=false" \
--security-group-ids $APP_SG_ID \
--user-data file://./user_data.sh \
--query 'Instances[0].InstanceId' \
--output text \
--region $REGION)
echo "EC2 instance launched.\n"
echo "Add Tags to EC2 instance..."
echo "$(aws ec2 create-tags \
--resources $HYPERSWITCH_INSTANCE_ID \
--tags "Key=Name,Value=hyperswitch-router" \
--region $REGION)"
echo "Tag added to EC2 instance.\n"
echo "$(aws ec2 create-tags \
--resources $HYPERSWITCH_INSTANCE_ID \
--tags "Key=ManagedBy,Value=hyperswitch" \
--region $REGION)"
echo "ManagedBy tag added to EC2 instance.\n"
echo "Retrieving the Public IP of Hyperswitch EC2 Instance..."
export PUBLIC_HYPERSWITCH_IP=$(aws ec2 describe-instances \
--instance-ids $HYPERSWITCH_INSTANCE_ID \
--query "Reservations[*].Instances[*].PublicIpAddress" \
--output=text \
--region $REGION)
health_status=null
while [[ $health_status != 'health is good' ]]
do
health_status=$(curl http://$PUBLIC_HYPERSWITCH_IP/health)
sleep 10
done
echo "Hurray! You can try using hyperswitch at http://$PUBLIC_HYPERSWITCH_IP"
echo "Health endpoint: http://$PUBLIC_HYPERSWITCH_IP/health"
| 2,703 | 8,830 |
hyperswitch | aws/hyperswitch_cleanup_setup.sh | .sh | #!/bin/bash
command_discovery() {
type $1 > /dev/null 2> /dev/null
if [[ $? != 0 ]]; then
echo "\`$1\` command not found"
exit 1
fi
}
yes_or_no() {
read response < /dev/tty
case $response in
[Yy]* ) return 0 ;;
[Nn]* ) return 1 ;;
* ) return 1 ;;
esac
}
command_discovery aws
command_discovery jq
echo -n "Please enter the AWS region (us-east-2): "
read REGION < /dev/tty
if [ -z "$REGION" ]; then
echo "Using default region: us-east-2"
REGION="us-east-2"
fi
export ALL_ELASTIC_CACHE=($(aws elasticache describe-cache-clusters \
--region $REGION \
--query "CacheClusters[*].ARN" --output text))
for cluster_arn in $ALL_ELASTIC_CACHE; do
cluster_id=${cluster_arn##*:}
aws elasticache list-tags-for-resource \
--resource-name $cluster_arn \
--region $REGION \
--output json | jq \
'.TagList[] | select( [ .Key == "ManagedBy" and .Value == "hyperswitch" ] | any)' \
-e > /dev/null
if [[ $? -eq 0 ]]; then
echo -n "Delete $cluster_id (Y/n)? "
if yes_or_no; then
echo "$(aws elasticache delete-cache-cluster --region $REGION --cache-cluster-id $cluster_id)"
fi
fi
done
export ALL_KEY_PAIRS=($(aws ec2 describe-key-pairs \
--filters "Name=tag:ManagedBy,Values=hyperswitch" \
--region $REGION \
--query 'KeyPairs[*].KeyPairId' --output text))
echo -n "Deleting ( $ALL_KEY_PAIRS ) key pairs? (Y/n)?"
if yes_or_no; then
for KEY_ID in $ALL_KEY_PAIRS; do
echo "$(aws ec2 delete-key-pair --key-pair-id $KEY_ID --region $REGION)"
done
fi
export ALL_INSTANCES=$(aws ec2 describe-instances \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' 'Name=instance-state-name,Values=running' \
--region $REGION \
--query 'Reservations[*].Instances[*].InstanceId' --output text)
export ALL_EBS=$(aws ec2 describe-instances \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' \
--region $REGION \
--query 'Reservations[*].Instances[*].BlockDeviceMappings[*].Ebs.VolumeId' \
--output text)
echo -n "Terminating ( $ALL_INSTANCES ) instances? (Y/n)?"
if yes_or_no; then
for INSTANCE_ID in $ALL_INSTANCES; do
echo "$(aws ec2 terminate-instances --instance-ids $INSTANCE_ID --region $REGION)"
done
fi
export ALL_DB_RESOURCES=($(aws rds describe-db-instances \
--region $REGION \
--query 'DBInstances[*].DBInstanceArn' --output text))
for resource_id in $ALL_DB_RESOURCES; do
aws rds list-tags-for-resource \
--resource-name $resource_id \
--region $REGION \
--output json | jq \
'.TagList[] | select( [ .Key == "ManagedBy" and .Value == "hyperswitch" ] | any )' \
-e > /dev/null
if [[ $? -eq 0 ]]; then
echo -n "Delete $resource_id (Y/n)? "
if yes_or_no; then
export DB_INSTANCE_ID=$(aws rds describe-db-instances \
--region $REGION \
--filters "Name=db-instance-id,Values=$resource_id" \
--query 'DBInstances[*].DBInstanceIdentifier' --output text)
echo -n "Create a snapshot before deleting ( $DB_INSTANCE_ID ) the database (Y/n)? "
if yes_or_no; then
echo "$(aws rds delete-db-instance \
--db-instance-identifier $DB_INSTANCE_ID \
--region $REGION \
--final-db-snapshot-identifier hyperswitch-db-snapshot-$(date +%s))"
else
echo "$(aws rds delete-db-instance \
--region $REGION \
--db-instance-identifier $DB_INSTANCE_ID \
--skip-final-snapshot)"
fi
fi
fi
done
export ALL_SECURITY_GROUPS=$(aws ec2 describe-security-groups \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' \
--region $REGION \
--query 'SecurityGroups[*].GroupId' --output json | jq .[] --raw-output)
echo -n "Deleting ( $ALL_SECURITY_GROUPS ) security groups? (Y/n)?"
if yes_or_no; then
export do_it=true
while $do_it; do
export do_it=false
for GROUP_ID in $ALL_SECURITY_GROUPS; do
aws ec2 delete-security-group --group-id $GROUP_ID --region $REGION
if [[ $? != 0 ]]; then
export do_it=true
fi
done
if $do_it; then
echo -n "Retry deleting the security group (Y/n)? "
if yes_or_no; then
export do_it=true
else
export do_it=false
fi
fi
done
fi
| 1,206 | 8,831 |
hyperswitch | scripts/setup.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# ANSI color codes for pretty output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
BOLD='\033[1m'
NC='\033[0m' # No Color
# Alias for docker to use podman
alias docker=podman
# Function to print colorful messages
echo_info() {
echo -e "${BLUE}[INFO]${NC} $1"
}
echo_success() {
echo -e "${GREEN}[SUCCESS]${NC} $1"
}
echo_warning() {
echo -e "${YELLOW}[WARNING]${NC} $1"
}
echo_error() {
echo -e "${RED}[ERROR]${NC} $1"
}
show_banner() {
echo -e "${BLUE}${BOLD}"
echo ""
echo " # "
echo " # # # #### ##### ## # # "
echo " # # # # # # # # # # "
echo " # # # #### # # # # # "
echo " # # # # # ##### ###### # "
echo " # # # # # # # # # # "
echo " ##### #### #### # # # # "
echo ""
echo ""
echo " # # # # ##### ###### ##### #### # # # ##### #### # # "
echo " # # # # # # # # # # # # # # # # # # "
echo " # # # # # ##### # # #### # # # # # ###### "
echo " ####### # ##### # ##### # # ## # # # # # # "
echo " # # # # # # # # # ## ## # # # # # # "
echo " # # # # ###### # # #### # # # # #### # # "
echo ""
sleep 1
echo -e "${NC}"
echo -e "🚀 ${BLUE}One-Click Docker Setup${NC} 🚀"
echo
}
# Detect Docker Compose version
detect_docker_compose() {
# Check Docker or Podman
if command -v docker &> /dev/null; then
CONTAINER_ENGINE="docker"
echo_success "Docker is installed."
elif command -v podman &> /dev/null; then
CONTAINER_ENGINE="podman"
echo_success "Podman is installed."
else
echo_error "Neither Docker nor Podman is installed. Please install one of them to proceed."
echo_info "Visit https://docs.docker.com/get-docker/ or https://podman.io/docs/installation for installation instructions."
echo_info "After installation, re-run this script: scripts/setup.sh"
exit 1
fi
# Check Docker Compose or Podman Compose
if $CONTAINER_ENGINE compose version &> /dev/null; then
DOCKER_COMPOSE="$CONTAINER_ENGINE compose"
echo_success "Compose is installed for $CONTAINER_ENGINE."
else
echo_error "Compose is not installed for $CONTAINER_ENGINE. Please install $CONTAINER_ENGINE compose to proceed."
if [ "$CONTAINER_ENGINE" = "docker" ]; then
echo_info "Visit https://docs.docker.com/compose/install/ for installation instructions."
elif [ "$CONTAINER_ENGINE" = "podman" ]; then
echo_info "Visit https://podman-desktop.io/docs/compose/setting-up-compose for installation instructions."
fi
echo_info "After installation, re-run this script: scripts/setup.sh"
exit 1
fi
}
check_prerequisites() {
# Check curl
if ! command -v curl &> /dev/null; then
echo_error "curl is not installed. Please install curl to proceed."
exit 1
fi
echo_success "curl is installed."
# Check ports
required_ports=(8080 9000 9050 5432 6379 9060)
unavailable_ports=()
for port in "${required_ports[@]}"; do
if command -v nc &> /dev/null; then
if nc -z localhost "$port" 2>/dev/null; then
unavailable_ports+=("$port")
fi
elif command -v lsof &> /dev/null; then
if lsof -i :"$port" &> /dev/null; then
unavailable_ports+=("$port")
fi
else
echo_warning "Neither nc nor lsof available to check ports. Skipping port check."
break
fi
done
if [ ${#unavailable_ports[@]} -ne 0 ]; then
echo_warning "The following ports are already in use: ${unavailable_ports[*]}"
echo_warning "This might cause conflicts with Hyperswitch services."
read -p "Do you want to continue anyway? (y/n): " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
exit 1
fi
else
echo_success "All required ports are available."
fi
}
setup_config() {
if [ ! -f "config/docker_compose.toml" ]; then
echo_error "Configuration file 'config/docker_compose.toml' not found. Please ensure the file exists and is correctly configured."
exit 1
fi
}
select_profile() {
echo ""
echo "Select a setup option:"
echo -e "1) Standard Setup: ${BLUE}[Recommended]${NC} Ideal for quick trial. Services included: ${BLUE}App Server, Control Center, Unified Checkout, PostgreSQL and Redis${NC}"
echo -e "2) Full Stack Setup: Ideal for comprehensive end-to-end payment testing. Services included: ${BLUE}Everything in Standard, Monitoring and Scheduler${NC}"
echo -e "3) Standalone App Server: Ideal for API-first integration testing. Services included: ${BLUE}App server, PostgreSQL and Redis)${NC}"
echo ""
local profile_selected=false
while [ "$profile_selected" = false ]; do
read -p "Enter your choice (1-3): " profile_choice
profile_choice=${profile_choice:-1}
case $profile_choice in
1)
PROFILE="standard"
profile_selected=true
;;
2)
PROFILE="full"
profile_selected=true
;;
3)
PROFILE="standalone"
profile_selected=true
;;
*)
echo_error "Invalid choice. Please enter 1, 2, or 3."
;;
esac
done
echo "Selected setup: $PROFILE"
}
start_services() {
case $PROFILE in
standalone)
$DOCKER_COMPOSE up -d pg redis-standalone migration_runner hyperswitch-server
;;
standard)
$DOCKER_COMPOSE up -d
;;
full)
$DOCKER_COMPOSE --profile scheduler --profile monitoring --profile olap up -d
;;
esac
}
check_services_health() {
# Wait for the hyperswitch-server to be healthy
MAX_RETRIES=30
RETRY_INTERVAL=5
RETRIES=0
while [ $RETRIES -lt $MAX_RETRIES ]; do
if curl --silent --head --request GET 'http://localhost:8080/health' | grep "200 OK" > /dev/null; then
echo_success "Hyperswitch server is healthy!"
print_access_info # Call print_access_info only when the server is healthy
return
fi
RETRIES=$((RETRIES+1))
if [ $RETRIES -eq $MAX_RETRIES ]; then
echo ""
echo_error "${RED}${BOLD}Hyperswitch server did not become healthy in the expected time."
echo -e "Check logs with: $DOCKER_COMPOSE logs hyperswitch-server, Or reach out to us on slack(https://hyperswitch-io.slack.com/) for help."
echo -e "The setup process will continue, but some services might not work correctly.${NC}"
echo ""
else
echo "Waiting for server to become healthy... ($RETRIES/$MAX_RETRIES)"
sleep $RETRY_INTERVAL
fi
done
}
print_access_info() {
echo ""
echo -e "${GREEN}${BOLD}Setup complete! You can access Hyperswitch services at:${NC}"
echo ""
if [ "$PROFILE" != "standalone" ]; then
echo -e " • ${GREEN}${BOLD}Control Center${NC}: ${BLUE}${BOLD}http://localhost:9000${NC}"
fi
echo -e " • ${GREEN}${BOLD}App Server${NC}: ${BLUE}${BOLD}http://localhost:8080${NC}"
if [ "$PROFILE" != "standalone" ]; then
echo -e " • ${GREEN}${BOLD}Unified Checkout${NC}: ${BLUE}${BOLD}http://localhost:9060${NC}"
fi
if [ "$PROFILE" = "full" ]; then
echo -e " • ${GREEN}${BOLD}Monitoring (Grafana)${NC}: ${BLUE}${BOLD}http://localhost:3000${NC}"
fi
echo ""
echo_info "To stop all services, run: $DOCKER_COMPOSE down"
}
# Main execution flow
show_banner
detect_docker_compose
check_prerequisites
setup_config
select_profile
start_services
check_services_health # This will call print_access_info if the server is healthy
| 2,252 | 8,832 |
hyperswitch | scripts/add_connector.sh | .sh | #! /usr/bin/env bash
function find_prev_connector() {
self=scripts/add_connector.sh
# Comment below line to stop undoing changes when the script is triggered, make sure you undo this change before pushing
git checkout $self
cp $self $self.tmp
# Add new connector to existing list and sort it
connectors=(aci adyen adyenplatform airwallex amazonpay applepay authorizedotnet bambora bamboraapac bankofamerica billwerk bitpay bluesnap boku braintree cashtocode chargebee checkout coinbase cryptopay ctp_visa cybersource datatrans deutschebank digitalvirgo dlocal dummyconnector ebanx elavon facilitapay fiserv fiservemea fiuu forte getnet globalpay globepay gocardless gpayments helcim hipay iatapay inespay itaubank jpmorgan juspaythreedsserver klarna mifinity mollie moneris multisafepay netcetera nexinets nexixpay nomupay noon novalnet nuvei opayo opennode paybox payeezy payme payone paypal paystack payu placetopay plaid powertranz prophetpay rapyd razorpay recurly redsys shift4 square stax stripe stripebilling taxjar threedsecureio thunes trustpay tsys unified_authentication_service volt wellsfargo wellsfargopayout wise worldline worldpay xendit zsl "$1")
IFS=$'\n' sorted=($(sort <<<"${connectors[*]}")); unset IFS
res="$(echo ${sorted[@]})"
sed -i'' -e "s/^ connectors=.*/ connectors=($res \"\$1\")/" $self.tmp
for i in "${!sorted[@]}"; do
if [ "${sorted[$i]}" = "$1" ] && [ $i != "0" ]; then
# Find and return the connector name where this new connector should be added next to it
eval "$2='${sorted[i-1]}'"
mv $self.tmp $self
rm $self.tmp-e
return 0
fi
done
mv $self.tmp $self
rm $self.tmp-e
# If the new connector needs to be added in first place, add it after Aci, sorted order needs to be covered in code review
eval "$2='aci'"
}
payment_gateway=$(echo $1 | tr '[:upper:]' '[:lower:]')
base_url=$2;
payment_gateway_camelcase="$(tr '[:lower:]' '[:upper:]' <<< ${payment_gateway:0:1})${payment_gateway:1}"
src="crates/router/src"
conn="crates/hyperswitch_connectors/src/connectors"
tests="../../tests/connectors"
test_utils="../../../test_utils/src"
SCRIPT="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
if [ -z "$payment_gateway" ] || [ -z "$base_url" ]; then
echo "$RED Connector name or base_url not present: try $GREEN\"sh add_connector.sh adyen https://test.adyen.com\""
exit
fi
cd $SCRIPT/..
# Remove template files if already created for this connector
rm -rf $conn/$payment_gateway $conn/$payment_gateway.rs
git checkout $conn.rs $src/types/api.rs $src/configs/settings.rs config/development.toml config/docker_compose.toml config/config.example.toml loadtest/config/development.toml crates/api_models/src/connector_enums.rs crates/euclid/src/enums.rs crates/api_models/src/routing.rs $src/core/payments/flows.rs crates/common_enums/src/connector_enums.rs crates/common_enums/src/connector_enums.rs-e $src/types/transformers.rs $src/core/admin.rs
# Add enum for this connector in required places
previous_connector=''
find_prev_connector $payment_gateway previous_connector
previous_connector_camelcase="$(tr '[:lower:]' '[:upper:]' <<< ${previous_connector:0:1})${previous_connector:1}"
sed -i'' -e "s|pub mod $previous_connector;|pub mod $previous_connector;\npub mod ${payment_gateway};|" $conn.rs
sed -i'' -e "s/};/ ${payment_gateway}::${payment_gateway_camelcase},\n};/" $conn.rs
sed -i'' -e "/pub use hyperswitch_connectors::connectors::{/ s/{/{\n ${payment_gateway}, ${payment_gateway}::${payment_gateway_camelcase},/" $src/connector.rs
sed -i'' -e "s|$previous_connector_camelcase \(.*\)|$previous_connector_camelcase \1\n\t\t\tenums::Connector::${payment_gateway_camelcase} => Ok(ConnectorEnum::Old(\Box::new(\connector::${payment_gateway_camelcase}))),|" $src/types/api.rs
sed -i'' -e "s|$previous_connector_camelcase \(.*\)|$previous_connector_camelcase \1\n\t\t\tRoutableConnectors::${payment_gateway_camelcase} => euclid_enums::Connector::${payment_gateway_camelcase},|" crates/api_models/src/routing.rs
sed -i'' -e "s/pub $previous_connector: \(.*\)/pub $previous_connector: \1\n\tpub ${payment_gateway}: ConnectorParams,/" crates/hyperswitch_interfaces/src/configs.rs
sed -i'' -e "s|$previous_connector.base_url \(.*\)|$previous_connector.base_url \1\n${payment_gateway}.base_url = \"$base_url\"|" config/development.toml config/docker_compose.toml config/config.example.toml loadtest/config/development.toml config/deployments/integration_test.toml config/deployments/production.toml config/deployments/sandbox.toml
sed -r -i'' -e "s/\"$previous_connector\",/\"$previous_connector\",\n \"${payment_gateway}\",/" config/development.toml config/docker_compose.toml config/config.example.toml loadtest/config/development.toml
sed -i '' -e "s/\(pub enum Connector {\)/\1\n\t${payment_gateway_camelcase},/" crates/api_models/src/connector_enums.rs
sed -i '' -e "/\/\/ Add Separate authentication support for connectors/{N;s/\(.*\)\n/\1\n\t\t\t| Self::${payment_gateway_camelcase}\n/;}" crates/api_models/src/connector_enums.rs
sed -i '' -e "s/\(match connector_name {\)/\1\n\t\tapi_enums::Connector::${payment_gateway_camelcase} => {${payment_gateway}::transformers::${payment_gateway_camelcase}AuthType::try_from(val)?;Ok(())}/" $src/core/admin.rs
sed -i'' -e "s/\(pub enum RoutableConnectors {\)/\1\n\t${payment_gateway_camelcase},/" crates/common_enums/src/connector_enums.rs
sed -i '' -e "s/\(pub enum Connector {\)/\1\n\t${payment_gateway_camelcase},/" crates/euclid/src/enums.rs
sed -i'' -e "s|$previous_connector_camelcase \(.*\)|$previous_connector_camelcase \1\n\t\t\tapi_enums::Connector::${payment_gateway_camelcase} => Self::${payment_gateway_camelcase},|" $src/types/transformers.rs
sed -i'' -e "s/^default_imp_for_\(.*\)/default_imp_for_\1\n\tconnectors::${payment_gateway_camelcase},/" crates/hyperswitch_connectors/src/default_implementations.rs
sed -i'' -e "s/^default_imp_for_\(.*\)/default_imp_for_\1\n\tconnectors::${payment_gateway_camelcase},/" crates/hyperswitch_connectors/src/default_implementations_v2.rs
sed -i'' -e "s/^default_imp_for_connector_request_id!(/default_imp_for_connector_request_id!(\n connectors::${payment_gateway_camelcase},/" $src/core/payments/flows.rs
sed -i'' -e "s/^default_imp_for_fraud_check!(/default_imp_for_fraud_check!(\n connectors::${payment_gateway_camelcase},/" $src/core/payments/flows.rs
sed -i'' -e "s/^default_imp_for_connector_authentication!(/default_imp_for_connector_authentication!(\n connectors::${payment_gateway_camelcase},/" $src/core/payments/flows.rs
sed -i'' -e "/pub struct ConnectorConfig {/ s/{/{\n pub ${payment_gateway}: Option<ConnectorTomlConfig>,/" crates/connector_configs/src/connector.rs
sed -i'' -e "/mod utils;/ s/mod utils;/mod ${payment_gateway};\nmod utils;/" crates/router/tests/connectors/main.rs
sed -i'' -e "s/^default_imp_for_new_connector_integration_payouts!(/default_imp_for_new_connector_integration_payouts!(\n connector::${payment_gateway_camelcase},/" crates/router/src/core/payments/connector_integration_v2_impls.rs
sed -i'' -e "s/^default_imp_for_new_connector_integration_frm!(/default_imp_for_new_connector_integration_frm!(\n connector::${payment_gateway_camelcase},/" crates/router/src/core/payments/connector_integration_v2_impls.rs
sed -i'' -e "s/^default_imp_for_new_connector_integration_connector_authentication!(/default_imp_for_new_connector_integration_connector_authentication!(\n connector::${payment_gateway_camelcase},/" crates/router/src/core/payments/connector_integration_v2_impls.rs
sed -i'' -e "s/\(pub enum Connector {\)/\1\n\t${payment_gateway_camelcase},/" crates/common_enums/src/connector_enums.rs
sed -i'' -e "/match self {/ s/match self {/match self {\n | Self::${payment_gateway_camelcase}/" crates/common_enums/src/connector_enums.rs
sed -i'' -e "/match routable_connector {/ s/match routable_connector {/match routable_connector {\n RoutableConnectors::${payment_gateway_camelcase} => Self::${payment_gateway_camelcase},/" crates/common_enums/src/connector_enums.rs
sed -i'' -e "/match self.connector_name {/a\\
api_enums::Connector::${payment_gateway_camelcase} => {\\
${payment_gateway}::transformers::${payment_gateway_camelcase}AuthType::try_from(self.auth_type)?;\\
Ok(())\\
},\\
" crates/router/src/core/admin.rs
# Remove temporary files created in above step
rm $conn.rs-e $src/types/api.rs-e $src/configs/settings.rs-e config/development.toml-e config/docker_compose.toml-e config/config.example.toml-e loadtest/config/development.toml-e crates/api_models/src/connector_enums.rs-e crates/euclid/src/enums.rs-e crates/api_models/src/routing.rs-e $src/core/payments/flows.rs-e crates/common_enums/src/connector_enums.rs-e $src/types/transformers.rs-e $src/core/admin.rs-e crates/hyperswitch_connectors/src/default_implementations.rs-e crates/hyperswitch_connectors/src/default_implementations_v2.rs-e crates/hyperswitch_interfaces/src/configs.rs-e $src/connector.rs-e config/deployments/integration_test.toml-e config/deployments/production.toml-e config/deployments/sandbox.toml-e temp crates/connector_configs/src/connector.rs-e crates/router/tests/connectors/main.rs-e crates/router/src/core/payments/connector_integration_v2_impls.rs-e
cd $conn/
# Generate template files for the connector
cargo install cargo-generate
cargo generate --path ../../../../connector-template -n $payment_gateway
# Move sub files and test files to appropriate folder
mv $payment_gateway/mod.rs $payment_gateway.rs
mv $payment_gateway/test.rs ${tests}/$payment_gateway.rs
# Remove changes from tests if already done for this connector
git checkout ${tests}/main.rs ${test_utils}/connector_auth.rs ${tests}/sample_auth.toml
# Add enum for this connector in test folder
sed -i'' -e "s/mod utils;/mod ${payment_gateway};\nmod utils;/" ${tests}/main.rs
sed -i'' -e "s/ pub $previous_connector: \(.*\)/\tpub $previous_connector: \1\n\tpub ${payment_gateway}: Option<HeaderKey>,/" ${test_utils}/connector_auth.rs
echo "\n\n[${payment_gateway}]\napi_key=\"API Key\"" >> ${tests}/sample_auth.toml
# Remove temporary files created in above step
rm ${tests}/main.rs-e ${test_utils}/connector_auth.rs-e
cargo +nightly fmt --all
cargo check
echo "${GREEN}Successfully created connector. Running the tests of $payment_gateway.rs"
# Runs tests for the new connector
cargo test --package router --test connectors -- $payment_gateway
echo "${ORANGE}Update your credentials for $payment_gateway connector in crates/router/tests/connectors/sample_auth.toml"
| 2,887 | 8,833 |
hyperswitch | scripts/execute_cypress.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# Initialize tmp_file globally
tmp_file=""
# Define arrays for services, etc.
# Read service arrays from environment variables
read -r -a payments <<< "${PAYMENTS_CONNECTORS[@]:-}"
read -r -a payouts <<< "${PAYOUTS_CONNECTORS[@]:-}"
read -r -a payment_method_list <<< "${PAYMENT_METHOD_LIST[@]:-}"
read -r -a routing <<< "${ROUTING[@]:-}"
# Define arrays
connector_map=()
failed_connectors=()
# Define an associative array to map environment variables to service names
declare -A services=(
["PAYMENTS_CONNECTORS"]="payments"
["PAYOUTS_CONNECTORS"]="payouts"
["PAYMENT_METHOD_LIST"]="payment_method_list"
["ROUTING"]="routing"
)
# Function to print messages in color
function print_color() {
# Input params
local color="$1"
local message="$2"
# Define colors
local reset='\033[0m'
local red='\033[0;31m'
local green='\033[0;32m'
local yellow='\033[0;33m'
# Use indirect reference to get the color value
echo -e "${!color}${message}${reset}"
}
export -f print_color
# Function to check if a command exists
function command_exists() {
command -v "$1" > /dev/null 2>&1
}
# Function to read service arrays from environment variables
function read_service_arrays() {
# Loop through the associative array and check if each service is exported
for var in "${!services[@]}"; do
if [[ -n "${!var+x}" ]]; then
connector_map+=("${services[$var]}")
else
print_color "yellow" "Environment variable ${var} is not set. Skipping..."
fi
done
}
# Function to execute Cypress tests
function execute_test() {
if [[ $# -lt 3 ]]; then
print_color "red" "ERROR: Insufficient arguments provided to execute_test."
exit 1
fi
local connector="$1"
local service="$2"
local tmp_file="$3"
print_color "yellow" "Executing tests for ${service} with connector ${connector}..."
export REPORT_NAME="${service}_${connector}_report"
if ! CYPRESS_CONNECTOR="$connector" npm run "cypress:$service"; then
echo "${service}-${connector}" >> "${tmp_file}"
fi
}
export -f execute_test
# Function to run tests
function run_tests() {
local jobs="${1:-1}"
tmp_file=$(mktemp)
# Ensure temporary file is removed on script exit
trap 'cleanup' EXIT
for service in "${connector_map[@]}"; do
declare -n connectors="$service"
if [[ ${#connectors[@]} -eq 0 ]]; then
# Service-level test (e.g., payment-method-list or routing)
[[ $service == "payment_method_list" ]] && service="payment-method-list"
echo "Running ${service} tests without connectors..."
export REPORT_NAME="${service}_report"
if ! npm run "cypress:${service}"; then
echo "${service}" >> "${tmp_file}"
fi
else
# Connector-specific tests (e.g., payments or payouts)
print_color "yellow" "Running tests for service: '${service}' with connectors: [${connectors[*]}] in batches of ${jobs}..."
# Execute tests in parallel
printf '%s\n' "${connectors[@]}" | parallel --jobs "${jobs}" execute_test {} "${service}" "${tmp_file}"
fi
done
# Collect failed connectors
if [[ -s "${tmp_file}" ]]; then
failed_connectors=($(< "${tmp_file}"))
print_color "red" "One or more connectors failed to run:"
printf '%s\n' "${failed_connectors[@]}"
exit 1
else
print_color "green" "Cypress tests execution successful!"
fi
}
# Function to check and install dependencies
function check_dependencies() {
# parallel and npm are mandatory dependencies. exit the script if not found.
local dependencies=("parallel" "npm")
for cmd in "${dependencies[@]}"; do
if ! command_exists "$cmd"; then
print_color "red" "ERROR: ${cmd^} is not installed!"
exit 1
else
print_color "green" "${cmd^} is installed already!"
if [[ ${cmd} == "npm" ]]; then
npm ci || {
print_color "red" "Command \`npm ci\` failed!"
exit 1
}
fi
fi
done
}
# Cleanup function to handle exit
function cleanup() {
print_color "yellow" "Cleaning up..."
if [[ -d "cypress-tests" ]]; then
cd -
fi
if [[ -n "${tmp_file}" && -f "${tmp_file}" ]]; then
rm -f "${tmp_file}"
fi
}
# Main function
function main() {
local command="${1:-}"
local jobs="${2:-5}"
local test_dir="${3:-cypress-tests}"
# Ensure script runs from the specified test directory (default: cypress-tests)
if [[ "$(basename "$PWD")" != "$(basename "$test_dir")" ]]; then
print_color "yellow" "Changing directory to '${test_dir}'..."
cd "${test_dir}" || {
print_color "red" "ERROR: Directory '${test_dir}' not found!"
exit 1
}
fi
check_dependencies
read_service_arrays
case "$command" in
--parallel | -p)
print_color "yellow" "WARNING: Running Cypress tests in parallel is more resource-intensive!"
# At present, parallel execution is restricted to not run out of memory
# But can be scaled up by passing the value as an argument
run_tests "$jobs"
;;
*)
run_tests 1
;;
esac
}
# Execute the main function with passed arguments
main "$@"
| 1,337 | 8,834 |
hyperswitch | scripts/docker_output.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# Define the URL to check service availability (adjust HOST and PORT if needed)
HOST="localhost"
PORT="8080"
SERVICE_URL="http://${HOST}:${PORT}/health"
MAX_RETRIES=70
RETRY_COUNT=0
# Wait until the service is available or retries are exhausted
while ! curl --silent --fail "${SERVICE_URL}" > /dev/null; do
if (( RETRY_COUNT >= MAX_RETRIES )); then
echo ""
echo "Service failed to start. Kindly check the logs."
echo "You can view the logs using the command: docker-compose logs -f <service name>"
exit 1
fi
printf "."
sleep 2
((RETRY_COUNT++))
done
# Define ANSI 24-bit (true color) escape sequences for Light Sky Blue
LIGHT_SKY_BLUE="\033[38;2;135;206;250m"
RESET="\033[0m"
# Print the service URLs with only the links colored
echo -e "Control Centre running at ${LIGHT_SKY_BLUE}http://localhost:9000${RESET}"
echo -e "App server running at ${LIGHT_SKY_BLUE}http://localhost:8080${RESET}"
echo -e "Web-SDK running at ${LIGHT_SKY_BLUE}http://localhost:5252/HyperLoader.js${RESET}"
echo -e "Mailhog running at ${LIGHT_SKY_BLUE}http://localhost:8025${RESET}" | 342 | 8,835 |
hyperswitch | scripts/decrypt_browser_data.sh | .sh | #! /usr/bin/env bash
# Decrypt the file
# --batch to prevent interactive command
# --yes to assume "yes" for questions
gpg --quiet --batch --yes --decrypt --passphrase="$1" \
--output $HOME/browser_data.tar.gz .github/secrets/browser_data.tar.gz.gpg
# Unzip the tarball
tar xzf $HOME/browser_data.tar.gz -C $HOME
| 88 | 8,836 |
hyperswitch | scripts/prestart_hook.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# Define the URL and parameters
PLATFORM="docker-compose"
WEBHOOK_URL="https://hyperswitch.gateway.scarf.sh/${PLATFORM}"
VERSION="unknown"
STATUS="initiated"
# Send the GET request
curl --get "${WEBHOOK_URL}" --data-urlencode "version=${VERSION}" --data-urlencode "status=${STATUS}"
# Print confirmation
echo "Request sent to ${WEBHOOK_URL} with version=${VERSION} and status=${STATUS}"
| 108 | 8,837 |
hyperswitch | scripts/poststart_hook.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# Configuration
PLATFORM="docker-compose" # Change to "helm" or "cdk" as needed
VERSION="unknown"
STATUS=""
SERVER_BASE_URL="http://hyperswitch-server:8080"
HYPERSWITCH_HEALTH_URL="${SERVER_BASE_URL}/health"
HYPERSWITCH_DEEP_HEALTH_URL="${SERVER_BASE_URL}/health/ready"
WEBHOOK_URL="https://hyperswitch.gateway.scarf.sh/${PLATFORM}"
# Fetch health status
echo "Fetching app server health status..."
HEALTH_RESPONSE=$(curl --silent --fail "${HYPERSWITCH_HEALTH_URL}") || HEALTH_RESPONSE="connection_error"
if [[ "${HEALTH_RESPONSE}" == "connection_error" ]]; then
STATUS="error"
ERROR_MESSAGE="404 response"
curl --get "${WEBHOOK_URL}" \
--data-urlencode "version=${VERSION}" \
--data-urlencode "status=${STATUS}" \
--data-urlencode "error_message=${ERROR_MESSAGE}"
echo "Webhook sent with connection error."
exit 0
fi
# Fetch Hyperswitch version
VERSION=$(curl --silent --output /dev/null --request GET --write-out '%header{x-hyperswitch-version}' "${HYPERSWITCH_DEEP_HEALTH_URL}" | sed 's/-dirty$//')
echo "Fetching Hyperswitch health status..."
HEALTH_RESPONSE=$(curl --silent "${HYPERSWITCH_DEEP_HEALTH_URL}")
# Prepare curl command
CURL_COMMAND=("curl" "--get" "${WEBHOOK_URL}" "--data-urlencode" "version=${VERSION}")
# Check if the response contains an error
if [[ "$(echo "${HEALTH_RESPONSE}" | jq --raw-output '.error')" != 'null' ]]; then
STATUS="error"
ERROR_TYPE=$(echo "${HEALTH_RESPONSE}" | jq --raw-output '.error.type')
ERROR_MESSAGE=$(echo "${HEALTH_RESPONSE}" | jq --raw-output '.error.message')
ERROR_CODE=$(echo "${HEALTH_RESPONSE}" | jq --raw-output '.error.code')
CURL_COMMAND+=(
"--data-urlencode" "status=${STATUS}"
"--data-urlencode" "error_type=${ERROR_TYPE}"
"--data-urlencode" "error_message=${ERROR_MESSAGE}"
"--data-urlencode" "error_code=${ERROR_CODE}"
)
else
STATUS="success"
CURL_COMMAND+=("--data-urlencode" "status=${STATUS}")
for key in $(echo "${HEALTH_RESPONSE}" | jq --raw-output 'keys_unsorted[]'); do
value=$(echo "${HEALTH_RESPONSE}" | jq --raw-output --arg key "${key}" '.[$key]')
CURL_COMMAND+=("--data-urlencode" "'${key}=${value}'")
done
fi
# Send the webhook request
bash -c "${CURL_COMMAND[*]}"
echo "Webhook notification sent."
| 609 | 8,838 |
hyperswitch | scripts/ci-checks.sh | .sh | #! /usr/bin/env bash
set -euo pipefail
# The below script is run on the github actions CI
# Obtain a list of workspace members
workspace_members="$(
cargo metadata --format-version 1 --no-deps \
| jq \
--compact-output \
--monochrome-output \
--raw-output \
'(.workspace_members | sort) as $package_ids | .packages[] | select(IN(.id; $package_ids[])) | .name'
)"
PACKAGES_CHECKED=()
PACKAGES_SKIPPED=()
# If we are running this on a pull request, then only check for packages that are modified
if [[ "${GITHUB_EVENT_NAME:-}" == 'pull_request' ]]; then
# Obtain the pull request number and files modified in the pull request
pull_request_number="$(jq --raw-output '.pull_request.number' "${GITHUB_EVENT_PATH}")"
files_modified="$(
gh api \
--header 'Accept: application/vnd.github+json' \
--header 'X-GitHub-Api-Version: 2022-11-28' \
--paginate \
"https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${pull_request_number}/files" \
--jq '.[].filename'
)"
while IFS= read -r package_name; do
# Obtain pipe-separated list of transitive workspace dependencies for each workspace member
change_paths="$(cargo tree --all-features --no-dedupe --prefix none --package "${package_name}" \
| grep 'crates/' \
| sort --unique \
| awk --field-separator ' ' '{ printf "crates/%s\n", $1 }' | paste -d '|' -s -)"
# A package must be checked if any of its transitive dependencies (or itself) has been modified
if grep --quiet --extended-regexp "^(${change_paths})" <<< "${files_modified}"; then
printf '::debug::Checking `%s` since at least one of these paths was modified: %s\n' "${package_name}" "${change_paths[*]//|/ }"
PACKAGES_CHECKED+=("${package_name}")
else
printf '::debug::Skipping `%s` since none of these paths were modified: %s\n' "${package_name}" "${change_paths[*]//|/ }"
PACKAGES_SKIPPED+=("${package_name}")
fi
done <<< "${workspace_members}"
printf '::notice::Packages checked: %s; Packages skipped: %s\n' "${PACKAGES_CHECKED[*]}" "${PACKAGES_SKIPPED[*]}"
packages_checked="$(jq --compact-output --null-input '$ARGS.positional' --args -- "${PACKAGES_CHECKED[@]}")"
crates_with_features="$(cargo metadata --format-version 1 --no-deps \
| jq \
--compact-output \
--monochrome-output \
--raw-output \
--argjson packages_checked "${packages_checked}" \
'[ ( .workspace_members | sort ) as $package_ids | .packages[] | select( IN( .name; $packages_checked[] ) ) | { name: .name, features: ( .features | keys ) } ]')"
else
# If we are doing this locally or on merge queue, then check for all the crates
crates_with_features="$(cargo metadata --format-version 1 --no-deps \
| jq \
--compact-output \
--monochrome-output \
--raw-output \
'[ ( .workspace_members | sort ) as $package_ids | .packages[] | select( IN( .id; $package_ids[] ) ) | { name: .name, features: ( .features | keys ) } ]')"
fi
# List of cargo commands that will be executed
all_commands=()
# Process the metadata to generate the cargo check commands for crates which have v1 features
# We need to always have the v1 feature with each feature
# This is because, no crate should be run without any features
crates_with_v1_feature="$(
jq --monochrome-output --raw-output \
--argjson crates_with_features "${crates_with_features}" \
--null-input \
'$crates_with_features[]
| select( IN("v1"; .features[])) # Select crates with `v1` feature
| { name, features: ( .features | del( .[] | select( any( . ; test("(([a-z_]+)_)?v2|v1|default") ) ) ) ) } # Remove specific features to generate feature combinations
| { name, features: ( .features | map([., "v1"] | join(",")) ) } # Add `v1` to remaining features and join them by comma
| .name as $name | .features[] | { $name, features: . } # Expand nested features object to have package - features combinations
| "\(.name) \(.features)" # Print out package name and features separated by space'
)"
while IFS=' ' read -r crate features && [[ -n "${crate}" && -n "${features}" ]]; do
command="cargo check --all-targets --package \"${crate}\" --no-default-features --features \"${features}\""
all_commands+=("$command")
done <<< "${crates_with_v1_feature}"
# For crates which do not have v1 feature, we can run the usual cargo hack command
crates_without_v1_feature="$(
jq --monochrome-output --raw-output \
--argjson crates_with_features "${crates_with_features}" \
--null-input \
'$crates_with_features[] | select(IN("v1"; .features[]) | not ) # Select crates without `v1` feature
| "\(.name)" # Print out package name'
)"
while IFS= read -r crate && [[ -n "${crate}" ]]; do
command="cargo hack check --all-targets --each-feature --package \"${crate}\""
all_commands+=("$command")
done <<< "${crates_without_v1_feature}"
if ((${#all_commands[@]} == 0)); then
echo "There are no commands to be executed"
exit 0
fi
echo "The list of commands that will be executed:"
printf "%s\n" "${all_commands[@]}"
echo
# Execute the commands
for command in "${all_commands[@]}"; do
if [[ "${CI:-false}" == "true" && "${GITHUB_ACTIONS:-false}" == "true" ]]; then
printf '::group::Running `%s`\n' "${command}"
fi
bash -c -x "${command}"
if [[ "${CI:-false}" == "true" && "${GITHUB_ACTIONS:-false}" == "true" ]]; then
echo '::endgroup::'
fi
done
| 1,457 | 8,839 |
hyperswitch | api-reference-v2/rust_locker_open_api_spec.yml | .yml | openapi: "3.0.2"
info:
title: Tartarus - OpenAPI 3.0
description: |-
This is the OpenAPI 3.0 specification for the card locker.
This is used by the [hyperswitch](https://github.com/juspay/hyperswitch) for storing card information securely.
version: "1.0"
tags:
- name: Key Custodian
description: API used to initialize the locker after deployment.
- name: Data
description: CRUD APIs for working with data to be stored in the locker
- name: Cards
description: CRUD APIs for working with cards data to be stored in the locker (deprecated)
paths:
/custodian/key1:
post:
tags:
- Key Custodian
summary: Provide Key 1
description: Provide the first key to unlock the locker
operationId: setKey1
requestBody:
description: Provide key 1 to unlock the locker
content:
application/json:
schema:
$ref: "#/components/schemas/Key"
required: true
responses:
"200":
description: Key 1 provided
content:
text/plain:
schema:
$ref: "#/components/schemas/Key1Set"
/custodian/key2:
post:
tags:
- Key Custodian
summary: Provide Key 2
description: Provide the second key to unlock the locker
operationId: setKey2
requestBody:
description: Provide key 2 to unlock the locker
content:
application/json:
schema:
$ref: "#/components/schemas/Key"
required: true
responses:
"200":
description: Key 2 provided
content:
text/plain:
schema:
$ref: "#/components/schemas/Key2Set"
/custodian/decrypt:
post:
tags:
- Key Custodian
summary: Unlock the locker
description: Unlock the locker with the key1 and key2 provided
responses:
"200":
description: Successfully Unlocked
content:
text/plain:
schema:
$ref: "#/components/schemas/Decrypt200"
/health:
get:
summary: Get Health
description: To check whether the application is up
responses:
"200":
description: Health is good
content:
text/plain:
schema:
$ref: "#/components/schemas/Health"
/data/add:
post:
tags:
- Cards
- Data
summary: Add Data in Locker
description: Add sensitive data in the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/StoreDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Store Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/StoreDataRes"
- $ref: "#/components/schemas/JWERes"
/data/delete:
post:
tags:
- Cards
- Data
summary: Delete Data from Locker
description: Delete sensitive data from the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/DeleteDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Delete Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/DeleteDataRes"
- $ref: "#/components/schemas/JWERes"
/data/retrieve:
post:
tags:
- Cards
- Data
summary: Retrieve Data from Locker
description: Retrieve sensitive data from the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/RetrieveDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Retrieve Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/RetrieveDataRes"
- $ref: "#/components/schemas/JWERes"
/data/fingerprint:
post:
tags:
- Cards
- Data
summary: Get or insert the card fingerprint
description: Get or insert the card fingerprint
requestBody:
description: Provide card number and hash key
content:
application/json:
schema:
$ref: "#/components/schemas/FingerprintReq"
required: true
responses:
"200":
description: Fingerprint Response
content:
application/json:
schema:
$ref: "#/components/schemas/FingerprintRes"
components:
schemas:
Key:
type: object
properties:
key:
type: string
example: 801bb63c1bd51820acbc8ac20c674675
required:
- key
StoreDataReq:
title: StoreDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
requester_card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
card:
$ref: "#/components/schemas/Card"
enc_card_data:
type: string
example: "qwe4tyusdfg"
RetrieveDataReq:
title: RetrieveDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
DeleteDataReq:
title: DeleteDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
FingerprintReq:
type: object
properties:
card:
$ref: "#/components/schemas/FingerprintCardData"
hash_key:
type: string
example: Hash1
JWEReq:
title: JWEReq
type: object
properties:
header:
type: string
iv:
type: string
encrypted_payload:
type: string
tag:
type: string
encrypted_key:
type: string
RetrieveRes:
title: RetrieveRes
oneOf:
- type: object
properties:
card:
$ref: "#/components/schemas/Card"
- type: object
properties:
enc_card_data:
type: string
Card:
title: Card
type: object
required:
- card_number
properties:
card_number:
type: string
name_on_card:
type: string
card_exp_month:
type: string
card_exp_year:
type: string
card_brand:
type: string
card_isin:
type: string
nick_name:
type: string
FingerprintCardData:
type: object
properties:
card_number:
type: string
example: 4242424242424242
Key1Set:
title: Key1Set
type: string
# summary: Response after setting key1
description: Received Key1
example: Received Key1
Key2Set:
title: Key2Set
type: string
# description: Response after setting key2
description: Received Key2
example: Received Key2
Decrypt200:
title: Decrypt200
type: string
# description: Response if the locker key custodian decryption was successful
description: Decryption successful
example: Decryption successful
Health:
title: Health
type: string
# description: Response when the health is good
description: health is good
example: health is good
StoreDataRes:
title: StoreDataRes
type: object
description: Response received if the data was stored successfully
properties:
status:
type: string
enum: [Ok]
payload:
type: object
properties:
card_reference:
type: string
RetrieveDataRes:
title: RetrieveDataRes
type: object
description: Response received with the sensitive data, associated to the card reference
properties:
status:
type: string
enum: [Ok]
payload:
$ref: "#/components/schemas/RetrieveRes"
DeleteDataRes:
title: DeleteDataRes
type: object
description: Response received if the data deletion was successful
properties:
status:
type: string
enum: [Ok]
FingerprintRes:
type: object
description: Response received if the fingerprint insertion or retrieval was successful
properties:
status:
type: string
enum: [Ok]
payload:
type: object
properties:
fingerprint:
type: string
JWERes:
title: JWERes
type: object
description: JWE encrypted response equivalent
properties:
header:
type: string
iv:
type: string
encrypted_payload:
type: string
tag:
type: string
encrypted_key:
type: string | 2,352 | 8,841 |
hyperswitch | api-reference-v2/mint.json | .json | {
"$schema": "https://mintlify.com/schema.json",
"name": "Hyperswitch",
"logo": {
"dark": "/logo/dark.svg",
"light": "/logo/light.svg"
},
"favicon": "/favicon.png",
"colors": {
"primary": "#006DF9",
"light": "#006DF9",
"dark": "#006DF9",
"background": {
"dark": "#242F48"
}
},
"tabs": [
{
"name": "API Reference",
"url": "api-reference"
}
],
"navigation": [
{
"group": "Get Started",
"pages": ["introduction"]
},
{
"group": "Essentials",
"pages": [
"essentials/error_codes",
"essentials/rate_limit",
"essentials/go-live"
]
},
{
"group": "Payments",
"pages": [
"api-reference/payments/payments--create-intent",
"api-reference/payments/payments--get-intent",
"api-reference/payments/payments--update-intent",
"api-reference/payments/payments--session-token",
"api-reference/payments/payments--payment-methods-list",
"api-reference/payments/payments--confirm-intent",
"api-reference/payments/payments--get",
"api-reference/payments/payments--create-and-confirm-intent",
"api-reference/payments/payments--list"
]
},
{
"group": "Payment Methods",
"pages": [
"api-reference/payment-methods/payment-method--create",
"api-reference/payment-methods/payment-method--create-intent",
"api-reference/payment-methods/payment-method--payment-methods-list",
"api-reference/payment-methods/payment-method--confirm-intent",
"api-reference/payment-methods/payment-method--update",
"api-reference/payment-methods/payment-method--retrieve",
"api-reference/payment-methods/payment-method--delete",
"api-reference/payment-methods/list-saved-payment-methods-for-a-customer"
]
},
{
"group": "Payment Method Session",
"pages": [
"api-reference/payment-method-session/payment-method-session--create",
"api-reference/payment-method-session/payment-method-session--retrieve",
"api-reference/payment-method-session/payment-method-session--list-payment-methods",
"api-reference/payment-method-session/payment-method-session--update-a-saved-payment-method",
"api-reference/payment-method-session/payment-method-session--confirm-a-payment-method-session",
"api-reference/payment-method-session/payment-method-session--delete-a-saved-payment-method"
]
},
{
"group": "Organization",
"pages": [
"api-reference/organization/organization--create",
"api-reference/organization/organization--retrieve",
"api-reference/organization/organization--update",
"api-reference/organization/organization--merchant-account--list"
]
},
{
"group": "Merchant Account",
"pages": [
"api-reference/merchant-account/merchant-account--create",
"api-reference/merchant-account/merchant-account--retrieve",
"api-reference/merchant-account/merchant-account--update",
"api-reference/merchant-account/business-profile--list"
]
},
{
"group": "Profile",
"pages": [
"api-reference/profile/profile--create",
"api-reference/profile/profile--update",
"api-reference/profile/profile--activate-routing-algorithm",
"api-reference/profile/profile--update-default-fallback-routing-algorithm",
"api-reference/profile/profile--deactivate-routing-algorithm",
"api-reference/profile/profile--retrieve",
"api-reference/profile/merchant-connector--list",
"api-reference/profile/profile--retrieve-active-routing-algorithm",
"api-reference/profile/profile--retrieve-default-fallback-routing-algorithm"
]
},
{
"group": "Connector Account",
"pages": [
"api-reference/connector-account/connector-account--create",
"api-reference/connector-account/connector-account--retrieve",
"api-reference/connector-account/connector-account--update"
]
},
{
"group": "API Key",
"pages": [
"api-reference/api-key/api-key--create",
"api-reference/api-key/api-key--retrieve",
"api-reference/api-key/api-key--update",
"api-reference/api-key/api-key--revoke",
"api-reference/api-key/api-key--list"
]
},
{
"group": "Routing",
"pages": [
"api-reference/routing/routing--create",
"api-reference/routing/routing--retrieve"
]
},
{
"group": "Customers",
"pages": [
"api-reference/customers/customers--create",
"api-reference/customers/customers--retrieve",
"api-reference/customers/customers--update",
"api-reference/customers/customers--delete",
"api-reference/customers/customers--list",
"api-reference/customers/customers--list-saved-payment-methods"
]
},
{
"group": "Refunds",
"pages": ["api-reference/refunds/refunds--create"]
}
],
"footerSocials": {
"github": "https://github.com/juspay/hyperswitch",
"linkedin": "https://www.linkedin.com/company/hyperswitch"
},
"openapi": ["openapi_spec.json"],
"api": {
"maintainOrder": true
}
}
| 1,205 | 8,842 |
hyperswitch | api-reference-v2/openapi_spec.json | .json | {
"openapi": "3.0.3",
"info": {
"title": "Hyperswitch - API Documentation",
"description": "\n## Get started\n\nHyperswitch provides a collection of APIs that enable you to process and manage payments.\nOur APIs accept and return JSON in the HTTP body, and return standard HTTP response codes.\n\nYou can consume the APIs directly using your favorite HTTP/REST library.\n\nWe have a testing environment referred to \"sandbox\", which you can setup to test API calls without\naffecting production data.\nCurrently, our sandbox environment is live while our production environment is under development\nand will be available soon.\nYou can sign up on our Dashboard to get API keys to access Hyperswitch API.\n\n### Environment\n\nUse the following base URLs when making requests to the APIs:\n\n| Environment | Base URL |\n|---------------|------------------------------------|\n| Sandbox | <https://sandbox.hyperswitch.io> |\n| Production | <https://api.hyperswitch.io> |\n\n## Authentication\n\nWhen you sign up on our [dashboard](https://app.hyperswitch.io) and create a merchant\naccount, you are given a secret key (also referred as api-key) and a publishable key.\nYou may authenticate all API requests with Hyperswitch server by providing the appropriate key in\nthe request Authorization header.\n\n| Key | Description |\n|-----------------|-----------------------------------------------------------------------------------------------|\n| api-key | Private key. Used to authenticate all API requests from your merchant server |\n| publishable key | Unique identifier for your account. Used to authenticate API requests from your app's client |\n\nNever share your secret api keys. Keep them guarded and secure.\n",
"contact": {
"name": "Hyperswitch Support",
"url": "https://hyperswitch.io",
"email": "hyperswitch@juspay.in"
},
"license": {
"name": "Apache-2.0"
},
"version": "0.1.0"
},
"servers": [
{
"url": "https://sandbox.hyperswitch.io",
"description": "Sandbox Environment"
}
],
"paths": {
"/v2/organization": {
"post": {
"tags": [
"Organization"
],
"summary": "Organization - Create",
"description": "Create a new organization",
"operationId": "Create an Organization",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationCreateRequest"
},
"examples": {
"Create an organization with organization_name": {
"value": {
"organization_name": "organization_abc"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/organization/{id}": {
"get": {
"tags": [
"Organization"
],
"summary": "Organization - Retrieve",
"description": "Retrieve an existing organization",
"operationId": "Retrieve an Organization",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Organization",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"Organization"
],
"summary": "Organization - Update",
"description": "Create a new organization for .",
"operationId": "Update an Organization",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Organization",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationUpdateRequest"
},
"examples": {
"Update organization_name of the organization": {
"value": {
"organization_name": "organization_abcd"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/organization/{id}/merchant-accounts": {
"get": {
"tags": [
"Organization"
],
"summary": "Organization - Merchant Account - List",
"description": "List merchant accounts for an Organization",
"operationId": "List Merchant Accounts",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Organization",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Merchant Account list retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/connector-accounts": {
"post": {
"tags": [
"Merchant Connector Account"
],
"summary": "Connector Account - Create",
"description": "Creates a new Connector Account for the merchant account. The connector could be a payment processor/facilitator/acquirer or a provider of specialized services like Fraud/Accounting etc.",
"operationId": "Create a Merchant Connector",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorCreate"
},
"examples": {
"Create a merchant account with custom connector label": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_label": "EU_adyen",
"connector_name": "adyen",
"connector_type": "payment_processor"
}
},
"Create a merchant connector account under a specific profile": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_name": "adyen",
"connector_type": "payment_processor",
"profile_id": "{{profile_id}}"
}
},
"Create a merchant connector account with minimal fields": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_name": "adyen",
"connector_type": "payment_processor"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Connector Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/connector-accounts/{id}": {
"get": {
"tags": [
"Merchant Connector Account"
],
"summary": "Connector Account - Retrieve",
"description": "Retrieves details of a Connector account",
"operationId": "Retrieve a Merchant Connector",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"Merchant Connector Account"
],
"summary": "Connector Account - Update",
"description": "To update an existing Connector account. Helpful in enabling/disabling different payment methods and other settings for the connector",
"operationId": "Update a Merchant Connector",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorUpdate"
},
"examples": {
"Enable card payment method": {
"value": {
"connector_type": "payment_processor",
"payment_methods_enabled": [
{
"payment_method": "card"
}
]
}
},
"Update webhook secret": {
"value": {
"connector_webhook_details": {
"merchant_secret": "{{webhook_secret}}"
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Connector Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"delete": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - Delete",
"description": "Delete or Detach a Merchant Connector from Merchant Account",
"operationId": "Delete a Merchant Connector",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector Deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorDeleteResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/merchant-accounts": {
"post": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Create",
"description": "Create a new account for a *merchant* and the *merchant* could be a seller or retailer or client who likes to receive and send payments.\n\nBefore creating the merchant account, it is mandatory to create an organization.",
"operationId": "Create a Merchant Account",
"parameters": [
{
"name": "X-Organization-Id",
"in": "header",
"description": "Organization ID for which the merchant account has to be created.",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Organization-Id": "org_abcdefghijklmnop"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountCreate"
},
"examples": {
"Create a merchant account with merchant details": {
"value": {
"merchant_details": {
"primary_contact_person": "John Doe",
"primary_email": "example@company.com"
},
"merchant_name": "Cloth Store"
}
},
"Create a merchant account with metadata": {
"value": {
"merchant_name": "Cloth Store",
"metadata": {
"key_1": "John Doe",
"key_2": "Trends"
}
}
},
"Create a merchant account with minimal fields": {
"value": {
"merchant_name": "Cloth Store"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Account Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/merchant-accounts/{id}": {
"get": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Retrieve",
"description": "Retrieve a *merchant* account details.",
"operationId": "Retrieve a Merchant Account",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Merchant Account Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Update",
"description": "Updates details of an existing merchant account. Helpful in updating merchant details such as email, contact details, or other configuration details like webhook, routing algorithm etc",
"operationId": "Update a Merchant Account",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountUpdate"
},
"examples": {
"Update Merchant Details": {
"value": {
"merchant_details": {
"primary_contact_person": "John Doe",
"primary_email": "example@company.com"
}
}
},
"Update merchant name": {
"value": {
"merchant_id": "merchant_abc",
"merchant_name": "merchant_name"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Account Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/merchant-accounts/{id}/profiles": {
"get": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Profile List",
"description": "List profiles for an Merchant",
"operationId": "List Profiles",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Merchant",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "profile list retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/profiles": {
"post": {
"tags": [
"Profile"
],
"summary": "Profile - Create",
"description": "Creates a new *profile* for a merchant",
"operationId": "Create A Profile",
"parameters": [
{
"name": "X-Merchant-Id",
"in": "header",
"description": "Merchant ID of the profile.",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Merchant-Id": "abc_iG5VNjsN9xuCg7Xx0uWh"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileCreate"
},
"examples": {
"Create a profile with profile name": {
"value": {
"profile_name": "shoe_business"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Account Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/profiles/{id}": {
"get": {
"tags": [
"Profile"
],
"summary": "Profile - Retrieve",
"description": "Retrieve existing *profile*",
"operationId": "Retrieve a Profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Merchant-Id",
"in": "header",
"description": "Merchant ID of the profile.",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Merchant-Id": "abc_iG5VNjsN9xuCg7Xx0uWh"
}
}
],
"responses": {
"200": {
"description": "Profile Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"Profile"
],
"summary": "Profile - Update",
"description": "Update the *profile*",
"operationId": "Update a Profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Merchant-Id",
"in": "header",
"description": "Merchant ID of the profile.",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Merchant-Id": "abc_iG5VNjsN9xuCg7Xx0uWh"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileCreate"
},
"examples": {
"Update profile with profile name fields": {
"value": {
"profile_name": "shoe_business"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Profile Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/profiles/{id}/connector-accounts": {
"get": {
"tags": [
"Business Profile"
],
"summary": "Profile - Connector Accounts List",
"description": "List Connector Accounts for the profile",
"operationId": "List all Merchant Connectors",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the business profile",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Merchant-Id",
"in": "header",
"description": "Merchant ID of the profile.",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Merchant-Id": "abc_iG5VNjsN9xuCg7Xx0uWh"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector list retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/profiles/{id}/activate-routing-algorithm": {
"patch": {
"tags": [
"Profile"
],
"summary": "Profile - Activate routing algorithm",
"description": "Activates a routing algorithm under a profile",
"operationId": "Activates a routing algorithm under a profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingAlgorithmId"
},
"examples": {
"Activate a routing algorithm": {
"value": {
"routing_algorithm_id": "routing_algorithm_123"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing Algorithm is activated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Bad request"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/profiles/{id}/deactivate-routing-algorithm": {
"patch": {
"tags": [
"Profile"
],
"summary": "Profile - Deactivate routing algorithm",
"description": "Deactivates a routing algorithm under a profile",
"operationId": " Deactivates a routing algorithm under a profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successfully deactivated routing config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Malformed request"
},
"403": {
"description": "Malformed request"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/profiles/{id}/fallback-routing": {
"patch": {
"tags": [
"Profile"
],
"summary": "Profile - Update Default Fallback Routing Algorithm",
"description": "Update the default fallback routing algorithm for the profile",
"operationId": "Update the default fallback routing algorithm for the profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successfully updated the default fallback routing algorithm",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
}
},
"400": {
"description": "Malformed request"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
},
"get": {
"tags": [
"Profile"
],
"summary": "Profile - Retrieve Default Fallback Routing Algorithm",
"description": "Retrieve the default fallback routing algorithm for the profile",
"operationId": "Retrieve the default fallback routing algorithm for the profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successfully retrieved default fallback routing algorithm",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
}
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/profiles/{id}/routing-algorithm": {
"get": {
"tags": [
"Profile"
],
"summary": "Profile - Retrieve Active Routing Algorithm",
"description": "_\nRetrieve active routing algorithm under the profile",
"operationId": "Retrieve the active routing algorithm under the profile",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "limit",
"in": "query",
"description": "The number of records of the algorithms to be returned",
"required": false,
"schema": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
}
},
{
"name": "offset",
"in": "query",
"description": "The record offset of the algorithm from which to start gathering the results",
"required": false,
"schema": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
}
}
],
"responses": {
"200": {
"description": "Successfully retrieved active config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LinkedRoutingConfigRetrieveResponse"
}
}
}
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/routing-algorithm": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Create",
"description": "Create a routing algorithm",
"operationId": "Create a routing algorithm",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingConfigRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing Algorithm created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Request body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/routing-algorithm/{id}": {
"get": {
"tags": [
"Routing"
],
"summary": "Routing - Retrieve",
"description": "Retrieve a routing algorithm with its algorithm id",
"operationId": "Retrieve a routing algorithm with its algorithm id",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for a routing algorithm",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successfully fetched routing algorithm",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantRoutingAlgorithm"
}
}
}
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/api-keys": {
"post": {
"tags": [
"API Key"
],
"summary": "API Key - Create",
"description": "Create a new API Key for accessing our APIs from your servers. The plaintext API Key will be\ndisplayed only once on creation, so ensure you store it securely.",
"operationId": "Create an API Key",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "API Key created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/api-keys/{id}": {
"get": {
"tags": [
"API Key"
],
"summary": "API Key - Retrieve",
"description": "Retrieve information about the specified API Key.",
"operationId": "Retrieve an API Key",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API Key retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"API Key"
],
"summary": "API Key - Update",
"description": "Update information for the specified API Key.",
"operationId": "Update an API Key",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "API Key updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"delete": {
"tags": [
"API Key"
],
"summary": "API Key - Revoke",
"description": "Revoke the specified API Key. Once revoked, the API Key can no longer be used for\nauthenticating with our APIs.",
"operationId": "Revoke an API Key",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API Key revoked",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RevokeApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/api-keys/list": {
"get": {
"tags": [
"API Key"
],
"summary": "API Key - List",
"description": "List all the API Keys associated to a merchant account.",
"operationId": "List all API Keys associated with a merchant account",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The maximum number of API Keys to include in the response",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "skip",
"in": "query",
"description": "The number of API Keys to skip when retrieving the list of API keys.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "List of API Keys retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
}
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/v2/customers": {
"post": {
"tags": [
"Customers"
],
"summary": "Customers - Create",
"description": "Creates a customer object and stores the customer details to be reused for future payments.\nIncase the customer already exists in the system, this API will respond with the customer details.",
"operationId": "Create a Customer",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerRequest"
},
"examples": {
"Create a customer with name and email": {
"value": {
"email": "guest@example.com",
"name": "John Doe"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Customer Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/customers/{id}": {
"get": {
"tags": [
"Customers"
],
"summary": "Customers - Retrieve",
"description": "Retrieves a customer's details.",
"operationId": "Retrieve a Customer",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Customer Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
},
{
"ephemeral_key": []
}
]
},
"post": {
"tags": [
"Customers"
],
"summary": "Customers - Update",
"description": "Updates the customer's details in a customer object.",
"operationId": "Update a Customer",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerUpdateRequest"
},
"examples": {
"Update name and email of a customer": {
"value": {
"email": "guest@example.com",
"name": "John Doe"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Customer was Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Customers"
],
"summary": "Customers - Delete",
"description": "Delete a customer record.",
"operationId": "Delete a Customer",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Customer was Deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerDeleteResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/customers/list": {
"get": {
"tags": [
"Customers"
],
"summary": "Customers - List",
"description": "Lists all the customers for a particular merchant id.",
"operationId": "List all Customers for a Merchant",
"responses": {
"200": {
"description": "Customers retrieved",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments/create-intent": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Create Intent",
"description": "**Creates a payment intent object when amount_details are passed.**\n\nYou will require the 'API - Key' from the Hyperswitch dashboard to make the first call, and use the 'client secret' returned in this API along with your 'publishable key' to make subsequent API calls from your client.",
"operationId": "Create a Payment Intent",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCreateIntentRequest"
},
"examples": {
"Create a payment intent with minimal fields": {
"value": {
"amount_details": {
"currency": "USD",
"order_amount": 6540
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsIntentResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments/{id}/get-intent": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments - Get Intent",
"description": "**Get a payment intent object when id is passed in path**\n\nYou will require the 'API - Key' from the Hyperswitch dashboard to make the call.",
"operationId": "Get the Payment Intent details",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Intent",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Intent",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsIntentResponse"
}
}
}
},
"404": {
"description": "Payment Intent not found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments/{id}/update-intent": {
"put": {
"tags": [
"Payments"
],
"summary": "Payments - Update Intent",
"description": "**Update a payment intent object**\n\nYou will require the 'API - Key' from the Hyperswitch dashboard to make the call.",
"operationId": "Update a Payment Intent",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Intent",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID associated to the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": "pro_abcdefghijklmnop"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsUpdateIntentRequest"
},
"examples": {
"Update a payment intent with minimal fields": {
"value": {
"amount_details": {
"currency": "USD",
"order_amount": 6540
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Intent Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsIntentResponse"
}
}
}
},
"404": {
"description": "Payment Intent Not Found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments/{id}/confirm-intent": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Confirm Intent",
"description": "**Confirms a payment intent object with the payment method data**\n\n.",
"operationId": "Confirm Payment Intent",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Intent",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID associated to the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": "pro_abcdefghijklmnop"
},
{
"name": "X-Client-Secret",
"in": "header",
"description": "Client Secret Associated with the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Client-Secret": "12345_pay_0193e41106e07e518940f8b51b9c8121_secret_0193e41107027a928d61d292e6a5dba9"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsConfirmIntentRequest"
},
"examples": {
"Confirm the payment intent with card details": {
"value": {
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_holder_name": "joseph Doe",
"card_number": "4242424242424242"
}
},
"payment_method_subtype": "credit",
"payment_method_type": "card"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/v2/payments/{id}": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments - Get",
"description": "Retrieves a Payment. This API can also be used to get the status of a previously initiated payment or next action for an ongoing payment",
"operationId": "Retrieve a Payment",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The global payment id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "force_sync",
"in": "query",
"description": "A boolean to indicate whether to force sync the payment status. Value can be true or false",
"required": true,
"schema": {
"$ref": "#/components/schemas/ForceSync"
}
}
],
"responses": {
"200": {
"description": "Gets the payment with final status",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"404": {
"description": "No payment found with the given id"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Create and Confirm Intent",
"description": "**Creates and confirms a payment intent object when the amount and payment method information are passed.**\n\nYou will require the 'API - Key' from the Hyperswitch dashboard to make the call.",
"operationId": "Create and Confirm Payment Intent",
"parameters": [
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID associated to the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": "pro_abcdefghijklmnop"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsRequest"
},
"examples": {
"Create and confirm the payment intent with amount and card details": {
"value": {
"amount_details": {
"currency": "USD",
"order_amount": 6540
},
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_holder_name": "joseph Doe",
"card_number": "4242424242424242"
}
},
"payment_method_subtype": "credit",
"payment_method_type": "card"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payments/{payment_id}/create-external-sdk-tokens": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Session token",
"description": "Creates a session object or a session token for wallets like Apple Pay, Google Pay, etc. These tokens are used by Hyperswitch's SDK to initiate these wallets' SDK.",
"operationId": "Create Session tokens for a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsSessionRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment session object created or session token was retrieved from wallets",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsSessionResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/v2/payments/{id}/payment-methods": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments - Payment Methods List",
"description": "List the payment methods eligible for a payment. This endpoint also returns the saved payment methods for the customer when the customer_id is passed when creating the payment",
"operationId": "Retrieve Payment methods for a Payment",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The global payment id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID associated to the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": "pro_abcdefghijklmnop"
},
{
"name": "X-Client-Secret",
"in": "header",
"description": "Client Secret Associated with the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": {
"X-Client-Secret": "12345_pay_0193e41106e07e518940f8b51b9c8121_secret_0193e41107027a928d61d292e6a5dba9"
}
}
],
"responses": {
"200": {
"description": "Get the payment methods",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodListResponseForPayments"
}
}
}
},
"404": {
"description": "No payment found with the given id"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/v2/payments/list": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments - List",
"description": "To list the *payments*",
"operationId": "List all Payments",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string",
"nullable": true
},
"example": "pay_fafa124123"
},
{
"name": "profile_id",
"in": "path",
"description": "The identifier for business profile",
"required": true,
"schema": {
"type": "string",
"nullable": true
},
"example": "pay_fafa124123"
},
{
"name": "customer_id",
"in": "path",
"description": "The identifier for customer",
"required": true,
"schema": {
"type": "string",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44"
},
{
"name": "starting_after",
"in": "path",
"description": "A cursor for use in pagination, fetch the next list after some object",
"required": true,
"schema": {
"type": "string",
"nullable": true
},
"example": "pay_fafa124123"
},
{
"name": "ending_before",
"in": "path",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"required": true,
"schema": {
"type": "string",
"nullable": true
},
"example": "pay_fafa124123"
},
{
"name": "limit",
"in": "path",
"description": "limit on the number of objects to return",
"required": true,
"schema": {
"type": "integer",
"format": "int32",
"default": 10,
"maximum": 100,
"minimum": 0
}
},
{
"name": "offset",
"in": "path",
"description": "The starting point within a list of objects",
"required": true,
"schema": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
}
},
{
"name": "created",
"in": "path",
"description": "The time at which payment is created",
"required": true,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
},
"example": "2022-09-10T10:11:12Z"
},
{
"name": "created.lt",
"in": "path",
"description": "Time less than the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
},
"example": "2022-09-10T10:11:12Z"
},
{
"name": "created.gt",
"in": "path",
"description": "Time greater than the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
},
"example": "2022-09-10T10:11:12Z"
},
{
"name": "created.lte",
"in": "path",
"description": "Time less than or equals to the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
},
"example": "2022-09-10T10:11:12Z"
},
{
"name": "created.gte",
"in": "path",
"description": "Time greater than or equals to the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
},
"example": "2022-09-10T10:11:12Z"
},
{
"name": "start_amount",
"in": "path",
"description": "The start amount to filter list of transactions which are greater than or equal to the start amount",
"required": true,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "end_amount",
"in": "path",
"description": "The end amount to filter list of transactions which are less than or equal to the end amount",
"required": true,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "connector",
"in": "path",
"description": "The connector to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/Connector"
}
],
"nullable": true
}
},
{
"name": "currency",
"in": "path",
"description": "The currency to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
}
},
{
"name": "status",
"in": "path",
"description": "The payment status to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/IntentStatus"
}
],
"nullable": true
}
},
{
"name": "payment_method_type",
"in": "path",
"description": "The payment method type to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
}
},
{
"name": "payment_method_subtype",
"in": "path",
"description": "The payment method subtype to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
}
},
{
"name": "authentication_type",
"in": "path",
"description": "The authentication type to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"nullable": true
}
},
{
"name": "merchant_connector_id",
"in": "path",
"description": "The merchant connector id to filter payments list",
"required": true,
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "order_on",
"in": "path",
"description": "The field on which the payments list should be sorted",
"required": true,
"schema": {
"$ref": "#/components/schemas/SortOn"
}
},
{
"name": "order_by",
"in": "path",
"description": "The order in which payments list should be sorted",
"required": true,
"schema": {
"$ref": "#/components/schemas/SortBy"
}
},
{
"name": "card_network",
"in": "path",
"description": "The card networks to filter payments list",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
}
},
{
"name": "merchant_order_reference_id",
"in": "path",
"description": "The identifier for merchant order reference id",
"required": true,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Successfully retrieved a payment list",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentListResponse"
}
}
}
},
"404": {
"description": "No payments found"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/v2/payment-methods": {
"post": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Create",
"description": "Creates and stores a payment method against a customer. In case of cards, this API should be used only by PCI compliant merchants.",
"operationId": "Create Payment Method",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodCreate"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-methods/create-intent": {
"post": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Create Intent",
"description": "Creates a payment method for customer with billing information and other metadata.",
"operationId": "Create Payment Method Intent",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodIntentCreate"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method Intent Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-methods/{id}/confirm-intent": {
"post": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Confirm Intent",
"description": "Update a payment method with customer's payment method related information.",
"operationId": "Confirm Payment Method Intent",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodIntentConfirm"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method Intent Confirmed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-methods/{id}/update-saved-payment-method": {
"patch": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Update",
"description": "Update an existing payment method of a customer.",
"operationId": "Update Payment Method",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodUpdate"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method Update",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-methods/{id}": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Retrieve",
"description": "Retrieves a payment method of a customer.",
"operationId": "Retrieve Payment Method",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Method Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"404": {
"description": "Payment Method Not Found"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Delete",
"description": "Deletes a payment method of a customer.",
"operationId": "Delete Payment Method",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Method Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodDeleteResponse"
}
}
}
},
"404": {
"description": "Payment Method Not Found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/customers/{id}/saved-payment-methods": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - List Customer Saved Payment Methods",
"description": "List the payment methods saved for a customer",
"operationId": "List Customer Saved Payment Methods",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Methods Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerPaymentMethodsListResponse"
}
}
}
},
"404": {
"description": "Customer Not Found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-method-session": {
"post": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - Create",
"description": "Create a payment method session for a customer\nThis is used to list the saved payment methods for the customer\nThe customer can also add a new payment method using this session",
"operationId": "Create a payment method session",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionRequest"
},
"examples": {
"Create a payment method session with customer_id": {
"value": {
"customer_id": "12345_cus_abcdefghijklmnopqrstuvwxyz"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Create the payment method session",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionResponse"
}
}
}
},
"400": {
"description": "The request is invalid"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/payment-method-session/:id": {
"get": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - Retrieve",
"description": "Retrieve the payment method session",
"operationId": "Retrieve the payment method session",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method Session",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The payment method session is retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionResponse"
}
}
}
},
"404": {
"description": "The request is invalid"
}
},
"security": [
{
"ephemeral_key": []
}
]
},
"delete": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - Delete a saved payment method",
"description": "Delete a saved payment method from the given payment method session.",
"operationId": "Delete a saved payment method",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method Session",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionDeleteSavedPaymentMethod"
},
"examples": {
"Update the card holder name": {
"value": {
"payment_method_id": "12345_pm_0194b1ecabc172e28aeb71f70a4daba3"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "The payment method has been updated successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodDeleteResponse"
}
}
}
},
"404": {
"description": "The request is invalid"
}
},
"security": [
{
"ephemeral_key": []
}
]
}
},
"/v2/payment-method-session/:id/list-payment-methods": {
"get": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - List Payment Methods",
"description": "List payment methods for the given payment method session.\nThis endpoint lists the enabled payment methods for the profile and the saved payment methods of the customer.",
"operationId": "List Payment methods for a Payment Method Session",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method Session",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The payment method session is retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodListResponse"
}
}
}
},
"404": {
"description": "The request is invalid"
}
},
"security": [
{
"ephemeral_key": []
}
]
}
},
"/v2/payment-method-session/:id/update-saved-payment-method": {
"put": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - Update a saved payment method",
"description": "Update a saved payment method from the given payment method session.",
"operationId": "Update a saved payment method",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method Session",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionUpdateSavedPaymentMethod"
},
"examples": {
"Update the card holder name": {
"value": {
"payment_method_data": {
"card": {
"card_holder_name": "Narayan Bhat"
}
},
"payment_method_id": "12345_pm_0194b1ecabc172e28aeb71f70a4daba3"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "The payment method has been updated successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"404": {
"description": "The request is invalid"
}
},
"security": [
{
"ephemeral_key": []
}
]
}
},
"/v2/payment-method-session/:id/confirm": {
"post": {
"tags": [
"Payment Method Session"
],
"summary": "Payment Method Session - Confirm a payment method session",
"description": "**Confirms a payment method session object with the payment method data**",
"operationId": "Confirm the payment method session",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Payment Method Session",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID associated to the payment intent",
"required": true,
"schema": {
"type": "string"
},
"example": "pro_abcdefghijklmnop"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodSessionConfirmRequest"
},
"examples": {
"Confirm the payment method session with card details": {
"value": {
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_number": "4242424242424242"
}
},
"payment_method_subtype": "credit",
"payment_method_type": "card"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/v2/refunds": {
"post": {
"tags": [
"Refunds"
],
"summary": "Refunds - Create",
"description": "Creates a refund against an already processed payment. In case of some processors, you can even opt to refund only a partial amount multiple times until the original charge amount has been refunded",
"operationId": "Create a Refund",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundsCreateRequest"
},
"examples": {
"Create an instant refund to refund partial amount": {
"value": {
"amount": 654,
"merchant_reference_id": "ref_123",
"payment_id": "{{payment_id}}",
"refund_type": "instant"
}
},
"Create an instant refund to refund the whole amount": {
"value": {
"merchant_reference_id": "ref_123",
"payment_id": "{{payment_id}}",
"refund_type": "instant"
}
},
"Create an instant refund with reason": {
"value": {
"amount": 6540,
"merchant_reference_id": "ref_123",
"payment_id": "{{payment_id}}",
"reason": "Customer returned product",
"refund_type": "instant"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Refund created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/v2/process_tracker/revenue_recovery_workflow/{revenue_recovery_id}": {
"get": {
"tags": [
"Revenue Recovery"
],
"summary": "Revenue Recovery - Retrieve",
"description": "Retrieve the Revenue Recovery Payment Info",
"operationId": "Retrieve Revenue Recovery Info",
"parameters": [
{
"name": "recovery_recovery_id",
"in": "path",
"description": "The payment intent id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Revenue Recovery Info Retrieved Successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RevenueRecoveryResponse"
}
}
}
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"jwt_key": []
}
]
}
}
},
"components": {
"schemas": {
"AcceptanceType": {
"type": "string",
"description": "This is used to indicate if the mandate was accepted online or offline",
"enum": [
"online",
"offline"
]
},
"AcceptedCountries": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
},
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"disable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"all_accepted"
]
}
}
}
],
"description": "Object to filter the customer countries for which the payment method is displayed",
"discriminator": {
"propertyName": "type"
}
},
"AcceptedCurrencies": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
}
},
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"disable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
}
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"all_accepted"
]
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"AchBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"routing_number"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for ach bank debit payment",
"example": "0001****3456"
},
"routing_number": {
"type": "string",
"description": "Partially masked routing number for ach bank debit payment",
"example": "110***000"
},
"card_holder_name": {
"type": "string",
"description": "Card holder's name",
"example": "John Doe",
"nullable": true
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
},
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"bank_type": {
"allOf": [
{
"$ref": "#/components/schemas/BankType"
}
],
"nullable": true
},
"bank_holder_type": {
"allOf": [
{
"$ref": "#/components/schemas/BankHolderType"
}
],
"nullable": true
}
}
},
"AchBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"bank_routing_number"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"bank_routing_number": {
"type": "string",
"description": "[9 digits] Routing number - used in USA for identifying a specific bank.",
"example": "110000000"
}
}
},
"AchBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for ach bank transfer payout method",
"required": [
"bank_account_number",
"bank_routing_number"
],
"properties": {
"bank_account_number": {
"type": "string",
"description": "Partially masked account number for ach bank debit payment",
"example": "0001****3456"
},
"bank_routing_number": {
"type": "string",
"description": "Partially masked routing number for ach bank debit payment",
"example": "110***000"
},
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
}
}
},
"AchBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "The Email ID for ACH billing",
"example": "example@me.com",
"nullable": true
}
}
},
"AchTransfer": {
"type": "object",
"required": [
"account_number",
"bank_name",
"routing_number",
"swift_code"
],
"properties": {
"account_number": {
"type": "string",
"example": "122385736258"
},
"bank_name": {
"type": "string"
},
"routing_number": {
"type": "string",
"example": "012"
},
"swift_code": {
"type": "string",
"example": "234"
}
}
},
"AdditionalMerchantData": {
"oneOf": [
{
"type": "object",
"required": [
"open_banking_recipient_data"
],
"properties": {
"open_banking_recipient_data": {
"$ref": "#/components/schemas/MerchantRecipientData"
}
}
}
]
},
"AdditionalPayoutMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"Card"
],
"properties": {
"Card": {
"$ref": "#/components/schemas/CardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Bank"
],
"properties": {
"Bank": {
"$ref": "#/components/schemas/BankAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Wallet"
],
"properties": {
"Wallet": {
"$ref": "#/components/schemas/WalletAdditionalData"
}
}
}
],
"description": "Masked payout method details for storing in db"
},
"Address": {
"type": "object",
"properties": {
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"phone": {
"allOf": [
{
"$ref": "#/components/schemas/PhoneDetails"
}
],
"nullable": true
},
"email": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"AddressDetails": {
"type": "object",
"description": "Address details",
"properties": {
"city": {
"type": "string",
"description": "The address city",
"example": "New York",
"nullable": true,
"maxLength": 50
},
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"line1": {
"type": "string",
"description": "The first line of the address",
"example": "123, King Street",
"nullable": true,
"maxLength": 200
},
"line2": {
"type": "string",
"description": "The second line of the address",
"example": "Powelson Avenue",
"nullable": true,
"maxLength": 50
},
"line3": {
"type": "string",
"description": "The third line of the address",
"example": "Bridgewater",
"nullable": true,
"maxLength": 50
},
"zip": {
"type": "string",
"description": "The zip/postal code for the address",
"example": "08807",
"nullable": true,
"maxLength": 50
},
"state": {
"type": "string",
"description": "The address state",
"example": "New York",
"nullable": true
},
"first_name": {
"type": "string",
"description": "The first name for the address",
"example": "John",
"nullable": true,
"maxLength": 255
},
"last_name": {
"type": "string",
"description": "The last name for the address",
"example": "Doe",
"nullable": true,
"maxLength": 255
}
},
"additionalProperties": false
},
"AdyenSplitData": {
"type": "object",
"description": "Fee information for Split Payments to be charged on the payment being collected for Adyen",
"required": [
"split_items"
],
"properties": {
"store": {
"type": "string",
"description": "The store identifier",
"nullable": true
},
"split_items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AdyenSplitItem"
},
"description": "Data for the split items"
}
},
"additionalProperties": false
},
"AdyenSplitItem": {
"type": "object",
"description": "Data for the split items",
"required": [
"amount",
"split_type",
"reference"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The amount of the split item",
"example": 6540
},
"split_type": {
"$ref": "#/components/schemas/AdyenSplitType"
},
"account": {
"type": "string",
"description": "The unique identifier of the account to which the split amount is allocated.",
"nullable": true
},
"reference": {
"type": "string",
"description": "Unique Identifier for the split item"
},
"description": {
"type": "string",
"description": "Description for the part of the payment that will be allocated to the specified account.",
"nullable": true
}
},
"additionalProperties": false
},
"AdyenSplitType": {
"type": "string",
"enum": [
"BalanceAccount",
"AcquiringFees",
"PaymentFee",
"AdyenFees",
"AdyenCommission",
"AdyenMarkup",
"Interchange",
"SchemeFee",
"Commission",
"TopUp",
"Vat"
]
},
"AirwallexData": {
"type": "object",
"properties": {
"payload": {
"type": "string",
"description": "payload required by airwallex",
"nullable": true
}
}
},
"AlfamartVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Alfamart",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Alfamart",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Alfamart",
"example": "example@me.com",
"nullable": true
}
}
},
"AliPayHkRedirection": {
"type": "object"
},
"AliPayQr": {
"type": "object"
},
"AliPayRedirection": {
"type": "object"
},
"AmazonPayRedirectData": {
"type": "object"
},
"AmountDetails": {
"type": "object",
"required": [
"currency"
],
"properties": {
"order_amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"minimum": 0
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"skip_external_tax_calculation": {
"$ref": "#/components/schemas/TaxCalculationOverride"
},
"skip_surcharge_calculation": {
"$ref": "#/components/schemas/SurchargeCalculationOverride"
},
"surcharge_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"AmountDetailsResponse": {
"type": "object",
"required": [
"order_amount",
"currency",
"external_tax_calculation",
"surcharge_calculation"
],
"properties": {
"order_amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"minimum": 0
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"external_tax_calculation": {
"$ref": "#/components/schemas/TaxCalculationOverride"
},
"surcharge_calculation": {
"$ref": "#/components/schemas/SurchargeCalculationOverride"
},
"surcharge_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"AmountDetailsUpdate": {
"type": "object",
"properties": {
"order_amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"nullable": true,
"minimum": 0
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"skip_external_tax_calculation": {
"allOf": [
{
"$ref": "#/components/schemas/TaxCalculationOverride"
}
],
"nullable": true
},
"skip_surcharge_calculation": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeCalculationOverride"
}
],
"nullable": true
},
"surcharge_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"AmountFilter": {
"type": "object",
"properties": {
"start_amount": {
"type": "integer",
"format": "int64",
"description": "The start amount to filter list of transactions which are greater than or equal to the start amount",
"nullable": true
},
"end_amount": {
"type": "integer",
"format": "int64",
"description": "The end amount to filter list of transactions which are less than or equal to the end amount",
"nullable": true
}
}
},
"AmountInfo": {
"type": "object",
"required": [
"label",
"amount"
],
"properties": {
"label": {
"type": "string",
"description": "The label must be the name of the merchant."
},
"type": {
"type": "string",
"description": "A value that indicates whether the line item(Ex: total, tax, discount, or grand total) is final or pending.",
"nullable": true
},
"amount": {
"type": "string",
"description": "The total amount for the payment in majot unit string (Ex: 38.02)",
"example": "38.02"
}
}
},
"ApiKeyExpiration": {
"oneOf": [
{
"type": "string",
"enum": [
"never"
]
},
{
"type": "string",
"format": "date-time"
}
]
},
"ApplePayAddressParameters": {
"type": "string",
"enum": [
"postalAddress",
"phone",
"email"
]
},
"ApplePayBillingContactFields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApplePayAddressParameters"
}
},
"ApplePayPaymentRequest": {
"type": "object",
"required": [
"country_code",
"currency_code",
"total"
],
"properties": {
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total": {
"$ref": "#/components/schemas/AmountInfo"
},
"merchant_capabilities": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of merchant capabilities(ex: whether capable of 3ds or no-3ds)",
"nullable": true
},
"supported_networks": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of supported networks",
"nullable": true
},
"merchant_identifier": {
"type": "string",
"nullable": true
},
"required_billing_contact_fields": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayBillingContactFields"
}
],
"nullable": true
},
"required_shipping_contact_fields": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayShippingContactFields"
}
],
"nullable": true
},
"recurring_payment_request": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayRecurringPaymentRequest"
}
],
"nullable": true
}
}
},
"ApplePayPaymentTiming": {
"type": "string",
"enum": [
"immediate",
"recurring"
]
},
"ApplePayRecurringDetails": {
"type": "object",
"required": [
"payment_description",
"regular_billing",
"management_url"
],
"properties": {
"payment_description": {
"type": "string",
"description": "A description of the recurring payment that Apple Pay displays to the user in the payment sheet"
},
"regular_billing": {
"$ref": "#/components/schemas/ApplePayRegularBillingDetails"
},
"billing_agreement": {
"type": "string",
"description": "A localized billing agreement that the payment sheet displays to the user before the user authorizes the payment",
"nullable": true
},
"management_url": {
"type": "string",
"description": "A URL to a web page where the user can update or delete the payment method for the recurring payment",
"example": "https://hyperswitch.io"
}
}
},
"ApplePayRecurringPaymentRequest": {
"type": "object",
"required": [
"payment_description",
"regular_billing",
"management_u_r_l"
],
"properties": {
"payment_description": {
"type": "string",
"description": "A description of the recurring payment that Apple Pay displays to the user in the payment sheet"
},
"regular_billing": {
"$ref": "#/components/schemas/ApplePayRegularBillingRequest"
},
"billing_agreement": {
"type": "string",
"description": "A localized billing agreement that the payment sheet displays to the user before the user authorizes the payment",
"nullable": true
},
"management_u_r_l": {
"type": "string",
"description": "A URL to a web page where the user can update or delete the payment method for the recurring payment",
"example": "https://hyperswitch.io"
}
}
},
"ApplePayRedirectData": {
"type": "object"
},
"ApplePayRegularBillingDetails": {
"type": "object",
"required": [
"label"
],
"properties": {
"label": {
"type": "string",
"description": "The label that Apple Pay displays to the user in the payment sheet with the recurring details"
},
"recurring_payment_start_date": {
"type": "string",
"format": "date-time",
"description": "The date of the first payment",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"recurring_payment_end_date": {
"type": "string",
"format": "date-time",
"description": "The date of the final payment",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"recurring_payment_interval_unit": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringPaymentIntervalUnit"
}
],
"nullable": true
},
"recurring_payment_interval_count": {
"type": "integer",
"format": "int32",
"description": "The number of interval units that make up the total payment interval",
"nullable": true
}
}
},
"ApplePayRegularBillingRequest": {
"type": "object",
"required": [
"amount",
"label",
"payment_timing"
],
"properties": {
"amount": {
"type": "string",
"description": "The amount of the recurring payment",
"example": "38.02"
},
"label": {
"type": "string",
"description": "The label that Apple Pay displays to the user in the payment sheet with the recurring details"
},
"payment_timing": {
"$ref": "#/components/schemas/ApplePayPaymentTiming"
},
"recurring_payment_start_date": {
"type": "string",
"format": "date-time",
"description": "The date of the first payment",
"nullable": true
},
"recurring_payment_end_date": {
"type": "string",
"format": "date-time",
"description": "The date of the final payment",
"nullable": true
},
"recurring_payment_interval_unit": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringPaymentIntervalUnit"
}
],
"nullable": true
},
"recurring_payment_interval_count": {
"type": "integer",
"format": "int32",
"description": "The number of interval units that make up the total payment interval",
"nullable": true
}
}
},
"ApplePaySessionResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/ThirdPartySdkSessionResponse"
},
{
"$ref": "#/components/schemas/NoThirdPartySdkSessionResponse"
},
{
"type": "object",
"default": null,
"nullable": true
}
]
},
"ApplePayShippingContactFields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApplePayAddressParameters"
}
},
"ApplePayThirdPartySdkData": {
"type": "object"
},
"ApplePayWalletData": {
"type": "object",
"required": [
"payment_data",
"payment_method",
"transaction_identifier"
],
"properties": {
"payment_data": {
"type": "string",
"description": "The payment data of Apple pay"
},
"payment_method": {
"$ref": "#/components/schemas/ApplepayPaymentMethod"
},
"transaction_identifier": {
"type": "string",
"description": "The unique identifier for the transaction"
}
}
},
"ApplepayConnectorMetadataRequest": {
"type": "object",
"properties": {
"session_token_data": {
"allOf": [
{
"$ref": "#/components/schemas/SessionTokenInfo"
}
],
"nullable": true
}
}
},
"ApplepayInitiative": {
"type": "string",
"enum": [
"web",
"ios"
]
},
"ApplepayPaymentMethod": {
"type": "object",
"required": [
"display_name",
"network",
"type"
],
"properties": {
"display_name": {
"type": "string",
"description": "The name to be displayed on Apple Pay button"
},
"network": {
"type": "string",
"description": "The network of the Apple pay payment method"
},
"type": {
"type": "string",
"description": "The type of the payment method"
}
}
},
"ApplepaySessionTokenResponse": {
"type": "object",
"required": [
"connector",
"delayed_session_token",
"sdk_next_action"
],
"properties": {
"session_token_data": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePaySessionResponse"
}
],
"nullable": true
},
"payment_request_data": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayPaymentRequest"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The session token is w.r.t this connector"
},
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
},
"connector_reference_id": {
"type": "string",
"description": "The connector transaction id",
"nullable": true
},
"connector_sdk_public_key": {
"type": "string",
"description": "The public key id is to invoke third party sdk",
"nullable": true
},
"connector_merchant_id": {
"type": "string",
"description": "The connector merchant id",
"nullable": true
}
}
},
"AttemptStatus": {
"type": "string",
"description": "The status of the attempt",
"enum": [
"started",
"authentication_failed",
"router_declined",
"authentication_pending",
"authentication_successful",
"authorized",
"authorization_failed",
"charged",
"authorizing",
"cod_initiated",
"voided",
"void_initiated",
"capture_initiated",
"capture_failed",
"void_failed",
"auto_refunded",
"partial_charged",
"partial_charged_and_chargeable",
"unresolved",
"pending",
"failure",
"payment_method_awaited",
"confirmation_awaited",
"device_data_collection_pending"
]
},
"AuthenticationConnectorDetails": {
"type": "object",
"required": [
"authentication_connectors",
"three_ds_requestor_url"
],
"properties": {
"authentication_connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthenticationConnectors"
},
"description": "List of authentication connectors"
},
"three_ds_requestor_url": {
"type": "string",
"description": "URL of the (customer service) website that will be shown to the shopper in case of technical errors during the 3D Secure 2 process."
},
"three_ds_requestor_app_url": {
"type": "string",
"description": "Merchant app declaring their URL within the CReq message so that the Authentication app can call the Merchant app after OOB authentication has occurred.",
"nullable": true
}
}
},
"AuthenticationConnectors": {
"type": "string",
"enum": [
"threedsecureio",
"netcetera",
"gpayments",
"ctp_mastercard",
"unified_authentication_service",
"juspaythreedsserver",
"ctp_visa"
]
},
"AuthenticationDetails": {
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"$ref": "#/components/schemas/IntentStatus"
},
"error": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
}
],
"nullable": true
}
}
},
"AuthenticationStatus": {
"type": "string",
"enum": [
"started",
"pending",
"success",
"failed"
]
},
"AuthenticationType": {
"type": "string",
"description": "Pass this parameter to force 3DS or non 3DS auth for this payment. Some connectors will still force 3DS auth even in case of passing 'no_three_ds' here and vice versa. Default value is 'no_three_ds' if not set",
"enum": [
"three_ds",
"no_three_ds"
]
},
"AuthorizationStatus": {
"type": "string",
"enum": [
"success",
"failure",
"processing",
"unresolved"
]
},
"BacsBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"sort_code"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for Bacs payment method",
"example": "0001****3456"
},
"sort_code": {
"type": "string",
"description": "Partially masked sort code for Bacs payment method",
"example": "108800"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"BacsBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"bank_sort_code"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"bank_sort_code": {
"type": "string",
"description": "[6 digits] Sort Code - used in UK and Ireland for identifying a bank and it's branches.",
"example": "98-76-54"
}
}
},
"BacsBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for bacs bank transfer payout method",
"required": [
"bank_sort_code",
"bank_account_number"
],
"properties": {
"bank_sort_code": {
"type": "string",
"description": "Partially masked sort code for Bacs payment method",
"example": "108800"
},
"bank_account_number": {
"type": "string",
"description": "Bank account's owner name",
"example": "0001****3456"
},
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
}
}
},
"BacsBankTransferInstructions": {
"type": "object",
"required": [
"account_holder_name",
"account_number",
"sort_code"
],
"properties": {
"account_holder_name": {
"type": "string",
"example": "Jane Doe"
},
"account_number": {
"type": "string",
"example": "10244123908"
},
"sort_code": {
"type": "string",
"example": "012"
}
}
},
"BancontactBankRedirectAdditionalData": {
"type": "object",
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the card number",
"example": "4242",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "12",
"nullable": true
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test",
"nullable": true
}
}
},
"Bank": {
"oneOf": [
{
"$ref": "#/components/schemas/AchBankTransfer"
},
{
"$ref": "#/components/schemas/BacsBankTransfer"
},
{
"$ref": "#/components/schemas/SepaBankTransfer"
},
{
"$ref": "#/components/schemas/PixBankTransfer"
}
]
},
"BankAdditionalData": {
"oneOf": [
{
"$ref": "#/components/schemas/AchBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/BacsBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/SepaBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/PixBankTransferAdditionalData"
}
],
"description": "Masked payout method details for bank payout method"
},
"BankCodeResponse": {
"type": "object",
"required": [
"bank_name",
"eligible_connectors"
],
"properties": {
"bank_name": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BankNames"
}
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"BankDebitAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"ach"
],
"properties": {
"ach": {
"$ref": "#/components/schemas/AchBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"$ref": "#/components/schemas/BacsBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"becs"
],
"properties": {
"becs": {
"$ref": "#/components/schemas/BecsBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"sepa"
],
"properties": {
"sepa": {
"$ref": "#/components/schemas/SepaBankDebitAdditionalData"
}
}
}
]
},
"BankDebitBilling": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The billing name for bank debits",
"example": "John Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The billing email for bank debits",
"example": "example@example.com",
"nullable": true
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
}
}
},
"BankDebitData": {
"oneOf": [
{
"type": "object",
"required": [
"ach_bank_debit"
],
"properties": {
"ach_bank_debit": {
"type": "object",
"description": "Payment Method data for Ach bank debit",
"required": [
"account_number",
"routing_number",
"card_holder_name",
"bank_account_holder_name",
"bank_name",
"bank_type",
"bank_holder_type"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for ach bank debit payment",
"example": "000123456789"
},
"routing_number": {
"type": "string",
"description": "Routing number for ach bank debit payment",
"example": "110000000"
},
"card_holder_name": {
"type": "string",
"example": "John Test"
},
"bank_account_holder_name": {
"type": "string",
"example": "John Doe"
},
"bank_name": {
"type": "string",
"example": "ACH"
},
"bank_type": {
"type": "string",
"example": "Checking"
},
"bank_holder_type": {
"type": "string",
"example": "Personal"
}
}
}
}
},
{
"type": "object",
"required": [
"sepa_bank_debit"
],
"properties": {
"sepa_bank_debit": {
"type": "object",
"required": [
"iban",
"bank_account_holder_name"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"iban": {
"type": "string",
"description": "International bank account number (iban) for SEPA",
"example": "DE89370400440532013000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Owner name for bank debit",
"example": "A. Schneider"
}
}
}
}
},
{
"type": "object",
"required": [
"becs_bank_debit"
],
"properties": {
"becs_bank_debit": {
"type": "object",
"required": [
"account_number",
"bsb_number"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for Becs payment method",
"example": "000123456"
},
"bsb_number": {
"type": "string",
"description": "Bank-State-Branch (bsb) number",
"example": "000000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Owner name for bank debit",
"example": "A. Schneider",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bacs_bank_debit"
],
"properties": {
"bacs_bank_debit": {
"type": "object",
"required": [
"account_number",
"sort_code",
"bank_account_holder_name"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for Bacs payment method",
"example": "00012345"
},
"sort_code": {
"type": "string",
"description": "Sort code for Bacs payment method",
"example": "108800"
},
"bank_account_holder_name": {
"type": "string",
"description": "holder name for bank debit",
"example": "A. Schneider"
}
}
}
}
}
]
},
"BankDebitResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankDebitAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"BankDebitTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"BankHolderType": {
"type": "string",
"enum": [
"personal",
"business"
]
},
"BankNames": {
"type": "string",
"description": "Name of banks supported by Hyperswitch",
"enum": [
"american_express",
"affin_bank",
"agro_bank",
"alliance_bank",
"am_bank",
"bank_of_america",
"bank_of_china",
"bank_islam",
"bank_muamalat",
"bank_rakyat",
"bank_simpanan_nasional",
"barclays",
"blik_p_s_p",
"capital_one",
"chase",
"citi",
"cimb_bank",
"discover",
"navy_federal_credit_union",
"pentagon_federal_credit_union",
"synchrony_bank",
"wells_fargo",
"abn_amro",
"asn_bank",
"bunq",
"handelsbanken",
"hong_leong_bank",
"hsbc_bank",
"ing",
"knab",
"kuwait_finance_house",
"moneyou",
"rabobank",
"regiobank",
"revolut",
"sns_bank",
"triodos_bank",
"van_lanschot",
"arzte_und_apotheker_bank",
"austrian_anadi_bank_ag",
"bank_austria",
"bank99_ag",
"bankhaus_carl_spangler",
"bankhaus_schelhammer_und_schattera_ag",
"bank_millennium",
"bank_p_e_k_a_o_s_a",
"bawag_psk_ag",
"bks_bank_ag",
"brull_kallmus_bank_ag",
"btv_vier_lander_bank",
"capital_bank_grawe_gruppe_ag",
"ceska_sporitelna",
"dolomitenbank",
"easybank_ag",
"e_platby_v_u_b",
"erste_bank_und_sparkassen",
"friesland_bank",
"hypo_alpeadriabank_international_ag",
"hypo_noe_lb_fur_niederosterreich_u_wien",
"hypo_oberosterreich_salzburg_steiermark",
"hypo_tirol_bank_ag",
"hypo_vorarlberg_bank_ag",
"hypo_bank_burgenland_aktiengesellschaft",
"komercni_banka",
"m_bank",
"marchfelder_bank",
"maybank",
"oberbank_ag",
"osterreichische_arzte_und_apothekerbank",
"ocbc_bank",
"pay_with_i_n_g",
"place_z_i_p_k_o",
"platnosc_online_karta_platnicza",
"posojilnica_bank_e_gen",
"postova_banka",
"public_bank",
"raiffeisen_bankengruppe_osterreich",
"rhb_bank",
"schelhammer_capital_bank_ag",
"standard_chartered_bank",
"schoellerbank_ag",
"sparda_bank_wien",
"sporo_pay",
"santander_przelew24",
"tatra_pay",
"viamo",
"volksbank_gruppe",
"volkskreditbank_ag",
"vr_bank_braunau",
"uob_bank",
"pay_with_alior_bank",
"banki_spoldzielcze",
"pay_with_inteligo",
"b_n_p_paribas_poland",
"bank_nowy_s_a",
"credit_agricole",
"pay_with_b_o_s",
"pay_with_citi_handlowy",
"pay_with_plus_bank",
"toyota_bank",
"velo_bank",
"e_transfer_pocztowy24",
"plus_bank",
"etransfer_pocztowy24",
"banki_spbdzielcze",
"bank_nowy_bfg_sa",
"getin_bank",
"blik",
"noble_pay",
"idea_bank",
"envelo_bank",
"nest_przelew",
"mbank_mtransfer",
"inteligo",
"pbac_z_ipko",
"bnp_paribas",
"bank_pekao_sa",
"volkswagen_bank",
"alior_bank",
"boz",
"bangkok_bank",
"krungsri_bank",
"krung_thai_bank",
"the_siam_commercial_bank",
"kasikorn_bank",
"open_bank_success",
"open_bank_failure",
"open_bank_cancelled",
"aib",
"bank_of_scotland",
"danske_bank",
"first_direct",
"first_trust",
"halifax",
"lloyds",
"monzo",
"nat_west",
"nationwide_bank",
"royal_bank_of_scotland",
"starling",
"tsb_bank",
"tesco_bank",
"ulster_bank",
"yoursafe",
"n26",
"nationale_nederlanden"
]
},
"BankRedirectBilling": {
"type": "object",
"required": [
"billing_name",
"email"
],
"properties": {
"billing_name": {
"type": "string",
"description": "The name for which billing is issued",
"example": "John Doe"
},
"email": {
"type": "string",
"description": "The billing email for bank redirect",
"example": "example@example.com"
}
}
},
"BankRedirectData": {
"oneOf": [
{
"type": "object",
"required": [
"bancontact_card"
],
"properties": {
"bancontact_card": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bizum"
],
"properties": {
"bizum": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"blik"
],
"properties": {
"blik": {
"type": "object",
"properties": {
"blik_code": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"eps"
],
"properties": {
"eps": {
"type": "object",
"required": [
"bank_name",
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_name": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"giropay"
],
"properties": {
"giropay": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_account_bic": {
"type": "string",
"description": "Bank account bic code",
"nullable": true
},
"bank_account_iban": {
"type": "string",
"description": "Bank account iban",
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"ideal"
],
"properties": {
"ideal": {
"type": "object",
"required": [
"bank_name",
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_name": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"interac"
],
"properties": {
"interac": {
"type": "object",
"properties": {
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"email": {
"type": "string",
"example": "john.doe@example.com",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_czech_republic"
],
"properties": {
"online_banking_czech_republic": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_finland"
],
"properties": {
"online_banking_finland": {
"type": "object",
"properties": {
"email": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_poland"
],
"properties": {
"online_banking_poland": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_slovakia"
],
"properties": {
"online_banking_slovakia": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"open_banking_uk"
],
"properties": {
"open_banking_uk": {
"type": "object",
"required": [
"issuer",
"country"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"przelewy24"
],
"properties": {
"przelewy24": {
"type": "object",
"properties": {
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"sofort"
],
"properties": {
"sofort": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"preferred_language": {
"type": "string",
"description": "The preferred language",
"example": "en",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"trustly"
],
"properties": {
"trustly": {
"type": "object",
"required": [
"country"
],
"properties": {
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_fpx"
],
"properties": {
"online_banking_fpx": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_thailand"
],
"properties": {
"online_banking_thailand": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"local_bank_redirect"
],
"properties": {
"local_bank_redirect": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"eft"
],
"properties": {
"eft": {
"type": "object",
"required": [
"provider"
],
"properties": {
"provider": {
"type": "string",
"description": "The preferred eft provider",
"example": "ozow"
}
}
}
}
}
]
},
"BankRedirectDetails": {
"oneOf": [
{
"type": "object",
"required": [
"BancontactCard"
],
"properties": {
"BancontactCard": {
"$ref": "#/components/schemas/BancontactBankRedirectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Blik"
],
"properties": {
"Blik": {
"$ref": "#/components/schemas/BlikBankRedirectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Giropay"
],
"properties": {
"Giropay": {
"$ref": "#/components/schemas/GiropayBankRedirectAdditionalData"
}
}
}
]
},
"BankRedirectResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectDetails"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
}
}
}
]
},
"BankTransferAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"ach"
],
"properties": {
"ach": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"sepa"
],
"properties": {
"sepa": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"multibanco"
],
"properties": {
"multibanco": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"permata"
],
"properties": {
"permata": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bca"
],
"properties": {
"bca": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bni_va"
],
"properties": {
"bni_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bri_va"
],
"properties": {
"bri_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"cimb_va"
],
"properties": {
"cimb_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"danamon_va"
],
"properties": {
"danamon_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"mandiri_va"
],
"properties": {
"mandiri_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"pix"
],
"properties": {
"pix": {
"$ref": "#/components/schemas/PixBankTransferAdditionalData"
}
}
},
{
"type": "object",
"required": [
"pse"
],
"properties": {
"pse": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"local_bank_transfer"
],
"properties": {
"local_bank_transfer": {
"$ref": "#/components/schemas/LocalBankTransferAdditionalData"
}
}
},
{
"type": "object",
"required": [
"instant_bank_transfer"
],
"properties": {
"instant_bank_transfer": {
"type": "object"
}
}
}
]
},
"BankTransferData": {
"oneOf": [
{
"type": "object",
"required": [
"ach_bank_transfer"
],
"properties": {
"ach_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/AchBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"sepa_bank_transfer"
],
"properties": {
"sepa_bank_transfer": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/SepaAndBacsBillingDetails"
}
],
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"bacs_bank_transfer"
],
"properties": {
"bacs_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/SepaAndBacsBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"multibanco_bank_transfer"
],
"properties": {
"multibanco_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/MultibancoBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"permata_bank_transfer"
],
"properties": {
"permata_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bca_bank_transfer"
],
"properties": {
"bca_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bni_va_bank_transfer"
],
"properties": {
"bni_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bri_va_bank_transfer"
],
"properties": {
"bri_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"cimb_va_bank_transfer"
],
"properties": {
"cimb_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"danamon_va_bank_transfer"
],
"properties": {
"danamon_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"mandiri_va_bank_transfer"
],
"properties": {
"mandiri_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pix"
],
"properties": {
"pix": {
"type": "object",
"properties": {
"pix_key": {
"type": "string",
"description": "Unique key for pix transfer",
"example": "a1f4102e-a446-4a57-bcce-6fa48899c1d1",
"nullable": true
},
"cpf": {
"type": "string",
"description": "CPF is a Brazilian tax identification number",
"example": "10599054689",
"nullable": true
},
"cnpj": {
"type": "string",
"description": "CNPJ is a Brazilian company tax identification number",
"example": "74469027417312",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pse"
],
"properties": {
"pse": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"local_bank_transfer"
],
"properties": {
"local_bank_transfer": {
"type": "object",
"properties": {
"bank_code": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"instant_bank_transfer"
],
"properties": {
"instant_bank_transfer": {
"type": "object"
}
}
}
]
},
"BankTransferInstructions": {
"oneOf": [
{
"type": "object",
"required": [
"doku_bank_transfer_instructions"
],
"properties": {
"doku_bank_transfer_instructions": {
"$ref": "#/components/schemas/DokuBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"ach_credit_transfer"
],
"properties": {
"ach_credit_transfer": {
"$ref": "#/components/schemas/AchTransfer"
}
}
},
{
"type": "object",
"required": [
"sepa_bank_instructions"
],
"properties": {
"sepa_bank_instructions": {
"$ref": "#/components/schemas/SepaBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"bacs_bank_instructions"
],
"properties": {
"bacs_bank_instructions": {
"$ref": "#/components/schemas/BacsBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"multibanco"
],
"properties": {
"multibanco": {
"$ref": "#/components/schemas/MultibancoTransferInstructions"
}
}
}
]
},
"BankTransferNextStepsData": {
"allOf": [
{
"$ref": "#/components/schemas/BankTransferInstructions"
},
{
"type": "object",
"properties": {
"receiver": {
"allOf": [
{
"$ref": "#/components/schemas/ReceiverDetails"
}
],
"nullable": true
}
}
}
]
},
"BankTransferResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankTransferAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"BankTransferTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given payment experience",
"example": [
"stripe",
"adyen"
]
}
}
},
"BankType": {
"type": "string",
"enum": [
"checking",
"savings"
]
},
"BecsBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"bsb_number"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for Becs payment method",
"example": "0001****3456"
},
"bsb_number": {
"type": "string",
"description": "Bank-State-Branch (bsb) number",
"example": "000000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"BillingConnectorPaymentDetails": {
"type": "object",
"required": [
"payment_processor_token",
"connector_customer_id"
],
"properties": {
"payment_processor_token": {
"type": "string",
"description": "Payment Processor Token to process the Revenue Recovery Payment"
},
"connector_customer_id": {
"type": "string",
"description": "Billing Connector's Customer Id"
}
}
},
"BlikBankRedirectAdditionalData": {
"type": "object",
"properties": {
"blik_code": {
"type": "string",
"example": "3GD9MO",
"nullable": true
}
}
},
"BlocklistDataKind": {
"type": "string",
"enum": [
"payment_method",
"card_bin",
"extended_card_bin"
]
},
"BlocklistRequest": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"card_bin"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"fingerprint"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"extended_card_bin"
]
},
"data": {
"type": "string"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"BlocklistResponse": {
"type": "object",
"required": [
"fingerprint_id",
"data_kind",
"created_at"
],
"properties": {
"fingerprint_id": {
"type": "string"
},
"data_kind": {
"$ref": "#/components/schemas/BlocklistDataKind"
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
},
"BoletoVoucherData": {
"type": "object",
"properties": {
"social_security_number": {
"type": "string",
"description": "The shopper's social security number",
"nullable": true
}
}
},
"BraintreeData": {
"type": "object",
"required": [
"merchant_account_id",
"merchant_config_currency"
],
"properties": {
"merchant_account_id": {
"type": "string",
"description": "Information about the merchant_account_id that merchant wants to specify at connector level."
},
"merchant_config_currency": {
"type": "string",
"description": "Information about the merchant_config_currency that merchant wants to specify at connector level."
}
}
},
"BrowserInformation": {
"type": "object",
"description": "Browser information to be used for 3DS 2.0",
"properties": {
"color_depth": {
"type": "integer",
"format": "int32",
"description": "Color depth supported by the browser",
"nullable": true,
"minimum": 0
},
"java_enabled": {
"type": "boolean",
"description": "Whether java is enabled in the browser",
"nullable": true
},
"java_script_enabled": {
"type": "boolean",
"description": "Whether javascript is enabled in the browser",
"nullable": true
},
"language": {
"type": "string",
"description": "Language supported",
"nullable": true
},
"screen_height": {
"type": "integer",
"format": "int32",
"description": "The screen height in pixels",
"nullable": true,
"minimum": 0
},
"screen_width": {
"type": "integer",
"format": "int32",
"description": "The screen width in pixels",
"nullable": true,
"minimum": 0
},
"time_zone": {
"type": "integer",
"format": "int32",
"description": "Time zone of the client",
"nullable": true
},
"ip_address": {
"type": "string",
"description": "Ip address of the client",
"nullable": true
},
"accept_header": {
"type": "string",
"description": "List of headers that are accepted",
"example": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"nullable": true
},
"user_agent": {
"type": "string",
"description": "User-agent of the browser",
"nullable": true
},
"os_type": {
"type": "string",
"description": "The os type of the client device",
"nullable": true
},
"os_version": {
"type": "string",
"description": "The os version of the client device",
"nullable": true
},
"device_model": {
"type": "string",
"description": "The device model of the client",
"nullable": true
},
"accept_language": {
"type": "string",
"description": "Accept-language of the browser",
"nullable": true
}
}
},
"BusinessCollectLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessGenericLinkConfig"
},
{
"type": "object",
"required": [
"enabled_payment_methods"
],
"properties": {
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\", \"sepa\"]}]"
}
}
}
]
},
"BusinessGenericLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
},
{
"type": "object",
"required": [
"allowed_domains"
],
"properties": {
"domain_name": {
"type": "string",
"description": "Custom domain name to be used for hosting the link",
"nullable": true
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true
}
}
}
]
},
"BusinessPaymentLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
},
{
"type": "object",
"properties": {
"domain_name": {
"type": "string",
"description": "Custom domain name to be used for hosting the link in your own domain",
"nullable": true
},
"business_specific_configs": {
"type": "object",
"description": "list of configs for multi theme setup",
"additionalProperties": {
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
},
"nullable": true
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true,
"nullable": true
},
"branding_visibility": {
"type": "boolean",
"description": "Toggle for HyperSwitch branding visibility",
"nullable": true
}
}
}
]
},
"BusinessPayoutLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessGenericLinkConfig"
},
{
"type": "object",
"properties": {
"form_layout": {
"allOf": [
{
"$ref": "#/components/schemas/UIWidgetFormLayout"
}
],
"nullable": true
},
"payout_test_mode": {
"type": "boolean",
"description": "Allows for removing any validations / pre-requisites which are necessary in a production environment",
"default": false,
"nullable": true
}
}
}
]
},
"CaptureMethod": {
"type": "string",
"description": "Default value if not passed is set to 'automatic' which results in Auth and Capture in one single API request. Pass 'manual' or 'manual_multiple' in case you want do a separate Auth and Capture by first authorizing and placing a hold on your customer's funds so that you can use the Payments/Capture endpoint later to capture the authorized amount. Pass 'manual' if you want to only capture the amount later once or 'manual_multiple' if you want to capture the funds multiple times later. Both 'manual' and 'manual_multiple' are only supported by a specific list of processors",
"enum": [
"automatic",
"manual",
"manual_multiple",
"scheduled",
"sequential_automatic"
]
},
"CaptureResponse": {
"type": "object",
"required": [
"capture_id",
"status",
"amount",
"connector",
"authorized_attempt_id",
"capture_sequence"
],
"properties": {
"capture_id": {
"type": "string",
"description": "Unique identifier for the capture"
},
"status": {
"$ref": "#/components/schemas/CaptureStatus"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The capture amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6540
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payment"
},
"authorized_attempt_id": {
"type": "string",
"description": "Unique identifier for the parent attempt on which this capture is made"
},
"connector_capture_id": {
"type": "string",
"description": "A unique identifier for this capture provided by the connector",
"nullable": true
},
"capture_sequence": {
"type": "integer",
"format": "int32",
"description": "Sequence number of this capture, in the series of captures made for the parent attempt"
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"nullable": true
},
"error_reason": {
"type": "string",
"description": "If there was an error while calling the connectors the reason is received here",
"nullable": true
},
"reference_id": {
"type": "string",
"description": "Reference to the capture at connector side",
"nullable": true
}
}
},
"CaptureStatus": {
"type": "string",
"enum": [
"started",
"charged",
"pending",
"failed"
]
},
"Card": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"card_cvc"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The card holder's nick name",
"example": "John Test",
"nullable": true
}
}
},
"CardAdditionalData": {
"type": "object",
"description": "Masked payout method details for card payout method",
"required": [
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_issuer": {
"type": "string",
"description": "Issuer of the card",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"description": "Card type, can be either `credit` or `debit`",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"description": "Card issuing country",
"nullable": true
},
"bank_code": {
"type": "string",
"description": "Code for Card issuing bank",
"nullable": true
},
"last4": {
"type": "string",
"description": "Last 4 digits of the card number",
"nullable": true
},
"card_isin": {
"type": "string",
"description": "The ISIN of the card",
"nullable": true
},
"card_extended_bin": {
"type": "string",
"description": "Extended bin of card, contains the first 8 digits of card number",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "Card expiry month",
"example": "01"
},
"card_exp_year": {
"type": "string",
"description": "Card expiry year",
"example": "2026"
},
"card_holder_name": {
"type": "string",
"description": "Card holder name",
"example": "John Doe"
}
}
},
"CardDetail": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"card_issuing_country",
"card_cvc"
],
"properties": {
"card_number": {
"type": "string",
"description": "Card Number",
"example": "4111111145551142"
},
"card_exp_month": {
"type": "string",
"description": "Card Expiry Month",
"example": "10"
},
"card_exp_year": {
"type": "string",
"description": "Card Expiry Year",
"example": "25"
},
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe"
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
},
"card_issuing_country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "Issuer Bank for Card",
"nullable": true
},
"card_type": {
"allOf": [
{
"$ref": "#/components/schemas/CardType"
}
],
"nullable": true
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card\nThis is optional in case the card needs to be vaulted",
"example": "242"
}
},
"additionalProperties": false
},
"CardDetailFromLocker": {
"type": "object",
"required": [
"saved_to_locker"
],
"properties": {
"issuer_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"last4_digits": {
"type": "string",
"nullable": true
},
"expiry_month": {
"type": "string",
"nullable": true
},
"expiry_year": {
"type": "string",
"nullable": true
},
"card_holder_name": {
"type": "string",
"nullable": true
},
"card_fingerprint": {
"type": "string",
"nullable": true
},
"nick_name": {
"type": "string",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_isin": {
"type": "string",
"nullable": true
},
"card_issuer": {
"type": "string",
"nullable": true
},
"card_type": {
"type": "string",
"nullable": true
},
"saved_to_locker": {
"type": "boolean"
}
}
},
"CardDetailUpdate": {
"type": "object",
"required": [
"card_holder_name"
],
"properties": {
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe"
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
}
},
"additionalProperties": false
},
"CardNetwork": {
"type": "string",
"description": "Indicates the card network.",
"enum": [
"Visa",
"Mastercard",
"AmericanExpress",
"JCB",
"DinersClub",
"Discover",
"CartesBancaires",
"UnionPay",
"Interac",
"RuPay",
"Maestro"
]
},
"CardNetworkTokenizeRequest": {
"allOf": [
{
"$ref": "#/components/schemas/TokenizeDataRequest"
},
{
"type": "object",
"required": [
"merchant_id",
"customer"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "Merchant ID associated with the tokenization request",
"example": "merchant_1671528864"
},
"customer": {
"$ref": "#/components/schemas/CustomerDetails"
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payment_method_issuer": {
"type": "string",
"description": "The name of the bank/ provider issuing the payment method to the end user",
"nullable": true
}
}
}
]
},
"CardNetworkTokenizeResponse": {
"type": "object",
"required": [
"customer",
"card_tokenized"
],
"properties": {
"payment_method_response": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodResponse"
}
],
"nullable": true
},
"customer": {
"$ref": "#/components/schemas/CustomerDetails"
},
"card_tokenized": {
"type": "boolean",
"description": "Card network tokenization status"
},
"error_code": {
"type": "string",
"description": "Error code",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error message",
"nullable": true
},
"tokenization_data": {
"allOf": [
{
"$ref": "#/components/schemas/TokenizeDataRequest"
}
],
"nullable": true
}
}
},
"CardNetworkTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeDetailsResponse"
}
],
"nullable": true
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given card network",
"example": [
"stripe",
"adyen"
]
}
}
},
"CardPayout": {
"type": "object",
"required": [
"card_number",
"expiry_month",
"expiry_year",
"card_holder_name"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"expiry_month": {
"type": "string",
"description": "The card's expiry month"
},
"expiry_year": {
"type": "string",
"description": "The card's expiry year"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Doe"
}
}
},
"CardRedirectData": {
"oneOf": [
{
"type": "object",
"required": [
"knet"
],
"properties": {
"knet": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"benefit"
],
"properties": {
"benefit": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"momo_atm"
],
"properties": {
"momo_atm": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"type": "object"
}
}
}
]
},
"CardRedirectResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CardRedirectData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CardResponse": {
"type": "object",
"properties": {
"last4": {
"type": "string",
"nullable": true
},
"card_type": {
"type": "string",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"nullable": true
},
"card_isin": {
"type": "string",
"nullable": true
},
"card_extended_bin": {
"type": "string",
"nullable": true
},
"card_exp_month": {
"type": "string",
"nullable": true
},
"card_exp_year": {
"type": "string",
"nullable": true
},
"card_holder_name": {
"type": "string",
"nullable": true
},
"payment_checks": {
"nullable": true
},
"authentication_data": {
"nullable": true
}
}
},
"CardSpecificFeatures": {
"type": "object",
"required": [
"three_ds",
"no_three_ds",
"supported_card_networks"
],
"properties": {
"three_ds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"no_three_ds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"supported_card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetwork"
},
"description": "List of supported card networks"
}
}
},
"CardTestingGuardConfig": {
"type": "object",
"required": [
"card_ip_blocking_status",
"card_ip_blocking_threshold",
"guest_user_card_blocking_status",
"guest_user_card_blocking_threshold",
"customer_id_blocking_status",
"customer_id_blocking_threshold",
"card_testing_guard_expiry"
],
"properties": {
"card_ip_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"card_ip_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Card IP Blocking for profile"
},
"guest_user_card_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"guest_user_card_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Guest User Card Blocking for profile"
},
"customer_id_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"customer_id_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Customer Id Blocking for profile"
},
"card_testing_guard_expiry": {
"type": "integer",
"format": "int32",
"description": "Determines Redis Expiry for Card Testing Guard for profile"
}
}
},
"CardTestingGuardStatus": {
"type": "string",
"enum": [
"enabled",
"disabled"
]
},
"CardToken": {
"type": "object",
"required": [
"card_holder_name"
],
"properties": {
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"nullable": true
}
}
},
"CardTokenAdditionalData": {
"type": "object",
"required": [
"card_holder_name"
],
"properties": {
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
}
}
},
"CardTokenResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CardTokenAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CardType": {
"type": "string",
"enum": [
"credit",
"debit"
]
},
"CashappQr": {
"type": "object"
},
"ChargeRefunds": {
"type": "object",
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account. Check sub-fields for more details.",
"required": [
"charge_id"
],
"properties": {
"charge_id": {
"type": "string",
"description": "Identifier for charge created for the payment"
},
"revert_platform_fee": {
"type": "boolean",
"description": "Toggle for reverting the application fee that was collected for the payment.\nIf set to false, the funds are pulled from the destination account.",
"nullable": true
},
"revert_transfer": {
"type": "boolean",
"description": "Toggle for reverting the transfer that was made during the charge.\nIf set to false, the funds are pulled from the main platform's account.",
"nullable": true
}
}
},
"ClickToPaySessionResponse": {
"type": "object",
"required": [
"dpa_id",
"dpa_name",
"locale",
"card_brands",
"acquirer_bin",
"acquirer_merchant_id",
"merchant_category_code",
"merchant_country_code",
"transaction_amount",
"transaction_currency_code"
],
"properties": {
"dpa_id": {
"type": "string"
},
"dpa_name": {
"type": "string"
},
"locale": {
"type": "string"
},
"card_brands": {
"type": "array",
"items": {
"type": "string"
}
},
"acquirer_bin": {
"type": "string"
},
"acquirer_merchant_id": {
"type": "string"
},
"merchant_category_code": {
"type": "string"
},
"merchant_country_code": {
"type": "string"
},
"transaction_amount": {
"type": "string",
"example": "38.02"
},
"transaction_currency_code": {
"$ref": "#/components/schemas/Currency"
},
"phone_number": {
"type": "string",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"nullable": true
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceProvider"
}
],
"nullable": true
},
"dpa_client_id": {
"type": "string",
"nullable": true
}
}
},
"ClientSecretResponse": {
"type": "object",
"description": "client_secret for the resource_id mentioned",
"required": [
"id",
"resource_id",
"created_at",
"expires",
"secret"
],
"properties": {
"id": {
"type": "string",
"description": "Client Secret id",
"maxLength": 32,
"minLength": 1
},
"resource_id": {
"$ref": "#/components/schemas/ResourceId"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "time at which this client secret was created"
},
"expires": {
"type": "string",
"format": "date-time",
"description": "time at which this client secret would expire"
},
"secret": {
"type": "string",
"description": "client secret"
}
}
},
"Comparison": {
"type": "object",
"description": "Represents a single comparison condition.",
"required": [
"lhs",
"comparison",
"value",
"metadata"
],
"properties": {
"lhs": {
"type": "string",
"description": "The left hand side which will always be a domain input identifier like \"payment.method.cardtype\""
},
"comparison": {
"$ref": "#/components/schemas/ComparisonType"
},
"value": {
"$ref": "#/components/schemas/ValueType"
},
"metadata": {
"type": "object",
"description": "Additional metadata that the Static Analyzer and Backend does not touch.\nThis can be used to store useful information for the frontend and is required for communication\nbetween the static analyzer and the frontend.",
"additionalProperties": {}
}
}
},
"ComparisonType": {
"type": "string",
"description": "Conditional comparison type",
"enum": [
"equal",
"not_equal",
"less_than",
"less_than_equal",
"greater_than",
"greater_than_equal"
]
},
"Connector": {
"type": "string",
"enum": [
"adyenplatform",
"phonypay",
"fauxpay",
"pretendpay",
"stripe_test",
"adyen_test",
"checkout_test",
"paypal_test",
"aci",
"adyen",
"airwallex",
"authorizedotnet",
"bambora",
"bamboraapac",
"bankofamerica",
"billwerk",
"bitpay",
"bluesnap",
"boku",
"braintree",
"cashtocode",
"chargebee",
"checkout",
"coinbase",
"coingate",
"cryptopay",
"ctp_mastercard",
"ctp_visa",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"dlocal",
"ebanx",
"elavon",
"fiserv",
"fiservemea",
"fiuu",
"forte",
"getnet",
"globalpay",
"globepay",
"gocardless",
"gpayments",
"hipay",
"helcim",
"inespay",
"iatapay",
"itaubank",
"jpmorgan",
"juspaythreedsserver",
"klarna",
"mifinity",
"mollie",
"moneris",
"multisafepay",
"netcetera",
"nexinets",
"nexixpay",
"nmi",
"nomupay",
"noon",
"novalnet",
"nuvei",
"opennode",
"paybox",
"payme",
"payone",
"paypal",
"paystack",
"payu",
"placetopay",
"powertranz",
"prophetpay",
"rapyd",
"razorpay",
"recurly",
"redsys",
"shift4",
"square",
"stax",
"stripe",
"stripebilling",
"taxjar",
"threedsecureio",
"trustpay",
"tsys",
"volt",
"wellsfargo",
"wise",
"worldline",
"worldpay",
"signifyd",
"plaid",
"riskified",
"xendit",
"zen",
"zsl"
]
},
"ConnectorChargeResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_payment"
],
"properties": {
"stripe_split_payment": {
"$ref": "#/components/schemas/StripeChargeResponseData"
}
}
},
{
"type": "object",
"required": [
"adyen_split_payment"
],
"properties": {
"adyen_split_payment": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_payment"
],
"properties": {
"xendit_split_payment": {
"$ref": "#/components/schemas/XenditChargeResponseData"
}
}
}
],
"description": "Charge Information"
},
"ConnectorFeatureMatrixResponse": {
"type": "object",
"required": [
"name",
"supported_payment_methods"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the connector"
},
"display_name": {
"type": "string",
"description": "The display name of the connector",
"nullable": true
},
"description": {
"type": "string",
"description": "The description of the connector",
"nullable": true
},
"category": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentConnectorCategory"
}
],
"nullable": true
},
"supported_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SupportedPaymentMethod"
},
"description": "The list of payment methods supported by the connector"
},
"supported_webhook_flows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventClass"
},
"description": "The list of webhook flows supported by the connector",
"nullable": true
}
}
},
"ConnectorMetadata": {
"type": "object",
"description": "Some connectors like Apple Pay, Airwallex and Noon might require some additional information, find specific details in the child attributes below.",
"properties": {
"apple_pay": {
"allOf": [
{
"$ref": "#/components/schemas/ApplepayConnectorMetadataRequest"
}
],
"nullable": true
},
"airwallex": {
"allOf": [
{
"$ref": "#/components/schemas/AirwallexData"
}
],
"nullable": true
},
"noon": {
"allOf": [
{
"$ref": "#/components/schemas/NoonData"
}
],
"nullable": true
},
"braintree": {
"allOf": [
{
"$ref": "#/components/schemas/BraintreeData"
}
],
"nullable": true
}
}
},
"ConnectorSelection": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"ConnectorStatus": {
"type": "string",
"enum": [
"inactive",
"active"
]
},
"ConnectorTokenDetails": {
"type": "object",
"description": "Token information that can be used to initiate transactions by the merchant.",
"required": [
"token"
],
"properties": {
"token": {
"type": "string",
"description": "A token that can be used to make payments directly with the connector.",
"example": "pm_9UhMqBMEOooRIvJFFdeW"
},
"connector_token_request_reference_id": {
"type": "string",
"description": "The reference id sent to the connector when creating the token",
"nullable": true
}
}
},
"ConnectorType": {
"type": "string",
"description": "Type of the Connector for the financial use case. Could range from Payments to Accounting to Banking.",
"enum": [
"payment_processor",
"payment_vas",
"fin_operations",
"fiz_operations",
"networks",
"banking_entities",
"non_banking_finance",
"payout_processor",
"payment_method_auth",
"authentication_processor",
"tax_processor",
"billing_processor"
]
},
"ConnectorVolumeSplit": {
"type": "object",
"required": [
"connector",
"split"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
},
"split": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
"ConnectorWalletDetails": {
"type": "object",
"properties": {
"apple_pay_combined": {
"type": "object",
"description": "This field contains the Apple Pay certificates and credentials for iOS and Web Apple Pay flow",
"nullable": true
},
"apple_pay": {
"type": "object",
"description": "This field is for our legacy Apple Pay flow that contains the Apple Pay certificates and credentials for only iOS Apple Pay flow",
"nullable": true
},
"samsung_pay": {
"type": "object",
"description": "This field contains the Samsung Pay certificates and credentials",
"nullable": true
},
"paze": {
"type": "object",
"description": "This field contains the Paze certificates and credentials",
"nullable": true
},
"google_pay": {
"type": "object",
"description": "This field contains the Google Pay certificates and credentials",
"nullable": true
}
},
"additionalProperties": false
},
"CountryAlpha2": {
"type": "string",
"enum": [
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BQ",
"BA",
"BW",
"BV",
"BR",
"IO",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"VA",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MK",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"SS",
"ES",
"LK",
"SD",
"SR",
"SJ",
"SZ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UG",
"UA",
"AE",
"GB",
"UM",
"UY",
"UZ",
"VU",
"VE",
"VN",
"VG",
"VI",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"US"
]
},
"CountryAlpha3": {
"type": "string",
"enum": [
"AFG",
"ALA",
"ALB",
"DZA",
"ASM",
"AND",
"AGO",
"AIA",
"ATA",
"ATG",
"ARG",
"ARM",
"ABW",
"AUS",
"AUT",
"AZE",
"BHS",
"BHR",
"BGD",
"BRB",
"BLR",
"BEL",
"BLZ",
"BEN",
"BMU",
"BTN",
"BOL",
"BES",
"BIH",
"BWA",
"BVT",
"BRA",
"IOT",
"BRN",
"BGR",
"BFA",
"BDI",
"CPV",
"KHM",
"CMR",
"CAN",
"CYM",
"CAF",
"TCD",
"CHL",
"CHN",
"CXR",
"CCK",
"COL",
"COM",
"COG",
"COD",
"COK",
"CRI",
"CIV",
"HRV",
"CUB",
"CUW",
"CYP",
"CZE",
"DNK",
"DJI",
"DMA",
"DOM",
"ECU",
"EGY",
"SLV",
"GNQ",
"ERI",
"EST",
"ETH",
"FLK",
"FRO",
"FJI",
"FIN",
"FRA",
"GUF",
"PYF",
"ATF",
"GAB",
"GMB",
"GEO",
"DEU",
"GHA",
"GIB",
"GRC",
"GRL",
"GRD",
"GLP",
"GUM",
"GTM",
"GGY",
"GIN",
"GNB",
"GUY",
"HTI",
"HMD",
"VAT",
"HND",
"HKG",
"HUN",
"ISL",
"IND",
"IDN",
"IRN",
"IRQ",
"IRL",
"IMN",
"ISR",
"ITA",
"JAM",
"JPN",
"JEY",
"JOR",
"KAZ",
"KEN",
"KIR",
"PRK",
"KOR",
"KWT",
"KGZ",
"LAO",
"LVA",
"LBN",
"LSO",
"LBR",
"LBY",
"LIE",
"LTU",
"LUX",
"MAC",
"MKD",
"MDG",
"MWI",
"MYS",
"MDV",
"MLI",
"MLT",
"MHL",
"MTQ",
"MRT",
"MUS",
"MYT",
"MEX",
"FSM",
"MDA",
"MCO",
"MNG",
"MNE",
"MSR",
"MAR",
"MOZ",
"MMR",
"NAM",
"NRU",
"NPL",
"NLD",
"NCL",
"NZL",
"NIC",
"NER",
"NGA",
"NIU",
"NFK",
"MNP",
"NOR",
"OMN",
"PAK",
"PLW",
"PSE",
"PAN",
"PNG",
"PRY",
"PER",
"PHL",
"PCN",
"POL",
"PRT",
"PRI",
"QAT",
"REU",
"ROU",
"RUS",
"RWA",
"BLM",
"SHN",
"KNA",
"LCA",
"MAF",
"SPM",
"VCT",
"WSM",
"SMR",
"STP",
"SAU",
"SEN",
"SRB",
"SYC",
"SLE",
"SGP",
"SXM",
"SVK",
"SVN",
"SLB",
"SOM",
"ZAF",
"SGS",
"SSD",
"ESP",
"LKA",
"SDN",
"SUR",
"SJM",
"SWZ",
"SWE",
"CHE",
"SYR",
"TWN",
"TJK",
"TZA",
"THA",
"TLS",
"TGO",
"TKL",
"TON",
"TTO",
"TUN",
"TUR",
"TKM",
"TCA",
"TUV",
"UGA",
"UKR",
"ARE",
"GBR",
"USA",
"UMI",
"URY",
"UZB",
"VUT",
"VEN",
"VNM",
"VGB",
"VIR",
"WLF",
"ESH",
"YEM",
"ZMB",
"ZWE"
]
},
"CreateApiKeyRequest": {
"type": "object",
"description": "The request body for creating an API Key.",
"required": [
"name",
"expiration"
],
"properties": {
"name": {
"type": "string",
"description": "A unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "A description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
},
"additionalProperties": false
},
"CreateApiKeyResponse": {
"type": "object",
"description": "The response body for creating an API Key.",
"required": [
"key_id",
"merchant_id",
"name",
"api_key",
"created",
"expiration"
],
"properties": {
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"name": {
"type": "string",
"description": "The unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "The description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"api_key": {
"type": "string",
"description": "The plaintext API Key used for server-side API access. Ensure you store the API Key\nsecurely as you will not be able to see it again.",
"maxLength": 128
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which the API Key was created.",
"example": "2022-09-10T10:11:12Z"
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
}
},
"CryptoData": {
"type": "object",
"properties": {
"pay_currency": {
"type": "string",
"nullable": true
},
"network": {
"type": "string",
"nullable": true
}
}
},
"CryptoResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CryptoData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CtpServiceDetails": {
"type": "object",
"properties": {
"merchant_transaction_id": {
"type": "string",
"description": "merchant transaction id",
"nullable": true
},
"correlation_id": {
"type": "string",
"description": "network transaction correlation id",
"nullable": true
},
"x_src_flow_id": {
"type": "string",
"description": "session transaction flow id",
"nullable": true
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceProvider"
}
],
"nullable": true
},
"encypted_payload": {
"type": "string",
"description": "Encrypted payload",
"nullable": true
}
}
},
"CtpServiceProvider": {
"type": "string",
"enum": [
"visa",
"mastercard"
]
},
"Currency": {
"type": "string",
"description": "The three letter ISO currency code in uppercase. Eg: 'USD' for the United States Dollar.",
"enum": [
"AED",
"AFN",
"ALL",
"AMD",
"ANG",
"AOA",
"ARS",
"AUD",
"AWG",
"AZN",
"BAM",
"BBD",
"BDT",
"BGN",
"BHD",
"BIF",
"BMD",
"BND",
"BOB",
"BRL",
"BSD",
"BTN",
"BWP",
"BYN",
"BZD",
"CAD",
"CDF",
"CHF",
"CLF",
"CLP",
"CNY",
"COP",
"CRC",
"CUC",
"CUP",
"CVE",
"CZK",
"DJF",
"DKK",
"DOP",
"DZD",
"EGP",
"ERN",
"ETB",
"EUR",
"FJD",
"FKP",
"GBP",
"GEL",
"GHS",
"GIP",
"GMD",
"GNF",
"GTQ",
"GYD",
"HKD",
"HNL",
"HRK",
"HTG",
"HUF",
"IDR",
"ILS",
"INR",
"IQD",
"IRR",
"ISK",
"JMD",
"JOD",
"JPY",
"KES",
"KGS",
"KHR",
"KMF",
"KPW",
"KRW",
"KWD",
"KYD",
"KZT",
"LAK",
"LBP",
"LKR",
"LRD",
"LSL",
"LYD",
"MAD",
"MDL",
"MGA",
"MKD",
"MMK",
"MNT",
"MOP",
"MRU",
"MUR",
"MVR",
"MWK",
"MXN",
"MYR",
"MZN",
"NAD",
"NGN",
"NIO",
"NOK",
"NPR",
"NZD",
"OMR",
"PAB",
"PEN",
"PGK",
"PHP",
"PKR",
"PLN",
"PYG",
"QAR",
"RON",
"RSD",
"RUB",
"RWF",
"SAR",
"SBD",
"SCR",
"SDG",
"SEK",
"SGD",
"SHP",
"SLE",
"SLL",
"SOS",
"SRD",
"SSP",
"STD",
"STN",
"SVC",
"SYP",
"SZL",
"THB",
"TJS",
"TMT",
"TND",
"TOP",
"TRY",
"TTD",
"TWD",
"TZS",
"UAH",
"UGX",
"USD",
"UYU",
"UZS",
"VES",
"VND",
"VUV",
"WST",
"XAF",
"XCD",
"XOF",
"XPF",
"YER",
"ZAR",
"ZMW",
"ZWL"
]
},
"CustomerAcceptance": {
"type": "object",
"description": "This \"CustomerAcceptance\" object is passed during Payments-Confirm request, it enlists the type, time, and mode of acceptance properties related to an acceptance done by the customer. The customer_acceptance sub object is usually passed by the SDK or client.",
"required": [
"acceptance_type"
],
"properties": {
"acceptance_type": {
"$ref": "#/components/schemas/AcceptanceType"
},
"accepted_at": {
"type": "string",
"format": "date-time",
"description": "Specifying when the customer acceptance was provided",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"online": {
"allOf": [
{
"$ref": "#/components/schemas/OnlineMandate"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"CustomerDeleteResponse": {
"type": "object",
"required": [
"id",
"merchant_reference_id",
"customer_deleted",
"address_deleted",
"payment_methods_deleted"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"merchant_reference_id": {
"type": "string",
"description": "The identifier for the customer object",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"customer_deleted": {
"type": "boolean",
"description": "Whether customer was deleted or not",
"example": false
},
"address_deleted": {
"type": "boolean",
"description": "Whether address was deleted or not",
"example": false
},
"payment_methods_deleted": {
"type": "boolean",
"description": "Whether payment methods deleted or not",
"example": false
}
}
},
"CustomerDetails": {
"type": "object",
"description": "Passing this object creates a new customer or attaches an existing customer to the payment",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "The identifier for the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 10
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer's phone number",
"example": "+1",
"nullable": true,
"maxLength": 2
}
}
},
"CustomerDetailsResponse": {
"type": "object",
"description": "Details of customer attached to this payment",
"properties": {
"name": {
"type": "string",
"description": "The customer's name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 10
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer's phone number",
"example": "+1",
"nullable": true,
"maxLength": 2
}
}
},
"CustomerPaymentMethod": {
"type": "object",
"required": [
"id",
"customer_id",
"payment_method_type",
"payment_method_subtype",
"recurring_enabled",
"created",
"requires_cvv",
"is_default",
"psp_tokenization_enabled"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the payment method.",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"recurring_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for recurring payments",
"example": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodListData"
}
],
"nullable": true
},
"bank": {
"allOf": [
{
"$ref": "#/components/schemas/MaskedBankDetails"
}
],
"nullable": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was created",
"example": "2023-01-18T11:04:09.922Z"
},
"requires_cvv": {
"type": "boolean",
"description": "Whether this payment method requires CVV to be collected",
"example": true
},
"last_used_at": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was last used",
"example": "2024-02-24T11:04:09.922Z"
},
"is_default": {
"type": "boolean",
"description": "Indicates if the payment method has been set to default or not",
"example": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"network_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenResponse"
}
],
"nullable": true
},
"psp_tokenization_enabled": {
"type": "boolean",
"description": "Whether psp_tokenization is enabled for the payment_method, this will be true when at least\none multi-use token with status `Active` is available for the payment method"
}
}
},
"CustomerPaymentMethodsListResponse": {
"type": "object",
"required": [
"customer_payment_methods"
],
"properties": {
"customer_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerPaymentMethod"
},
"description": "List of payment methods for customer"
}
}
},
"CustomerRequest": {
"type": "object",
"description": "The customer details",
"required": [
"name",
"email"
],
"properties": {
"merchant_reference_id": {
"type": "string",
"description": "The merchant identifier for the customer object.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"default_billing_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"default_shipping_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
}
},
"additionalProperties": false
},
"CustomerResponse": {
"type": "object",
"required": [
"id",
"merchant_reference_id",
"created_at"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"merchant_reference_id": {
"type": "string",
"description": "The identifier for the customer object",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"connector_customer_ids": {
"type": "object",
"description": "Connector specific customer reference ids",
"nullable": true
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"default_billing_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"default_shipping_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the customer was created",
"example": "2023-01-18T11:04:09.922Z"
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
},
"default_payment_method_id": {
"type": "string",
"description": "The identifier for the default payment method.",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8",
"nullable": true,
"maxLength": 64
}
}
},
"CustomerUpdateRequest": {
"type": "object",
"required": [
"name",
"email"
],
"properties": {
"merchant_reference_id": {
"type": "string",
"description": "The merchant identifier for the customer object.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"default_billing_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"default_shipping_address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
},
"default_payment_method_id": {
"type": "string",
"description": "The unique identifier of the payment method",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8",
"nullable": true
}
},
"additionalProperties": false
},
"DecoupledAuthenticationType": {
"type": "string",
"enum": [
"challenge",
"frictionless"
]
},
"DeviceChannel": {
"type": "string",
"description": "Device Channel indicating whether request is coming from App or Browser",
"enum": [
"APP",
"BRW"
]
},
"DisplayAmountOnSdk": {
"type": "object",
"required": [
"net_amount",
"order_tax_amount",
"shipping_cost"
],
"properties": {
"net_amount": {
"type": "string",
"description": "net amount = amount + order_tax_amount + shipping_cost"
},
"order_tax_amount": {
"type": "string",
"description": "order tax amount calculated by tax connectors"
},
"shipping_cost": {
"type": "string",
"description": "shipping cost for the order"
}
}
},
"DisputeResponse": {
"type": "object",
"required": [
"dispute_id",
"payment_id",
"attempt_id",
"amount",
"currency",
"dispute_stage",
"dispute_status",
"connector",
"connector_status",
"connector_dispute_id",
"created_at"
],
"properties": {
"dispute_id": {
"type": "string",
"description": "The identifier for dispute"
},
"payment_id": {
"type": "string",
"description": "The identifier for payment_intent"
},
"attempt_id": {
"type": "string",
"description": "The identifier for payment_attempt"
},
"amount": {
"type": "string",
"description": "The dispute amount"
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"dispute_stage": {
"$ref": "#/components/schemas/DisputeStage"
},
"dispute_status": {
"$ref": "#/components/schemas/DisputeStatus"
},
"connector": {
"type": "string",
"description": "connector to which dispute is associated with"
},
"connector_status": {
"type": "string",
"description": "Status of the dispute sent by connector"
},
"connector_dispute_id": {
"type": "string",
"description": "Dispute id sent by connector"
},
"connector_reason": {
"type": "string",
"description": "Reason of dispute sent by connector",
"nullable": true
},
"connector_reason_code": {
"type": "string",
"description": "Reason code of dispute sent by connector",
"nullable": true
},
"challenge_required_by": {
"type": "string",
"format": "date-time",
"description": "Evidence deadline of dispute sent by connector",
"nullable": true
},
"connector_created_at": {
"type": "string",
"format": "date-time",
"description": "Dispute created time sent by connector",
"nullable": true
},
"connector_updated_at": {
"type": "string",
"format": "date-time",
"description": "Dispute updated time sent by connector",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Time at which dispute is received"
},
"profile_id": {
"type": "string",
"description": "The `profile_id` associated with the dispute",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "The `merchant_connector_id` of the connector / processor through which the dispute was processed",
"nullable": true
}
}
},
"DisputeResponsePaymentsRetrieve": {
"type": "object",
"required": [
"dispute_id",
"dispute_stage",
"dispute_status",
"connector_status",
"connector_dispute_id",
"created_at"
],
"properties": {
"dispute_id": {
"type": "string",
"description": "The identifier for dispute"
},
"dispute_stage": {
"$ref": "#/components/schemas/DisputeStage"
},
"dispute_status": {
"$ref": "#/components/schemas/DisputeStatus"
},
"connector_status": {
"type": "string",
"description": "Status of the dispute sent by connector"
},
"connector_dispute_id": {
"type": "string",
"description": "Dispute id sent by connector"
},
"connector_reason": {
"type": "string",
"description": "Reason of dispute sent by connector",
"nullable": true
},
"connector_reason_code": {
"type": "string",
"description": "Reason code of dispute sent by connector",
"nullable": true
},
"challenge_required_by": {
"type": "string",
"format": "date-time",
"description": "Evidence deadline of dispute sent by connector",
"nullable": true
},
"connector_created_at": {
"type": "string",
"format": "date-time",
"description": "Dispute created time sent by connector",
"nullable": true
},
"connector_updated_at": {
"type": "string",
"format": "date-time",
"description": "Dispute updated time sent by connector",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Time at which dispute is received"
}
}
},
"DisputeStage": {
"type": "string",
"description": "Stage of the dispute",
"enum": [
"pre_dispute",
"dispute",
"pre_arbitration"
]
},
"DisputeStatus": {
"type": "string",
"description": "Status of the dispute",
"enum": [
"dispute_opened",
"dispute_expired",
"dispute_accepted",
"dispute_cancelled",
"dispute_challenged",
"dispute_won",
"dispute_lost"
]
},
"DokuBankTransferInstructions": {
"type": "object",
"required": [
"expires_at",
"reference",
"instructions_url"
],
"properties": {
"expires_at": {
"type": "string",
"example": "1707091200000"
},
"reference": {
"type": "string",
"example": "122385736258"
},
"instructions_url": {
"type": "string"
}
}
},
"DokuBillingDetails": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Doku",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Doku",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Doku billing",
"example": "example@me.com",
"nullable": true
}
}
},
"ElementPosition": {
"type": "string",
"enum": [
"left",
"top left",
"top",
"top right",
"right",
"bottom right",
"bottom",
"bottom left",
"center"
]
},
"ElementSize": {
"oneOf": [
{
"type": "object",
"required": [
"Variants"
],
"properties": {
"Variants": {
"$ref": "#/components/schemas/SizeVariants"
}
}
},
{
"type": "object",
"required": [
"Percentage"
],
"properties": {
"Percentage": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
{
"type": "object",
"required": [
"Pixels"
],
"properties": {
"Pixels": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
}
]
},
"EnablePaymentLinkRequest": {
"type": "string",
"description": "Whether payment link is requested to be enabled or not for this transaction",
"enum": [
"Enable",
"Skip"
]
},
"EnabledPaymentMethod": {
"type": "object",
"description": "Object for EnabledPaymentMethod",
"required": [
"payment_method",
"payment_method_types"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "An array of associated payment method types",
"uniqueItems": true
}
}
},
"ErrorCategory": {
"type": "string",
"enum": [
"frm_decline",
"processor_downtime",
"processor_decline_unauthorized",
"issue_with_payment_method",
"processor_decline_incorrect_data"
]
},
"ErrorDetails": {
"type": "object",
"description": "Error details for the payment",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string",
"description": "The error code"
},
"message": {
"type": "string",
"description": "The error message"
},
"unified_code": {
"type": "string",
"description": "The unified error code across all connectors.\nThis can be relied upon for taking decisions based on the error.",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "The unified error message across all connectors.\nIf there is a translation available, this will have the translated message",
"nullable": true
},
"network_advice_code": {
"type": "string",
"description": "This field can be returned for both approved and refused Mastercard payments.\nThis code provides additional information about the type of transaction or the reason why the payment failed.\nIf the payment failed, the network advice code gives guidance on if and when you can retry the payment.",
"nullable": true
},
"network_decline_code": {
"type": "string",
"description": "For card errors resulting from a card issuer decline, a brand specific 2, 3, or 4 digit code which indicates the reason the authorization failed.",
"nullable": true
},
"network_error_message": {
"type": "string",
"description": "A string indicating how to proceed with an network error if payment gateway provide one. This is used to understand the network error code better.",
"nullable": true
}
}
},
"EventClass": {
"type": "string",
"enum": [
"payments",
"refunds",
"disputes",
"mandates",
"payouts"
]
},
"EventListItemResponse": {
"type": "object",
"description": "The response body for each item when listing events.",
"required": [
"event_id",
"merchant_id",
"profile_id",
"object_id",
"event_type",
"event_class",
"initial_attempt_id",
"created"
],
"properties": {
"event_id": {
"type": "string",
"description": "The identifier for the Event.",
"example": "evt_018e31720d1b7a2b82677d3032cab959",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"profile_id": {
"type": "string",
"description": "The identifier for the Business Profile.",
"example": "SqB0zwDGR5wHppWf0bx7GKr1f2",
"maxLength": 64
},
"object_id": {
"type": "string",
"description": "The identifier for the object (Payment Intent ID, Refund ID, etc.)",
"example": "QHrfd5LUDdZaKtAjdJmMu0dMa1",
"maxLength": 64
},
"event_type": {
"$ref": "#/components/schemas/EventType"
},
"event_class": {
"$ref": "#/components/schemas/EventClass"
},
"is_delivery_successful": {
"type": "boolean",
"description": "Indicates whether the webhook was ultimately delivered or not.",
"nullable": true
},
"initial_attempt_id": {
"type": "string",
"description": "The identifier for the initial delivery attempt. This will be the same as `event_id` for\nthe initial delivery attempt.",
"example": "evt_018e31720d1b7a2b82677d3032cab959",
"maxLength": 64
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time at which the event was created.",
"example": "2022-09-10T10:11:12Z"
}
}
},
"EventRetrieveResponse": {
"allOf": [
{
"$ref": "#/components/schemas/EventListItemResponse"
},
{
"type": "object",
"required": [
"request",
"response"
],
"properties": {
"request": {
"$ref": "#/components/schemas/OutgoingWebhookRequestContent"
},
"response": {
"$ref": "#/components/schemas/OutgoingWebhookResponseContent"
},
"delivery_attempt": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDeliveryAttempt"
}
],
"nullable": true
}
}
}
],
"description": "The response body for retrieving an event."
},
"EventType": {
"type": "string",
"enum": [
"payment_succeeded",
"payment_failed",
"payment_processing",
"payment_cancelled",
"payment_authorized",
"payment_captured",
"action_required",
"refund_succeeded",
"refund_failed",
"dispute_opened",
"dispute_expired",
"dispute_accepted",
"dispute_cancelled",
"dispute_challenged",
"dispute_won",
"dispute_lost",
"mandate_active",
"mandate_revoked",
"payout_success",
"payout_failed",
"payout_initiated",
"payout_processing",
"payout_cancelled",
"payout_expired",
"payout_reversed"
]
},
"ExtendedCardInfo": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"card_cvc"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
}
}
},
"ExtendedCardInfoConfig": {
"type": "object",
"required": [
"public_key"
],
"properties": {
"public_key": {
"type": "string",
"description": "Merchant public key"
},
"ttl_in_secs": {
"type": "integer",
"format": "int32",
"description": "TTL for extended card info",
"default": 900,
"maximum": 7200,
"minimum": 0
}
}
},
"ExtendedCardInfoResponse": {
"type": "object",
"required": [
"payload"
],
"properties": {
"payload": {
"type": "string"
}
}
},
"External3dsAuthenticationRequest": {
"type": "string",
"description": "Whether 3ds authentication is requested or not",
"enum": [
"Enable",
"Skip"
]
},
"ExternalAuthenticationDetailsResponse": {
"type": "object",
"description": "Details of external authentication",
"required": [
"status"
],
"properties": {
"authentication_flow": {
"allOf": [
{
"$ref": "#/components/schemas/DecoupledAuthenticationType"
}
],
"nullable": true
},
"electronic_commerce_indicator": {
"type": "string",
"description": "Electronic Commerce Indicator (eci)",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/AuthenticationStatus"
},
"ds_transaction_id": {
"type": "string",
"description": "DS Transaction ID",
"nullable": true
},
"version": {
"type": "string",
"description": "Message Version",
"nullable": true
},
"error_code": {
"type": "string",
"description": "Error Code",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error Message",
"nullable": true
}
}
},
"FeatureMatrixListResponse": {
"type": "object",
"required": [
"connector_count",
"connectors"
],
"properties": {
"connector_count": {
"type": "integer",
"description": "The number of connectors included in the response",
"minimum": 0
},
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorFeatureMatrixResponse"
}
}
}
},
"FeatureMatrixRequest": {
"type": "object",
"properties": {
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"nullable": true
}
}
},
"FeatureMetadata": {
"type": "object",
"description": "additional data that might be required by hyperswitch",
"properties": {
"redirect_response": {
"allOf": [
{
"$ref": "#/components/schemas/RedirectResponse"
}
],
"nullable": true
},
"search_tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional tags to be used for global search",
"nullable": true
},
"apple_pay_recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayRecurringDetails"
}
],
"nullable": true
},
"payment_revenue_recovery_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentRevenueRecoveryMetadata"
}
],
"nullable": true
}
}
},
"FeatureStatus": {
"type": "string",
"description": "The status of the feature",
"enum": [
"not_supported",
"supported"
]
},
"FieldType": {
"oneOf": [
{
"type": "string",
"enum": [
"user_card_number"
]
},
{
"type": "string",
"enum": [
"user_card_expiry_month"
]
},
{
"type": "string",
"enum": [
"user_card_expiry_year"
]
},
{
"type": "string",
"enum": [
"user_card_cvc"
]
},
{
"type": "string",
"enum": [
"user_card_network"
]
},
{
"type": "string",
"enum": [
"user_full_name"
]
},
{
"type": "string",
"enum": [
"user_email_address"
]
},
{
"type": "string",
"enum": [
"user_phone_number"
]
},
{
"type": "string",
"enum": [
"user_phone_number_country_code"
]
},
{
"type": "object",
"required": [
"user_country"
],
"properties": {
"user_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "object",
"required": [
"user_currency"
],
"properties": {
"user_currency": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_crypto_currency_network"
]
},
{
"type": "string",
"enum": [
"user_billing_name"
]
},
{
"type": "string",
"enum": [
"user_address_line1"
]
},
{
"type": "string",
"enum": [
"user_address_line2"
]
},
{
"type": "string",
"enum": [
"user_address_city"
]
},
{
"type": "string",
"enum": [
"user_address_pincode"
]
},
{
"type": "string",
"enum": [
"user_address_state"
]
},
{
"type": "object",
"required": [
"user_address_country"
],
"properties": {
"user_address_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_shipping_name"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_line1"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_line2"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_city"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_pincode"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_state"
]
},
{
"type": "object",
"required": [
"user_shipping_address_country"
],
"properties": {
"user_shipping_address_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_social_security_number"
]
},
{
"type": "string",
"enum": [
"user_blik_code"
]
},
{
"type": "string",
"enum": [
"user_bank"
]
},
{
"type": "string",
"enum": [
"user_bank_account_number"
]
},
{
"type": "string",
"enum": [
"text"
]
},
{
"type": "object",
"required": [
"drop_down"
],
"properties": {
"drop_down": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_date_of_birth"
]
},
{
"type": "string",
"enum": [
"user_vpa_id"
]
},
{
"type": "object",
"required": [
"language_preference"
],
"properties": {
"language_preference": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_pix_key"
]
},
{
"type": "string",
"enum": [
"user_cpf"
]
},
{
"type": "string",
"enum": [
"user_cnpj"
]
},
{
"type": "string",
"enum": [
"user_iban"
]
},
{
"type": "string",
"enum": [
"user_bsb_number"
]
},
{
"type": "string",
"enum": [
"user_bank_sort_code"
]
},
{
"type": "string",
"enum": [
"user_bank_routing_number"
]
},
{
"type": "string",
"enum": [
"user_msisdn"
]
},
{
"type": "string",
"enum": [
"user_client_identifier"
]
},
{
"type": "string",
"enum": [
"order_details_product_name"
]
}
],
"description": "Possible field type of required fields in payment_method_data"
},
"ForceSync": {
"type": "string",
"enum": [
"true",
"false"
]
},
"FrmAction": {
"type": "string",
"enum": [
"cancel_txn",
"auto_refund",
"manual_review"
]
},
"FrmConfigs": {
"type": "object",
"description": "Details of FrmConfigs are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"gateway",
"payment_methods"
],
"properties": {
"gateway": {
"$ref": "#/components/schemas/ConnectorType"
},
"payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmPaymentMethod"
},
"description": "payment methods that can be used in the payment"
}
},
"additionalProperties": false
},
"FrmMessage": {
"type": "object",
"description": "frm message is an object sent inside the payments response...when frm is invoked, its value is Some(...), else its None",
"required": [
"frm_name"
],
"properties": {
"frm_name": {
"type": "string"
},
"frm_transaction_id": {
"type": "string",
"nullable": true
},
"frm_transaction_type": {
"type": "string",
"nullable": true
},
"frm_status": {
"type": "string",
"nullable": true
},
"frm_score": {
"type": "integer",
"format": "int32",
"nullable": true
},
"frm_reason": {
"nullable": true
},
"frm_error": {
"type": "string",
"nullable": true
}
}
},
"FrmPaymentMethod": {
"type": "object",
"description": "Details of FrmPaymentMethod are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"payment_method"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmPaymentMethodType"
},
"description": "payment method types(credit, debit) that can be used in the payment. This field is deprecated. It has not been removed to provide backward compatibility.",
"nullable": true
},
"flow": {
"allOf": [
{
"$ref": "#/components/schemas/FrmPreferredFlowTypes"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"FrmPaymentMethodType": {
"type": "object",
"description": "Details of FrmPaymentMethodType are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"payment_method_type",
"card_networks",
"flow",
"action"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"card_networks": {
"$ref": "#/components/schemas/CardNetwork"
},
"flow": {
"$ref": "#/components/schemas/FrmPreferredFlowTypes"
},
"action": {
"$ref": "#/components/schemas/FrmAction"
}
},
"additionalProperties": false
},
"FrmPreferredFlowTypes": {
"type": "string",
"enum": [
"pre",
"post"
]
},
"FutureUsage": {
"type": "string",
"description": "Indicates that you intend to make future payments with the payment methods used for this Payment. Providing this parameter will attach the payment method to the Customer, if present, after the Payment is confirmed and any required actions from the user are complete.\n- On_session - Payment method saved only at hyperswitch when consent is provided by the user. CVV will asked during the returning user payment\n- Off_session - Payment method saved at both hyperswitch and Processor when consent is provided by the user. No input is required during the returning user payment.",
"enum": [
"off_session",
"on_session"
]
},
"GcashRedirection": {
"type": "object"
},
"GenericLinkUiConfig": {
"type": "object",
"description": "Object for GenericLinkUiConfig",
"properties": {
"logo": {
"type": "string",
"description": "Merchant's display logo",
"example": "https://hyperswitch.io/favicon.ico",
"nullable": true,
"maxLength": 255
},
"merchant_name": {
"type": "string",
"description": "Custom merchant name for the link",
"example": "Hyperswitch",
"nullable": true,
"maxLength": 255
},
"theme": {
"type": "string",
"description": "Primary color to be used in the form represented in hex format",
"example": "#4285F4",
"nullable": true,
"maxLength": 255
}
}
},
"GiftCardAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"givex"
],
"properties": {
"givex": {
"$ref": "#/components/schemas/GivexGiftCardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"pay_safe_card"
],
"properties": {
"pay_safe_card": {
"type": "object"
}
}
}
]
},
"GiftCardData": {
"oneOf": [
{
"type": "object",
"required": [
"givex"
],
"properties": {
"givex": {
"$ref": "#/components/schemas/GiftCardDetails"
}
}
},
{
"type": "object",
"required": [
"pay_safe_card"
],
"properties": {
"pay_safe_card": {
"type": "object"
}
}
}
]
},
"GiftCardDetails": {
"type": "object",
"required": [
"number",
"cvc"
],
"properties": {
"number": {
"type": "string",
"description": "The gift card number"
},
"cvc": {
"type": "string",
"description": "The card verification code."
}
}
},
"GiftCardResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GiftCardAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"GiropayBankRedirectAdditionalData": {
"type": "object",
"properties": {
"bic": {
"type": "string",
"description": "Masked bank account bic code",
"nullable": true
},
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"nullable": true
},
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
},
"GivexGiftCardAdditionalData": {
"type": "object",
"required": [
"last4"
],
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the gift card number",
"example": "4242"
}
}
},
"GoPayRedirection": {
"type": "object"
},
"GooglePayAssuranceDetails": {
"type": "object",
"required": [
"card_holder_authenticated",
"account_verified"
],
"properties": {
"card_holder_authenticated": {
"type": "boolean",
"description": "indicates that Cardholder possession validation has been performed"
},
"account_verified": {
"type": "boolean",
"description": "indicates that identification and verifications (ID&V) was performed"
}
}
},
"GooglePayPaymentMethodInfo": {
"type": "object",
"required": [
"card_network",
"card_details"
],
"properties": {
"card_network": {
"type": "string",
"description": "The name of the card network"
},
"card_details": {
"type": "string",
"description": "The details of the card"
},
"assurance_details": {
"allOf": [
{
"$ref": "#/components/schemas/GooglePayAssuranceDetails"
}
],
"nullable": true
}
}
},
"GooglePayRedirectData": {
"type": "object"
},
"GooglePaySessionResponse": {
"type": "object",
"required": [
"merchant_info",
"shipping_address_required",
"email_required",
"shipping_address_parameters",
"allowed_payment_methods",
"transaction_info",
"delayed_session_token",
"connector",
"sdk_next_action"
],
"properties": {
"merchant_info": {
"$ref": "#/components/schemas/GpayMerchantInfo"
},
"shipping_address_required": {
"type": "boolean",
"description": "Is shipping address required"
},
"email_required": {
"type": "boolean",
"description": "Is email required"
},
"shipping_address_parameters": {
"$ref": "#/components/schemas/GpayShippingAddressParameters"
},
"allowed_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GpayAllowedPaymentMethods"
},
"description": "List of the allowed payment meythods"
},
"transaction_info": {
"$ref": "#/components/schemas/GpayTransactionInfo"
},
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"connector": {
"type": "string",
"description": "The name of the connector"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
},
"secrets": {
"allOf": [
{
"$ref": "#/components/schemas/SecretInfoToInitiateSdk"
}
],
"nullable": true
}
}
},
"GooglePayThirdPartySdk": {
"type": "object",
"required": [
"delayed_session_token",
"connector",
"sdk_next_action"
],
"properties": {
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"connector": {
"type": "string",
"description": "The name of the connector"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
}
}
},
"GooglePayThirdPartySdkData": {
"type": "object"
},
"GooglePayWalletData": {
"type": "object",
"required": [
"type",
"description",
"info",
"tokenization_data"
],
"properties": {
"type": {
"type": "string",
"description": "The type of payment method"
},
"description": {
"type": "string",
"description": "User-facing message to describe the payment method that funds this transaction."
},
"info": {
"$ref": "#/components/schemas/GooglePayPaymentMethodInfo"
},
"tokenization_data": {
"$ref": "#/components/schemas/GpayTokenizationData"
}
}
},
"GpayAllowedMethodsParameters": {
"type": "object",
"required": [
"allowed_auth_methods",
"allowed_card_networks"
],
"properties": {
"allowed_auth_methods": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of allowed auth methods (ex: 3DS, No3DS, PAN_ONLY etc)"
},
"allowed_card_networks": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of allowed card networks (ex: AMEX,JCB etc)"
},
"billing_address_required": {
"type": "boolean",
"description": "Is billing address required",
"nullable": true
},
"billing_address_parameters": {
"allOf": [
{
"$ref": "#/components/schemas/GpayBillingAddressParameters"
}
],
"nullable": true
},
"assurance_details_required": {
"type": "boolean",
"description": "Whether assurance details are required",
"nullable": true
}
}
},
"GpayAllowedPaymentMethods": {
"type": "object",
"required": [
"type",
"parameters",
"tokenization_specification"
],
"properties": {
"type": {
"type": "string",
"description": "The type of payment method"
},
"parameters": {
"$ref": "#/components/schemas/GpayAllowedMethodsParameters"
},
"tokenization_specification": {
"$ref": "#/components/schemas/GpayTokenizationSpecification"
}
}
},
"GpayBillingAddressFormat": {
"type": "string",
"enum": [
"FULL",
"MIN"
]
},
"GpayBillingAddressParameters": {
"type": "object",
"required": [
"phone_number_required",
"format"
],
"properties": {
"phone_number_required": {
"type": "boolean",
"description": "Is billing phone number required"
},
"format": {
"$ref": "#/components/schemas/GpayBillingAddressFormat"
}
}
},
"GpayMerchantInfo": {
"type": "object",
"required": [
"merchant_name"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant Identifier that needs to be passed while invoking Gpay SDK",
"nullable": true
},
"merchant_name": {
"type": "string",
"description": "The name of the merchant that needs to be displayed on Gpay PopUp"
}
}
},
"GpaySessionTokenResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/GooglePayThirdPartySdk"
},
{
"$ref": "#/components/schemas/GooglePaySessionResponse"
}
]
},
"GpayShippingAddressParameters": {
"type": "object",
"required": [
"phone_number_required"
],
"properties": {
"phone_number_required": {
"type": "boolean",
"description": "Is shipping phone number required"
}
}
},
"GpayTokenParameters": {
"type": "object",
"properties": {
"gateway": {
"type": "string",
"description": "The name of the connector",
"nullable": true
},
"gateway_merchant_id": {
"type": "string",
"description": "The merchant ID registered in the connector associated",
"nullable": true
},
"stripe:version": {
"type": "string",
"nullable": true
},
"stripe:publishableKey": {
"type": "string",
"nullable": true
},
"protocol_version": {
"type": "string",
"description": "The protocol version for encryption",
"nullable": true
},
"public_key": {
"type": "string",
"description": "The public key provided by the merchant",
"nullable": true
}
}
},
"GpayTokenizationData": {
"type": "object",
"required": [
"type",
"token"
],
"properties": {
"type": {
"type": "string",
"description": "The type of the token"
},
"token": {
"type": "string",
"description": "Token generated for the wallet"
}
}
},
"GpayTokenizationSpecification": {
"type": "object",
"required": [
"type",
"parameters"
],
"properties": {
"type": {
"type": "string",
"description": "The token specification type(ex: PAYMENT_GATEWAY)"
},
"parameters": {
"$ref": "#/components/schemas/GpayTokenParameters"
}
}
},
"GpayTransactionInfo": {
"type": "object",
"required": [
"country_code",
"currency_code",
"total_price_status",
"total_price"
],
"properties": {
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total_price_status": {
"type": "string",
"description": "The total price status (ex: 'FINAL')"
},
"total_price": {
"type": "string",
"description": "The total price",
"example": "38.02"
}
}
},
"GsmCreateRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message",
"status",
"decision",
"step_up_possible",
"clear_pan_possible"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/Connector"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router"
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"$ref": "#/components/schemas/GsmDecision"
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible"
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible"
}
}
},
"GsmDecision": {
"type": "string",
"enum": [
"retry",
"requeue",
"do_default"
]
},
"GsmDeleteRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
}
}
},
"GsmDeleteResponse": {
"type": "object",
"required": [
"gsm_rule_delete",
"connector",
"flow",
"sub_flow",
"code"
],
"properties": {
"gsm_rule_delete": {
"type": "boolean"
},
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
}
}
},
"GsmResponse": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message",
"status",
"decision",
"step_up_possible",
"clear_pan_possible"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router"
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"type": "string",
"description": "decision to be taken for auto retries flow"
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible"
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible"
}
}
},
"GsmRetrieveRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/Connector"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
}
}
},
"GsmUpdateRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router",
"nullable": true
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"allOf": [
{
"$ref": "#/components/schemas/GsmDecision"
}
],
"nullable": true
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible",
"nullable": true
}
}
},
"IfStatement": {
"type": "object",
"description": "Represents an IF statement with conditions and optional nested IF statements\n\n```text\npayment.method = card {\npayment.method.cardtype = (credit, debit) {\npayment.method.network = (amex, rupay, diners)\n}\n}\n```",
"required": [
"condition"
],
"properties": {
"condition": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Comparison"
}
},
"nested": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IfStatement"
},
"nullable": true
}
}
},
"IframeData": {
"oneOf": [
{
"type": "object",
"required": [
"three_ds_method_url",
"three_ds_method_data_submission",
"directory_server_id",
"method_key"
],
"properties": {
"three_ds_method_url": {
"type": "string",
"description": "ThreeDS method url"
},
"three_ds_method_data_submission": {
"type": "boolean",
"description": "Whether ThreeDS method data submission is required"
},
"three_ds_method_data": {
"type": "string",
"description": "ThreeDS method data",
"nullable": true
},
"directory_server_id": {
"type": "string",
"description": "ThreeDS Server ID"
},
"message_version": {
"type": "string",
"description": "ThreeDS Protocol version",
"nullable": true
},
"method_key": {
"type": "string",
"enum": [
"threeDSMethodData"
]
}
}
}
],
"discriminator": {
"propertyName": "method_key"
}
},
"IncrementalAuthorizationResponse": {
"type": "object",
"required": [
"authorization_id",
"amount",
"status",
"previously_authorized_amount"
],
"properties": {
"authorization_id": {
"type": "string",
"description": "The unique identifier of authorization"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "Amount the authorization has been made for",
"example": 6540
},
"status": {
"$ref": "#/components/schemas/AuthorizationStatus"
},
"error_code": {
"type": "string",
"description": "Error code sent by the connector for authorization",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error message sent by the connector for authorization",
"nullable": true
},
"previously_authorized_amount": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
"IndomaretVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Alfamart",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Alfamart",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Alfamart",
"example": "example@me.com",
"nullable": true
}
}
},
"IntentStatus": {
"type": "string",
"description": "The status of the current payment that was made",
"enum": [
"succeeded",
"failed",
"cancelled",
"processing",
"requires_customer_action",
"requires_merchant_action",
"requires_payment_method",
"requires_confirmation",
"requires_capture",
"partially_captured",
"partially_captured_and_capturable"
]
},
"JCSVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Japanese convenience stores",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name Japanese convenience stores",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Japanese convenience stores",
"example": "example@me.com",
"nullable": true
},
"phone_number": {
"type": "string",
"description": "The telephone number for Japanese convenience stores",
"example": "9123456789",
"nullable": true
}
}
},
"KakaoPayRedirection": {
"type": "object"
},
"KlarnaSdkPaymentMethodResponse": {
"type": "object",
"properties": {
"payment_type": {
"type": "string",
"nullable": true
}
}
},
"KlarnaSessionTokenResponse": {
"type": "object",
"required": [
"session_token",
"session_id"
],
"properties": {
"session_token": {
"type": "string",
"description": "The session token for Klarna"
},
"session_id": {
"type": "string",
"description": "The identifier for the session"
}
}
},
"LinkedRoutingConfigRetrieveResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/RoutingRetrieveResponse"
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
]
},
"ListBlocklistQuery": {
"type": "object",
"required": [
"data_kind"
],
"properties": {
"data_kind": {
"$ref": "#/components/schemas/BlocklistDataKind"
},
"limit": {
"type": "integer",
"format": "int32",
"minimum": 0
},
"offset": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
"LocalBankTransferAdditionalData": {
"type": "object",
"properties": {
"bank_code": {
"type": "string",
"description": "Partially masked bank code",
"example": "**** OA2312",
"nullable": true
}
}
},
"MandateAmountData": {
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The maximum amount to be debited for the mandate transaction",
"example": 6540
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"start_date": {
"type": "string",
"format": "date-time",
"description": "Specifying start date of the mandate",
"example": "2022-09-10T00:00:00Z",
"nullable": true
},
"end_date": {
"type": "string",
"format": "date-time",
"description": "Specifying end date of the mandate",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Additional details required by mandate",
"nullable": true
}
}
},
"MandateCardDetails": {
"type": "object",
"properties": {
"last4_digits": {
"type": "string",
"description": "The last 4 digits of card",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "The expiry month of card",
"nullable": true
},
"card_exp_year": {
"type": "string",
"description": "The expiry year of card",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "The card holder name",
"nullable": true
},
"card_token": {
"type": "string",
"description": "The token from card locker",
"nullable": true
},
"scheme": {
"type": "string",
"description": "The card scheme network for the particular card",
"nullable": true
},
"issuer_country": {
"type": "string",
"description": "The country code in in which the card was issued",
"nullable": true
},
"card_fingerprint": {
"type": "string",
"description": "A unique identifier alias to identify a particular card",
"nullable": true
},
"card_isin": {
"type": "string",
"description": "The first 6 digits of card",
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "The bank that issued the card",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"description": "The type of the payment card",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The nick_name of the card holder",
"nullable": true
}
}
},
"MandateData": {
"type": "object",
"description": "Passing this object during payments creates a mandate. The mandate_type sub object is passed by the server.",
"properties": {
"update_mandate_id": {
"type": "string",
"description": "A way to update the mandate's payment method details",
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"mandate_type": {
"allOf": [
{
"$ref": "#/components/schemas/MandateType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MandateResponse": {
"type": "object",
"required": [
"mandate_id",
"status",
"payment_method_id",
"payment_method"
],
"properties": {
"mandate_id": {
"type": "string",
"description": "The identifier for mandate"
},
"status": {
"$ref": "#/components/schemas/MandateStatus"
},
"payment_method_id": {
"type": "string",
"description": "The identifier for payment method"
},
"payment_method": {
"type": "string",
"description": "The payment method"
},
"payment_method_type": {
"type": "string",
"description": "The payment method type",
"nullable": true
},
"card": {
"allOf": [
{
"$ref": "#/components/schemas/MandateCardDetails"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
}
}
},
"MandateRevokedResponse": {
"type": "object",
"required": [
"mandate_id",
"status"
],
"properties": {
"mandate_id": {
"type": "string",
"description": "The identifier for mandate"
},
"status": {
"$ref": "#/components/schemas/MandateStatus"
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
}
}
},
"MandateStatus": {
"type": "string",
"description": "The status of the mandate, which indicates whether it can be used to initiate a payment.",
"enum": [
"active",
"inactive",
"pending",
"revoked"
]
},
"MandateType": {
"oneOf": [
{
"type": "object",
"required": [
"single_use"
],
"properties": {
"single_use": {
"$ref": "#/components/schemas/MandateAmountData"
}
}
},
{
"type": "object",
"required": [
"multi_use"
],
"properties": {
"multi_use": {
"allOf": [
{
"$ref": "#/components/schemas/MandateAmountData"
}
],
"nullable": true
}
}
}
]
},
"MaskedBankDetails": {
"type": "object",
"required": [
"mask"
],
"properties": {
"mask": {
"type": "string"
}
}
},
"MbWayRedirection": {
"type": "object",
"required": [
"telephone_number"
],
"properties": {
"telephone_number": {
"type": "string",
"description": "Telephone number of the shopper. Should be Portuguese phone number."
}
}
},
"MerchantAccountCreate": {
"type": "object",
"required": [
"merchant_name"
],
"properties": {
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account, This will be used as a prefix to generate the id",
"example": "NewAge Retailer",
"maxLength": 64
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information about the merchant account.",
"nullable": true
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantProductType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantAccountData": {
"oneOf": [
{
"type": "object",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "object",
"required": [
"iban",
"name"
],
"properties": {
"iban": {
"type": "string"
},
"name": {
"type": "string"
},
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"type": "object",
"required": [
"account_number",
"sort_code",
"name"
],
"properties": {
"account_number": {
"type": "string"
},
"sort_code": {
"type": "string"
},
"name": {
"type": "string"
},
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
}
}
}
]
},
"MerchantAccountDeleteResponse": {
"type": "object",
"required": [
"merchant_id",
"deleted"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"deleted": {
"type": "boolean",
"description": "If the connector is deleted or not",
"example": false
}
}
},
"MerchantAccountResponse": {
"type": "object",
"required": [
"id",
"merchant_name",
"publishable_key",
"organization_id",
"recon_status"
],
"properties": {
"id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account",
"example": "NewAge Retailer"
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"publishable_key": {
"type": "string",
"description": "API key that will be used for server side API access",
"example": "AH3423bkjbkjdsfbkj"
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"organization_id": {
"type": "string",
"description": "The id of the organization which the merchant is associated with",
"example": "org_q98uSGAYbjEwqs0mJwnz",
"maxLength": 64,
"minLength": 1
},
"recon_status": {
"$ref": "#/components/schemas/ReconStatus"
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantProductType"
}
],
"nullable": true
}
}
},
"MerchantAccountUpdate": {
"type": "object",
"properties": {
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account",
"example": "NewAge Retailer",
"nullable": true
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorAccountFeatureMetadata": {
"type": "object",
"description": "Feature metadata for merchant connector account",
"properties": {
"revenue_recovery": {
"allOf": [
{
"$ref": "#/components/schemas/RevenueRecoveryMetadata"
}
],
"nullable": true
}
}
},
"MerchantConnectorCreate": {
"type": "object",
"description": "Create a new Merchant Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.\"",
"required": [
"connector_type",
"connector_name",
"profile_id",
"payment_methods_enabled"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "This is an unique label you can generate and pass in order to identify this connector account on your Hyperswitch dashboard and reports, If not passed then if will take `connector_name`_`profile_name`. Eg: if your profile label is `default`, connector label can be `stripe_default`",
"example": "stripe_US_travel",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"maxLength": 64
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"description": "pm_auth_config will relate MCA records to their respective chosen auth services, based on payment_method and pmt",
"nullable": true
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorStatus"
}
],
"nullable": true
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorAccountFeatureMetadata"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorDeleteResponse": {
"type": "object",
"required": [
"merchant_id",
"id",
"deleted"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"id": {
"type": "string",
"description": "Unique ID of the connector",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"deleted": {
"type": "boolean",
"description": "If the connector is deleted or not",
"example": false
}
}
},
"MerchantConnectorDetails": {
"type": "object",
"properties": {
"connector_account_details": {
"type": "object",
"description": "Account details of the Connector. You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Useful for storing additional, structured information on an object.",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
}
},
"MerchantConnectorDetailsWrap": {
"type": "object",
"description": "Merchant connector details used to make payments.",
"required": [
"creds_identifier"
],
"properties": {
"creds_identifier": {
"type": "string",
"description": "Creds Identifier is to uniquely identify the credentials. Do not send any sensitive info, like encoded_data in this field. And do not send the string \"null\"."
},
"encoded_data": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
}
}
},
"MerchantConnectorId": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
}
}
},
"MerchantConnectorListResponse": {
"type": "object",
"required": [
"connector_type",
"connector_name",
"id",
"profile_id",
"payment_methods_enabled",
"status"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "A unique label to identify the connector account created under a profile",
"example": "stripe_US_travel",
"nullable": true
},
"id": {
"type": "string",
"description": "Unique ID of the merchant connector account",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"maxLength": 64
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account"
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "identifier for the verified domains of a particular connector account",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
}
},
"additionalProperties": false
},
"MerchantConnectorResponse": {
"type": "object",
"description": "Response of creating a new Merchant Connector for the merchant account.\"",
"required": [
"connector_type",
"connector_name",
"id",
"profile_id",
"payment_methods_enabled",
"status"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "A unique label to identify the connector account created under a profile",
"example": "stripe_US_travel",
"nullable": true
},
"id": {
"type": "string",
"description": "Unique ID of the merchant connector account",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"maxLength": 64
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account"
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "identifier for the verified domains of a particular connector account",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"description": "pm_auth_config will relate MCA records to their respective chosen auth services, based on payment_method and pmt",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorAccountFeatureMetadata"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorUpdate": {
"type": "object",
"description": "Create a new Merchant Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.\"",
"required": [
"connector_type",
"status",
"merchant_id"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_label": {
"type": "string",
"description": "This is an unique label you can generate and pass in order to identify this connector account on your Hyperswitch dashboard and reports, If not passed then if will take `connector_name`_`profile_name`. Eg: if your profile label is `default`, connector label can be `stripe_default`",
"example": "stripe_US_travel",
"nullable": true
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account",
"nullable": true
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"description": "pm_auth_config will relate MCA records to their respective chosen auth services, based on payment_method and pmt",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorAccountFeatureMetadata"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorWebhookDetails": {
"type": "object",
"required": [
"merchant_secret",
"additional_secret"
],
"properties": {
"merchant_secret": {
"type": "string",
"example": "12345678900987654321"
},
"additional_secret": {
"type": "string",
"example": "12345678900987654321"
}
},
"additionalProperties": false
},
"MerchantDetails": {
"type": "object",
"properties": {
"primary_contact_person": {
"type": "string",
"description": "The merchant's primary contact name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"primary_phone": {
"type": "string",
"description": "The merchant's primary phone number",
"example": "999999999",
"nullable": true,
"maxLength": 255
},
"primary_email": {
"type": "string",
"description": "The merchant's primary email address",
"example": "johndoe@test.com",
"nullable": true,
"maxLength": 255
},
"secondary_contact_person": {
"type": "string",
"description": "The merchant's secondary contact name",
"example": "John Doe2",
"nullable": true,
"maxLength": 255
},
"secondary_phone": {
"type": "string",
"description": "The merchant's secondary phone number",
"example": "999999988",
"nullable": true,
"maxLength": 255
},
"secondary_email": {
"type": "string",
"description": "The merchant's secondary email address",
"example": "johndoe2@test.com",
"nullable": true,
"maxLength": 255
},
"website": {
"type": "string",
"description": "The business website of the merchant",
"example": "www.example.com",
"nullable": true,
"maxLength": 255
},
"about_business": {
"type": "string",
"description": "A brief description about merchant's business",
"example": "Online Retail with a wide selection of organic products for North America",
"nullable": true,
"maxLength": 255
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantProductType": {
"type": "string",
"enum": [
"orchestration",
"vault",
"recon",
"recovery",
"cost_observability",
"dynamic_routing"
]
},
"MerchantRecipientData": {
"oneOf": [
{
"type": "object",
"required": [
"connector_recipient_id"
],
"properties": {
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
},
{
"type": "object",
"required": [
"wallet_id"
],
"properties": {
"wallet_id": {
"type": "string",
"nullable": true
}
}
},
{
"type": "object",
"required": [
"account_data"
],
"properties": {
"account_data": {
"$ref": "#/components/schemas/MerchantAccountData"
}
}
}
]
},
"MerchantRoutingAlgorithm": {
"type": "object",
"description": "Routing Algorithm specific to merchants",
"required": [
"id",
"profile_id",
"name",
"description",
"algorithm",
"created_at",
"modified_at",
"algorithm_for"
],
"properties": {
"id": {
"type": "string"
},
"profile_id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"algorithm": {
"$ref": "#/components/schemas/RoutingAlgorithm"
},
"created_at": {
"type": "integer",
"format": "int64"
},
"modified_at": {
"type": "integer",
"format": "int64"
},
"algorithm_for": {
"$ref": "#/components/schemas/TransactionType"
}
}
},
"MetadataValue": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"MifinityData": {
"type": "object",
"required": [
"date_of_birth"
],
"properties": {
"date_of_birth": {
"type": "string",
"format": "date"
},
"language_preference": {
"type": "string",
"nullable": true
}
}
},
"MinorUnit": {
"type": "integer",
"format": "int64",
"description": "This Unit struct represents MinorUnit in which core amount works"
},
"MitExemptionRequest": {
"type": "string",
"enum": [
"Apply",
"Skip"
]
},
"MobilePayRedirection": {
"type": "object"
},
"MobilePaymentConsent": {
"type": "string",
"enum": [
"consent_required",
"consent_not_required",
"consent_optional"
]
},
"MobilePaymentData": {
"oneOf": [
{
"type": "object",
"required": [
"direct_carrier_billing"
],
"properties": {
"direct_carrier_billing": {
"type": "object",
"required": [
"msisdn"
],
"properties": {
"msisdn": {
"type": "string",
"description": "The phone number of the user",
"example": "1234567890"
},
"client_uid": {
"type": "string",
"description": "Unique user id",
"example": "02iacdYXGI9CnyJdoN8c7",
"nullable": true
}
}
}
}
}
]
},
"MobilePaymentNextStepData": {
"type": "object",
"required": [
"consent_data_required"
],
"properties": {
"consent_data_required": {
"$ref": "#/components/schemas/MobilePaymentConsent"
}
}
},
"MobilePaymentResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/MobilePaymentData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"MomoRedirection": {
"type": "object"
},
"MultibancoBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"example": "example@me.com",
"nullable": true
}
}
},
"MultibancoTransferInstructions": {
"type": "object",
"required": [
"reference",
"entity"
],
"properties": {
"reference": {
"type": "string",
"example": "122385736258"
},
"entity": {
"type": "string",
"example": "12345"
}
}
},
"NetworkTokenDetailsPaymentMethod": {
"type": "object",
"properties": {
"last4_digits": {
"type": "string",
"nullable": true
},
"issuer_country": {
"type": "string",
"nullable": true
},
"network_token_expiry_month": {
"type": "string",
"nullable": true
},
"network_token_expiry_year": {
"type": "string",
"nullable": true
},
"nick_name": {
"type": "string",
"nullable": true
},
"card_holder_name": {
"type": "string",
"nullable": true
},
"card_isin": {
"type": "string",
"nullable": true
},
"card_issuer": {
"type": "string",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"nullable": true
},
"saved_to_locker": {
"type": "boolean"
}
}
},
"NetworkTokenResponse": {
"type": "object",
"required": [
"payment_method_data"
],
"properties": {
"payment_method_data": {
"$ref": "#/components/schemas/NetworkTokenDetailsPaymentMethod"
}
}
},
"NetworkTokenization": {
"type": "object",
"description": "The network tokenization configuration for creating the payment method session",
"required": [
"enable"
],
"properties": {
"enable": {
"$ref": "#/components/schemas/NetworkTokenizationToggle"
}
}
},
"NetworkTokenizationToggle": {
"type": "string",
"description": "The network tokenization toggle, whether to enable or skip the network tokenization",
"enum": [
"Enable",
"Skip"
]
},
"NetworkTransactionIdAndCardDetails": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"network_transaction_id"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The card holder's nick name",
"example": "John Test",
"nullable": true
},
"network_transaction_id": {
"type": "string",
"description": "The network transaction ID provided by the card network during a CIT (Customer Initiated Transaction),\nwhere `setup_future_usage` is set to `off_session`."
}
}
},
"NextActionCall": {
"type": "string",
"enum": [
"post_session_tokens",
"confirm",
"sync",
"complete_authorize"
]
},
"NextActionData": {
"oneOf": [
{
"type": "object",
"description": "Contains the url for redirection flow",
"required": [
"redirect_to_url",
"type"
],
"properties": {
"redirect_to_url": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"redirect_to_url"
]
}
}
},
{
"type": "object",
"description": "Informs the next steps for bank transfer and also contains the charges details (ex: amount received, amount charged etc)",
"required": [
"bank_transfer_steps_and_charges_details",
"type"
],
"properties": {
"bank_transfer_steps_and_charges_details": {
"$ref": "#/components/schemas/BankTransferNextStepsData"
},
"type": {
"type": "string",
"enum": [
"display_bank_transfer_information"
]
}
}
},
{
"type": "object",
"description": "Contains third party sdk session token response",
"required": [
"type"
],
"properties": {
"session_token": {
"allOf": [
{
"$ref": "#/components/schemas/SessionToken"
}
],
"nullable": true
},
"type": {
"type": "string",
"enum": [
"third_party_sdk_session_token"
]
}
}
},
{
"type": "object",
"description": "Contains url for Qr code image, this qr code has to be shown in sdk",
"required": [
"image_data_url",
"qr_code_url",
"type"
],
"properties": {
"image_data_url": {
"type": "string",
"description": "Hyperswitch generated image data source url"
},
"display_to_timestamp": {
"type": "integer",
"format": "int64",
"nullable": true
},
"qr_code_url": {
"type": "string",
"description": "The url for Qr code given by the connector"
},
"display_text": {
"type": "string",
"nullable": true
},
"border_color": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"enum": [
"qr_code_information"
]
}
}
},
{
"type": "object",
"description": "Contains url to fetch Qr code data",
"required": [
"qr_code_fetch_url",
"type"
],
"properties": {
"qr_code_fetch_url": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"fetch_qr_code_information"
]
}
}
},
{
"type": "object",
"description": "Contains the download url and the reference number for transaction",
"required": [
"voucher_details",
"type"
],
"properties": {
"voucher_details": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"display_voucher_information"
]
}
}
},
{
"type": "object",
"description": "Contains duration for displaying a wait screen, wait screen with timer is displayed by sdk",
"required": [
"display_from_timestamp",
"type"
],
"properties": {
"display_from_timestamp": {
"type": "integer"
},
"display_to_timestamp": {
"type": "integer",
"nullable": true
},
"type": {
"type": "string",
"enum": [
"wait_screen_information"
]
}
}
},
{
"type": "object",
"description": "Contains the information regarding three_ds_method_data submission, three_ds authentication, and authorization flows",
"required": [
"three_ds_data",
"type"
],
"properties": {
"three_ds_data": {
"$ref": "#/components/schemas/ThreeDsData"
},
"type": {
"type": "string",
"enum": [
"three_ds_invoke"
]
}
}
},
{
"type": "object",
"required": [
"next_action_data",
"type"
],
"properties": {
"next_action_data": {
"$ref": "#/components/schemas/SdkNextActionData"
},
"type": {
"type": "string",
"enum": [
"invoke_sdk_client"
]
}
}
},
{
"type": "object",
"description": "Contains consent to collect otp for mobile payment",
"required": [
"consent_data_required",
"type"
],
"properties": {
"consent_data_required": {
"$ref": "#/components/schemas/MobilePaymentConsent"
},
"type": {
"type": "string",
"enum": [
"collect_otp"
]
}
}
},
{
"type": "object",
"description": "Contains data required to invoke hidden iframe",
"required": [
"iframe_data",
"type"
],
"properties": {
"iframe_data": {
"$ref": "#/components/schemas/IframeData"
},
"type": {
"type": "string",
"enum": [
"invoke_hidden_iframe"
]
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"NextActionType": {
"type": "string",
"enum": [
"redirect_to_url",
"display_qr_code",
"invoke_sdk_client",
"trigger_api",
"display_bank_transfer_information",
"display_wait_screen",
"collect_otp"
]
},
"NoThirdPartySdkSessionResponse": {
"type": "object",
"required": [
"epoch_timestamp",
"expires_at",
"merchant_session_identifier",
"nonce",
"merchant_identifier",
"domain_name",
"display_name",
"signature",
"operational_analytics_identifier",
"retries",
"psp_id"
],
"properties": {
"epoch_timestamp": {
"type": "integer",
"format": "int64",
"description": "Timestamp at which session is requested",
"minimum": 0
},
"expires_at": {
"type": "integer",
"format": "int64",
"description": "Timestamp at which session expires",
"minimum": 0
},
"merchant_session_identifier": {
"type": "string",
"description": "The identifier for the merchant session"
},
"nonce": {
"type": "string",
"description": "Apple pay generated unique ID (UUID) value"
},
"merchant_identifier": {
"type": "string",
"description": "The identifier for the merchant"
},
"domain_name": {
"type": "string",
"description": "The domain name of the merchant which is registered in Apple Pay"
},
"display_name": {
"type": "string",
"description": "The name to be displayed on Apple Pay button"
},
"signature": {
"type": "string",
"description": "A string which represents the properties of a payment"
},
"operational_analytics_identifier": {
"type": "string",
"description": "The identifier for the operational analytics"
},
"retries": {
"type": "integer",
"format": "int32",
"description": "The number of retries to get the session response",
"minimum": 0
},
"psp_id": {
"type": "string",
"description": "The identifier for the connector transaction"
}
}
},
"NoonData": {
"type": "object",
"properties": {
"order_category": {
"type": "string",
"description": "Information about the order category that merchant wants to specify at connector level. (e.g. In Noon Payments it can take values like \"pay\", \"food\", or any other custom string set by the merchant in Noon's Dashboard)",
"nullable": true
}
}
},
"NumberComparison": {
"type": "object",
"description": "Represents a number comparison for \"NumberComparisonArrayValue\"",
"required": [
"comparisonType",
"number"
],
"properties": {
"comparisonType": {
"$ref": "#/components/schemas/ComparisonType"
},
"number": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
"OnlineMandate": {
"type": "object",
"required": [
"ip_address",
"user_agent"
],
"properties": {
"ip_address": {
"type": "string",
"description": "Ip address of the customer machine from which the mandate was created",
"example": "123.32.25.123"
},
"user_agent": {
"type": "string",
"description": "The user-agent of the customer's browser"
}
},
"additionalProperties": false
},
"OpenBankingData": {
"oneOf": [
{
"type": "object",
"required": [
"open_banking_pis"
],
"properties": {
"open_banking_pis": {
"type": "object"
}
}
}
]
},
"OpenBankingResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/OpenBankingData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"OpenBankingSessionToken": {
"type": "object",
"required": [
"open_banking_session_token"
],
"properties": {
"open_banking_session_token": {
"type": "string",
"description": "The session token for OpenBanking Connectors"
}
}
},
"Order": {
"type": "object",
"required": [
"on",
"by"
],
"properties": {
"on": {
"$ref": "#/components/schemas/SortOn"
},
"by": {
"$ref": "#/components/schemas/SortBy"
}
}
},
"OrderDetailsWithAmount": {
"type": "object",
"required": [
"product_name",
"quantity",
"amount"
],
"properties": {
"product_name": {
"type": "string",
"description": "Name of the product that is being purchased",
"example": "shirt",
"maxLength": 255
},
"quantity": {
"type": "integer",
"format": "int32",
"description": "The quantity of the product to be purchased",
"example": 1,
"minimum": 0
},
"amount": {
"type": "integer",
"format": "int64",
"description": "the amount per quantity of product"
},
"tax_rate": {
"type": "number",
"format": "double",
"description": "tax rate applicable to the product",
"nullable": true
},
"total_tax_amount": {
"type": "integer",
"format": "int64",
"description": "total tax amount applicable to the product",
"nullable": true
},
"requires_shipping": {
"type": "boolean",
"nullable": true
},
"product_img_link": {
"type": "string",
"description": "The image URL of the product",
"nullable": true
},
"product_id": {
"type": "string",
"description": "ID of the product that is being purchased",
"nullable": true
},
"category": {
"type": "string",
"description": "Category of the product that is being purchased",
"nullable": true
},
"sub_category": {
"type": "string",
"description": "Sub category of the product that is being purchased",
"nullable": true
},
"brand": {
"type": "string",
"description": "Brand of the product that is being purchased",
"nullable": true
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/ProductType"
}
],
"nullable": true
},
"product_tax_code": {
"type": "string",
"description": "The tax code for the product",
"nullable": true
}
}
},
"OrderFulfillmentTimeOrigin": {
"type": "string",
"enum": [
"create",
"confirm"
]
},
"OrganizationCreateRequest": {
"type": "object",
"required": [
"organization_name"
],
"properties": {
"organization_name": {
"type": "string",
"description": "Name of the organization"
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"OrganizationResponse": {
"type": "object",
"required": [
"id",
"modified_at",
"created_at"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for the Organization",
"example": "org_q98uSGAYbjEwqs0mJwnz",
"maxLength": 64,
"minLength": 1
},
"organization_name": {
"type": "string",
"description": "Name of the Organization",
"nullable": true
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"modified_at": {
"type": "string",
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
},
"OrganizationUpdateRequest": {
"type": "object",
"properties": {
"organization_name": {
"type": "string",
"description": "Name of the organization",
"nullable": true
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"OutgoingWebhook": {
"type": "object",
"required": [
"merchant_id",
"event_id",
"event_type",
"content"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant id of the merchant"
},
"event_id": {
"type": "string",
"description": "The unique event id for each webhook"
},
"event_type": {
"$ref": "#/components/schemas/EventType"
},
"content": {
"$ref": "#/components/schemas/OutgoingWebhookContent"
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "The time at which webhook was sent"
}
}
},
"OutgoingWebhookContent": {
"oneOf": [
{
"type": "object",
"title": "PaymentsResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payment_details"
]
},
"object": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
},
{
"type": "object",
"title": "RefundResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"refund_details"
]
},
"object": {
"$ref": "#/components/schemas/RefundResponse"
}
}
},
{
"type": "object",
"title": "DisputeResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"dispute_details"
]
},
"object": {
"$ref": "#/components/schemas/DisputeResponse"
}
}
},
{
"type": "object",
"title": "MandateResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"mandate_details"
]
},
"object": {
"$ref": "#/components/schemas/MandateResponse"
}
}
},
{
"type": "object",
"title": "PayoutCreateResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payout_details"
]
},
"object": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"OutgoingWebhookRequestContent": {
"type": "object",
"description": "The request information (headers and body) sent in the webhook.",
"required": [
"body",
"headers"
],
"properties": {
"body": {
"type": "string",
"description": "The request body sent in the webhook."
},
"headers": {
"type": "array",
"items": {
"type": "array",
"items": {
"allOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"description": "The request headers sent in the webhook.",
"example": [
[
"content-type",
"application/json"
],
[
"content-length",
"1024"
]
]
}
}
},
"OutgoingWebhookResponseContent": {
"type": "object",
"description": "The response information (headers, body and status code) received for the webhook sent.",
"properties": {
"body": {
"type": "string",
"description": "The response body received for the webhook sent.",
"nullable": true
},
"headers": {
"type": "array",
"items": {
"type": "array",
"items": {
"allOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"description": "The response headers received for the webhook sent.",
"example": [
[
"content-type",
"application/json"
],
[
"content-length",
"1024"
]
],
"nullable": true
},
"status_code": {
"type": "integer",
"format": "int32",
"description": "The HTTP status code for the webhook sent.",
"example": 200,
"nullable": true,
"minimum": 0
},
"error_message": {
"type": "string",
"description": "Error message in case any error occurred when trying to deliver the webhook.",
"example": 200,
"nullable": true
}
}
},
"PayLaterData": {
"oneOf": [
{
"type": "object",
"required": [
"klarna_redirect"
],
"properties": {
"klarna_redirect": {
"type": "object",
"description": "For KlarnaRedirect as PayLater Option",
"properties": {
"billing_email": {
"type": "string",
"description": "The billing email",
"nullable": true
},
"billing_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"klarna_sdk"
],
"properties": {
"klarna_sdk": {
"type": "object",
"description": "For Klarna Sdk as PayLater Option",
"required": [
"token"
],
"properties": {
"token": {
"type": "string",
"description": "The token for the sdk workflow"
}
}
}
}
},
{
"type": "object",
"required": [
"affirm_redirect"
],
"properties": {
"affirm_redirect": {
"type": "object",
"description": "For Affirm redirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"afterpay_clearpay_redirect"
],
"properties": {
"afterpay_clearpay_redirect": {
"type": "object",
"description": "For AfterpayClearpay redirect as PayLater Option",
"properties": {
"billing_email": {
"type": "string",
"description": "The billing email",
"nullable": true
},
"billing_name": {
"type": "string",
"description": "The billing name",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pay_bright_redirect"
],
"properties": {
"pay_bright_redirect": {
"type": "object",
"description": "For PayBright Redirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"walley_redirect"
],
"properties": {
"walley_redirect": {
"type": "object",
"description": "For WalleyRedirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"alma_redirect"
],
"properties": {
"alma_redirect": {
"type": "object",
"description": "For Alma Redirection as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"atome_redirect"
],
"properties": {
"atome_redirect": {
"type": "object"
}
}
}
]
},
"PayPalWalletData": {
"type": "object",
"required": [
"token"
],
"properties": {
"token": {
"type": "string",
"description": "Token generated for the Apple pay"
}
}
},
"PaylaterResponse": {
"type": "object",
"properties": {
"klarna_sdk": {
"allOf": [
{
"$ref": "#/components/schemas/KlarnaSdkPaymentMethodResponse"
}
],
"nullable": true
}
}
},
"PaymentAmountDetailsResponse": {
"type": "object",
"required": [
"currency",
"external_tax_calculation",
"surcharge_calculation",
"net_amount",
"amount_capturable"
],
"properties": {
"order_amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"minimum": 0
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"external_tax_calculation": {
"$ref": "#/components/schemas/TaxCalculationOverride"
},
"surcharge_calculation": {
"$ref": "#/components/schemas/SurchargeCalculationOverride"
},
"surcharge_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"net_amount": {
"$ref": "#/components/schemas/MinorUnit"
},
"amount_to_capture": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"amount_capturable": {
"$ref": "#/components/schemas/MinorUnit"
},
"amount_captured": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"PaymentAttemptAmountDetails": {
"type": "object",
"required": [
"net_amount",
"amount_capturable"
],
"properties": {
"net_amount": {
"$ref": "#/components/schemas/MinorUnit"
},
"amount_to_capture": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"surcharge_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"amount_capturable": {
"$ref": "#/components/schemas/MinorUnit"
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"PaymentAttemptFeatureMetadata": {
"type": "object",
"properties": {
"revenue_recovery": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentAttemptRevenueRecoveryData"
}
],
"nullable": true
}
}
},
"PaymentAttemptResponse": {
"type": "object",
"required": [
"id",
"status",
"amount",
"authentication_type",
"created_at",
"modified_at",
"connector_payment_id"
],
"properties": {
"id": {
"type": "string",
"description": "The global identifier for the payment attempt"
},
"status": {
"$ref": "#/components/schemas/AttemptStatus"
},
"amount": {
"$ref": "#/components/schemas/PaymentAttemptAmountDetails"
},
"connector": {
"type": "string",
"description": "Name of the connector that was used for the payment attempt.",
"example": "stripe",
"nullable": true
},
"error": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Date and time of Payment attempt creation"
},
"modified_at": {
"type": "string",
"format": "date-time",
"description": "Time at which the payment attempt was last modified"
},
"cancellation_reason": {
"type": "string",
"description": "The reason for the cancellation of the payment attempt. Some connectors will have strict rules regarding the values this can have\nCancellation reason will be validated at the connector level when building the request",
"nullable": true
},
"payment_token": {
"type": "string",
"description": "Payment token is the token used for temporary use in case the payment method is stored in vault",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"connector_reference_id": {
"type": "string",
"description": "reference(Identifier) to the payment at connector side",
"example": "993672945374576J",
"nullable": true
},
"payment_method_subtype": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_payment_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector"
},
"payment_method_id": {
"type": "string",
"description": "Identifier for Payment Method used for the payment attempt",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8",
"nullable": true
},
"client_source": {
"type": "string",
"description": "Value passed in X-CLIENT-SOURCE header during payments confirm request by the client",
"nullable": true
},
"client_version": {
"type": "string",
"description": "Value passed in X-CLIENT-VERSION header during payments confirm request by the client",
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentAttemptFeatureMetadata"
}
],
"nullable": true
}
}
},
"PaymentAttemptRevenueRecoveryData": {
"type": "object",
"properties": {
"attempt_triggered_by": {
"allOf": [
{
"$ref": "#/components/schemas/TriggeredBy"
}
],
"nullable": true
}
}
},
"PaymentChargeType": {
"oneOf": [
{
"type": "object",
"required": [
"Stripe"
],
"properties": {
"Stripe": {
"$ref": "#/components/schemas/StripeChargeType"
}
}
}
]
},
"PaymentConnectorCategory": {
"type": "string",
"description": "Connector Access Method",
"enum": [
"payment_gateway",
"alternative_payment_method",
"bank_acquirer"
]
},
"PaymentConnectorTransmission": {
"type": "string",
"enum": [
"ConnectorCallUnsuccessful",
"ConnectorCallSucceeded"
]
},
"PaymentCreatePaymentLinkConfig": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
{
"type": "object"
}
],
"description": "Configure a custom payment link for the particular payment"
},
"PaymentExperience": {
"type": "string",
"description": "To indicate the type of payment experience that the customer would go through",
"enum": [
"redirect_to_url",
"invoke_sdk_client",
"display_qr_code",
"one_click",
"link_wallet",
"invoke_payment_app",
"display_wait_screen",
"collect_otp"
]
},
"PaymentExperienceTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"payment_experience_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given payment experience",
"example": [
"stripe",
"adyen"
]
}
}
},
"PaymentLinkBackgroundImageConfig": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "URL of the image",
"example": "https://hyperswitch.io/favicon.ico"
},
"position": {
"allOf": [
{
"$ref": "#/components/schemas/ElementPosition"
}
],
"nullable": true
},
"size": {
"allOf": [
{
"$ref": "#/components/schemas/ElementSize"
}
],
"nullable": true
}
}
},
"PaymentLinkConfig": {
"type": "object",
"required": [
"theme",
"logo",
"seller_name",
"sdk_layout",
"display_sdk_only",
"enabled_saved_payment_method",
"hide_card_nickname_field",
"show_card_form_by_default",
"enable_button_only_on_form_ready"
],
"properties": {
"theme": {
"type": "string",
"description": "custom theme for the payment link"
},
"logo": {
"type": "string",
"description": "merchant display logo"
},
"seller_name": {
"type": "string",
"description": "Custom merchant name for payment link"
},
"sdk_layout": {
"type": "string",
"description": "Custom layout for sdk"
},
"display_sdk_only": {
"type": "boolean",
"description": "Display only the sdk for payment link"
},
"enabled_saved_payment_method": {
"type": "boolean",
"description": "Enable saved payment method option for payment link"
},
"hide_card_nickname_field": {
"type": "boolean",
"description": "Hide card nickname field option for payment link"
},
"show_card_form_by_default": {
"type": "boolean",
"description": "Show card form by default for payment link"
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true,
"nullable": true
},
"transaction_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentLinkTransactionDetails"
},
"description": "Dynamic details related to merchant to be rendered in payment link",
"nullable": true
},
"background_image": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkBackgroundImageConfig"
}
],
"nullable": true
},
"details_layout": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkDetailsLayout"
}
],
"nullable": true
},
"branding_visibility": {
"type": "boolean",
"description": "Toggle for HyperSwitch branding visibility",
"nullable": true
},
"payment_button_text": {
"type": "string",
"description": "Text for payment link's handle confirm button",
"nullable": true
},
"custom_message_for_card_terms": {
"type": "string",
"description": "Text for customizing message for card terms",
"nullable": true
},
"payment_button_colour": {
"type": "string",
"description": "Custom background colour for payment link's handle confirm button",
"nullable": true
},
"skip_status_screen": {
"type": "boolean",
"description": "Skip the status screen after payment completion",
"nullable": true
},
"payment_button_text_colour": {
"type": "string",
"description": "Custom text colour for payment link's handle confirm button",
"nullable": true
},
"background_colour": {
"type": "string",
"description": "Custom background colour for the payment link",
"nullable": true
},
"sdk_ui_rules": {
"type": "object",
"description": "SDK configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"payment_link_ui_rules": {
"type": "object",
"description": "Payment link configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"enable_button_only_on_form_ready": {
"type": "boolean",
"description": "Flag to enable the button only when the payment form is ready for submission"
}
}
},
"PaymentLinkConfigRequest": {
"type": "object",
"properties": {
"theme": {
"type": "string",
"description": "custom theme for the payment link",
"example": "#4E6ADD",
"nullable": true,
"maxLength": 255
},
"logo": {
"type": "string",
"description": "merchant display logo",
"example": "https://i.pinimg.com/736x/4d/83/5c/4d835ca8aafbbb15f84d07d926fda473.jpg",
"nullable": true,
"maxLength": 255
},
"seller_name": {
"type": "string",
"description": "Custom merchant name for payment link",
"example": "hyperswitch",
"nullable": true,
"maxLength": 255
},
"sdk_layout": {
"type": "string",
"description": "Custom layout for sdk",
"example": "accordion",
"nullable": true,
"maxLength": 255
},
"display_sdk_only": {
"type": "boolean",
"description": "Display only the sdk for payment link",
"default": false,
"example": true,
"nullable": true
},
"enabled_saved_payment_method": {
"type": "boolean",
"description": "Enable saved payment method option for payment link",
"default": false,
"example": true,
"nullable": true
},
"hide_card_nickname_field": {
"type": "boolean",
"description": "Hide card nickname field option for payment link",
"default": false,
"example": true,
"nullable": true
},
"show_card_form_by_default": {
"type": "boolean",
"description": "Show card form by default for payment link",
"default": true,
"example": true,
"nullable": true
},
"transaction_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentLinkTransactionDetails"
},
"description": "Dynamic details related to merchant to be rendered in payment link",
"nullable": true
},
"background_image": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkBackgroundImageConfig"
}
],
"nullable": true
},
"details_layout": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkDetailsLayout"
}
],
"nullable": true
},
"payment_button_text": {
"type": "string",
"description": "Text for payment link's handle confirm button",
"nullable": true
},
"custom_message_for_card_terms": {
"type": "string",
"description": "Text for customizing message for card terms",
"nullable": true
},
"payment_button_colour": {
"type": "string",
"description": "Custom background colour for payment link's handle confirm button",
"nullable": true
},
"skip_status_screen": {
"type": "boolean",
"description": "Skip the status screen after payment completion",
"nullable": true
},
"payment_button_text_colour": {
"type": "string",
"description": "Custom text colour for payment link's handle confirm button",
"nullable": true
},
"background_colour": {
"type": "string",
"description": "Custom background colour for the payment link",
"nullable": true
},
"sdk_ui_rules": {
"type": "object",
"description": "SDK configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"payment_link_ui_rules": {
"type": "object",
"description": "Payment link configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"enable_button_only_on_form_ready": {
"type": "boolean",
"description": "Flag to enable the button only when the payment form is ready for submission",
"nullable": true
}
}
},
"PaymentLinkDetailsLayout": {
"type": "string",
"enum": [
"layout1",
"layout2"
]
},
"PaymentLinkInitiateRequest": {
"type": "object",
"required": [
"merchant_id",
"payment_id"
],
"properties": {
"merchant_id": {
"type": "string"
},
"payment_id": {
"type": "string"
}
}
},
"PaymentLinkResponse": {
"type": "object",
"required": [
"link",
"payment_link_id"
],
"properties": {
"link": {
"type": "string",
"description": "URL for rendering the open payment link"
},
"secure_link": {
"type": "string",
"description": "URL for rendering the secure payment link",
"nullable": true
},
"payment_link_id": {
"type": "string",
"description": "Identifier for the payment link"
}
}
},
"PaymentLinkStatus": {
"type": "string",
"description": "Status Of the Payment Link",
"enum": [
"active",
"expired"
]
},
"PaymentLinkTransactionDetails": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string",
"description": "Key for the transaction details",
"example": "Policy-Number",
"maxLength": 255
},
"value": {
"type": "string",
"description": "Value for the transaction details",
"example": "297472368473924",
"maxLength": 255
},
"ui_configuration": {
"allOf": [
{
"$ref": "#/components/schemas/TransactionDetailsUiConfiguration"
}
],
"nullable": true
}
}
},
"PaymentListResponse": {
"type": "object",
"required": [
"count",
"total_count",
"data"
],
"properties": {
"count": {
"type": "integer",
"description": "The number of payments included in the current response",
"minimum": 0
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "The total number of available payments for given constraints"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentsListResponseItem"
},
"description": "The list of payments response objects"
}
}
},
"PaymentMethod": {
"type": "string",
"description": "Indicates the type of payment method. Eg: 'card', 'wallet', etc.",
"enum": [
"card",
"card_redirect",
"pay_later",
"wallet",
"bank_redirect",
"bank_transfer",
"crypto",
"bank_debit",
"reward",
"real_time_payment",
"upi",
"voucher",
"gift_card",
"open_banking",
"mobile_payment"
]
},
"PaymentMethodCollectLinkRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"customer_id"
],
"properties": {
"pm_collect_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_92dnwed8s32bV9D8Snbiasd8v"
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"return_url": {
"type": "string",
"description": "Redirect to this URL post completion",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1/status",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
}
}
}
]
},
"PaymentMethodCollectLinkResponse": {
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
},
{
"type": "object",
"required": [
"pm_collect_link_id",
"customer_id",
"expiry",
"link"
],
"properties": {
"pm_collect_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_92dnwed8s32bV9D8Snbiasd8v"
},
"expiry": {
"type": "string",
"format": "date-time",
"description": "Time when this link will be expired in ISO8601 format",
"example": "2025-01-18T11:04:09.922Z"
},
"link": {
"type": "string",
"description": "URL to the form's link generated for collecting payment method details.",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1"
},
"return_url": {
"type": "string",
"description": "Redirect to this URL post completion",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1/status",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
}
}
}
]
},
"PaymentMethodCreate": {
"type": "object",
"required": [
"payment_method_type",
"payment_method_subtype",
"customer_id",
"payment_method_data"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"payment_method_data": {
"$ref": "#/components/schemas/PaymentMethodCreateData"
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"psp_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/PspTokenization"
}
],
"nullable": true
},
"network_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenization"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"PaymentMethodCreateData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardDetail"
}
}
}
]
},
"PaymentMethodData": {
"oneOf": [
{
"type": "object",
"title": "Card",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/Card"
}
}
},
{
"type": "object",
"title": "CardRedirect",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"$ref": "#/components/schemas/CardRedirectData"
}
}
},
{
"type": "object",
"title": "Wallet",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletData"
}
}
},
{
"type": "object",
"title": "PayLater",
"required": [
"pay_later"
],
"properties": {
"pay_later": {
"$ref": "#/components/schemas/PayLaterData"
}
}
},
{
"type": "object",
"title": "BankRedirect",
"required": [
"bank_redirect"
],
"properties": {
"bank_redirect": {
"$ref": "#/components/schemas/BankRedirectData"
}
}
},
{
"type": "object",
"title": "BankDebit",
"required": [
"bank_debit"
],
"properties": {
"bank_debit": {
"$ref": "#/components/schemas/BankDebitData"
}
}
},
{
"type": "object",
"title": "BankTransfer",
"required": [
"bank_transfer"
],
"properties": {
"bank_transfer": {
"$ref": "#/components/schemas/BankTransferData"
}
}
},
{
"type": "object",
"title": "RealTimePayment",
"required": [
"real_time_payment"
],
"properties": {
"real_time_payment": {
"$ref": "#/components/schemas/RealTimePaymentData"
}
}
},
{
"type": "object",
"title": "Crypto",
"required": [
"crypto"
],
"properties": {
"crypto": {
"$ref": "#/components/schemas/CryptoData"
}
}
},
{
"type": "string",
"title": "MandatePayment",
"enum": [
"mandate_payment"
]
},
{
"type": "string",
"title": "Reward",
"enum": [
"reward"
]
},
{
"type": "object",
"title": "Upi",
"required": [
"upi"
],
"properties": {
"upi": {
"$ref": "#/components/schemas/UpiData"
}
}
},
{
"type": "object",
"title": "Voucher",
"required": [
"voucher"
],
"properties": {
"voucher": {
"$ref": "#/components/schemas/VoucherData"
}
}
},
{
"type": "object",
"title": "GiftCard",
"required": [
"gift_card"
],
"properties": {
"gift_card": {
"$ref": "#/components/schemas/GiftCardData"
}
}
},
{
"type": "object",
"title": "CardToken",
"required": [
"card_token"
],
"properties": {
"card_token": {
"$ref": "#/components/schemas/CardToken"
}
}
},
{
"type": "object",
"title": "OpenBanking",
"required": [
"open_banking"
],
"properties": {
"open_banking": {
"$ref": "#/components/schemas/OpenBankingData"
}
}
},
{
"type": "object",
"title": "MobilePayment",
"required": [
"mobile_payment"
],
"properties": {
"mobile_payment": {
"$ref": "#/components/schemas/MobilePaymentData"
}
}
}
]
},
"PaymentMethodDataRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodData"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
}
}
],
"description": "The payment method information provided for making a payment"
},
"PaymentMethodDataResponse": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardResponse"
}
}
},
{
"type": "object",
"required": [
"bank_transfer"
],
"properties": {
"bank_transfer": {
"$ref": "#/components/schemas/BankTransferResponse"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletResponse"
}
}
},
{
"type": "object",
"required": [
"pay_later"
],
"properties": {
"pay_later": {
"$ref": "#/components/schemas/PaylaterResponse"
}
}
},
{
"type": "object",
"required": [
"bank_redirect"
],
"properties": {
"bank_redirect": {
"$ref": "#/components/schemas/BankRedirectResponse"
}
}
},
{
"type": "object",
"required": [
"crypto"
],
"properties": {
"crypto": {
"$ref": "#/components/schemas/CryptoResponse"
}
}
},
{
"type": "object",
"required": [
"bank_debit"
],
"properties": {
"bank_debit": {
"$ref": "#/components/schemas/BankDebitResponse"
}
}
},
{
"type": "object",
"required": [
"mandate_payment"
],
"properties": {
"mandate_payment": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"reward"
],
"properties": {
"reward": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"real_time_payment"
],
"properties": {
"real_time_payment": {
"$ref": "#/components/schemas/RealTimePaymentDataResponse"
}
}
},
{
"type": "object",
"required": [
"upi"
],
"properties": {
"upi": {
"$ref": "#/components/schemas/UpiResponse"
}
}
},
{
"type": "object",
"required": [
"voucher"
],
"properties": {
"voucher": {
"$ref": "#/components/schemas/VoucherResponse"
}
}
},
{
"type": "object",
"required": [
"gift_card"
],
"properties": {
"gift_card": {
"$ref": "#/components/schemas/GiftCardResponse"
}
}
},
{
"type": "object",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"$ref": "#/components/schemas/CardRedirectResponse"
}
}
},
{
"type": "object",
"required": [
"card_token"
],
"properties": {
"card_token": {
"$ref": "#/components/schemas/CardTokenResponse"
}
}
},
{
"type": "object",
"required": [
"open_banking"
],
"properties": {
"open_banking": {
"$ref": "#/components/schemas/OpenBankingResponse"
}
}
},
{
"type": "object",
"required": [
"mobile_payment"
],
"properties": {
"mobile_payment": {
"$ref": "#/components/schemas/MobilePaymentResponse"
}
}
}
]
},
"PaymentMethodDataResponseWithBilling": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataResponse"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
}
}
]
},
"PaymentMethodDeleteResponse": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the Payment method",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8"
}
}
},
"PaymentMethodIntentConfirm": {
"type": "object",
"required": [
"payment_method_data",
"payment_method_type",
"payment_method_subtype"
],
"properties": {
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"payment_method_data": {
"$ref": "#/components/schemas/PaymentMethodCreateData"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
}
},
"additionalProperties": false
},
"PaymentMethodIntentCreate": {
"type": "object",
"required": [
"customer_id"
],
"properties": {
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
}
},
"additionalProperties": false
},
"PaymentMethodIssuerCode": {
"type": "string",
"enum": [
"jp_hdfc",
"jp_icici",
"jp_googlepay",
"jp_applepay",
"jp_phonepay",
"jp_wechat",
"jp_sofort",
"jp_giropay",
"jp_sepa",
"jp_bacs"
]
},
"PaymentMethodListData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardDetailFromLocker"
}
}
},
{
"type": "object",
"required": [
"bank"
],
"properties": {
"bank": {
"$ref": "#/components/schemas/Bank"
}
}
}
]
},
"PaymentMethodListRequest": {
"type": "object",
"properties": {
"client_secret": {
"type": "string",
"description": "This is a 15 minute expiry token which shall be used from the client to authenticate and perform sessions from the SDK",
"example": "secret_k2uj3he2893eiu2d",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"accepted_countries": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"description": "The two-letter ISO currency code",
"example": [
"US",
"UK",
"IN"
],
"nullable": true
},
"amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"accepted_currencies": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "The three-letter ISO currency code",
"example": [
"USD",
"EUR"
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for recurring payments",
"example": true,
"nullable": true
},
"card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetwork"
},
"description": "Indicates whether the payment method is eligible for card netwotks",
"example": [
"visa",
"mastercard"
],
"nullable": true
},
"limit": {
"type": "integer",
"format": "int64",
"description": "Indicates the limit of last used payment methods",
"example": 1,
"nullable": true
}
},
"additionalProperties": false
},
"PaymentMethodListResponse": {
"type": "object",
"required": [
"payment_methods_enabled",
"customer_payment_methods"
],
"properties": {
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResponsePaymentMethodTypes"
},
"description": "The list of payment methods that are enabled for the business profile"
},
"customer_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerPaymentMethod"
},
"description": "The list of saved payment methods of the customer"
}
}
},
"PaymentMethodListResponseForPayments": {
"type": "object",
"required": [
"payment_methods_enabled"
],
"properties": {
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResponsePaymentMethodTypesForPayments"
},
"description": "The list of payment methods that are enabled for the business profile"
},
"customer_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerPaymentMethod"
},
"description": "The list of payment methods that are saved by the given customer\nThis field is only returned if the customer_id is provided in the request",
"nullable": true
}
}
},
"PaymentMethodResponse": {
"type": "object",
"required": [
"id",
"merchant_id",
"customer_id",
"payment_method_type",
"recurring_enabled"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the Payment method",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8"
},
"merchant_id": {
"type": "string",
"description": "Unique identifier for a merchant",
"example": "merchant_1671528864"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for recurring payments",
"example": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was created",
"example": "2023-01-18T11:04:09.922Z",
"nullable": true
},
"last_used_at": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was last used",
"example": "2024-02-24T11:04:09.922Z",
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodResponseData"
}
],
"nullable": true
},
"connector_tokens": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorTokenDetails"
},
"description": "The connector token details if available",
"nullable": true
},
"network_token": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenResponse"
}
],
"nullable": true
}
}
},
"PaymentMethodResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardDetailFromLocker"
}
}
}
]
},
"PaymentMethodSessionConfirmRequest": {
"type": "object",
"required": [
"payment_method_type",
"payment_method_subtype",
"payment_method_data"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_method_data": {
"$ref": "#/components/schemas/PaymentMethodDataRequest"
},
"return_url": {
"type": "string",
"description": "The return url to which the customer should be redirected to after adding the payment method",
"nullable": true
}
}
},
"PaymentMethodSessionDeleteSavedPaymentMethod": {
"type": "object",
"required": [
"payment_method_id"
],
"properties": {
"payment_method_id": {
"type": "string",
"description": "The payment method id of the payment method to be updated",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8"
}
}
},
"PaymentMethodSessionRequest": {
"type": "object",
"required": [
"customer_id"
],
"properties": {
"customer_id": {
"type": "string",
"description": "The customer id for which the payment methods session is to be created",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44"
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"return_url": {
"type": "string",
"description": "The return url to which the customer should be redirected to after adding the payment method",
"nullable": true
},
"psp_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/PspTokenization"
}
],
"nullable": true
},
"network_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenization"
}
],
"nullable": true
},
"expires_in": {
"type": "integer",
"format": "int32",
"description": "The time (seconds ) when the session will expire\nIf not provided, the session will expire in 15 minutes",
"default": 900,
"example": 900,
"nullable": true,
"minimum": 0
}
}
},
"PaymentMethodSessionResponse": {
"type": "object",
"required": [
"id",
"customer_id",
"expires_at",
"client_secret"
],
"properties": {
"id": {
"type": "string",
"example": "12345_pms_01926c58bc6e77c09e809964e72af8c8"
},
"customer_id": {
"type": "string",
"description": "The customer id for which the payment methods session is to be created",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8"
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"psp_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/PspTokenization"
}
],
"nullable": true
},
"network_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenization"
}
],
"nullable": true
},
"expires_at": {
"type": "string",
"format": "date-time",
"description": "The iso timestamp when the session will expire\nTrying to retrieve the session or any operations on the session after this time will result in an error",
"example": "2023-01-18T11:04:09.922Z"
},
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"return_url": {
"type": "string",
"description": "The return url to which the user should be redirected to",
"nullable": true
},
"next_action": {
"allOf": [
{
"$ref": "#/components/schemas/NextActionData"
}
],
"nullable": true
},
"authentication_details": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationDetails"
}
],
"nullable": true
},
"associated_payment_methods": {
"type": "array",
"items": {
"type": "string"
},
"description": "The payment method that was created using this payment method session",
"nullable": true
}
}
},
"PaymentMethodSessionUpdateSavedPaymentMethod": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodUpdate"
},
{
"type": "object",
"required": [
"payment_method_id"
],
"properties": {
"payment_method_id": {
"type": "string",
"description": "The payment method id of the payment method to be updated",
"example": "12345_pm_01926c58bc6e77c09e809964e72af8c8"
}
}
}
]
},
"PaymentMethodSpecificFeatures": {
"oneOf": [
{
"$ref": "#/components/schemas/CardSpecificFeatures"
}
]
},
"PaymentMethodStatus": {
"type": "string",
"description": "Payment Method Status",
"enum": [
"active",
"inactive",
"processing",
"awaiting_data"
]
},
"PaymentMethodSubtypeSpecificData": {
"oneOf": [
{
"type": "object",
"title": "card",
"required": [
"card_networks"
],
"properties": {
"card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetworkTypes"
}
}
}
},
{
"type": "object",
"title": "bank",
"required": [
"bank_names"
],
"properties": {
"bank_names": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BankCodeResponse"
}
}
}
}
]
},
"PaymentMethodType": {
"type": "string",
"description": "Indicates the sub type of payment method. Eg: 'google_pay' & 'apple_pay' for wallets.",
"enum": [
"ach",
"affirm",
"afterpay_clearpay",
"alfamart",
"ali_pay",
"ali_pay_hk",
"alma",
"amazon_pay",
"apple_pay",
"atome",
"bacs",
"bancontact_card",
"becs",
"benefit",
"bizum",
"blik",
"boleto",
"bca_bank_transfer",
"bni_va",
"bri_va",
"card_redirect",
"cimb_va",
"classic",
"credit",
"crypto_currency",
"cashapp",
"dana",
"danamon_va",
"debit",
"duit_now",
"efecty",
"eft",
"eps",
"fps",
"evoucher",
"giropay",
"givex",
"google_pay",
"go_pay",
"gcash",
"ideal",
"interac",
"indomaret",
"klarna",
"kakao_pay",
"local_bank_redirect",
"mandiri_va",
"knet",
"mb_way",
"mobile_pay",
"momo",
"momo_atm",
"multibanco",
"online_banking_thailand",
"online_banking_czech_republic",
"online_banking_finland",
"online_banking_fpx",
"online_banking_poland",
"online_banking_slovakia",
"oxxo",
"pago_efectivo",
"permata_bank_transfer",
"open_banking_uk",
"pay_bright",
"paypal",
"paze",
"pix",
"pay_safe_card",
"przelewy24",
"prompt_pay",
"pse",
"red_compra",
"red_pagos",
"samsung_pay",
"sepa",
"sepa_bank_transfer",
"sofort",
"swish",
"touch_n_go",
"trustly",
"twint",
"upi_collect",
"upi_intent",
"vipps",
"viet_qr",
"venmo",
"walley",
"we_chat_pay",
"seven_eleven",
"lawson",
"mini_stop",
"family_mart",
"seicomart",
"pay_easy",
"local_bank_transfer",
"mifinity",
"open_banking_pis",
"direct_carrier_billing",
"instant_bank_transfer"
]
},
"PaymentMethodUpdate": {
"type": "object",
"properties": {
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodUpdateData"
}
],
"nullable": true
},
"connector_token_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorTokenDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"PaymentMethodUpdateData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardDetailUpdate"
}
}
}
]
},
"PaymentMethodsEnabled": {
"type": "object",
"description": "Details of all the payment methods enabled for the connector for the given merchant account",
"required": [
"payment_method_type"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtypes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RequestPaymentMethodTypes"
},
"description": "Payment method configuration, this includes all the filters associated with the payment method",
"nullable": true
}
},
"additionalProperties": false
},
"PaymentMethodsSessionUpdateRequest": {
"type": "object",
"properties": {
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"psp_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/PspTokenization"
}
],
"nullable": true
},
"network_tokenization": {
"allOf": [
{
"$ref": "#/components/schemas/NetworkTokenization"
}
],
"nullable": true
}
}
},
"PaymentProcessingDetails": {
"type": "object",
"required": [
"payment_processing_certificate",
"payment_processing_certificate_key"
],
"properties": {
"payment_processing_certificate": {
"type": "string"
},
"payment_processing_certificate_key": {
"type": "string"
}
}
},
"PaymentProcessingDetailsAt": {
"oneOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentProcessingDetails"
},
{
"type": "object",
"required": [
"payment_processing_details_at"
],
"properties": {
"payment_processing_details_at": {
"type": "string",
"enum": [
"Hyperswitch"
]
}
}
}
]
},
{
"type": "object",
"required": [
"payment_processing_details_at"
],
"properties": {
"payment_processing_details_at": {
"type": "string",
"enum": [
"Connector"
]
}
}
}
],
"discriminator": {
"propertyName": "payment_processing_details_at"
}
},
"PaymentRetrieveBody": {
"type": "object",
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"nullable": true
},
"force_sync": {
"type": "boolean",
"description": "Decider to enable or disable the connector call for retrieve request",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "This is a token which expires after 15 minutes, used from the client to authenticate and create sessions from the SDK",
"nullable": true
},
"expand_captures": {
"type": "boolean",
"description": "If enabled provides list of captures linked to latest attempt",
"nullable": true
},
"expand_attempts": {
"type": "boolean",
"description": "If enabled provides list of attempts linked to payment intent",
"nullable": true
}
}
},
"PaymentRevenueRecoveryMetadata": {
"type": "object",
"required": [
"total_retry_count",
"payment_connector_transmission",
"billing_connector_id",
"active_attempt_payment_connector_id",
"billing_connector_payment_details",
"payment_method_type",
"payment_method_subtype",
"connector"
],
"properties": {
"total_retry_count": {
"type": "integer",
"format": "int32",
"description": "Total number of billing connector + recovery retries for a payment intent.",
"example": "1",
"minimum": 0
},
"payment_connector_transmission": {
"$ref": "#/components/schemas/PaymentConnectorTransmission"
},
"billing_connector_id": {
"type": "string",
"description": "Billing Connector Id to update the invoices",
"example": "mca_1234567890"
},
"active_attempt_payment_connector_id": {
"type": "string",
"description": "Payment Connector Id to retry the payments",
"example": "mca_1234567890"
},
"billing_connector_payment_details": {
"$ref": "#/components/schemas/BillingConnectorPaymentDetails"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"connector": {
"$ref": "#/components/schemas/Connector"
}
}
},
"PaymentType": {
"type": "string",
"description": "The type of the payment that differentiates between normal and various types of mandate payments. Use 'setup_mandate' in case of zero auth flow.",
"enum": [
"normal",
"new_mandate",
"setup_mandate",
"recurring_mandate"
]
},
"PaymentsCancelRequest": {
"type": "object",
"properties": {
"cancellation_reason": {
"type": "string",
"description": "The reason for the payment cancel",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
}
}
},
"PaymentsCaptureRequest": {
"type": "object",
"properties": {
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured/ debited from the user's payment method. If not passed the full amount will be captured.",
"example": 6540,
"nullable": true
}
}
},
"PaymentsCompleteAuthorizeRequest": {
"type": "object",
"required": [
"client_secret"
],
"properties": {
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
}
},
"PaymentsConfirmIntentRequest": {
"type": "object",
"description": "Request for Payment Intent Confirm",
"required": [
"payment_method_data",
"payment_method_type",
"payment_method_subtype"
],
"properties": {
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation\nIf this url is not passed, the url configured in the business profile will be used",
"example": "https://hyperswitch.io",
"nullable": true
},
"payment_method_data": {
"$ref": "#/components/schemas/PaymentMethodDataRequest"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_method_id": {
"type": "string",
"description": "The payment_method_id to be associated with the payment",
"nullable": true
}
},
"additionalProperties": false
},
"PaymentsCreateIntentRequest": {
"type": "object",
"required": [
"amount_details",
"customer_id"
],
"properties": {
"amount_details": {
"$ref": "#/components/schemas/AmountDetails"
},
"merchant_reference_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing_algorithm_id": {
"type": "string",
"description": "The routing algorithm id to be used for the payment",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "no_three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"customer_present": {
"allOf": [
{
"$ref": "#/components/schemas/PresenceOfCustomerDuringPayment"
}
],
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"apply_mit_exemption": {
"allOf": [
{
"$ref": "#/components/schemas/MitExemptionRequest"
}
],
"nullable": true
},
"statement_descriptor": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 22
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"payment_link_enabled": {
"allOf": [
{
"$ref": "#/components/schemas/EnablePaymentLinkRequest"
}
],
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
"request_incremental_authorization": {
"allOf": [
{
"$ref": "#/components/schemas/RequestIncrementalAuthorization"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds, if not sent it will be taken from profile config\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"allOf": [
{
"$ref": "#/components/schemas/External3dsAuthenticationRequest"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
}
},
"additionalProperties": false
},
"PaymentsDynamicTaxCalculationRequest": {
"type": "object",
"required": [
"shipping",
"client_secret",
"payment_method_type"
],
"properties": {
"shipping": {
"$ref": "#/components/schemas/Address"
},
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"session_id": {
"type": "string",
"description": "Session Id",
"nullable": true
}
}
},
"PaymentsDynamicTaxCalculationResponse": {
"type": "object",
"required": [
"payment_id",
"net_amount",
"display_amount"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"net_amount": {
"$ref": "#/components/schemas/MinorUnit"
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"display_amount": {
"$ref": "#/components/schemas/DisplayAmountOnSdk"
}
}
},
"PaymentsExternalAuthenticationRequest": {
"type": "object",
"required": [
"client_secret",
"device_channel",
"threeds_method_comp_ind"
],
"properties": {
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"sdk_information": {
"allOf": [
{
"$ref": "#/components/schemas/SdkInformation"
}
],
"nullable": true
},
"device_channel": {
"$ref": "#/components/schemas/DeviceChannel"
},
"threeds_method_comp_ind": {
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
}
},
"PaymentsExternalAuthenticationResponse": {
"type": "object",
"required": [
"trans_status",
"three_ds_requestor_url"
],
"properties": {
"trans_status": {
"$ref": "#/components/schemas/TransactionStatus"
},
"acs_url": {
"type": "string",
"description": "Access Server URL to be used for challenge submission",
"nullable": true
},
"challenge_request": {
"type": "string",
"description": "Challenge request which should be sent to acs_url",
"nullable": true
},
"acs_reference_number": {
"type": "string",
"description": "Unique identifier assigned by the EMVCo(Europay, Mastercard and Visa)",
"nullable": true
},
"acs_trans_id": {
"type": "string",
"description": "Unique identifier assigned by the ACS to identify a single transaction",
"nullable": true
},
"three_dsserver_trans_id": {
"type": "string",
"description": "Unique identifier assigned by the 3DS Server to identify a single transaction",
"nullable": true
},
"acs_signed_content": {
"type": "string",
"description": "Contains the JWS object created by the ACS for the ARes(Authentication Response) message",
"nullable": true
},
"three_ds_requestor_url": {
"type": "string",
"description": "Three DS Requestor URL"
},
"three_ds_requestor_app_url": {
"type": "string",
"description": "Merchant app declaring their URL within the CReq message so that the Authentication app can call the Merchant app after OOB authentication has occurred",
"nullable": true
}
}
},
"PaymentsIncrementalAuthorizationRequest": {
"type": "object",
"required": [
"amount"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The total amount including previously authorized amount and additional amount",
"example": 6540
},
"reason": {
"type": "string",
"description": "Reason for incremental authorization",
"nullable": true
}
}
},
"PaymentsIntentResponse": {
"type": "object",
"required": [
"id",
"status",
"amount_details",
"client_secret",
"profile_id",
"capture_method",
"customer_id",
"customer_present",
"setup_future_usage",
"apply_mit_exemption",
"payment_link_enabled",
"request_incremental_authorization",
"expires_on",
"request_external_three_ds_authentication"
],
"properties": {
"id": {
"type": "string",
"description": "Global Payment Id for the payment"
},
"status": {
"$ref": "#/components/schemas/IntentStatus"
},
"amount_details": {
"$ref": "#/components/schemas/AmountDetailsResponse"
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo"
},
"profile_id": {
"type": "string",
"description": "The identifier for the profile. This is inferred from the `x-profile-id` header"
},
"merchant_reference_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing_algorithm_id": {
"type": "string",
"description": "The routing algorithm id to be used for the payment",
"nullable": true
},
"capture_method": {
"$ref": "#/components/schemas/CaptureMethod"
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"customer_present": {
"$ref": "#/components/schemas/PresenceOfCustomerDuringPayment"
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"$ref": "#/components/schemas/FutureUsage"
},
"apply_mit_exemption": {
"$ref": "#/components/schemas/MitExemptionRequest"
},
"statement_descriptor": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 22
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"payment_link_enabled": {
"$ref": "#/components/schemas/EnablePaymentLinkRequest"
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
"request_incremental_authorization": {
"$ref": "#/components/schemas/RequestIncrementalAuthorization"
},
"expires_on": {
"type": "string",
"format": "date-time",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds"
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"$ref": "#/components/schemas/External3dsAuthenticationRequest"
}
},
"additionalProperties": false
},
"PaymentsListResponseItem": {
"type": "object",
"required": [
"id",
"merchant_id",
"profile_id",
"status",
"amount",
"created",
"attempt_count",
"return_url"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the payment",
"example": "12345_pay_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"maxLength": 255
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this payment"
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"nullable": true,
"maxLength": 64,
"minLength": 32
},
"payment_method_id": {
"type": "string",
"description": "Identifier for Payment Method used for the payment",
"nullable": true
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/IntentStatus"
}
],
"default": "requires_confirmation"
},
"amount": {
"$ref": "#/components/schemas/PaymentAmountDetailsResponse"
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payment was created",
"example": "2022-09-10T10:11:12Z"
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_method_subtype": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector": {
"allOf": [
{
"$ref": "#/components/schemas/Connector"
}
],
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"nullable": true
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetailsResponse"
}
],
"nullable": true
},
"merchant_reference_id": {
"type": "string",
"description": "The reference id for the order in the merchant's system. This value can be passed by the merchant.",
"nullable": true
},
"connector_payment_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector",
"example": "993672945374576J",
"nullable": true
},
"connector_response_reference_id": {
"type": "string",
"description": "Reference to the capture at connector side",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payment",
"example": "It's my first payment request",
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"attempt_count": {
"type": "integer",
"format": "int32",
"description": "Total number of attempts associated with this payment"
},
"error": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
}
],
"nullable": true
},
"cancellation_reason": {
"type": "string",
"description": "If the payment was cancelled the reason will be provided here",
"nullable": true
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Information about the product , quantity and amount for connectors. (e.g. Klarna)",
"example": "[{\n \"product_name\": \"gillete creme\",\n \"quantity\": 15,\n \"amount\" : 900\n }]",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io"
},
"statement_descriptor": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Allowed Payment Method Types for a given PaymentIntent",
"nullable": true
},
"authorization_count": {
"type": "integer",
"format": "int32",
"description": "Total number of authorizations happened in an incremental_authorization payment",
"nullable": true
},
"modified_at": {
"type": "string",
"format": "date-time",
"description": "Date time at which payment was updated",
"example": "2022-09-10T10:11:12Z",
"nullable": true
}
}
},
"PaymentsRequest": {
"type": "object",
"required": [
"amount_details",
"customer_id",
"payment_method_data",
"payment_method_type",
"payment_method_subtype"
],
"properties": {
"amount_details": {
"$ref": "#/components/schemas/AmountDetails"
},
"merchant_reference_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing_algorithm_id": {
"type": "string",
"description": "The routing algorithm id to be used for the payment",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "no_three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"customer_present": {
"allOf": [
{
"$ref": "#/components/schemas/PresenceOfCustomerDuringPayment"
}
],
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"apply_mit_exemption": {
"allOf": [
{
"$ref": "#/components/schemas/MitExemptionRequest"
}
],
"nullable": true
},
"statement_descriptor": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 22
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"payment_link_enabled": {
"allOf": [
{
"$ref": "#/components/schemas/EnablePaymentLinkRequest"
}
],
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
"request_incremental_authorization": {
"allOf": [
{
"$ref": "#/components/schemas/RequestIncrementalAuthorization"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds, if not sent it will be taken from profile config\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"allOf": [
{
"$ref": "#/components/schemas/External3dsAuthenticationRequest"
}
],
"nullable": true
},
"payment_method_data": {
"$ref": "#/components/schemas/PaymentMethodDataRequest"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_method_id": {
"type": "string",
"description": "The payment_method_id to be associated with the payment",
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
}
},
"additionalProperties": false
},
"PaymentsResponse": {
"type": "object",
"description": "Response for Payment Intent Confirm\nFew fields should be expandable, we need not return these in the normal response\nBut when explicitly requested for expanded objects, these can be returned\nFor example\nshipping, billing, customer, payment_method",
"required": [
"id",
"status",
"amount",
"customer_id",
"client_secret",
"created"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "12345_pay_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"status": {
"$ref": "#/components/schemas/IntentStatus"
},
"amount": {
"$ref": "#/components/schemas/PaymentAmountDetailsResponse"
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "12345_cus_01926c58bc6e77c09e809964e72af8c8",
"maxLength": 64,
"minLength": 32
},
"connector": {
"type": "string",
"description": "The connector used for the payment",
"example": "stripe",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification."
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payment was created",
"example": "2022-09-10T10:11:12Z"
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataResponseWithBilling"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_method_subtype": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector",
"example": "993672945374576J",
"nullable": true
},
"connector_reference_id": {
"type": "string",
"description": "reference(Identifier) to the payment at connector side",
"example": "993672945374576J",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"error": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
}
],
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"attempts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentAttemptResponse"
},
"description": "List of payment attempts associated with payment intent",
"nullable": true
},
"connector_token_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorTokenDetails"
}
],
"nullable": true
},
"payment_method_id": {
"type": "string",
"description": "The payment_method_id associated with the payment",
"nullable": true
},
"next_action": {
"allOf": [
{
"$ref": "#/components/schemas/NextActionData"
}
],
"nullable": true
},
"return_url": {
"type": "string",
"description": "The url to which user must be redirected to after completion of the purchase",
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "no_three_ds",
"nullable": true
},
"authentication_type_applied": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "no_three_ds",
"nullable": true
}
}
},
"PaymentsRetrieveRequest": {
"type": "object",
"description": "Request for Payment Status",
"properties": {
"force_sync": {
"type": "boolean",
"description": "A boolean used to indicate if the payment status should be fetched from the connector\nIf this is set to true, the status will be fetched from the connector"
},
"expand_attempts": {
"type": "boolean",
"description": "A boolean used to indicate if all the attempts needs to be fetched for the intent.\nIf this is set to true, attempts list will be available in the response."
},
"param": {
"type": "string",
"description": "These are the query params that are sent in case of redirect response.\nThese can be ingested by the connector to take necessary actions.",
"nullable": true
}
}
},
"PaymentsSessionRequest": {
"type": "object"
},
"PaymentsSessionResponse": {
"type": "object",
"required": [
"payment_id",
"session_token"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"session_token": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SessionToken"
},
"description": "The list of session token object"
}
}
},
"PaymentsUpdateIntentRequest": {
"type": "object",
"properties": {
"amount_details": {
"allOf": [
{
"$ref": "#/components/schemas/AmountDetailsUpdate"
}
],
"nullable": true
},
"routing_algorithm_id": {
"type": "string",
"description": "The routing algorithm id to be used for the payment",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "no_three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"customer_present": {
"allOf": [
{
"$ref": "#/components/schemas/PresenceOfCustomerDuringPayment"
}
],
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"apply_mit_exemption": {
"allOf": [
{
"$ref": "#/components/schemas/MitExemptionRequest"
}
],
"nullable": true
},
"statement_descriptor": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 22
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object. This metadata will override the metadata that was passed in payments",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
"request_incremental_authorization": {
"allOf": [
{
"$ref": "#/components/schemas/RequestIncrementalAuthorization"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds, if not sent it will be taken from profile config\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"allOf": [
{
"$ref": "#/components/schemas/External3dsAuthenticationRequest"
}
],
"nullable": true
},
"set_active_attempt_id": {
"allOf": [
{
"$ref": "#/components/schemas/UpdateActiveAttempt"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"PayoutActionRequest": {
"type": "object"
},
"PayoutAttemptResponse": {
"type": "object",
"required": [
"attempt_id",
"status",
"amount"
],
"properties": {
"attempt_id": {
"type": "string",
"description": "Unique identifier for the attempt"
},
"status": {
"$ref": "#/components/schemas/PayoutStatus"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout attempt amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6583
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payout",
"nullable": true
},
"error_code": {
"type": "string",
"description": "Connector's error code in case of failures",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Connector's error message in case of failures",
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payout provided by the connector",
"nullable": true
},
"cancellation_reason": {
"type": "string",
"description": "If the payout was cancelled the reason provided here",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "(This field is not live yet)\nError code unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "UE_000",
"nullable": true,
"maxLength": 255
},
"unified_message": {
"type": "string",
"description": "(This field is not live yet)\nError message unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "Invalid card details",
"nullable": true,
"maxLength": 1024
}
}
},
"PayoutConnectors": {
"type": "string",
"enum": [
"adyen",
"adyenplatform",
"cybersource",
"ebanx",
"nomupay",
"payone",
"paypal",
"stripe",
"wise"
]
},
"PayoutCreatePayoutLinkConfig": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"payout_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payout methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
},
"form_layout": {
"allOf": [
{
"$ref": "#/components/schemas/UIWidgetFormLayout"
}
],
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "`test_mode` allows for opening payout links without any restrictions. This removes\n- domain name validations\n- check for making sure link is accessed within an iframe",
"example": false,
"nullable": true
}
}
}
],
"description": "Custom payout link config for the particular payout, if payout link is to be generated."
},
"PayoutCreateRequest": {
"type": "object",
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts that have been done by a single merchant. This field is auto generated and is returned in the API response, **not required to be included in the Payout Create/Update Request.**",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key provided during the request, **not required to be included in the Payout Create/Update Request.**",
"example": "merchant_1668273825",
"nullable": true,
"maxLength": 255
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 1000,
"nullable": true,
"minimum": 0
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "This field allows the merchant to manually select a connector with which the payout can go through.",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "This field is used when merchant wants to confirm the payout, thus useful for the payout _Confirm_ request. Ideally merchants should _Create_ a payout, _Update_ it (if required), then _Confirm_ it.",
"default": false,
"example": true,
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodData"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true,
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated. _Deprecated: Use customer_id instead._",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout. _Deprecated: Use profile_id instead._",
"deprecated": true,
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutEntityType"
}
],
"nullable": true
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false,
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payout_token": {
"type": "string",
"description": "Provide a reference to a stored payout method, used to process the payout.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to use for this payout, especially if there are multiple business profiles associated with the account, otherwise default business profile associated with the merchant account will be used.",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"payout_link": {
"type": "boolean",
"description": "Whether to get the payout link (if applicable). Merchant need to specify this during the Payout _Create_, this field can not be updated during Payout _Update_.",
"default": false,
"example": true,
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutCreatePayoutLinkConfig"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
},
"additionalProperties": false
},
"PayoutCreateResponse": {
"type": "object",
"required": [
"payout_id",
"merchant_id",
"amount",
"currency",
"auto_fulfill",
"customer_id",
"client_secret",
"return_url",
"business_country",
"entity_type",
"recurring",
"status",
"profile_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"maxLength": 255
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 1000
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"connector": {
"type": "string",
"description": "The connector used for the payout",
"example": "wise",
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodDataResponse"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetailsResponse"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo"
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io"
},
"business_country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout",
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"$ref": "#/components/schemas/PayoutEntityType"
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Unique identifier of the merchant connector account",
"example": "mca_sAD3OZLATetvjLOYhUSy",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/PayoutStatus"
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this payout"
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payout was created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "Underlying processor's payout resource ID",
"example": "S3FC9G9M2MVFDXT5",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"attempts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutAttemptResponse"
},
"description": "List of attempts",
"nullable": true
},
"payout_link": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutLinkResponse"
}
],
"nullable": true
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"unified_code": {
"type": "string",
"description": "(This field is not live yet)\nError code unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "UE_000",
"nullable": true,
"maxLength": 255
},
"unified_message": {
"type": "string",
"description": "(This field is not live yet)\nError message unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "Invalid card details",
"nullable": true,
"maxLength": 1024
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
},
"additionalProperties": false
},
"PayoutEntityType": {
"type": "string",
"description": "Type of entity to whom the payout is being carried out to, select from the given list of options",
"enum": [
"Individual",
"Company",
"NonProfit",
"PublicSector",
"NaturalPerson",
"lowercase",
"Personal"
]
},
"PayoutLinkInitiateRequest": {
"type": "object",
"required": [
"merchant_id",
"payout_id"
],
"properties": {
"merchant_id": {
"type": "string"
},
"payout_id": {
"type": "string"
}
}
},
"PayoutLinkResponse": {
"type": "object",
"required": [
"payout_link_id",
"link"
],
"properties": {
"payout_link_id": {
"type": "string"
},
"link": {
"type": "string"
}
}
},
"PayoutListConstraints": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true
},
"starting_after": {
"type": "string",
"description": "A cursor for use in pagination, fetch the next list after some object",
"example": "pay_fafa124123",
"nullable": true
},
"ending_before": {
"type": "string",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"example": "pay_fafa124123",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int32",
"description": "limit on the number of objects to return",
"default": 10,
"maximum": 100,
"minimum": 0
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which payout is created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
}
}
}
]
},
"PayoutListFilterConstraints": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"currency",
"entity_type"
],
"properties": {
"payout_id": {
"type": "string",
"description": "The identifier for payout",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"profile_id": {
"type": "string",
"description": "The identifier for business profile",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int32",
"description": "The limit on the number of objects. The default limit is 10 and max limit is 20",
"minimum": 0
},
"offset": {
"type": "integer",
"format": "int32",
"description": "The starting point within a list of objects",
"nullable": true,
"minimum": 0
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "The list of connectors to filter payouts list",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"status": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutStatus"
},
"description": "The list of payout status to filter payouts list",
"example": [
"pending",
"failed"
],
"nullable": true
},
"payout_method": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutType"
},
"description": "The list of payout methods to filter payouts list",
"example": [
"bank",
"card"
],
"nullable": true
},
"entity_type": {
"$ref": "#/components/schemas/PayoutEntityType"
}
}
}
]
},
"PayoutListResponse": {
"type": "object",
"required": [
"size",
"data"
],
"properties": {
"size": {
"type": "integer",
"description": "The number of payouts included in the list",
"minimum": 0
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutCreateResponse"
},
"description": "The list of payouts response objects"
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "The total number of available payouts for given constraints",
"nullable": true
}
}
},
"PayoutMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardPayout"
}
}
},
{
"type": "object",
"required": [
"bank"
],
"properties": {
"bank": {
"$ref": "#/components/schemas/Bank"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/Wallet"
}
}
}
],
"description": "The payout method information required for carrying out a payout"
},
"PayoutMethodDataResponse": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"bank"
],
"properties": {
"bank": {
"$ref": "#/components/schemas/BankAdditionalData"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletAdditionalData"
}
}
}
],
"description": "The payout method information for response"
},
"PayoutRequest": {
"oneOf": [
{
"type": "object",
"required": [
"PayoutActionRequest"
],
"properties": {
"PayoutActionRequest": {
"$ref": "#/components/schemas/PayoutActionRequest"
}
}
},
{
"type": "object",
"required": [
"PayoutCreateRequest"
],
"properties": {
"PayoutCreateRequest": {
"$ref": "#/components/schemas/PayoutCreateRequest"
}
}
},
{
"type": "object",
"required": [
"PayoutRetrieveRequest"
],
"properties": {
"PayoutRetrieveRequest": {
"$ref": "#/components/schemas/PayoutRetrieveRequest"
}
}
}
]
},
"PayoutRetrieveBody": {
"type": "object",
"properties": {
"force_sync": {
"type": "boolean",
"nullable": true
},
"merchant_id": {
"type": "string",
"nullable": true
}
}
},
"PayoutRetrieveRequest": {
"type": "object",
"required": [
"payout_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
},
"force_sync": {
"type": "boolean",
"description": "`force_sync` with the connector to get payout details\n(defaults to false)",
"default": false,
"example": true,
"nullable": true
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"nullable": true
}
}
},
"PayoutSendPriority": {
"type": "string",
"description": "The send method which will be required for processing payouts, check options for better understanding.",
"enum": [
"instant",
"fast",
"regular",
"wire",
"cross_border",
"internal"
]
},
"PayoutStatus": {
"type": "string",
"enum": [
"success",
"failed",
"cancelled",
"initiated",
"expired",
"reversed",
"pending",
"ineligible",
"requires_creation",
"requires_confirmation",
"requires_payout_method_data",
"requires_fulfillment",
"requires_vendor_account_creation"
]
},
"PayoutType": {
"type": "string",
"description": "The payout_type of the payout request is a mandatory field for confirming the payouts. It should be specified in the Create request. If not provided, it must be updated in the Payout Update request before it can be confirmed.",
"enum": [
"card",
"bank",
"wallet"
]
},
"Paypal": {
"type": "object",
"required": [
"email",
"telephone_number",
"paypal_id"
],
"properties": {
"email": {
"type": "string",
"description": "Email linked with paypal account",
"example": "john.doe@example.com"
},
"telephone_number": {
"type": "string",
"description": "mobile number linked to paypal account",
"example": "16608213349"
},
"paypal_id": {
"type": "string",
"description": "id of the paypal account",
"example": "G83KXTJ5EHCQ2"
}
}
},
"PaypalAdditionalData": {
"type": "object",
"description": "Masked payout method details for paypal wallet payout method",
"properties": {
"email": {
"type": "string",
"description": "Email linked with paypal account",
"example": "john.doe@example.com",
"nullable": true
},
"telephone_number": {
"type": "string",
"description": "mobile number linked to paypal account",
"example": "******* 3349",
"nullable": true
},
"paypal_id": {
"type": "string",
"description": "id of the paypal account",
"example": "G83K ***** HCQ2",
"nullable": true
}
}
},
"PaypalRedirection": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "paypal's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
}
}
},
"PaypalSessionTokenResponse": {
"type": "object",
"required": [
"connector",
"session_token",
"sdk_next_action"
],
"properties": {
"connector": {
"type": "string",
"description": "Name of the connector"
},
"session_token": {
"type": "string",
"description": "The session token for PayPal"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
}
}
},
"PazeSessionTokenResponse": {
"type": "object",
"required": [
"client_id",
"client_name",
"client_profile_id",
"transaction_currency_code",
"transaction_amount"
],
"properties": {
"client_id": {
"type": "string",
"description": "Paze Client ID"
},
"client_name": {
"type": "string",
"description": "Client Name to be displayed on the Paze screen"
},
"client_profile_id": {
"type": "string",
"description": "Paze Client Profile ID"
},
"transaction_currency_code": {
"$ref": "#/components/schemas/Currency"
},
"transaction_amount": {
"type": "string",
"description": "The transaction amount",
"example": "38.02"
},
"email_address": {
"type": "string",
"description": "Email Address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
}
}
},
"PazeWalletData": {
"type": "object",
"required": [
"complete_response"
],
"properties": {
"complete_response": {
"type": "string"
}
}
},
"PhoneDetails": {
"type": "object",
"properties": {
"number": {
"type": "string",
"description": "The contact number",
"example": "9123456789",
"nullable": true
},
"country_code": {
"type": "string",
"description": "The country code attached to the number",
"example": "+1",
"nullable": true
}
}
},
"PixBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"pix_key"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_branch": {
"type": "string",
"description": "Bank branch",
"example": "3707",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"pix_key": {
"type": "string",
"description": "Unique key for pix customer",
"example": "000123456"
},
"tax_id": {
"type": "string",
"description": "Individual taxpayer identification number",
"example": "000123456",
"nullable": true
}
}
},
"PixBankTransferAdditionalData": {
"type": "object",
"properties": {
"pix_key": {
"type": "string",
"description": "Partially masked unique key for pix transfer",
"example": "a1f4102e ****** 6fa48899c1d1",
"nullable": true
},
"cpf": {
"type": "string",
"description": "Partially masked CPF - CPF is a Brazilian tax identification number",
"example": "**** 124689",
"nullable": true
},
"cnpj": {
"type": "string",
"description": "Partially masked CNPJ - CNPJ is a Brazilian company tax identification number",
"example": "**** 417312",
"nullable": true
}
}
},
"PollConfigResponse": {
"type": "object",
"required": [
"poll_id",
"delay_in_secs",
"frequency"
],
"properties": {
"poll_id": {
"type": "string",
"description": "Poll Id"
},
"delay_in_secs": {
"type": "integer",
"format": "int32",
"description": "Interval of the poll"
},
"frequency": {
"type": "integer",
"format": "int32",
"description": "Frequency of the poll"
}
}
},
"PollResponse": {
"type": "object",
"required": [
"poll_id",
"status"
],
"properties": {
"poll_id": {
"type": "string",
"description": "The poll id"
},
"status": {
"$ref": "#/components/schemas/PollStatus"
}
}
},
"PollStatus": {
"type": "string",
"enum": [
"pending",
"completed",
"not_found"
]
},
"PresenceOfCustomerDuringPayment": {
"type": "string",
"description": "Set to `present` to indicate that the customer is in your checkout flow during this payment, and therefore is able to authenticate. This parameter should be `absent` when merchant's doing merchant initiated payments and customer is not present while doing the payment.",
"enum": [
"present",
"absent"
]
},
"PrimaryBusinessDetails": {
"type": "object",
"required": [
"country",
"business"
],
"properties": {
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"business": {
"type": "string",
"example": "food"
}
},
"additionalProperties": false
},
"ProcessTrackerStatus": {
"type": "string",
"enum": [
"processing",
"new",
"pending",
"process_started",
"finish",
"review"
]
},
"ProcessorPaymentToken": {
"type": "object",
"description": "Processor payment token for MIT payments where payment_method_data is not available",
"required": [
"processor_payment_token"
],
"properties": {
"processor_payment_token": {
"type": "string"
},
"merchant_connector_id": {
"type": "string",
"nullable": true
}
}
},
"ProductType": {
"type": "string",
"enum": [
"physical",
"digital",
"travel",
"ride",
"event",
"accommodation"
]
},
"ProfileCreate": {
"type": "object",
"required": [
"profile_name"
],
"properties": {
"profile_name": {
"type": "string",
"description": "The name of profile",
"maxLength": 64
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": true,
"example": true,
"nullable": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true,
"nullable": true
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"order_fulfillment_time": {
"type": "integer",
"format": "int32",
"description": "Will be used to determine the time till which your payment will be active once the payment session starts",
"example": 900,
"nullable": true,
"minimum": 0
},
"order_fulfillment_time_origin": {
"allOf": [
{
"$ref": "#/components/schemas/OrderFulfillmentTimeOrigin"
}
],
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Verified Apple Pay domains for a particular profile",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Client Secret Default expiry for all payments created under this profile",
"example": 900,
"nullable": true,
"minimum": 0
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPaymentLinkConfig"
}
],
"nullable": true
},
"authentication_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationConnectorDetails"
}
],
"nullable": true
},
"use_billing_as_payment_method_billing": {
"type": "boolean",
"description": "Whether to use the billing details passed when creating the intent as payment method billing",
"nullable": true
},
"collect_shipping_details_from_wallet_connector_if_required": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"collect_billing_details_from_wallet_connector_if_required": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"is_connector_agnostic_mit_enabled": {
"type": "boolean",
"description": "Indicates if the MIT (merchant initiated transaction) payments can be made connector\nagnostic, i.e., MITs may be processed through different connector than CIT (customer\ninitiated transaction) based on the routing rules.\nIf set to `false`, MIT will go through the same connector as the CIT.",
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPayoutLinkConfig"
}
],
"nullable": true
},
"outgoing_webhook_custom_http_headers": {
"type": "object",
"description": "These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs.",
"nullable": true
},
"tax_connector_id": {
"type": "string",
"description": "Merchant Connector id to be stored for tax_calculator connector",
"nullable": true
},
"is_tax_connector_enabled": {
"type": "boolean",
"description": "Indicates if tax_calculator connector is enabled or not.\nIf set to `true` tax_connector_id will be checked."
},
"is_network_tokenization_enabled": {
"type": "boolean",
"description": "Indicates if network tokenization is enabled or not."
},
"is_click_to_pay_enabled": {
"type": "boolean",
"description": "Indicates if click to pay is enabled or not.",
"default": false,
"example": false
},
"authentication_product_ids": {
"type": "object",
"description": "Product authentication ids",
"nullable": true
},
"card_testing_guard_config": {
"allOf": [
{
"$ref": "#/components/schemas/CardTestingGuardConfig"
}
],
"nullable": true
},
"is_clear_pan_retries_enabled": {
"type": "boolean",
"description": "Indicates if clear pan retries is enabled or not.",
"nullable": true
},
"is_debit_routing_enabled": {
"type": "boolean",
"description": "Indicates if debit routing is enabled or not",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"ProfileDefaultRoutingConfig": {
"type": "object",
"required": [
"profile_id",
"connectors"
],
"properties": {
"profile_id": {
"type": "string"
},
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
"ProfileResponse": {
"type": "object",
"required": [
"merchant_id",
"id",
"profile_name",
"enable_payment_response_hash",
"redirect_to_merchant_with_http_post",
"is_tax_connector_enabled",
"is_network_tokenization_enabled",
"is_click_to_pay_enabled",
"is_clear_pan_retries_enabled"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"id": {
"type": "string",
"description": "The identifier for profile. This must be used for creating merchant accounts, payments and payouts",
"example": "pro_abcdefghijklmnopqrstuvwxyz",
"maxLength": 64
},
"profile_name": {
"type": "string",
"description": "Name of the profile",
"maxLength": 64
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": true,
"example": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Verified Apple Pay domains for a particular profile",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int64",
"description": "Client Secret Default expiry for all payments created under this profile",
"example": 900,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPaymentLinkConfig"
}
],
"nullable": true
},
"authentication_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationConnectorDetails"
}
],
"nullable": true
},
"use_billing_as_payment_method_billing": {
"type": "boolean",
"nullable": true
},
"extended_card_info_config": {
"allOf": [
{
"$ref": "#/components/schemas/ExtendedCardInfoConfig"
}
],
"nullable": true
},
"collect_shipping_details_from_wallet_connector_if_required": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"collect_billing_details_from_wallet_connector_if_required": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"is_connector_agnostic_mit_enabled": {
"type": "boolean",
"description": "Indicates if the MIT (merchant initiated transaction) payments can be made connector\nagnostic, i.e., MITs may be processed through different connector than CIT (customer\ninitiated transaction) based on the routing rules.\nIf set to `false`, MIT will go through the same connector as the CIT.",
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPayoutLinkConfig"
}
],
"nullable": true
},
"outgoing_webhook_custom_http_headers": {
"type": "object",
"description": "These key-value pairs are sent as additional custom headers in the outgoing webhook request.",
"nullable": true
},
"order_fulfillment_time": {
"type": "integer",
"format": "int32",
"description": "Will be used to determine the time till which your payment will be active once the payment session starts",
"example": 900,
"nullable": true,
"minimum": 0
},
"order_fulfillment_time_origin": {
"allOf": [
{
"$ref": "#/components/schemas/OrderFulfillmentTimeOrigin"
}
],
"nullable": true
},
"tax_connector_id": {
"type": "string",
"description": "Merchant Connector id to be stored for tax_calculator connector",
"nullable": true
},
"is_tax_connector_enabled": {
"type": "boolean",
"description": "Indicates if tax_calculator connector is enabled or not.\nIf set to `true` tax_connector_id will be checked."
},
"is_network_tokenization_enabled": {
"type": "boolean",
"description": "Indicates if network tokenization is enabled or not.",
"default": false,
"example": false
},
"should_collect_cvv_during_payment": {
"type": "boolean",
"description": "Indicates if CVV should be collected during payment or not.",
"nullable": true
},
"is_click_to_pay_enabled": {
"type": "boolean",
"description": "Indicates if click to pay is enabled or not.",
"default": false,
"example": false
},
"authentication_product_ids": {
"type": "object",
"description": "Product authentication ids",
"nullable": true
},
"card_testing_guard_config": {
"allOf": [
{
"$ref": "#/components/schemas/CardTestingGuardConfig"
}
],
"nullable": true
},
"is_clear_pan_retries_enabled": {
"type": "boolean",
"description": "Indicates if clear pan retries is enabled or not."
},
"is_debit_routing_enabled": {
"type": "boolean",
"description": "Indicates if debit routing is enabled or not",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
},
"ProgramConnectorSelection": {
"type": "object",
"description": "The program, having a default connector selection and\na bunch of rules. Also can hold arbitrary metadata.",
"required": [
"defaultSelection",
"rules",
"metadata"
],
"properties": {
"defaultSelection": {
"$ref": "#/components/schemas/ConnectorSelection"
},
"rules": {
"$ref": "#/components/schemas/RuleConnectorSelection"
},
"metadata": {
"type": "object",
"additionalProperties": {}
}
}
},
"PspTokenization": {
"type": "object",
"description": "The Payment Service Provider Configuration for payment methods that are created using the payment method session",
"required": [
"tokenization_type",
"connector_id"
],
"properties": {
"tokenization_type": {
"$ref": "#/components/schemas/TokenizationType"
},
"connector_id": {
"type": "string",
"description": "The merchant connector id to be used for tokenization"
}
}
},
"RealTimePaymentData": {
"oneOf": [
{
"type": "object",
"required": [
"fps"
],
"properties": {
"fps": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"duit_now"
],
"properties": {
"duit_now": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"prompt_pay"
],
"properties": {
"prompt_pay": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"viet_qr"
],
"properties": {
"viet_qr": {
"type": "object"
}
}
}
]
},
"RealTimePaymentDataResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/RealTimePaymentData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"ReceiverDetails": {
"type": "object",
"required": [
"amount_received"
],
"properties": {
"amount_received": {
"type": "integer",
"format": "int64",
"description": "The amount received by receiver"
},
"amount_charged": {
"type": "integer",
"format": "int64",
"description": "The amount charged by ACH",
"nullable": true
},
"amount_remaining": {
"type": "integer",
"format": "int64",
"description": "The amount remaining to be sent via ACH",
"nullable": true
}
}
},
"ReconStatus": {
"type": "string",
"enum": [
"not_requested",
"requested",
"active",
"disabled"
]
},
"RecurringDetails": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"mandate_id"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payment_method_id"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"processor_payment_token"
]
},
"data": {
"$ref": "#/components/schemas/ProcessorPaymentToken"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"network_transaction_id_and_card_details"
]
},
"data": {
"$ref": "#/components/schemas/NetworkTransactionIdAndCardDetails"
}
}
}
],
"description": "Details required for recurring payment",
"discriminator": {
"propertyName": "type"
}
},
"RecurringPaymentIntervalUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"hour",
"minute"
]
},
"RedirectResponse": {
"type": "object",
"properties": {
"param": {
"type": "string",
"nullable": true
},
"json_payload": {
"type": "object",
"nullable": true
}
}
},
"RefundErrorDetails": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"RefundListRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment",
"nullable": true
},
"refund_id": {
"type": "string",
"description": "The identifier for the refund",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The identifier for business profile",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int64",
"description": "Limit on the number of objects to return",
"nullable": true
},
"offset": {
"type": "integer",
"format": "int64",
"description": "The starting point within a list of objects",
"nullable": true
},
"amount_filter": {
"allOf": [
{
"$ref": "#/components/schemas/AmountFilter"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of connectors to filter refunds list",
"nullable": true
},
"merchant_connector_id": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of merchant connector ids to filter the refunds list for selected label",
"nullable": true
},
"currency": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "The list of currencies to filter refunds list",
"nullable": true
},
"refund_status": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundStatus"
},
"description": "The list of refund statuses to filter refunds list",
"nullable": true
}
}
}
]
},
"RefundListResponse": {
"type": "object",
"required": [
"count",
"total_count",
"data"
],
"properties": {
"count": {
"type": "integer",
"description": "The number of refunds included in the list",
"minimum": 0
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "The total number of refunds in the list"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundResponse"
},
"description": "The List of refund response object"
}
}
},
"RefundRequest": {
"type": "object",
"required": [
"payment_id"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The payment id against which refund is to be initiated",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"maxLength": 30,
"minLength": 30
},
"refund_id": {
"type": "string",
"description": "Unique Identifier for the Refund. This is to ensure idempotency for multiple partial refunds initiated against the same payment. If this is not passed by the merchant, this field shall be auto generated and provided in the API response. It is recommended to generate uuid(v4) as the refund_id.",
"example": "ref_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"amount": {
"type": "integer",
"format": "int64",
"description": "Total amount for which the refund is to be initiated. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, this will default to the full payment amount",
"example": 6540,
"nullable": true,
"minimum": 100
},
"reason": {
"type": "string",
"description": "Reason for the refund. Often useful for displaying to users and your customer support executive. In case the payment went through Stripe, this field needs to be passed with one of these enums: `duplicate`, `fraudulent`, or `requested_by_customer`",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
},
"refund_type": {
"allOf": [
{
"$ref": "#/components/schemas/RefundType"
}
],
"default": "Instant",
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"split_refunds": {
"allOf": [
{
"$ref": "#/components/schemas/SplitRefund"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"RefundResponse": {
"type": "object",
"required": [
"id",
"payment_id",
"amount",
"currency",
"status",
"created_at",
"updated_at",
"connector",
"profile_id",
"merchant_connector_id"
],
"properties": {
"id": {
"type": "string",
"description": "Global Refund Id for the refund"
},
"payment_id": {
"type": "string",
"description": "The payment id against which refund is initiated"
},
"merchant_reference_id": {
"type": "string",
"description": "Unique Identifier for the Refund. This is to ensure idempotency for multiple partial refunds initiated against the same payment.",
"example": "ref_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The refund amount",
"example": 6540,
"minimum": 100
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"status": {
"$ref": "#/components/schemas/RefundStatus"
},
"reason": {
"type": "string",
"description": "An arbitrary string attached to the object",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object",
"nullable": true
},
"error_details": {
"allOf": [
{
"$ref": "#/components/schemas/RefundErrorDetails"
}
],
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp at which refund is created"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp at which refund is updated"
},
"connector": {
"$ref": "#/components/schemas/Connector"
},
"profile_id": {
"type": "string",
"description": "The id of business profile for this refund"
},
"merchant_connector_id": {
"type": "string",
"description": "The merchant_connector_id of the processor through which this payment went through"
},
"connector_refund_reference_id": {
"type": "string",
"description": "The reference id of the connector for the refund",
"nullable": true
}
}
},
"RefundStatus": {
"type": "string",
"description": "The status for refunds",
"enum": [
"succeeded",
"failed",
"pending",
"review"
]
},
"RefundType": {
"type": "string",
"description": "To indicate whether to refund needs to be instant or scheduled",
"enum": [
"scheduled",
"instant"
]
},
"RefundUpdateRequest": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "An arbitrary string attached to the object. Often useful for displaying to users and your customer support executive",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"RefundsCreateRequest": {
"type": "object",
"required": [
"payment_id"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The payment id against which refund is initiated",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"maxLength": 30,
"minLength": 30
},
"merchant_reference_id": {
"type": "string",
"description": "Unique Identifier for the Refund. This is to ensure idempotency for multiple partial refunds initiated against the same payment.",
"example": "ref_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"amount": {
"type": "integer",
"format": "int64",
"description": "Total amount for which the refund is to be initiated. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, this will default to the amount_captured of the payment",
"example": 6540,
"nullable": true,
"minimum": 100
},
"reason": {
"type": "string",
"description": "Reason for the refund. Often useful for displaying to users and your customer support executive.",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
},
"refund_type": {
"allOf": [
{
"$ref": "#/components/schemas/RefundType"
}
],
"default": "Instant",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"RequestIncrementalAuthorization": {
"type": "string",
"enum": [
"true",
"false",
"default"
]
},
"RequestPaymentMethodTypes": {
"type": "object",
"required": [
"payment_method_type",
"recurring_enabled",
"installment_payment_enabled"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetwork"
},
"nullable": true
},
"accepted_currencies": {
"allOf": [
{
"$ref": "#/components/schemas/AcceptedCurrencies"
}
],
"nullable": true
},
"accepted_countries": {
"allOf": [
{
"$ref": "#/components/schemas/AcceptedCountries"
}
],
"nullable": true
},
"minimum_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"maximum_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Boolean to enable recurring payments / mandates. Default is true.",
"default": true,
"example": false
},
"installment_payment_enabled": {
"type": "boolean",
"description": "Boolean to enable installment / EMI / BNPL payments. Default is true.",
"default": true,
"example": false
}
}
},
"RequestSurchargeDetails": {
"type": "object",
"description": "Details of surcharge applied on this payment, if applicable",
"required": [
"surcharge_amount"
],
"properties": {
"surcharge_amount": {
"type": "integer",
"format": "int64",
"example": 6540
},
"tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"RequiredFieldInfo": {
"type": "object",
"description": "Required fields info used while listing the payment_method_data",
"required": [
"required_field",
"display_name",
"field_type"
],
"properties": {
"required_field": {
"type": "string",
"description": "Required field for a payment_method through a payment_method_type"
},
"display_name": {
"type": "string",
"description": "Display name of the required field in the front-end"
},
"field_type": {
"$ref": "#/components/schemas/FieldType"
},
"value": {
"type": "string",
"nullable": true
}
}
},
"ResourceId": {
"oneOf": [
{
"type": "object",
"required": [
"customer"
],
"properties": {
"customer": {
"type": "string"
}
}
}
]
},
"ResponsePaymentMethodTypes": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodSubtypeSpecificData"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"payment_method_type",
"payment_method_subtype",
"required_fields"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"required_fields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RequiredFieldInfo"
},
"description": "Required fields for the payment_method_type.\nThis is the union of all the required fields for the payment method type enabled in all the connectors."
}
}
}
]
},
"ResponsePaymentMethodTypesForPayments": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodSubtypeSpecificData"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"payment_method_type",
"payment_method_subtype"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_subtype": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"required_fields": {
"allOf": [
{
"$ref": "#/components/schemas/RequiredFieldInfo"
}
],
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeDetailsResponse"
}
],
"nullable": true
}
}
}
]
},
"ResponsePaymentMethodsEnabled": {
"type": "object",
"required": [
"payment_method",
"payment_method_types"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResponsePaymentMethodTypes"
},
"description": "The list of payment method types enabled for a connector account"
}
}
},
"RetrieveApiKeyResponse": {
"type": "object",
"description": "The response body for retrieving an API Key.",
"required": [
"key_id",
"merchant_id",
"name",
"prefix",
"created",
"expiration"
],
"properties": {
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"name": {
"type": "string",
"description": "The unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "The description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"prefix": {
"type": "string",
"description": "The first few characters of the plaintext API Key to help you identify it.",
"maxLength": 64
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which the API Key was created.",
"example": "2022-09-10T10:11:12Z"
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
}
},
"RetrievePaymentLinkRequest": {
"type": "object",
"properties": {
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"nullable": true
}
}
},
"RetrievePaymentLinkResponse": {
"type": "object",
"required": [
"payment_link_id",
"merchant_id",
"link_to_pay",
"amount",
"created_at",
"status"
],
"properties": {
"payment_link_id": {
"type": "string",
"description": "Identifier for Payment Link"
},
"merchant_id": {
"type": "string",
"description": "Identifier for Merchant"
},
"link_to_pay": {
"type": "string",
"description": "Open payment link (without any security checks and listing SPMs)"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency",
"example": 6540
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Date and time of Payment Link creation"
},
"expiry": {
"type": "string",
"format": "date-time",
"description": "Date and time of Expiration for Payment Link",
"nullable": true
},
"description": {
"type": "string",
"description": "Description for Payment Link",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/PaymentLinkStatus"
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"secure_link": {
"type": "string",
"description": "Secure payment link (with security checks and listing saved payment methods)",
"nullable": true
}
}
},
"RetryAction": {
"type": "string",
"description": "Denotes the retry action",
"enum": [
"manual_retry",
"requeue"
]
},
"RevenueRecoveryMetadata": {
"type": "object",
"description": "Revenue recovery metadata for merchant connector account",
"required": [
"max_retry_count",
"billing_connector_retry_threshold",
"billing_account_reference"
],
"properties": {
"max_retry_count": {
"type": "integer",
"format": "int32",
"description": "The maximum number of retries allowed for an invoice. This limit is set by the merchant for each `billing connector`. Once this limit is reached, no further retries will be attempted.",
"example": "15",
"minimum": 0
},
"billing_connector_retry_threshold": {
"type": "integer",
"format": "int32",
"description": "Maximum number of `billing connector` retries before revenue recovery can start executing retries.",
"example": "10",
"minimum": 0
},
"billing_account_reference": {
"type": "integer",
"format": "int32",
"description": "Billing account reference id is payment gateway id at billing connector end.\nMerchants need to provide a mapping between these merchant connector account and the corresponding account reference IDs for each `billing connector`.",
"example": "{ \"mca_vDSg5z6AxnisHq5dbJ6g\": \"stripe_123\", \"mca_vDSg5z6AumisHqh4x5m1\": \"adyen_123\" }",
"minimum": 0
}
}
},
"RevenueRecoveryResponse": {
"type": "object",
"required": [
"id",
"status",
"business_status"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"nullable": true
},
"schedule_time_for_payment": {
"type": "string",
"format": "date-time",
"nullable": true
},
"schedule_time_for_psync": {
"type": "string",
"format": "date-time",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ProcessTrackerStatus"
},
"business_status": {
"type": "string"
}
}
},
"RevokeApiKeyResponse": {
"type": "object",
"description": "The response body for revoking an API Key.",
"required": [
"merchant_id",
"key_id",
"revoked"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"revoked": {
"type": "boolean",
"description": "Indicates whether the API key was revoked or not.",
"example": "true"
}
}
},
"RewardData": {
"type": "object",
"required": [
"merchant_id"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant ID with which we have to call the connector"
}
}
},
"RoutableChoiceKind": {
"type": "string",
"enum": [
"OnlyConnector",
"FullStruct"
]
},
"RoutableConnectorChoice": {
"type": "object",
"description": "Routable Connector chosen for a payment",
"required": [
"connector"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/RoutableConnectors"
},
"merchant_connector_id": {
"type": "string",
"nullable": true
}
}
},
"RoutableConnectors": {
"type": "string",
"description": "RoutableConnectors are the subset of Connectors that are eligible for payments routing",
"enum": [
"adyenplatform",
"phonypay",
"fauxpay",
"pretendpay",
"stripe_test",
"adyen_test",
"checkout_test",
"paypal_test",
"aci",
"adyen",
"airwallex",
"authorizedotnet",
"bankofamerica",
"billwerk",
"bitpay",
"bambora",
"bamboraapac",
"bluesnap",
"boku",
"braintree",
"cashtocode",
"chargebee",
"checkout",
"coinbase",
"coingate",
"cryptopay",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"dlocal",
"ebanx",
"elavon",
"fiserv",
"fiservemea",
"fiuu",
"forte",
"getnet",
"globalpay",
"globepay",
"gocardless",
"hipay",
"helcim",
"iatapay",
"inespay",
"itaubank",
"jpmorgan",
"klarna",
"mifinity",
"mollie",
"moneris",
"multisafepay",
"nexinets",
"nexixpay",
"nmi",
"nomupay",
"noon",
"novalnet",
"nuvei",
"opennode",
"paybox",
"payme",
"payone",
"paypal",
"paystack",
"payu",
"placetopay",
"powertranz",
"prophetpay",
"rapyd",
"razorpay",
"recurly",
"redsys",
"riskified",
"shift4",
"signifyd",
"square",
"stax",
"stripe",
"stripebilling",
"trustpay",
"tsys",
"volt",
"wellsfargo",
"wise",
"worldline",
"worldpay",
"xendit",
"zen",
"plaid",
"zsl"
]
},
"RoutingAlgorithm": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"single"
]
},
"data": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"advanced"
]
},
"data": {
"$ref": "#/components/schemas/ProgramConnectorSelection"
}
}
}
],
"description": "Routing Algorithm kind",
"discriminator": {
"propertyName": "type"
}
},
"RoutingAlgorithmId": {
"type": "object",
"required": [
"routing_algorithm_id"
],
"properties": {
"routing_algorithm_id": {
"type": "string"
}
}
},
"RoutingAlgorithmKind": {
"type": "string",
"enum": [
"single",
"priority",
"volume_split",
"advanced",
"dynamic"
]
},
"RoutingConfigRequest": {
"type": "object",
"required": [
"name",
"description",
"algorithm",
"profile_id"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"algorithm": {
"$ref": "#/components/schemas/RoutingAlgorithm"
},
"profile_id": {
"type": "string"
}
}
},
"RoutingDictionary": {
"type": "object",
"required": [
"merchant_id",
"records"
],
"properties": {
"merchant_id": {
"type": "string"
},
"active_id": {
"type": "string",
"nullable": true
},
"records": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"RoutingDictionaryRecord": {
"type": "object",
"required": [
"id",
"profile_id",
"name",
"kind",
"description",
"created_at",
"modified_at"
],
"properties": {
"id": {
"type": "string"
},
"profile_id": {
"type": "string"
},
"name": {
"type": "string"
},
"kind": {
"$ref": "#/components/schemas/RoutingAlgorithmKind"
},
"description": {
"type": "string"
},
"created_at": {
"type": "integer",
"format": "int64"
},
"modified_at": {
"type": "integer",
"format": "int64"
},
"algorithm_for": {
"allOf": [
{
"$ref": "#/components/schemas/TransactionType"
}
],
"nullable": true
}
}
},
"RoutingKind": {
"oneOf": [
{
"$ref": "#/components/schemas/RoutingDictionary"
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
]
},
"RoutingRetrieveResponse": {
"type": "object",
"description": "Response of the retrieved routing configs for a merchant account",
"properties": {
"algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantRoutingAlgorithm"
}
],
"nullable": true
}
}
},
"RuleConnectorSelection": {
"type": "object",
"description": "Represents a rule\n\n```text\nrule_name: [stripe, adyen, checkout]\n{\npayment.method = card {\npayment.method.cardtype = (credit, debit) {\npayment.method.network = (amex, rupay, diners)\n}\n\npayment.method.cardtype = credit\n}\n}\n```",
"required": [
"name",
"connectorSelection",
"statements"
],
"properties": {
"name": {
"type": "string"
},
"connectorSelection": {
"$ref": "#/components/schemas/ConnectorSelection"
},
"statements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IfStatement"
}
}
}
},
"SamsungPayAmountDetails": {
"type": "object",
"required": [
"option",
"currency_code",
"total"
],
"properties": {
"option": {
"$ref": "#/components/schemas/SamsungPayAmountFormat"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total": {
"type": "string",
"description": "The total amount of the transaction",
"example": "38.02"
}
}
},
"SamsungPayAmountFormat": {
"type": "string",
"enum": [
"FORMAT_TOTAL_PRICE_ONLY",
"FORMAT_TOTAL_ESTIMATED_AMOUNT"
]
},
"SamsungPayAppWalletData": {
"type": "object",
"required": [
"3_d_s",
"payment_card_brand",
"payment_currency_type",
"payment_last4_fpan"
],
"properties": {
"3_d_s": {
"$ref": "#/components/schemas/SamsungPayTokenData"
},
"payment_card_brand": {
"$ref": "#/components/schemas/SamsungPayCardBrand"
},
"payment_currency_type": {
"type": "string",
"description": "Currency type of the payment"
},
"payment_last4_dpan": {
"type": "string",
"description": "Last 4 digits of the device specific card number",
"nullable": true
},
"payment_last4_fpan": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"merchant_ref": {
"type": "string",
"description": "Merchant reference id that was passed in the session call request",
"nullable": true
},
"method": {
"type": "string",
"description": "Specifies authentication method used",
"nullable": true
},
"recurring_payment": {
"type": "boolean",
"description": "Value if credential is enabled for recurring payment",
"nullable": true
}
}
},
"SamsungPayCardBrand": {
"type": "string",
"enum": [
"visa",
"mastercard",
"amex",
"discover",
"unknown"
]
},
"SamsungPayMerchantPaymentInformation": {
"type": "object",
"required": [
"name",
"country_code"
],
"properties": {
"name": {
"type": "string",
"description": "Merchant name, this will be displayed on the Samsung Pay screen"
},
"url": {
"type": "string",
"description": "Merchant domain that process payments, required for web payments",
"nullable": true
},
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
},
"SamsungPayProtocolType": {
"type": "string",
"enum": [
"PROTOCOL3DS"
]
},
"SamsungPaySessionTokenResponse": {
"type": "object",
"required": [
"version",
"service_id",
"order_number",
"merchant",
"amount",
"protocol",
"allowed_brands",
"billing_address_required",
"shipping_address_required"
],
"properties": {
"version": {
"type": "string",
"description": "Samsung Pay API version"
},
"service_id": {
"type": "string",
"description": "Samsung Pay service ID to which session call needs to be made"
},
"order_number": {
"type": "string",
"description": "Order number of the transaction"
},
"merchant": {
"$ref": "#/components/schemas/SamsungPayMerchantPaymentInformation"
},
"amount": {
"$ref": "#/components/schemas/SamsungPayAmountDetails"
},
"protocol": {
"$ref": "#/components/schemas/SamsungPayProtocolType"
},
"allowed_brands": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of supported card brands"
},
"billing_address_required": {
"type": "boolean",
"description": "Is billing address required to be collected from wallet"
},
"shipping_address_required": {
"type": "boolean",
"description": "Is shipping address required to be collected from wallet"
}
}
},
"SamsungPayTokenData": {
"type": "object",
"required": [
"version",
"data"
],
"properties": {
"type": {
"type": "string",
"description": "3DS type used by Samsung Pay",
"nullable": true
},
"version": {
"type": "string",
"description": "3DS version used by Samsung Pay"
},
"data": {
"type": "string",
"description": "Samsung Pay encrypted payment credential data"
}
}
},
"SamsungPayWalletCredentials": {
"oneOf": [
{
"$ref": "#/components/schemas/SamsungPayWebWalletData"
},
{
"$ref": "#/components/schemas/SamsungPayAppWalletData"
}
]
},
"SamsungPayWalletData": {
"type": "object",
"required": [
"payment_credential"
],
"properties": {
"payment_credential": {
"$ref": "#/components/schemas/SamsungPayWalletCredentials"
}
}
},
"SamsungPayWebWalletData": {
"type": "object",
"required": [
"card_brand",
"card_last4digits",
"3_d_s"
],
"properties": {
"method": {
"type": "string",
"description": "Specifies authentication method used",
"nullable": true
},
"recurring_payment": {
"type": "boolean",
"description": "Value if credential is enabled for recurring payment",
"nullable": true
},
"card_brand": {
"$ref": "#/components/schemas/SamsungPayCardBrand"
},
"card_last4digits": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"3_d_s": {
"$ref": "#/components/schemas/SamsungPayTokenData"
}
}
},
"ScaExemptionType": {
"type": "string",
"description": "SCA Exemptions types available for authentication",
"enum": [
"low_value",
"transaction_risk_analysis"
]
},
"SdkInformation": {
"type": "object",
"description": "SDK Information if request is from SDK",
"required": [
"sdk_app_id",
"sdk_enc_data",
"sdk_ephem_pub_key",
"sdk_trans_id",
"sdk_reference_number",
"sdk_max_timeout"
],
"properties": {
"sdk_app_id": {
"type": "string",
"description": "Unique ID created on installations of the 3DS Requestor App on a Consumer Device"
},
"sdk_enc_data": {
"type": "string",
"description": "JWE Object containing data encrypted by the SDK for the DS to decrypt"
},
"sdk_ephem_pub_key": {
"type": "object",
"description": "Public key component of the ephemeral key pair generated by the 3DS SDK",
"additionalProperties": {
"type": "string"
}
},
"sdk_trans_id": {
"type": "string",
"description": "Unique transaction identifier assigned by the 3DS SDK"
},
"sdk_reference_number": {
"type": "string",
"description": "Identifies the vendor and version for the 3DS SDK that is integrated in a 3DS Requestor App"
},
"sdk_max_timeout": {
"type": "integer",
"format": "int32",
"description": "Indicates maximum amount of time in minutes",
"minimum": 0
},
"sdk_type": {
"allOf": [
{
"$ref": "#/components/schemas/SdkType"
}
],
"nullable": true
}
}
},
"SdkNextAction": {
"type": "object",
"required": [
"next_action"
],
"properties": {
"next_action": {
"$ref": "#/components/schemas/NextActionCall"
}
}
},
"SdkNextActionData": {
"type": "object",
"required": [
"next_action"
],
"properties": {
"next_action": {
"$ref": "#/components/schemas/NextActionCall"
},
"order_id": {
"type": "string",
"nullable": true
}
}
},
"SdkType": {
"type": "string",
"description": "Enum representing the type of 3DS SDK.",
"enum": [
"01",
"02",
"03",
"04",
"05"
]
},
"SecretInfoToInitiateSdk": {
"type": "object",
"required": [
"display",
"payment"
],
"properties": {
"display": {
"type": "string"
},
"payment": {
"type": "string"
}
}
},
"SepaAndBacsBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "The Email ID for SEPA and BACS billing",
"example": "example@me.com",
"nullable": true
},
"name": {
"type": "string",
"description": "The billing name for SEPA and BACS billing",
"example": "Jane Doe",
"nullable": true
}
}
},
"SepaBankDebitAdditionalData": {
"type": "object",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"example": "DE8937******013000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"SepaBankTransfer": {
"type": "object",
"required": [
"iban",
"bic"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"iban": {
"type": "string",
"description": "International Bank Account Number (iban) - used in many countries for identifying a bank along with it's customer.",
"example": "DE89370400440532013000"
},
"bic": {
"type": "string",
"description": "[8 / 11 digits] Bank Identifier Code (bic) / Swift Code - used in many countries for identifying a bank and it's branches",
"example": "HSBCGB2LXXX"
}
}
},
"SepaBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for sepa bank transfer payout method",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"example": "DE8937******013000"
},
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bic": {
"type": "string",
"description": "[8 / 11 digits] Bank Identifier Code (bic) / Swift Code - used in many countries for identifying a bank and it's branches",
"example": "HSBCGB2LXXX",
"nullable": true
}
}
},
"SepaBankTransferInstructions": {
"type": "object",
"required": [
"account_holder_name",
"bic",
"country",
"iban",
"reference"
],
"properties": {
"account_holder_name": {
"type": "string",
"example": "Jane Doe"
},
"bic": {
"type": "string",
"example": "9123456789"
},
"country": {
"type": "string"
},
"iban": {
"type": "string",
"example": "123456789"
},
"reference": {
"type": "string",
"example": "U2PVVSEV4V9Y"
}
}
},
"SessionToken": {
"oneOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GpaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"google_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/SamsungPaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"samsung_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/KlarnaSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"klarna"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/PaypalSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"paypal"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/ApplepaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"apple_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/OpenBankingSessionToken"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"open_banking"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/PazeSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"paze"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/ClickToPaySessionResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"click_to_pay"
]
}
}
}
]
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"no_session_token_received"
]
}
}
}
],
"discriminator": {
"propertyName": "wallet_name"
}
},
"SessionTokenInfo": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentProcessingDetailsAt"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"certificate",
"certificate_keys",
"merchant_identifier",
"display_name",
"initiative"
],
"properties": {
"certificate": {
"type": "string"
},
"certificate_keys": {
"type": "string"
},
"merchant_identifier": {
"type": "string"
},
"display_name": {
"type": "string"
},
"initiative": {
"$ref": "#/components/schemas/ApplepayInitiative"
},
"initiative_context": {
"type": "string",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
}
]
},
"SizeVariants": {
"type": "string",
"enum": [
"cover",
"contain"
]
},
"SortBy": {
"type": "string",
"enum": [
"asc",
"desc"
]
},
"SortOn": {
"type": "string",
"enum": [
"amount",
"created"
]
},
"SplitPaymentsRequest": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_payment"
],
"properties": {
"stripe_split_payment": {
"$ref": "#/components/schemas/StripeSplitPaymentRequest"
}
}
},
{
"type": "object",
"required": [
"adyen_split_payment"
],
"properties": {
"adyen_split_payment": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_payment"
],
"properties": {
"xendit_split_payment": {
"$ref": "#/components/schemas/XenditSplitRequest"
}
}
}
],
"description": "Fee information for Split Payments to be charged on the payment being collected"
},
"SplitRefund": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_refund"
],
"properties": {
"stripe_split_refund": {
"$ref": "#/components/schemas/StripeSplitRefundRequest"
}
}
},
{
"type": "object",
"required": [
"adyen_split_refund"
],
"properties": {
"adyen_split_refund": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_refund"
],
"properties": {
"xendit_split_refund": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account. Check sub-fields for more details."
},
"StraightThroughAlgorithm": {
"oneOf": [
{
"type": "object",
"title": "Single",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"single"
]
},
"data": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
},
{
"type": "object",
"title": "Priority",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"title": "VolumeSplit",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"StripeChargeResponseData": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via Stripe",
"required": [
"charge_type",
"application_fees",
"transfer_account_id"
],
"properties": {
"charge_id": {
"type": "string",
"description": "Identifier for charge created for the payment",
"nullable": true
},
"charge_type": {
"$ref": "#/components/schemas/PaymentChargeType"
},
"application_fees": {
"type": "integer",
"format": "int64",
"description": "Platform fees collected on the payment",
"example": 6540
},
"transfer_account_id": {
"type": "string",
"description": "Identifier for the reseller's account where the funds were transferred"
}
},
"additionalProperties": false
},
"StripeChargeType": {
"type": "string",
"enum": [
"direct",
"destination"
]
},
"StripeSplitPaymentRequest": {
"type": "object",
"description": "Fee information for Split Payments to be charged on the payment being collected for Stripe",
"required": [
"charge_type",
"application_fees",
"transfer_account_id"
],
"properties": {
"charge_type": {
"$ref": "#/components/schemas/PaymentChargeType"
},
"application_fees": {
"type": "integer",
"format": "int64",
"description": "Platform fees to be collected on the payment",
"example": 6540
},
"transfer_account_id": {
"type": "string",
"description": "Identifier for the reseller's account where the funds were transferred"
}
},
"additionalProperties": false
},
"StripeSplitRefundRequest": {
"type": "object",
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account for Stripe. Check sub-fields for more details.",
"properties": {
"revert_platform_fee": {
"type": "boolean",
"description": "Toggle for reverting the application fee that was collected for the payment.\nIf set to false, the funds are pulled from the destination account.",
"nullable": true
},
"revert_transfer": {
"type": "boolean",
"description": "Toggle for reverting the transfer that was made during the charge.\nIf set to false, the funds are pulled from the main platform's account.",
"nullable": true
}
},
"additionalProperties": false
},
"SupportedPaymentMethod": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodSpecificFeatures"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"payment_method",
"payment_method_type",
"payment_method_type_display_name",
"mandates",
"refunds",
"supported_capture_methods"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_method_type_display_name": {
"type": "string",
"description": "The display name of the payment method type"
},
"mandates": {
"$ref": "#/components/schemas/FeatureStatus"
},
"refunds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"supported_capture_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CaptureMethod"
},
"description": "List of supported capture methods supported by the payment method type"
},
"supported_countries": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha3"
},
"description": "List of countries supported by the payment method type via the connector",
"uniqueItems": true,
"nullable": true
},
"supported_currencies": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "List of currencies supported by the payment method type via the connector",
"uniqueItems": true,
"nullable": true
}
}
}
]
},
"SurchargeCalculationOverride": {
"type": "string",
"enum": [
"skip",
"calculate"
]
},
"SurchargeDetailsResponse": {
"type": "object",
"required": [
"surcharge",
"display_surcharge_amount",
"display_tax_on_surcharge_amount",
"display_total_surcharge_amount"
],
"properties": {
"surcharge": {
"$ref": "#/components/schemas/SurchargeResponse"
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargePercentage"
}
],
"nullable": true
},
"display_surcharge_amount": {
"type": "number",
"format": "double",
"description": "surcharge amount for this payment"
},
"display_tax_on_surcharge_amount": {
"type": "number",
"format": "double",
"description": "tax on surcharge amount for this payment"
},
"display_total_surcharge_amount": {
"type": "number",
"format": "double",
"description": "sum of display_surcharge_amount and display_tax_on_surcharge_amount"
}
}
},
"SurchargePercentage": {
"type": "object",
"required": [
"percentage"
],
"properties": {
"percentage": {
"type": "number",
"format": "float"
}
}
},
"SurchargeResponse": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"fixed"
]
},
"value": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"rate"
]
},
"value": {
"$ref": "#/components/schemas/SurchargePercentage"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"SwishQrData": {
"type": "object"
},
"TaxCalculationOverride": {
"type": "string",
"enum": [
"skip",
"calculate"
]
},
"ThirdPartySdkSessionResponse": {
"type": "object",
"required": [
"secrets"
],
"properties": {
"secrets": {
"$ref": "#/components/schemas/SecretInfoToInitiateSdk"
}
}
},
"ThreeDsCompletionIndicator": {
"type": "string",
"enum": [
"Y",
"N",
"U"
]
},
"ThreeDsData": {
"type": "object",
"required": [
"three_ds_authentication_url",
"three_ds_authorize_url",
"three_ds_method_details",
"poll_config"
],
"properties": {
"three_ds_authentication_url": {
"type": "string",
"description": "ThreeDS authentication url - to initiate authentication"
},
"three_ds_authorize_url": {
"type": "string",
"description": "ThreeDS authorize url - to complete the payment authorization after authentication"
},
"three_ds_method_details": {
"$ref": "#/components/schemas/ThreeDsMethodData"
},
"poll_config": {
"$ref": "#/components/schemas/PollConfigResponse"
},
"message_version": {
"type": "string",
"description": "Message Version",
"nullable": true
},
"directory_server_id": {
"type": "string",
"description": "Directory Server ID",
"nullable": true
}
}
},
"ThreeDsMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"three_ds_method_data_submission",
"three_ds_method_key"
],
"properties": {
"three_ds_method_data_submission": {
"type": "boolean",
"description": "Whether ThreeDS method data submission is required"
},
"three_ds_method_data": {
"type": "string",
"description": "ThreeDS method data",
"nullable": true
},
"three_ds_method_url": {
"type": "string",
"description": "ThreeDS method url",
"nullable": true
},
"three_ds_method_key": {
"type": "string",
"enum": [
"threeDSMethodData"
]
}
}
}
],
"discriminator": {
"propertyName": "three_ds_method_key"
}
},
"TimeRange": {
"type": "object",
"description": "A type representing a range of time for filtering, including a mandatory start time and an optional end time.",
"required": [
"start_time"
],
"properties": {
"start_time": {
"type": "string",
"format": "date-time",
"description": "The start time to filter payments list or to get list of filters. To get list of filters start time is needed to be passed"
},
"end_time": {
"type": "string",
"format": "date-time",
"description": "The end time to filter payments list or to get list of filters. If not passed the default time is now",
"nullable": true
}
}
},
"ToggleBlocklistResponse": {
"type": "object",
"required": [
"blocklist_guard_status"
],
"properties": {
"blocklist_guard_status": {
"type": "string"
}
}
},
"ToggleKVRequest": {
"type": "object",
"required": [
"kv_enabled"
],
"properties": {
"kv_enabled": {
"type": "boolean",
"description": "Status of KV for the specific merchant",
"example": true
}
}
},
"ToggleKVResponse": {
"type": "object",
"required": [
"merchant_id",
"kv_enabled"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"kv_enabled": {
"type": "boolean",
"description": "Status of KV for the specific merchant",
"example": true
}
}
},
"TokenizationType": {
"type": "string",
"description": "The type of tokenization to use for the payment method",
"enum": [
"single_use",
"multi_use"
]
},
"TokenizeCardRequest": {
"type": "object",
"required": [
"raw_card_number",
"card_expiry_month",
"card_expiry_year"
],
"properties": {
"raw_card_number": {
"type": "string",
"description": "Card Number",
"example": "4111111145551142"
},
"card_expiry_month": {
"type": "string",
"description": "Card Expiry Month",
"example": "10"
},
"card_expiry_year": {
"type": "string",
"description": "Card Expiry Year",
"example": "25"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"description": "Card Issuing Country",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "Issuer Bank for Card",
"nullable": true
},
"card_type": {
"allOf": [
{
"$ref": "#/components/schemas/CardType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"TokenizeDataRequest": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/TokenizeCardRequest"
}
}
},
{
"type": "object",
"required": [
"existing_payment_method"
],
"properties": {
"existing_payment_method": {
"$ref": "#/components/schemas/TokenizePaymentMethodRequest"
}
}
}
]
},
"TokenizePaymentMethodRequest": {
"type": "object",
"properties": {
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242",
"nullable": true
}
}
},
"TouchNGoRedirection": {
"type": "object"
},
"TransactionDetailsUiConfiguration": {
"type": "object",
"properties": {
"position": {
"type": "integer",
"format": "int32",
"description": "Position of the key-value pair in the UI",
"example": 5,
"nullable": true
},
"is_key_bold": {
"type": "boolean",
"description": "Whether the key should be bold",
"default": false,
"example": true,
"nullable": true
},
"is_value_bold": {
"type": "boolean",
"description": "Whether the value should be bold",
"default": false,
"example": true,
"nullable": true
}
}
},
"TransactionStatus": {
"type": "string",
"description": "Indicates the transaction status",
"enum": [
"Y",
"N",
"U",
"A",
"R",
"C",
"D",
"I"
]
},
"TransactionType": {
"type": "string",
"enum": [
"payment",
"payout"
]
},
"TriggeredBy": {
"type": "string",
"enum": [
"internal",
"external"
]
},
"UIWidgetFormLayout": {
"type": "string",
"enum": [
"tabs",
"journey"
]
},
"UpdateActiveAttempt": {
"oneOf": [
{
"type": "object",
"required": [
"Set"
],
"properties": {
"Set": {
"type": "string",
"description": "Request to set the active attempt id",
"nullable": true
}
}
},
{
"type": "string",
"description": "To unset the active attempt id",
"enum": [
"Unset"
]
}
],
"description": "Whether active attempt is to be set/unset"
},
"UpdateApiKeyRequest": {
"type": "object",
"description": "The request body for updating an API Key.",
"properties": {
"name": {
"type": "string",
"description": "A unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"nullable": true,
"maxLength": 64
},
"description": {
"type": "string",
"description": "A description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"expiration": {
"allOf": [
{
"$ref": "#/components/schemas/ApiKeyExpiration"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"UpiAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"upi_collect"
],
"properties": {
"upi_collect": {
"$ref": "#/components/schemas/UpiCollectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"upi_intent"
],
"properties": {
"upi_intent": {
"$ref": "#/components/schemas/UpiIntentData"
}
}
}
]
},
"UpiCollectAdditionalData": {
"type": "object",
"properties": {
"vpa_id": {
"type": "string",
"description": "Masked VPA ID",
"example": "ab********@okhdfcbank",
"nullable": true
}
}
},
"UpiCollectData": {
"type": "object",
"properties": {
"vpa_id": {
"type": "string",
"example": "successtest@iata",
"nullable": true
}
}
},
"UpiData": {
"oneOf": [
{
"type": "object",
"required": [
"upi_collect"
],
"properties": {
"upi_collect": {
"$ref": "#/components/schemas/UpiCollectData"
}
}
},
{
"type": "object",
"required": [
"upi_intent"
],
"properties": {
"upi_intent": {
"$ref": "#/components/schemas/UpiIntentData"
}
}
}
]
},
"UpiIntentData": {
"type": "object"
},
"UpiResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/UpiAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"ValueType": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number"
]
},
"value": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enum_variant"
]
},
"value": {
"type": "string",
"description": "Represents an enum variant"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"metadata_variant"
]
},
"value": {
"$ref": "#/components/schemas/MetadataValue"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"str_value"
]
},
"value": {
"type": "string",
"description": "Represents a arbitrary String value"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number_array"
]
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MinorUnit"
},
"description": "Represents an array of numbers. This is basically used for\n\"one of the given numbers\" operations\neg: payment.method.amount = (1, 2, 3)"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enum_variant_array"
]
},
"value": {
"type": "array",
"items": {
"type": "string"
},
"description": "Similar to NumberArray but for enum variants\neg: payment.method.cardtype = (debit, credit)"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number_comparison_array"
]
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NumberComparison"
},
"description": "Like a number array but can include comparisons. Useful for\nconditions like \"500 < amount < 1000\"\neg: payment.amount = (> 500, < 1000)"
}
}
}
],
"description": "Represents a value in the DSL",
"discriminator": {
"propertyName": "type"
}
},
"Venmo": {
"type": "object",
"required": [
"telephone_number"
],
"properties": {
"telephone_number": {
"type": "string",
"description": "mobile number linked to venmo account",
"example": "16608213349"
}
}
},
"VenmoAdditionalData": {
"type": "object",
"description": "Masked payout method details for venmo wallet payout method",
"properties": {
"telephone_number": {
"type": "string",
"description": "mobile number linked to venmo account",
"example": "******* 3349",
"nullable": true
}
}
},
"VoucherData": {
"oneOf": [
{
"type": "object",
"required": [
"boleto"
],
"properties": {
"boleto": {
"$ref": "#/components/schemas/BoletoVoucherData"
}
}
},
{
"type": "string",
"enum": [
"efecty"
]
},
{
"type": "string",
"enum": [
"pago_efectivo"
]
},
{
"type": "string",
"enum": [
"red_compra"
]
},
{
"type": "string",
"enum": [
"red_pagos"
]
},
{
"type": "object",
"required": [
"alfamart"
],
"properties": {
"alfamart": {
"$ref": "#/components/schemas/AlfamartVoucherData"
}
}
},
{
"type": "object",
"required": [
"indomaret"
],
"properties": {
"indomaret": {
"$ref": "#/components/schemas/IndomaretVoucherData"
}
}
},
{
"type": "string",
"enum": [
"oxxo"
]
},
{
"type": "object",
"required": [
"seven_eleven"
],
"properties": {
"seven_eleven": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"lawson"
],
"properties": {
"lawson": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"mini_stop"
],
"properties": {
"mini_stop": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"family_mart"
],
"properties": {
"family_mart": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"seicomart"
],
"properties": {
"seicomart": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"pay_easy"
],
"properties": {
"pay_easy": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
}
]
},
"VoucherResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/VoucherData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"Wallet": {
"oneOf": [
{
"type": "object",
"required": [
"paypal"
],
"properties": {
"paypal": {
"$ref": "#/components/schemas/Paypal"
}
}
},
{
"type": "object",
"required": [
"venmo"
],
"properties": {
"venmo": {
"$ref": "#/components/schemas/Venmo"
}
}
}
]
},
"WalletAdditionalData": {
"oneOf": [
{
"$ref": "#/components/schemas/PaypalAdditionalData"
},
{
"$ref": "#/components/schemas/VenmoAdditionalData"
}
],
"description": "Masked payout method details for wallet payout method"
},
"WalletAdditionalDataForCard": {
"type": "object",
"required": [
"last4",
"card_network"
],
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"card_network": {
"type": "string",
"description": "The information of the payment method"
},
"type": {
"type": "string",
"description": "The type of payment method",
"nullable": true
}
}
},
"WalletData": {
"oneOf": [
{
"type": "object",
"required": [
"ali_pay_qr"
],
"properties": {
"ali_pay_qr": {
"$ref": "#/components/schemas/AliPayQr"
}
}
},
{
"type": "object",
"required": [
"ali_pay_redirect"
],
"properties": {
"ali_pay_redirect": {
"$ref": "#/components/schemas/AliPayRedirection"
}
}
},
{
"type": "object",
"required": [
"ali_pay_hk_redirect"
],
"properties": {
"ali_pay_hk_redirect": {
"$ref": "#/components/schemas/AliPayHkRedirection"
}
}
},
{
"type": "object",
"required": [
"amazon_pay_redirect"
],
"properties": {
"amazon_pay_redirect": {
"$ref": "#/components/schemas/AmazonPayRedirectData"
}
}
},
{
"type": "object",
"required": [
"momo_redirect"
],
"properties": {
"momo_redirect": {
"$ref": "#/components/schemas/MomoRedirection"
}
}
},
{
"type": "object",
"required": [
"kakao_pay_redirect"
],
"properties": {
"kakao_pay_redirect": {
"$ref": "#/components/schemas/KakaoPayRedirection"
}
}
},
{
"type": "object",
"required": [
"go_pay_redirect"
],
"properties": {
"go_pay_redirect": {
"$ref": "#/components/schemas/GoPayRedirection"
}
}
},
{
"type": "object",
"required": [
"gcash_redirect"
],
"properties": {
"gcash_redirect": {
"$ref": "#/components/schemas/GcashRedirection"
}
}
},
{
"type": "object",
"required": [
"apple_pay"
],
"properties": {
"apple_pay": {
"$ref": "#/components/schemas/ApplePayWalletData"
}
}
},
{
"type": "object",
"required": [
"apple_pay_redirect"
],
"properties": {
"apple_pay_redirect": {
"$ref": "#/components/schemas/ApplePayRedirectData"
}
}
},
{
"type": "object",
"required": [
"apple_pay_third_party_sdk"
],
"properties": {
"apple_pay_third_party_sdk": {
"$ref": "#/components/schemas/ApplePayThirdPartySdkData"
}
}
},
{
"type": "object",
"required": [
"dana_redirect"
],
"properties": {
"dana_redirect": {
"type": "object",
"description": "Wallet data for DANA redirect flow"
}
}
},
{
"type": "object",
"required": [
"google_pay"
],
"properties": {
"google_pay": {
"$ref": "#/components/schemas/GooglePayWalletData"
}
}
},
{
"type": "object",
"required": [
"google_pay_redirect"
],
"properties": {
"google_pay_redirect": {
"$ref": "#/components/schemas/GooglePayRedirectData"
}
}
},
{
"type": "object",
"required": [
"google_pay_third_party_sdk"
],
"properties": {
"google_pay_third_party_sdk": {
"$ref": "#/components/schemas/GooglePayThirdPartySdkData"
}
}
},
{
"type": "object",
"required": [
"mb_way_redirect"
],
"properties": {
"mb_way_redirect": {
"$ref": "#/components/schemas/MbWayRedirection"
}
}
},
{
"type": "object",
"required": [
"mobile_pay_redirect"
],
"properties": {
"mobile_pay_redirect": {
"$ref": "#/components/schemas/MobilePayRedirection"
}
}
},
{
"type": "object",
"required": [
"paypal_redirect"
],
"properties": {
"paypal_redirect": {
"$ref": "#/components/schemas/PaypalRedirection"
}
}
},
{
"type": "object",
"required": [
"paypal_sdk"
],
"properties": {
"paypal_sdk": {
"$ref": "#/components/schemas/PayPalWalletData"
}
}
},
{
"type": "object",
"required": [
"paze"
],
"properties": {
"paze": {
"$ref": "#/components/schemas/PazeWalletData"
}
}
},
{
"type": "object",
"required": [
"samsung_pay"
],
"properties": {
"samsung_pay": {
"$ref": "#/components/schemas/SamsungPayWalletData"
}
}
},
{
"type": "object",
"required": [
"twint_redirect"
],
"properties": {
"twint_redirect": {
"type": "object",
"description": "Wallet data for Twint Redirection"
}
}
},
{
"type": "object",
"required": [
"vipps_redirect"
],
"properties": {
"vipps_redirect": {
"type": "object",
"description": "Wallet data for Vipps Redirection"
}
}
},
{
"type": "object",
"required": [
"touch_n_go_redirect"
],
"properties": {
"touch_n_go_redirect": {
"$ref": "#/components/schemas/TouchNGoRedirection"
}
}
},
{
"type": "object",
"required": [
"we_chat_pay_redirect"
],
"properties": {
"we_chat_pay_redirect": {
"$ref": "#/components/schemas/WeChatPayRedirection"
}
}
},
{
"type": "object",
"required": [
"we_chat_pay_qr"
],
"properties": {
"we_chat_pay_qr": {
"$ref": "#/components/schemas/WeChatPayQr"
}
}
},
{
"type": "object",
"required": [
"cashapp_qr"
],
"properties": {
"cashapp_qr": {
"$ref": "#/components/schemas/CashappQr"
}
}
},
{
"type": "object",
"required": [
"swish_qr"
],
"properties": {
"swish_qr": {
"$ref": "#/components/schemas/SwishQrData"
}
}
},
{
"type": "object",
"required": [
"mifinity"
],
"properties": {
"mifinity": {
"$ref": "#/components/schemas/MifinityData"
}
}
}
]
},
"WalletResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/WalletResponseData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"WalletResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"apple_pay"
],
"properties": {
"apple_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
},
{
"type": "object",
"required": [
"google_pay"
],
"properties": {
"google_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
},
{
"type": "object",
"required": [
"samsung_pay"
],
"properties": {
"samsung_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
}
],
"description": "Hyperswitch supports SDK integration with Apple Pay and Google Pay wallets. For other wallets, we integrate with their respective connectors, redirecting the customer to the connector for wallet payments. As a result, we don’t receive any payment method data in the confirm call for payments made through other wallets."
},
"WeChatPay": {
"type": "object"
},
"WeChatPayQr": {
"type": "object"
},
"WeChatPayRedirection": {
"type": "object"
},
"WebhookDeliveryAttempt": {
"type": "string",
"enum": [
"initial_attempt",
"automatic_retry",
"manual_retry"
]
},
"WebhookDetails": {
"type": "object",
"properties": {
"webhook_version": {
"type": "string",
"description": "The version for Webhook",
"example": "1.0.2",
"nullable": true,
"maxLength": 255
},
"webhook_username": {
"type": "string",
"description": "The user name for Webhook login",
"example": "ekart_retail",
"nullable": true,
"maxLength": 255
},
"webhook_password": {
"type": "string",
"description": "The password for Webhook login",
"example": "ekart@123",
"nullable": true,
"maxLength": 255
},
"webhook_url": {
"type": "string",
"description": "The url for the webhook endpoint",
"example": "www.ekart.com/webhooks",
"nullable": true
},
"payment_created_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a new payment is created",
"example": true,
"nullable": true
},
"payment_succeeded_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a payment is successful",
"example": true,
"nullable": true
},
"payment_failed_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a payment fails",
"example": true,
"nullable": true
}
},
"additionalProperties": false
},
"XenditChargeResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"multiple_splits"
],
"properties": {
"multiple_splits": {
"$ref": "#/components/schemas/XenditMultipleSplitResponse"
}
}
},
{
"type": "object",
"required": [
"single_split"
],
"properties": {
"single_split": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Charge Information"
},
"XenditMultipleSplitRequest": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via xendit",
"required": [
"name",
"description",
"routes"
],
"properties": {
"name": {
"type": "string",
"description": "Name to identify split rule. Not required to be unique. Typically based on transaction and/or sub-merchant types."
},
"description": {
"type": "string",
"description": "Description to identify fee rule"
},
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for.",
"nullable": true
},
"routes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/XenditSplitRoute"
},
"description": "Array of objects that define how the platform wants to route the fees and to which accounts."
}
},
"additionalProperties": false
},
"XenditMultipleSplitResponse": {
"type": "object",
"description": "Fee information charged on the payment being collected via xendit",
"required": [
"split_rule_id",
"name",
"description",
"routes"
],
"properties": {
"split_rule_id": {
"type": "string",
"description": "Identifier for split rule created for the payment"
},
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for.",
"nullable": true
},
"name": {
"type": "string",
"description": "Name to identify split rule. Not required to be unique. Typically based on transaction and/or sub-merchant types."
},
"description": {
"type": "string",
"description": "Description to identify fee rule"
},
"routes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/XenditSplitRoute"
},
"description": "Array of objects that define how the platform wants to route the fees and to which accounts."
}
},
"additionalProperties": false
},
"XenditSplitRequest": {
"oneOf": [
{
"type": "object",
"required": [
"multiple_splits"
],
"properties": {
"multiple_splits": {
"$ref": "#/components/schemas/XenditMultipleSplitRequest"
}
}
},
{
"type": "object",
"required": [
"single_split"
],
"properties": {
"single_split": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Xendit Charge Request"
},
"XenditSplitRoute": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via xendit",
"required": [
"currency",
"destination_account_id",
"reference_id"
],
"properties": {
"flat_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"percent_amount": {
"type": "integer",
"format": "int64",
"description": "Amount of payments to be split, using a percent rate as unit",
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"destination_account_id": {
"type": "string",
"description": "ID of the destination account where the amount will be routed to"
},
"reference_id": {
"type": "string",
"description": "Reference ID which acts as an identifier of the route itself"
}
},
"additionalProperties": false
},
"XenditSplitSubMerchantData": {
"type": "object",
"description": "Fee information to be charged on the payment being collected for sub-merchant via xendit",
"required": [
"for_user_id"
],
"properties": {
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for."
}
},
"additionalProperties": false
}
},
"securitySchemes": {
"admin_api_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Admin API keys allow you to perform some privileged actions such as creating a merchant account and Connector account."
},
"api_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Use the API key created under your merchant account from the HyperSwitch dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application."
},
"ephemeral_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Ephemeral keys provide temporary access to singular data, such as access to a single customer object for a short period of time."
},
"publishable_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Publishable keys are a type of keys that can be public and have limited scope of usage."
}
}
},
"tags": [
{
"name": "Merchant Account",
"description": "Create and manage merchant accounts"
},
{
"name": "Profile",
"description": "Create and manage profiles"
},
{
"name": "Merchant Connector Account",
"description": "Create and manage merchant connector accounts"
},
{
"name": "Payments",
"description": "Create and manage one-time payments, recurring payments and mandates"
},
{
"name": "Refunds",
"description": "Create and manage refunds for successful payments"
},
{
"name": "Mandates",
"description": "Manage mandates"
},
{
"name": "Customers",
"description": "Create and manage customers"
},
{
"name": "Payment Methods",
"description": "Create and manage payment methods of customers"
},
{
"name": "Disputes",
"description": "Manage disputes"
},
{
"name": "API Key",
"description": "Create and manage API Keys"
},
{
"name": "Payouts",
"description": "Create and manage payouts"
},
{
"name": "payment link",
"description": "Create payment link"
},
{
"name": "Routing",
"description": "Create and manage routing configurations"
},
{
"name": "Event",
"description": "Manage events"
}
]
} | 147,248 | 8,843 |
hyperswitch | api-reference-v2/README.md | .md | # Api Reference
We use the [openapi specification](https://swagger.io/specification) for the api reference. The openapi file is generated from the code base [openapi_spec.json](openapi_spec.json).
## How to generate the file
This file is automatically generated from our CI pipeline when the PR is raised. However if you want to generate it manually, the following command can be used
```bash
cargo r -p openapi --features v2
```
## Render the generated openapi spec file
In order to render the openapi spec file, we use a tool called [mintlify](https://mintlify.com/). Local setup instructions can be found [here](https://mintlify.com/docs/development#development). Once the cli is installed, Run the following command to render the openapi spec
- Navigate to the directory where `mint.json` exists
```bash
cd api-reference-v2
```
- Run the cli
```bash
mintlify dev
```
## Add new routes to openapi
If you have added new routes to the openapi. Then in order for them to be displayed on the mintlify, run the following commands
- Switch to the directory where api reference ( mint.json ) exists
```bash
cd api-reference-v2
```
- Run the following command to generate the route files
```bash
npx @mintlify/scraping@latest openapi-file openapi_spec.json -o api-reference
```
This will generate files in [api-reference](api-reference) folder. These routes should be added to the [mint.json](mint.json) file under navigation, under respective group.
| 345 | 8,844 |
hyperswitch | api-reference/hyperswitch_intelligent_router_open_api_spec.yml | .yml | openapi: 3.0.0
info:
title: Dynamic routing - OpenAPI 3.0
description: This the the open API 3.0 specification for the dynamic routing.
version: 1.0.0
paths:
/success_rate.SuccessRateCalculator/FetchSuccessRate:
post:
summary: Fetch success rate for an entity
operationId: fetchSuccessRate
description: Calculates success rate for an entity based on provided parameters and labels
tags:
- Success Rate
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/CalSuccessRateRequest"
example:
id: "merchant1"
params: "card"
labels: ["stripe", "adyen"]
responses:
"200":
description: Success rate calculated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/CalSuccessRateResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/success_rate.SuccessRateCalculator/UpdateSuccessRateWindow:
post:
summary: Update success rate window
operationId: updateSuccessRateWindow
description: Updates the success rate calculation window with new data points
tags:
- Success Rate
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateSuccessRateWindowRequest"
responses:
"200":
description: Window updated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateSuccessRateWindowResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/success_rate.SuccessRateCalculator/InvalidateWindows:
post:
summary: Invalidate windows
operationId: invalidateWindows
description: Invalidates the success rate calculation windows for a specific ID
tags:
- Success Rate
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidateWindowsRequest"
responses:
"200":
description: Windows invalidated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidateWindowsResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/success_rate.SuccessRateCalculator/FetchEntityAndGlobalSuccessRate:
post:
summary: Fetch entity and global success rates
operationId: fetchEntityAndGlobalSuccessRate
description: Calculates success rates for both entity-specific and global metrics
tags:
- Success Rate
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/CalGlobalSuccessRateRequest"
responses:
"200":
description: Success rates calculated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/CalGlobalSuccessRateResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/elimination.EliminationAnalyser/GetEliminationStatus:
post:
summary: Fetch eliminated processor list
operationId: GetEliminationStatus
description: Determines which processors should be eliminated from routing consideration based on historical performance data.
tags:
- Elimination
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/EliminationRequest"
example:
id: "merchant1"
params: "card"
labels: ["stripe", "adyen"]
config:
bucket_size: 5
bucket_leak_interval_in_secs: 10
responses:
"200":
description: Returns a eliminated processor list
content:
application/json:
schema:
$ref: "#/components/schemas/EliminationResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/elimination.EliminationAnalyser/UpdateEliminationBucket:
post:
summary: Update elimination bucket
operationId: UpdateEliminationBucket
description: Updates the failure records for specific processors, affecting future elimination decisions.
tags:
- Elimination
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateEliminationBucketRequest"
example:
id: "merchant1"
params: "card"
labels_with_bucket_name:
[{ "label": "stripe", "bucket_name": "bucket1" }]
config:
bucket_size: 5
bucket_leak_interval_in_secs: 10
responses:
"200":
description: Bucket updated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateEliminationBucketResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
/elimination.EliminationAnalyser/InvalidateBucket:
post:
summary: Invalidate elimination bucket
operationId: InvalidateBucket
description: Invalidates all elimination bucket data for a specific entity, effectively resetting its processor elimination history.
tags:
- Elimination
parameters:
- name: x-tenant-id
in: header
required: true
schema:
type: string
example: public
- name: x-profile-id
in: header
required: true
schema:
type: string
example: pro_WX0giXQnzk2wQJjkKVBX
- name: x-api-key
in: header
required: true
schema:
type: string
example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidateBucketRequest"
responses:
"200":
description: Buckets invalidated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/InvalidateBucketResponse"
"400":
description: Invalid request parameters
"500":
description: Internal server error
components:
schemas:
LabelWithScoreList:
type: object
properties:
score:
type: number
format: double
example: 100.0
description: Calculated success rate score
label:
type: string
example: stripe
description: Label identifier
required:
- score
- label
LabelWithScore:
type: array
items:
$ref: "#/components/schemas/LabelWithScoreList"
example:
- score: 100.0
label: stripe
- score: 98.5
label: adyen
LabelWithStatusList:
type: object
properties:
status:
type: number
format: boolean
example: true
description: Labels terminal status
label:
type: string
example: stripe
description: Label identifier
required:
- status
- label
LabelWithStatus:
type: array
items:
$ref: "#/components/schemas/LabelWithStatusList"
example:
- status: false
label: stripe
- status: true
label: adyen
CalSuccessRateRequest:
type: object
properties:
id:
type: string
description: Entity identifier
params:
type: string
description: Parameters on which success rate scores has to be maintained
labels:
type: array
items:
type: string
description: Labels for which to calculate success rates
required:
- id
- params
- labels
CalSuccessRateResponse:
type: object
properties:
labels_with_score:
type: array
items:
$ref: "#/components/schemas/LabelWithScore"
description: List of labels with their calculated success rates
UpdateSuccessRateWindowRequest:
type: object
properties:
id:
type: string
example: merchant1
description: Entity identifier
params:
type: string
example: card
description: Additional parameters for window update
labels_with_status:
type: array
items:
$ref: "#/components/schemas/LabelWithStatus"
description: Entity-specific labels with their success/failure status
global_labels_with_status:
type: array
items:
$ref: "#/components/schemas/LabelWithStatus"
description: Global labels with their success/failure status
required:
- id
- params
- labels_with_status
UpdateSuccessRateWindowResponse:
type: object
properties:
status:
type: string
enum: [WINDOW_UPDATION_SUCCEEDED, WINDOW_UPDATION_FAILED]
description: Status of the window update operation
required:
- status
InvalidateWindowsRequest:
type: object
properties:
id:
type: string
example: merchant1
description: Entity identifier for which to invalidate windows
required:
- id
InvalidateWindowsResponse:
type: object
properties:
status:
type: string
enum: [WINDOW_INVALIDATION_SUCCEEDED, WINDOW_INVALIDATION_FAILED]
description: Status of the window invalidation operation
required:
- status
CalGlobalSuccessRateRequest:
type: object
properties:
entity_id:
type: string
example: merchant1
description: Entity identifier
entity_params:
type: string
example: card
description: Additional parameters for entity success rate calculation
entity_labels:
type: array
example: ["stripe", "adyen"]
items:
type: string
description: Entity-specific labels for which to calculate success rates
global_labels:
type: array
example: ["stripe", "adyen"]
items:
type: string
description: Global labels for which to calculate success rates
required:
- entity_id
- entity_params
- entity_labels
- global_labels
CalGlobalSuccessRateResponse:
type: object
properties:
entity_scores_with_labels:
type: array
items:
$ref: "#/components/schemas/LabelWithScore"
description: Entity-specific labels with their calculated success rates
global_scores_with_labels:
type: array
items:
$ref: "#/components/schemas/LabelWithScore"
description: Global labels with their calculated success rates
EliminationRequest:
type: object
properties:
id:
type: string
description: Entity identifier
params:
type: string
description: AAdditional parameters for elimination analysis
labels:
type: array
items:
type: string
description: Labels (processors) to check for elimination
config:
$ref: "#/components/schemas/EliminationBucketConfig"
required:
- id
- labels
- config
EliminationBucketConfig:
type: object
properties:
bucket_size:
type: integer
format: uint64
description: Maximum failures allowed before elimination
bucket_leak_interval_in_secs:
type: number
format: uint64
description: Time interval after which failures are "forgotten"
required:
- bucket_size
- bucket_leak_interval_in_secs
EliminationResponse:
type: object
properties:
labels_with_score:
type: array
items:
$ref: "#/components/schemas/LabelWithStatus"
description: Elimination status for each label
EliminationInformation:
type: object
properties:
entity:
$ref: "#/components/schemas/BucketInformation"
global:
$ref: "#/components/schemas/BucketInformation"
BucketInformation:
type: object
properties:
is_eliminated:
type: boolean
example: true
description: Whether the processor should be eliminated
bucket_name:
type: array
items:
type: string
description: Bucket identifiers that triggered elimination
UpdateEliminationBucketRequest:
type: object
properties:
id:
type: string
description: "Entity identifier"
params:
type: string
description: "Additional parameters"
labels_with_bucket_name:
type: array
items:
type: object
properties:
label:
type: string
description: "Processor identifier"
bucket_name:
type: string
description: "Bucket to update (failure type)"
config:
$ref: "#/components/schemas/EliminationBucketConfig"
required:
- id
- labels_with_bucket_name
- config
LabelWithBucketName:
type: object
properties:
label:
type: string
description: "Processor identifier"
bucket_name:
type: string
description: "Bucket to update (failure type)"
required:
- label
- bucket_name
UpdateEliminationBucketResponse:
type: object
properties:
status:
type: string
description: "Status of the update operation"
enum:
- BUCKET_UPDATION_SUCCEEDED
- BUCKET_UPDATION_FAILED
required:
- status
InvalidateBucketRequest:
type: object
properties:
id:
type: string
example: merchant1
description: "Entity identifier to invalidate the bucket"
required:
- id
InvalidateBucketResponse:
type: object
properties:
status:
type: string
description: "Status of the invalidate operation"
enum:
- BUCKET_INVALIDATION_SUCCEEDED
- BUCKET_INVALIDATION_FAILED
required:
- status
| 4,111 | 8,918 |
hyperswitch | api-reference/rust_locker_open_api_spec.yml | .yml | openapi: "3.0.2"
info:
title: Tartarus - OpenAPI 3.0
description: |-
This is the OpenAPI 3.0 specification for the card locker.
This is used by the [hyperswitch](https://github.com/juspay/hyperswitch) for storing card information securely.
version: "1.0"
tags:
- name: Key Custodian
description: API used to initialize the locker after deployment.
- name: Data
description: CRUD APIs for working with data to be stored in the locker
- name: Cards
description: CRUD APIs for working with cards data to be stored in the locker (deprecated)
paths:
/custodian/key1:
post:
tags:
- Key Custodian
summary: Provide Key 1
description: Provide the first key to unlock the locker
operationId: setKey1
requestBody:
description: Provide key 1 to unlock the locker
content:
application/json:
schema:
$ref: "#/components/schemas/Key"
required: true
responses:
"200":
description: Key 1 provided
content:
text/plain:
schema:
$ref: "#/components/schemas/Key1Set"
/custodian/key2:
post:
tags:
- Key Custodian
summary: Provide Key 2
description: Provide the second key to unlock the locker
operationId: setKey2
requestBody:
description: Provide key 2 to unlock the locker
content:
application/json:
schema:
$ref: "#/components/schemas/Key"
required: true
responses:
"200":
description: Key 2 provided
content:
text/plain:
schema:
$ref: "#/components/schemas/Key2Set"
/custodian/decrypt:
post:
tags:
- Key Custodian
summary: Unlock the locker
description: Unlock the locker with the key1 and key2 provided
responses:
"200":
description: Successfully Unlocked
content:
text/plain:
schema:
$ref: "#/components/schemas/Decrypt200"
/health:
get:
summary: Get Health
description: To check whether the application is up
responses:
"200":
description: Health is good
content:
text/plain:
schema:
$ref: "#/components/schemas/Health"
/data/add:
post:
tags:
- Cards
- Data
summary: Add Data in Locker
description: Add sensitive data in the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/StoreDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Store Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/StoreDataRes"
- $ref: "#/components/schemas/JWERes"
/data/delete:
post:
tags:
- Cards
- Data
summary: Delete Data from Locker
description: Delete sensitive data from the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/DeleteDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Delete Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/DeleteDataRes"
- $ref: "#/components/schemas/JWERes"
/data/retrieve:
post:
tags:
- Cards
- Data
summary: Retrieve Data from Locker
description: Retrieve sensitive data from the locker
requestBody:
description: The request body might be JWE + JWS encrypted when using middleware
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/RetrieveDataReq"
- $ref: "#/components/schemas/JWEReq"
required: true
responses:
"200":
description: Retrieve Data Response
content:
application/json:
schema:
oneOf:
- $ref: "#/components/schemas/RetrieveDataRes"
- $ref: "#/components/schemas/JWERes"
/data/fingerprint:
post:
tags:
- Cards
- Data
summary: Get or insert the card fingerprint
description: Get or insert the card fingerprint
requestBody:
description: Provide card number and hash key
content:
application/json:
schema:
$ref: "#/components/schemas/FingerprintReq"
required: true
responses:
"200":
description: Fingerprint Response
content:
application/json:
schema:
$ref: "#/components/schemas/FingerprintRes"
components:
schemas:
Key:
type: object
properties:
key:
type: string
example: 801bb63c1bd51820acbc8ac20c674675
required:
- key
StoreDataReq:
title: StoreDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
requester_card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
card:
$ref: "#/components/schemas/Card"
enc_card_data:
type: string
example: "qwe4tyusdfg"
RetrieveDataReq:
title: RetrieveDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
DeleteDataReq:
title: DeleteDataReq
type: object
properties:
merchant_id:
type: string
example: m0100
merchant_customer_id:
type: string
example: HsCustomer1
card_reference:
type: string
example: 3ffdf1e5-7f38-4f26-936f-c66a6f4296fa
FingerprintReq:
type: object
properties:
card:
$ref: "#/components/schemas/FingerprintCardData"
hash_key:
type: string
example: Hash1
JWEReq:
title: JWEReq
type: object
properties:
header:
type: string
iv:
type: string
encrypted_payload:
type: string
tag:
type: string
encrypted_key:
type: string
RetrieveRes:
title: RetrieveRes
oneOf:
- type: object
properties:
card:
$ref: "#/components/schemas/Card"
- type: object
properties:
enc_card_data:
type: string
Card:
title: Card
type: object
required:
- card_number
properties:
card_number:
type: string
name_on_card:
type: string
card_exp_month:
type: string
card_exp_year:
type: string
card_brand:
type: string
card_isin:
type: string
nick_name:
type: string
FingerprintCardData:
type: object
properties:
card_number:
type: string
example: 4242424242424242
Key1Set:
title: Key1Set
type: string
# summary: Response after setting key1
description: Received Key1
example: Received Key1
Key2Set:
title: Key2Set
type: string
# description: Response after setting key2
description: Received Key2
example: Received Key2
Decrypt200:
title: Decrypt200
type: string
# description: Response if the locker key custodian decryption was successful
description: Decryption successful
example: Decryption successful
Health:
title: Health
type: string
# description: Response when the health is good
description: health is good
example: health is good
StoreDataRes:
title: StoreDataRes
type: object
description: Response received if the data was stored successfully
properties:
status:
type: string
enum: [Ok]
payload:
type: object
properties:
card_reference:
type: string
RetrieveDataRes:
title: RetrieveDataRes
type: object
description: Response received with the sensitive data, associated to the card reference
properties:
status:
type: string
enum: [Ok]
payload:
$ref: "#/components/schemas/RetrieveRes"
DeleteDataRes:
title: DeleteDataRes
type: object
description: Response received if the data deletion was successful
properties:
status:
type: string
enum: [Ok]
FingerprintRes:
type: object
description: Response received if the fingerprint insertion or retrieval was successful
properties:
status:
type: string
enum: [Ok]
payload:
type: object
properties:
fingerprint:
type: string
JWERes:
title: JWERes
type: object
description: JWE encrypted response equivalent
properties:
header:
type: string
iv:
type: string
encrypted_payload:
type: string
tag:
type: string
encrypted_key:
type: string | 2,352 | 8,920 |
hyperswitch | api-reference/mint.json | .json | {
"$schema": "https://mintlify.com/schema.json",
"name": "Hyperswitch",
"logo": {
"dark": "/logo/dark.svg",
"light": "/logo/light.svg"
},
"topbarLinks": [
{
"name": "Contact Us",
"url": "https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2jqxmpsbm-WXUENx022HjNEy~Ark7Orw"
}
],
"topbarCtaButton": {
"type": "link",
"url": "https://docs.hyperswitch.io/hyperswitch-open-source/overview",
"name": "Self-Deploy"
},
"favicon": "/favicon.png",
"colors": {
"primary": "#006DF9",
"light": "#006DF9",
"dark": "#006DF9",
"background": {
"dark": "#242F48"
}
},
"sidebar": {
"items": "card"
},
"tabs": [
{
"name": "Locker API Reference",
"url": "locker-api-reference"
},
{
"name": "Intelligent Router API Reference",
"url": "intelligent-router-api-reference"
}
],
"navigation": [
{
"group": "Get Started",
"pages": ["introduction"]
},
{
"group": "Essentials",
"pages": [
"essentials/error_codes",
"essentials/rate_limit",
"essentials/go-live"
]
},
{
"group": "API Reference",
"pages": [
{
"group": "Payments",
"pages": [
"api-reference/payments/Introduction--to--payments",
"api-reference/payments/payments--create",
"api-reference/payments/payments--update",
"api-reference/payments/payments--confirm",
"api-reference/payments/payments--retrieve",
"api-reference/payments/payments--cancel",
"api-reference/payments/payments--capture",
"api-reference/payments/payments--incremental-authorization",
"api-reference/payments/payments--session-token",
"api-reference/payments/payments-link--retrieve",
"api-reference/payments/payments--list",
"api-reference/payments/payments--external-3ds-authentication",
"api-reference/payments/payments--complete-authorize"
]
},
{
"group": "Payment Methods",
"pages": [
"api-reference/payment-methods/paymentmethods--create",
"api-reference/payment-methods/payment-method--retrieve",
"api-reference/payment-methods/payment-method--update",
"api-reference/payment-methods/payment-method--delete",
"api-reference/payment-methods/payment-method--set-default-payment-method-for-customer",
"api-reference/payment-methods/list-payment-methods-for-a-merchant",
"api-reference/payment-methods/list-customer-saved-payment-methods-for-a-payment",
"api-reference/payment-methods/list-payment-methods-for-a-customer",
"api-reference/customer-set-default-payment-method/customers--set-default-payment-method"
]
},
{
"group": "Customers",
"pages": [
"api-reference/customers/customers--create",
"api-reference/customers/customers--retrieve",
"api-reference/customers/customers--update",
"api-reference/customers/customers--delete",
"api-reference/customers/customers--list"
]
},
{
"group": "Mandates",
"pages": [
"api-reference/mandates/mandates--revoke-mandate",
"api-reference/mandates/mandates--retrieve-mandate",
"api-reference/mandates/mandates--customer-mandates-list"
]
},
{
"group": "Refunds",
"pages": [
"api-reference/refunds/refunds--create",
"api-reference/refunds/refunds--update",
"api-reference/refunds/refunds--retrieve",
"api-reference/refunds/refunds--list"
]
},
{
"group": "Disputes",
"pages": [
"api-reference/disputes/disputes--retrieve",
"api-reference/disputes/disputes--list"
]
},
{
"group": "Payouts",
"pages": [
"api-reference/payouts/payouts--create",
"api-reference/payouts/payouts--update",
"api-reference/payouts/payouts--cancel",
"api-reference/payouts/payouts--fulfill",
"api-reference/payouts/payouts--confirm",
"api-reference/payouts/payouts--retrieve",
"api-reference/payouts/payouts--list",
"api-reference/payouts/payouts--list-filters",
"api-reference/payouts/payouts--filter"
]
},
{
"group": "Event",
"pages": [
"api-reference/event/events--list",
"api-reference/event/events--delivery-attempt-list",
"api-reference/event/events--manual-retry"
]
},
{
"group": "Poll",
"pages": ["api-reference/poll/poll--retrieve-poll-status"]
},
{
"group": "Blocklist",
"pages": [
"api-reference/blocklist/get-blocklist",
"api-reference/blocklist/post-blocklist",
"api-reference/blocklist/delete-blocklist",
"api-reference/blocklist/post-blocklisttoggle"
]
},
{
"group": "Routing",
"pages": [
"api-reference/routing/routing--list",
"api-reference/routing/routing--create",
"api-reference/routing/routing--retrieve-config",
"api-reference/routing/routing--deactivate",
"api-reference/routing/routing--retrieve-default-config",
"api-reference/routing/routing--update-default-config",
"api-reference/routing/routing--retrieve-default-for-profile",
"api-reference/routing/routing--update-default-for-profile",
"api-reference/routing/routing--retrieve",
"api-reference/routing/routing--activate-config"
]
},
{
"group": "Relay",
"pages": [
"api-reference/relay/relay",
"api-reference/relay/relay--retrieve"
]
},
{
"group": "Schemas",
"pages": ["api-reference/schemas/outgoing--webhook"]
}
]
},
{
"group": "Admin API based",
"pages": [
{
"group": "Organization",
"pages": [
"api-reference/organization/organization--create",
"api-reference/organization/organization--retrieve",
"api-reference/organization/organization--update"
]
},
{
"group": "Merchant Account",
"pages": [
"api-reference/merchant-account/merchant-account--create",
"api-reference/merchant-account/merchant-account--retrieve",
"api-reference/merchant-account/merchant-account--update",
"api-reference/merchant-account/merchant-account--delete",
"api-reference/merchant-account/merchant-account--kv-status"
]
},
{
"group": "Business Profile",
"pages": [
"api-reference/business-profile/business-profile--create",
"api-reference/business-profile/business-profile--update",
"api-reference/business-profile/business-profile--retrieve",
"api-reference/business-profile/business-profile--delete",
"api-reference/business-profile/business-profile--list"
]
},
{
"group": "API Key",
"pages": [
"api-reference/api-key/api-key--create",
"api-reference/api-key/api-key--retrieve",
"api-reference/api-key/api-key--update",
"api-reference/api-key/api-key--revoke",
"api-reference/api-key/api-key--list"
]
},
{
"group": "Merchant Connector Account",
"pages": [
"api-reference/merchant-connector-account/merchant-connector--create",
"api-reference/merchant-connector-account/merchant-connector--retrieve",
"api-reference/merchant-connector-account/merchant-connector--update",
"api-reference/merchant-connector-account/merchant-connector--delete",
"api-reference/merchant-connector-account/merchant-connector--list"
]
},
{
"group": "GSM (Global Status Mapping)",
"pages": [
"api-reference/gsm/gsm--create",
"api-reference/gsm/gsm--get",
"api-reference/gsm/gsm--update",
"api-reference/gsm/gsm--delete"
]
},
{
"group": "Event",
"pages": [
"api-reference/event/events--list",
"api-reference/event/events--delivery-attempt-list",
"api-reference/event/events--manual-retry"
]
}
]
},
{
"group": "Hyperswitch Card Vault",
"pages": ["locker-api-reference/overview"]
},
{
"group": "API Reference",
"pages": [
{
"group": "Locker - Health",
"pages": ["locker-api-reference/locker-health/get-health"]
},
{
"group": "Locker - Key Custodian",
"pages": [
"locker-api-reference/key-custodian/provide-key-1",
"locker-api-reference/key-custodian/provide-key-2",
"locker-api-reference/key-custodian/unlock-the-locker"
]
},
{
"group": "Locker - Cards",
"pages": [
"locker-api-reference/cards/add-data-in-locker",
"locker-api-reference/cards/delete-data-from-locker",
"locker-api-reference/cards/retrieve-data-from-locker",
"locker-api-reference/cards/get-or-insert-the-card-fingerprint"
]
}
]
},
{
"group": "Hyperswitch Intelligent Router",
"pages": ["intelligent-router-api-reference/overview"]
},
{
"group": "API Reference",
"pages": [
{
"group": "Success Rate",
"pages": [
"intelligent-router-api-reference/success-rate/fetch-success-rate-for-an-entity",
"intelligent-router-api-reference/success-rate/update-success-rate-window",
"intelligent-router-api-reference/success-rate/invalidate-windows",
"intelligent-router-api-reference/success-rate/fetch-entity-and-global-success-rates"
]
},
{
"group": "Elimination",
"pages": [
"intelligent-router-api-reference/elimination/fetch-eliminated-processor-list",
"intelligent-router-api-reference/elimination/update-elimination-bucket",
"intelligent-router-api-reference/elimination/invalidate-elimination-bucket"
]
}
]
}
],
"footerSocials": {
"github": "https://github.com/juspay/hyperswitch",
"linkedin": "https://www.linkedin.com/company/hyperswitch"
},
"openapi": ["openapi_spec.json", "rust_locker_open_api_spec.yml"],
"api": {
"maintainOrder": true
},
"analytics": {
"gtm": {
"tagId": "GTM-PLBNKQFQ"
},
"mixpanel": {
"projectToken": "b00355f29d9548d1333608df71d5d53d"
}
}
} | 2,549 | 8,921 |
hyperswitch | api-reference/openapi_spec.json | .json | {
"openapi": "3.0.3",
"info": {
"title": "Hyperswitch - API Documentation",
"description": "\n## Get started\n\nHyperswitch provides a collection of APIs that enable you to process and manage payments.\nOur APIs accept and return JSON in the HTTP body, and return standard HTTP response codes.\n\nYou can consume the APIs directly using your favorite HTTP/REST library.\n\nWe have a testing environment referred to \"sandbox\", which you can setup to test API calls without\naffecting production data.\nCurrently, our sandbox environment is live while our production environment is under development\nand will be available soon.\nYou can sign up on our Dashboard to get API keys to access Hyperswitch API.\n\n### Environment\n\nUse the following base URLs when making requests to the APIs:\n\n| Environment | Base URL |\n|---------------|------------------------------------|\n| Sandbox | <https://sandbox.hyperswitch.io> |\n| Production | <https://api.hyperswitch.io> |\n\n## Authentication\n\nWhen you sign up on our [dashboard](https://app.hyperswitch.io) and create a merchant\naccount, you are given a secret key (also referred as api-key) and a publishable key.\nYou may authenticate all API requests with Hyperswitch server by providing the appropriate key in\nthe request Authorization header.\n\n| Key | Description |\n|-----------------|-----------------------------------------------------------------------------------------------|\n| api-key | Private key. Used to authenticate all API requests from your merchant server |\n| publishable key | Unique identifier for your account. Used to authenticate API requests from your app's client |\n\nNever share your secret api keys. Keep them guarded and secure.\n",
"contact": {
"name": "Hyperswitch Support",
"url": "https://hyperswitch.io",
"email": "hyperswitch@juspay.in"
},
"license": {
"name": "Apache-2.0"
},
"version": "0.1.0"
},
"servers": [
{
"url": "https://sandbox.hyperswitch.io",
"description": "Sandbox Environment"
}
],
"paths": {
"/payments": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Create",
"description": "**Creates a payment object when amount and currency are passed.**\n\nThis API is also used to create a mandate by passing the `mandate_object`.\n\nDepending on the user journey you wish to achieve, you may opt to complete all the steps in a single request **by attaching a payment method, setting `confirm=true` and `capture_method = automatic`** in the *Payments/Create API* request.\n\nOtherwise, To completely process a payment you will have to **create a payment, attach a payment method, confirm and capture funds**. For that you could use the following sequence of API requests -\n\n1. Payments - Create\n\n2. Payments - Update\n\n3. Payments - Confirm\n\n4. Payments - Capture.\n\nYou will require the 'API - Key' from the Hyperswitch dashboard to make the first call, and use the 'client secret' returned in this API along with your 'publishable key' to make subsequent API calls from your client.\n\nThis page lists the various combinations in which the Payments - Create API can be used and the details about the various fields in the requests and responses.",
"operationId": "Create a Payment",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCreateRequest"
},
"examples": {
"Create a 3DS payment": {
"value": {
"amount": 6540,
"authentication_type": "three_ds",
"currency": "USD"
}
},
"Create a manual capture payment": {
"value": {
"amount": 6540,
"billing": {
"address": {
"city": "San Fransico",
"country": "US",
"first_name": "joseph",
"last_name": "Doe",
"line1": "1467",
"line2": "Harrison Street",
"line3": "Harrison Street",
"state": "California",
"zip": "94122"
},
"phone": {
"country_code": "+91",
"number": "9123456789"
}
},
"currency": "USD",
"customer": {
"id": "cus_abcdefgh"
}
}
},
"Create a payment and save the card": {
"value": {
"amount": 6540,
"authentication_type": "no_three_ds",
"confirm": true,
"currency": "USD",
"customer_acceptance": {
"acceptance_type": "online",
"accepted_at": "1963-05-03T04:07:52.723Z",
"online": {
"ip_address": "127.0.0.1",
"user_agent": "amet irure esse"
}
},
"customer_id": "StripeCustomer123",
"payment_method": "card",
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_holder_name": "joseph Doe",
"card_number": "4242424242424242"
}
},
"setup_future_usage": "off_session"
}
},
"Create a payment using an already saved card's token": {
"value": {
"amount": 6540,
"card_cvc": "123",
"client_secret": "{{client_secret}}",
"confirm": true,
"currency": "USD",
"payment_method": "card",
"payment_token": "{{payment_token}}"
}
},
"Create a payment with customer details and metadata": {
"value": {
"amount": 6540,
"currency": "USD",
"customer": {
"email": "john@example.com",
"id": "cus_abcdefgh",
"name": "John Dough",
"phone": "9123456789"
},
"description": "Its my first payment request",
"metadata": {
"udf1": "some-value",
"udf2": "some-value"
},
"payment_id": "abcdefghijklmnopqrstuvwxyz",
"statement_descriptor_name": "joseph",
"statement_descriptor_suffix": "JS"
}
},
"Create a payment with minimal fields": {
"value": {
"amount": 6540,
"currency": "USD"
}
},
"Create a recurring payment with mandate_id": {
"value": {
"amount": 6540,
"authentication_type": "no_three_ds",
"confirm": true,
"currency": "USD",
"customer_id": "StripeCustomer",
"mandate_id": "{{mandate_id}}",
"off_session": true
}
},
"Create a setup mandate payment": {
"value": {
"amount": 6540,
"authentication_type": "no_three_ds",
"confirm": true,
"currency": "USD",
"customer_acceptance": {
"acceptance_type": "online",
"accepted_at": "1963-05-03T04:07:52.723Z",
"online": {
"ip_address": "127.0.0.1",
"user_agent": "amet irure esse"
}
},
"customer_id": "StripeCustomer123",
"mandate_data": {
"customer_acceptance": {
"acceptance_type": "online",
"accepted_at": "1963-05-03T04:07:52.723Z",
"online": {
"ip_address": "127.0.0.1",
"user_agent": "amet irure esse"
}
},
"mandate_type": {
"single_use": {
"amount": 6540,
"currency": "USD"
}
}
},
"payment_method": "card",
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_holder_name": "joseph Doe",
"card_number": "4242424242424242"
}
},
"setup_future_usage": "off_session"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCreateResponseOpenApi"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payments/{payment_id}": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Update",
"description": "To update the properties of a *PaymentIntent* object. This may include attaching a payment method, or attaching customer object or metadata fields after the Payment is created",
"operationId": "Update a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsUpdateRequest"
},
"examples": {
"Update the payment amount": {
"value": {
"amount": 7654
}
},
"Update the shipping address": {
"value": {
"shipping": {
"address": {
"city": "San Fransico",
"country": "US",
"first_name": "joseph",
"last_name": "Doe",
"line1": "1467",
"line2": "Harrison Street",
"line3": "Harrison Street",
"state": "California",
"zip": "94122"
},
"phone": {
"country_code": "+91",
"number": "9123456789"
}
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCreateResponseOpenApi"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
},
"get": {
"tags": [
"Payments"
],
"summary": "Payments - Retrieve",
"description": "Retrieves a Payment. This API can also be used to get the status of a previously initiated payment or next action for an ongoing payment",
"operationId": "Retrieve a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentRetrieveBody"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gets the payment with final status",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"404": {
"description": "No payment found"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
}
},
"/payments/{payment_id}/confirm": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Confirm",
"description": "**Use this API to confirm the payment and forward the payment to the payment processor.**\n\nAlternatively you can confirm the payment within the *Payments/Create* API by setting `confirm=true`. After confirmation, the payment could either:\n\n1. fail with `failed` status or\n\n2. transition to a `requires_customer_action` status with a `next_action` block or\n\n3. succeed with either `succeeded` in case of automatic capture or `requires_capture` in case of manual capture",
"operationId": "Confirm a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsConfirmRequest"
},
"examples": {
"Confirm a payment with payment method data": {
"value": {
"customer_acceptance": {
"acceptance_type": "online",
"accepted_at": "1963-05-03T04:07:52.723Z",
"online": {
"ip_address": "127.0.0.1",
"user_agent": "amet irure esse"
}
},
"payment_method": "card",
"payment_method_data": {
"card": {
"card_cvc": "123",
"card_exp_month": "10",
"card_exp_year": "25",
"card_holder_name": "joseph Doe",
"card_number": "4242424242424242"
}
},
"payment_method_type": "credit"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment confirmed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCreateResponseOpenApi"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
}
},
"/payments/{payment_id}/capture": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Capture",
"description": "To capture the funds for an uncaptured payment",
"operationId": "Capture a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCaptureRequest"
},
"examples": {
"Capture partial amount": {
"value": {
"amount_to_capture": 654
}
},
"Capture the full amount": {
"value": {}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment captured",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payments/session_tokens": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Session token",
"description": "Creates a session object or a session token for wallets like Apple Pay, Google Pay, etc. These tokens are used by Hyperswitch's SDK to initiate these wallets' SDK.",
"operationId": "Create Session tokens for a Payment",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsSessionRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment session object created or session token was retrieved from wallets",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsSessionResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/payments/{payment_id}/cancel": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Cancel",
"description": "A Payment could can be cancelled when it is in one of these statuses: `requires_payment_method`, `requires_capture`, `requires_confirmation`, `requires_customer_action`.",
"operationId": "Cancel a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCancelRequest"
},
"examples": {
"Cancel the payment with cancellation reason": {
"value": {
"cancellation_reason": "requested_by_customer"
}
},
"Cancel the payment with minimal fields": {
"value": {}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment canceled"
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payments/list": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments - List",
"description": "To list the *payments*",
"operationId": "List all Payments",
"parameters": [
{
"name": "customer_id",
"in": "query",
"description": "The identifier for the customer",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "starting_after",
"in": "query",
"description": "A cursor for use in pagination, fetch the next list after some object",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "ending_before",
"in": "query",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "limit",
"in": "query",
"description": "Limit on the number of objects to return",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "created",
"in": "query",
"description": "The time at which payment is created",
"required": true,
"schema": {
"type": "string",
"format": "date-time"
}
},
{
"name": "created_lt",
"in": "query",
"description": "Time less than the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time"
}
},
{
"name": "created_gt",
"in": "query",
"description": "Time greater than the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time"
}
},
{
"name": "created_lte",
"in": "query",
"description": "Time less than or equals to the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time"
}
},
{
"name": "created_gte",
"in": "query",
"description": "Time greater than or equals to the payment created time",
"required": true,
"schema": {
"type": "string",
"format": "date-time"
}
}
],
"responses": {
"200": {
"description": "Successfully retrieved a payment list",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentListResponse"
}
}
}
}
},
"404": {
"description": "No payments found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payments/{payment_id}/incremental_authorization": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Incremental Authorization",
"description": "Authorized amount for a payment can be incremented if it is in status: requires_capture",
"operationId": "Increment authorized amount for a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsIncrementalAuthorizationRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment authorized amount incremented",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payment_link/{payment_link_id}": {
"get": {
"tags": [
"Payments"
],
"summary": "Payments Link - Retrieve",
"description": "To retrieve the properties of a Payment Link. This may be used to get the status of a previously initiated payment or next action for an ongoing payment",
"operationId": "Retrieve a Payment Link",
"parameters": [
{
"name": "payment_link_id",
"in": "path",
"description": "The identifier for payment link",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrievePaymentLinkRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gets details regarding payment link",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrievePaymentLinkResponse"
}
}
}
},
"404": {
"description": "No payment link found"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
}
},
"/payments/{payment_id}/3ds/authentication": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - External 3DS Authentication",
"description": "External 3DS Authentication is performed and returns the AuthenticationResponse",
"operationId": "Initiate external authentication for a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsExternalAuthenticationRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Authentication created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsExternalAuthenticationResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/{payment_id}/complete_authorize": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Complete Authorize",
"operationId": "Complete Authorize a Payment",
"parameters": [
{
"name": "payment_id",
"in": "path",
"description": "The identifier for payment",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsCompleteAuthorizeRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payments Complete Authorize Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/payments/{payment_id}/post_session_tokens": {
"post": {
"tags": [
"Payments"
],
"summary": "Payments - Post Session Tokens",
"operationId": "Create Post Session Tokens for a Payment",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsPostSessionTokensRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Post Session Token is done",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsPostSessionTokensResponse"
}
}
}
},
"400": {
"description": "Missing mandatory fields"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/relay": {
"post": {
"tags": [
"Relay"
],
"summary": "Relay - Create",
"description": "Creates a relay request.",
"operationId": "Relay Request",
"parameters": [
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID for authentication",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "X-Idempotency-Key",
"in": "header",
"description": "Idempotency Key for relay request",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RelayRequest"
},
"examples": {
"Create a relay request": {
"value": {
"connector_id": "mca_5apGeP94tMts6rg3U3kR",
"connector_resource_id": "7256228702616471803954",
"data": {
"refund": {
"amount": 6540,
"currency": "USD"
}
},
"type": "refund"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Relay request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RelayResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/relay/{relay_id}": {
"get": {
"tags": [
"Relay"
],
"summary": "Relay - Retrieve",
"description": "Retrieves a relay details.",
"operationId": "Retrieve a Relay details",
"parameters": [
{
"name": "X-Profile-Id",
"in": "header",
"description": "Profile ID for authentication",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Relay Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RelayResponse"
}
}
}
},
"404": {
"description": "Relay details was not found"
}
},
"security": [
{
"api_key": []
},
{
"ephemeral_key": []
}
]
}
},
"/refunds": {
"post": {
"tags": [
"Refunds"
],
"summary": "Refunds - Create",
"description": "Creates a refund against an already processed payment. In case of some processors, you can even opt to refund only a partial amount multiple times until the original charge amount has been refunded",
"operationId": "Create a Refund",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundRequest"
},
"examples": {
"Create an instant refund to refund partial amount": {
"value": {
"amount": 654,
"payment_id": "{{payment_id}}",
"refund_type": "instant"
}
},
"Create an instant refund to refund the whole amount": {
"value": {
"payment_id": "{{payment_id}}",
"refund_type": "instant"
}
},
"Create an instant refund with reason": {
"value": {
"amount": 6540,
"payment_id": "{{payment_id}}",
"reason": "Customer returned product",
"refund_type": "instant"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Refund created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/refunds/{refund_id}": {
"get": {
"tags": [
"Refunds"
],
"summary": "Refunds - Retrieve",
"description": "Retrieves a Refund. This may be used to get the status of a previously initiated refund",
"operationId": "Retrieve a Refund",
"parameters": [
{
"name": "refund_id",
"in": "path",
"description": "The identifier for refund",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Refund retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundResponse"
}
}
}
},
"404": {
"description": "Refund does not exist in our records"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Refunds"
],
"summary": "Refunds - Update",
"description": "Updates the properties of a Refund object. This API can be used to attach a reason for the refund or metadata fields",
"operationId": "Update a Refund",
"parameters": [
{
"name": "refund_id",
"in": "path",
"description": "The identifier for refund",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundUpdateRequest"
},
"examples": {
"Update refund reason": {
"value": {
"reason": "Paid by mistake"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Refund updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/refunds/list": {
"post": {
"tags": [
"Refunds"
],
"summary": "Refunds - List",
"description": "Lists all the refunds associated with the merchant, or for a specific payment if payment_id is provided",
"operationId": "List all Refunds",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundListRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "List of refunds",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RefundListResponse"
}
}
}
}
},
"security": [
{
"api_key": []
}
]
}
},
"/organization": {
"post": {
"tags": [
"Organization"
],
"summary": "Organization - Create",
"description": "Create a new organization",
"operationId": "Create an Organization",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationCreateRequest"
},
"examples": {
"Create an organization with organization_name": {
"value": {
"organization_name": "organization_abc"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/organization/{id}": {
"get": {
"tags": [
"Organization"
],
"summary": "Organization - Retrieve",
"description": "Retrieve an existing organization",
"operationId": "Retrieve an Organization",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Organization",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"put": {
"tags": [
"Organization"
],
"summary": "Organization - Update",
"description": "Create a new organization for .",
"operationId": "Update an Organization",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The unique identifier for the Organization",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationUpdateRequest"
},
"examples": {
"Update organization_name of the organization": {
"value": {
"organization_name": "organization_abcd"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Organization Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OrganizationResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/accounts": {
"post": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Create",
"description": "Create a new account for a *merchant* and the *merchant* could be a seller or retailer or client who likes to receive and send payments.",
"operationId": "Create a Merchant Account",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountCreate"
},
"examples": {
"Create a merchant account with minimal fields": {
"value": {
"merchant_id": "merchant_abc"
}
},
"Create a merchant account with return url": {
"value": {
"merchant_id": "merchant_abc",
"return_url": "https://example.com"
}
},
"Create a merchant account with webhook url": {
"value": {
"merchant_id": "merchant_abc",
"webhook_details": {
"webhook_url": "https://webhook.site/a5c54f75-1f7e-4545-b781-af525b7e37a0"
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Account Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/accounts/{account_id}": {
"get": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Retrieve",
"description": "Retrieve a *merchant* account details.",
"operationId": "Retrieve a Merchant Account",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Merchant Account Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"post": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Update",
"description": "Updates details of an existing merchant account. Helpful in updating merchant details such as email, contact details, or other configuration details like webhook, routing algorithm etc",
"operationId": "Update a Merchant Account",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountUpdate"
},
"examples": {
"Update merchant name": {
"value": {
"merchant_id": "merchant_abc",
"merchant_name": "merchant_name"
}
},
"Update return url": {
"value": {
"merchant_id": "merchant_abc",
"return_url": "https://example.com"
}
},
"Update webhook url": {
"value": {
"merchant_id": "merchant_abc",
"webhook_details": {
"webhook_url": "https://webhook.site/a5c54f75-1f7e-4545-b781-af525b7e37a0"
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Account Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountResponse"
}
}
}
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"delete": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - Delete",
"description": "Delete a *merchant* account",
"operationId": "Delete a Merchant Account",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Merchant Account Deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantAccountDeleteResponse"
}
}
}
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/accounts/{account_id}/kv": {
"post": {
"tags": [
"Merchant Account"
],
"summary": "Merchant Account - KV Status",
"description": "Toggle KV mode for the Merchant Account",
"operationId": "Enable/Disable KV for a Merchant Account",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ToggleKVRequest"
},
"examples": {
"Disable KV for Merchant": {
"value": {
"kv_enabled": "false"
}
},
"Enable KV for Merchant": {
"value": {
"kv_enabled": "true"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "KV mode is enabled/disabled for Merchant Account",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ToggleKVResponse"
}
}
}
},
"400": {
"description": "Invalid data"
},
"404": {
"description": "Merchant account not found"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/accounts/{account_id}/connectors": {
"post": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - Create",
"description": "Creates a new Merchant Connector for the merchant account. The connector could be a payment processor/facilitator/acquirer or a provider of specialized services like Fraud/Accounting etc.",
"operationId": "Create a Merchant Connector",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorCreate"
},
"examples": {
"Create a merchant account with custom connector label": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_label": "EU_adyen",
"connector_name": "adyen",
"connector_type": "payment_processor"
}
},
"Create a merchant connector account under a specific profile": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_name": "adyen",
"connector_type": "payment_processor",
"profile_id": "{{profile_id}}"
}
},
"Create a merchant connector account with minimal fields": {
"value": {
"connector_account_details": {
"api_key": "{{adyen-api-key}}",
"auth_type": "BodyKey",
"key1": "{{adyen_merchant_account}}"
},
"connector_name": "adyen",
"connector_type": "payment_processor"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Connector Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
},
"get": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - List",
"description": "List Merchant Connector Details for the merchant",
"operationId": "List all Merchant Connectors",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector list retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MerchantConnectorListResponse"
}
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/accounts/{account_id}/connectors/{connector_id}": {
"get": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - Retrieve",
"description": "Retrieves details of a Connector account",
"operationId": "Retrieve a Merchant Connector",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "connector_id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - Update",
"description": "To update an existing Merchant Connector account. Helpful in enabling/disabling different payment methods and other settings for the connector",
"operationId": "Update a Merchant Connector",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "connector_id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorUpdate"
},
"examples": {
"Enable card payment method": {
"value": {
"connector_type": "payment_processor",
"payment_methods_enabled": [
{
"payment_method": "card"
}
]
}
},
"Update webhook secret": {
"value": {
"connector_webhook_details": {
"merchant_secret": "{{webhook_secret}}"
}
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Merchant Connector Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Merchant Connector Account"
],
"summary": "Merchant Connector - Delete",
"description": "Delete or Detach a Merchant Connector from Merchant Account",
"operationId": "Delete a Merchant Connector",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "connector_id",
"in": "path",
"description": "The unique identifier for the Merchant Connector",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "Merchant Connector Deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantConnectorDeleteResponse"
}
}
}
},
"401": {
"description": "Unauthorized request"
},
"404": {
"description": "Merchant Connector does not exist in records"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/gsm": {
"post": {
"tags": [
"Gsm"
],
"summary": "Gsm - Create",
"description": "Creates a GSM (Global Status Mapping) Rule. A GSM rule is used to map a connector's error message/error code combination during a particular payments flow/sub-flow to Hyperswitch's unified status/error code/error message combination. It is also used to decide the next action in the flow - retry/requeue/do_default",
"operationId": "Create Gsm Rule",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmCreateRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gsm created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/gsm/get": {
"post": {
"tags": [
"Gsm"
],
"summary": "Gsm - Get",
"description": "Retrieves a Gsm Rule",
"operationId": "Retrieve Gsm Rule",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmRetrieveRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gsm retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/gsm/update": {
"post": {
"tags": [
"Gsm"
],
"summary": "Gsm - Update",
"description": "Updates a Gsm Rule",
"operationId": "Update Gsm Rule",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmUpdateRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gsm updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/gsm/delete": {
"post": {
"tags": [
"Gsm"
],
"summary": "Gsm - Delete",
"description": "Deletes a Gsm Rule",
"operationId": "Delete Gsm Rule",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmDeleteRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Gsm deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GsmDeleteResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/mandates/{mandate_id}": {
"get": {
"tags": [
"Mandates"
],
"summary": "Mandates - Retrieve Mandate",
"description": "Retrieves a mandate created using the Payments/Create API",
"operationId": "Retrieve a Mandate",
"parameters": [
{
"name": "mandate_id",
"in": "path",
"description": "The identifier for mandate",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The mandate was retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MandateResponse"
}
}
}
},
"404": {
"description": "Mandate does not exist in our records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/mandates/revoke/{mandate_id}": {
"post": {
"tags": [
"Mandates"
],
"summary": "Mandates - Revoke Mandate",
"description": "Revokes a mandate created using the Payments/Create API",
"operationId": "Revoke a Mandate",
"parameters": [
{
"name": "mandate_id",
"in": "path",
"description": "The identifier for a mandate",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The mandate was revoked successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MandateRevokedResponse"
}
}
}
},
"400": {
"description": "Mandate does not exist in our records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/customers/{customer_id}/mandates": {
"post": {
"tags": [
"Mandates"
],
"summary": "Mandates - Customer Mandates List",
"description": "Lists all the mandates for a particular customer id.",
"operationId": "List Mandates for a Customer",
"responses": {
"200": {
"description": "List of retrieved mandates for a customer",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MandateResponse"
}
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/customers": {
"post": {
"tags": [
"Customers"
],
"summary": "Customers - Create",
"description": "Creates a customer object and stores the customer details to be reused for future payments.\nIncase the customer already exists in the system, this API will respond with the customer details.",
"operationId": "Create a Customer",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerRequest"
},
"examples": {
"Update name and email of a customer": {
"value": {
"email": "guest@example.com",
"name": "John Doe"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Customer Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/customers/{customer_id}": {
"get": {
"tags": [
"Customers"
],
"summary": "Customers - Retrieve",
"description": "Retrieves a customer's details.",
"operationId": "Retrieve a Customer",
"parameters": [
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Customer Retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
},
{
"ephemeral_key": []
}
]
},
"post": {
"tags": [
"Customers"
],
"summary": "Customers - Update",
"description": "Updates the customer's details in a customer object.",
"operationId": "Update a Customer",
"parameters": [
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerUpdateRequest"
},
"examples": {
"Update name and email of a customer": {
"value": {
"email": "guest@example.com",
"name": "John Doe"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Customer was Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Customers"
],
"summary": "Customers - Delete",
"description": "Delete a customer record.",
"operationId": "Delete a Customer",
"parameters": [
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Customer was Deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerDeleteResponse"
}
}
}
},
"404": {
"description": "Customer was not found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/customers/list": {
"get": {
"tags": [
"Customers"
],
"summary": "Customers - List",
"description": "Lists all the customers for a particular merchant id.",
"operationId": "List all Customers for a Merchant",
"responses": {
"200": {
"description": "Customers retrieved",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerResponse"
}
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payment_methods": {
"post": {
"tags": [
"Payment Methods"
],
"summary": "PaymentMethods - Create",
"description": "Creates and stores a payment method against a customer.\nIn case of cards, this API should be used only by PCI compliant merchants.",
"operationId": "Create a Payment Method",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodCreate"
},
"examples": {
"Save a card": {
"value": {
"card": {
"card_exp_month": "11",
"card_exp_year": "25",
"card_holder_name": "John Doe",
"card_number": "4242424242424242"
},
"customer_id": "{{customer_id}}",
"payment_method": "card",
"payment_method_issuer": "Visa",
"payment_method_type": "credit"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/account/payment_methods": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "List payment methods for a Merchant",
"description": "Lists the applicable payment methods for a particular Merchant ID.\nUse the client secret and publishable key authorization to list all relevant payment methods of the merchant for the payment corresponding to the client secret.",
"operationId": "List all Payment Methods for a Merchant",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "accepted_country",
"in": "query",
"description": "The two-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "accepted_currency",
"in": "path",
"description": "The three-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
},
{
"name": "minimum_amount",
"in": "query",
"description": "The minimum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "maximum_amount",
"in": "query",
"description": "The maximum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "recurring_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for recurring payments",
"required": true,
"schema": {
"type": "boolean"
}
},
{
"name": "installment_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for installment payments",
"required": true,
"schema": {
"type": "boolean"
}
}
],
"responses": {
"200": {
"description": "Payment Methods retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodListResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
},
"404": {
"description": "Payment Methods does not exist in records"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
}
},
"/customers/{customer_id}/payment_methods": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "List payment methods for a Customer",
"description": "Lists all the applicable payment methods for a particular Customer ID.",
"operationId": "List all Payment Methods for a Customer",
"parameters": [
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the customer account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "accepted_country",
"in": "query",
"description": "The two-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "accepted_currency",
"in": "path",
"description": "The three-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
},
{
"name": "minimum_amount",
"in": "query",
"description": "The minimum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "maximum_amount",
"in": "query",
"description": "The maximum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "recurring_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for recurring payments",
"required": true,
"schema": {
"type": "boolean"
}
},
{
"name": "installment_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for installment payments",
"required": true,
"schema": {
"type": "boolean"
}
}
],
"responses": {
"200": {
"description": "Payment Methods retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerPaymentMethodsListResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
},
"404": {
"description": "Payment Methods does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/customers/payment_methods": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "List customer saved payment methods for a Payment",
"description": "Lists all the applicable payment methods for a particular payment tied to the `client_secret`.",
"operationId": "List all Payment Methods for a Customer",
"parameters": [
{
"name": "client-secret",
"in": "path",
"description": "A secret known only to your client and the authorization server. Used for client side authentication",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the customer account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "accepted_country",
"in": "query",
"description": "The two-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "accepted_currency",
"in": "path",
"description": "The three-letter ISO currency code",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
},
{
"name": "minimum_amount",
"in": "query",
"description": "The minimum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "maximum_amount",
"in": "query",
"description": "The maximum amount accepted for processing by the particular payment method.",
"required": true,
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "recurring_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for recurring payments",
"required": true,
"schema": {
"type": "boolean"
}
},
{
"name": "installment_payment_enabled",
"in": "query",
"description": "Indicates whether the payment method is eligible for installment payments",
"required": true,
"schema": {
"type": "boolean"
}
}
],
"responses": {
"200": {
"description": "Payment Methods retrieved for customer tied to its respective client-secret passed in the param",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerPaymentMethodsListResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
},
"404": {
"description": "Payment Methods does not exist in records"
}
},
"security": [
{
"publishable_key": []
}
]
}
},
"/{customer_id}/payment_methods/{payment_method_id}/default": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Set Default Payment Method for Customer",
"description": "Set the Payment Method as Default for the Customer.",
"operationId": "Set the Payment Method as Default",
"parameters": [
{
"name": "customer_id",
"in": "path",
"description": "The unique identifier for the Customer",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "payment_method_id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Method has been set as default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerDefaultPaymentMethodResponse"
}
}
}
},
"400": {
"description": "Payment Method has already been set as default for that customer"
},
"404": {
"description": "Payment Method not found for the customer"
}
},
"security": [
{
"ephemeral_key": []
}
]
}
},
"/payment_methods/{method_id}": {
"get": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Retrieve",
"description": "Retrieves a payment method of a customer.",
"operationId": "Retrieve a Payment method",
"parameters": [
{
"name": "method_id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Method retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"404": {
"description": "Payment Method does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Delete",
"description": "Deletes a payment method of a customer.",
"operationId": "Delete a Payment method",
"parameters": [
{
"name": "method_id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payment Method deleted",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodDeleteResponse"
}
}
}
},
"404": {
"description": "Payment Method does not exist in records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payment_methods/{method_id}/update": {
"post": {
"tags": [
"Payment Methods"
],
"summary": "Payment Method - Update",
"description": "Update an existing payment method of a customer.\nThis API is useful for use cases such as updating the card number for expired cards to prevent discontinuity in recurring payments.",
"operationId": "Update a Payment method",
"parameters": [
{
"name": "method_id",
"in": "path",
"description": "The unique identifier for the Payment Method",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodUpdate"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payment Method updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentMethodResponse"
}
}
}
},
"404": {
"description": "Payment Method does not exist in records"
}
},
"security": [
{
"api_key": []
},
{
"publishable_key": []
}
]
}
},
"/account/{account_id}/business_profile": {
"post": {
"tags": [
"Profile"
],
"summary": "Profile - Create",
"description": "Creates a new *profile* for a merchant",
"operationId": "Create A Profile",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileCreate"
},
"examples": {
"Create a profile with minimal fields": {
"value": {}
},
"Create a profile with profile name": {
"value": {
"profile_name": "shoe_business"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Profile Created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
},
"get": {
"tags": [
"Profile"
],
"summary": "Profile - List",
"description": "Lists all the *profiles* under a merchant",
"operationId": "List Profiles",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant Identifier",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Profiles Retrieved",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
}
}
},
"security": [
{
"api_key": []
}
]
}
},
"/account/{account_id}/business_profile/{profile_id}": {
"get": {
"tags": [
"Profile"
],
"summary": "Profile - Retrieve",
"description": "Retrieve existing *profile*",
"operationId": "Retrieve a Profile",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Profile Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Profile"
],
"summary": "Profile - Update",
"description": "Update the *profile*",
"operationId": "Update a Profile",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileCreate"
},
"examples": {
"Update profile with profile name fields": {
"value": {
"profile_name": "shoe_business"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Profile Updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"api_key": []
}
]
},
"delete": {
"tags": [
"Profile"
],
"summary": "Profile - Delete",
"description": "Delete the *profile*",
"operationId": "Delete the Profile",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "The unique identifier for the profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Profiles Deleted",
"content": {
"text/plain": {
"schema": {
"type": "boolean"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/disputes/{dispute_id}": {
"get": {
"tags": [
"Disputes"
],
"summary": "Disputes - Retrieve Dispute",
"description": "Retrieves a dispute",
"operationId": "Retrieve a Dispute",
"parameters": [
{
"name": "dispute_id",
"in": "path",
"description": "The identifier for dispute",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The dispute was retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DisputeResponse"
}
}
}
},
"404": {
"description": "Dispute does not exist in our records"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/disputes/list": {
"get": {
"tags": [
"Disputes"
],
"summary": "Disputes - List Disputes",
"description": "Lists all the Disputes for a merchant",
"operationId": "List Disputes",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The maximum number of Dispute Objects to include in the response",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "dispute_status",
"in": "query",
"description": "The status of dispute",
"required": false,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/DisputeStatus"
}
],
"nullable": true
}
},
{
"name": "dispute_stage",
"in": "query",
"description": "The stage of dispute",
"required": false,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/DisputeStage"
}
],
"nullable": true
}
},
{
"name": "reason",
"in": "query",
"description": "The reason for dispute",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "connector",
"in": "query",
"description": "The connector linked to dispute",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "received_time",
"in": "query",
"description": "The time at which dispute is received",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "received_time.lt",
"in": "query",
"description": "Time less than the dispute received time",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "received_time.gt",
"in": "query",
"description": "Time greater than the dispute received time",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "received_time.lte",
"in": "query",
"description": "Time less than or equals to the dispute received time",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "received_time.gte",
"in": "query",
"description": "Time greater than or equals to the dispute received time",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "The dispute list was retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DisputeResponse"
}
}
}
}
},
"401": {
"description": "Unauthorized request"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/routing": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Create",
"description": "Create a routing config",
"operationId": "Create a routing config",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingConfigRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing config created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Request body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
},
"get": {
"tags": [
"Routing"
],
"summary": "Routing - List",
"description": "List all routing configs",
"operationId": "List routing configs",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to be returned",
"required": false,
"schema": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
}
},
{
"name": "offset",
"in": "query",
"description": "The record offset from which to start gathering of results",
"required": false,
"schema": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
}
},
{
"name": "profile_id",
"in": "query",
"description": "The unique identifier for a merchant profile",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Successfully fetched routing configs",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingKind"
}
}
}
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/{routing_algorithm_id}/activate": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Activate config",
"description": "Activate a routing config",
"operationId": "Activate a routing config",
"parameters": [
{
"name": "routing_algorithm_id",
"in": "path",
"description": "The unique identifier for a config",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Routing config activated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Bad request"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/{routing_algorithm_id}": {
"get": {
"tags": [
"Routing"
],
"summary": "Routing - Retrieve",
"description": "Retrieve a routing algorithm",
"operationId": "Retrieve a routing config",
"parameters": [
{
"name": "routing_algorithm_id",
"in": "path",
"description": "The unique identifier for a config",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successfully fetched routing config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MerchantRoutingAlgorithm"
}
}
}
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/deactivate": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Deactivate",
"description": "Deactivates a routing config",
"operationId": "Deactivate a routing config",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingConfigRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successfully deactivated routing config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Malformed request"
},
"403": {
"description": "Malformed request"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/default": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Update Default Config",
"description": "Update default fallback config",
"operationId": "Update default fallback config",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successfully updated default config",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
}
},
"400": {
"description": "Malformed request"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
},
"get": {
"tags": [
"Routing"
],
"summary": "Routing - Retrieve Default Config",
"description": "Retrieve default fallback config",
"operationId": "Retrieve default fallback config",
"responses": {
"200": {
"description": "Successfully retrieved default config",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
}
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/active": {
"get": {
"tags": [
"Routing"
],
"summary": "Routing - Retrieve Config",
"description": "Retrieve active config",
"operationId": "Retrieve active config",
"parameters": [
{
"name": "profile_id",
"in": "query",
"description": "The unique identifier for a merchant profile",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Successfully retrieved active config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LinkedRoutingConfigRetrieveResponse"
}
}
}
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/default/profile": {
"get": {
"tags": [
"Routing"
],
"summary": "Routing - Retrieve Default For Profile",
"description": "Retrieve default config for profiles",
"operationId": "Retrieve default configs for all profiles",
"responses": {
"200": {
"description": "Successfully retrieved default config",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileDefaultRoutingConfig"
}
}
}
},
"404": {
"description": "Resource missing"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/routing/default/profile/{profile_id}": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Update Default For Profile",
"description": "Update default config for profiles",
"operationId": "Update default configs for all profiles",
"parameters": [
{
"name": "profile_id",
"in": "path",
"description": "The unique identifier for a profile",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successfully updated default config for profile",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProfileDefaultRoutingConfig"
}
}
}
},
"400": {
"description": "Malformed request"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/account/{account_id}/business_profile/{profile_id}/dynamic_routing/success_based/config/{algorithm_id}": {
"patch": {
"tags": [
"Routing"
],
"summary": "Routing - Update success based dynamic routing config for profile",
"description": "Update success based dynamic routing algorithm",
"operationId": "Update success based dynamic routing configs",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "Profile id under which Dynamic routing needs to be toggled",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "algorithm_id",
"in": "path",
"description": "Success based routing algorithm id which was last activated to update the config",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuccessBasedRoutingConfig"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing Algorithm updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Update body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/account/{account_id}/business_profile/{profile_id}/dynamic_routing/success_based/toggle": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Toggle success based dynamic routing for profile",
"description": "Create a success based dynamic routing algorithm",
"operationId": "Toggle success based dynamic routing algorithm",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "Profile id under which Dynamic routing needs to be toggled",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "enable",
"in": "query",
"description": "Feature to enable for success based routing",
"required": true,
"schema": {
"$ref": "#/components/schemas/DynamicRoutingFeatures"
}
}
],
"responses": {
"200": {
"description": "Routing Algorithm created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Request body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/account/{account_id}/business_profile/{profile_id}/dynamic_routing/elimination/toggle": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Toggle elimination routing for profile",
"description": "Create a elimination based dynamic routing algorithm",
"operationId": "Toggle elimination routing algorithm",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "Profile id under which Dynamic routing needs to be toggled",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "enable",
"in": "query",
"description": "Feature to enable for elimination based routing",
"required": true,
"schema": {
"$ref": "#/components/schemas/DynamicRoutingFeatures"
}
}
],
"responses": {
"200": {
"description": "Routing Algorithm created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Request body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/account/:account_id/business_profile/:profile_id/dynamic_routing/contracts/toggle": {
"post": {
"tags": [
"Routing"
],
"summary": "Routing - Toggle Contract routing for profile",
"description": "Create a Contract based dynamic routing algorithm",
"operationId": "Toggle contract routing algorithm",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "Profile id under which Dynamic routing needs to be toggled",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "enable",
"in": "query",
"description": "Feature to enable for contract based routing",
"required": true,
"schema": {
"$ref": "#/components/schemas/DynamicRoutingFeatures"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ContractBasedRoutingConfig"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing Algorithm created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Request body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/account/{account_id}/business_profile/{profile_id}/dynamic_routing/contracts/config/{algorithm_id}": {
"patch": {
"tags": [
"Routing"
],
"summary": "Routing - Update contract based dynamic routing config for profile",
"description": "Update contract based dynamic routing algorithm",
"operationId": "Update contract based dynamic routing configs",
"parameters": [
{
"name": "account_id",
"in": "path",
"description": "Merchant id",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "profile_id",
"in": "path",
"description": "Profile id under which Dynamic routing needs to be toggled",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "algorithm_id",
"in": "path",
"description": "Contract based routing algorithm id which was last activated to update the config",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ContractBasedRoutingConfig"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Routing Algorithm updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"400": {
"description": "Update body is malformed"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Resource missing"
},
"422": {
"description": "Unprocessable request"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"api_key": []
},
{
"jwt_key": []
}
]
}
},
"/blocklist": {
"delete": {
"tags": [
"Blocklist"
],
"operationId": "Unblock a Fingerprint",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BlocklistRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Fingerprint Unblocked",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BlocklistResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
},
"get": {
"tags": [
"Blocklist"
],
"operationId": "List Blocked fingerprints of a particular kind",
"parameters": [
{
"name": "data_kind",
"in": "query",
"description": "Kind of the fingerprint list requested",
"required": true,
"schema": {
"$ref": "#/components/schemas/BlocklistDataKind"
}
}
],
"responses": {
"200": {
"description": "Blocked Fingerprints",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BlocklistResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Blocklist"
],
"operationId": "Block a Fingerprint",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BlocklistRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Fingerprint Blocked",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BlocklistResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/blocklist/toggle": {
"post": {
"tags": [
"Blocklist"
],
"operationId": "Toggle blocklist guard for a particular merchant",
"parameters": [
{
"name": "status",
"in": "query",
"description": "Boolean value to enable/disable blocklist",
"required": true,
"schema": {
"type": "boolean"
}
}
],
"responses": {
"200": {
"description": "Blocklist guard enabled/disabled",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ToggleBlocklistResponse"
}
}
}
},
"400": {
"description": "Invalid Data"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/create": {
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - Create",
"operationId": "Create a Payout",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutsCreateRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payout created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/{payout_id}": {
"get": {
"tags": [
"Payouts"
],
"summary": "Payouts - Retrieve",
"operationId": "Retrieve a Payout",
"parameters": [
{
"name": "payout_id",
"in": "path",
"description": "The identifier for payout",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "force_sync",
"in": "query",
"description": "Sync with the connector to get the payout details (defaults to false)",
"required": false,
"schema": {
"type": "boolean",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Payout retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"404": {
"description": "Payout does not exist in our records"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - Update",
"operationId": "Update a Payout",
"parameters": [
{
"name": "payout_id",
"in": "path",
"description": "The identifier for payout",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutUpdateRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payout updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/{payout_id}/cancel": {
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - Cancel",
"operationId": "Cancel a Payout",
"parameters": [
{
"name": "payout_id",
"in": "path",
"description": "The identifier for payout",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCancelRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payout cancelled",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/{payout_id}/fulfill": {
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - Fulfill",
"operationId": "Fulfill a Payout",
"parameters": [
{
"name": "payout_id",
"in": "path",
"description": "The identifier for payout",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutFulfillRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payout fulfilled",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/list": {
"get": {
"tags": [
"Payouts"
],
"summary": "Payouts - List",
"operationId": "List payouts using generic constraints",
"parameters": [
{
"name": "customer_id",
"in": "query",
"description": "The identifier for customer",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "starting_after",
"in": "query",
"description": "A cursor for use in pagination, fetch the next list after some object",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "ending_before",
"in": "query",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "limit",
"in": "query",
"description": "limit on the number of objects to return",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "created",
"in": "query",
"description": "The time at which payout is created",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "time_range",
"in": "query",
"description": "The time range for which objects are needed. TimeRange has two fields start_time and end_time from which objects can be filtered as per required scenarios (created_at, time less than, greater than etc).",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Payouts listed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutListResponse"
}
}
}
},
"404": {
"description": "Payout not found"
}
},
"security": [
{
"api_key": []
}
]
},
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - List using filters",
"operationId": "Filter payouts using specific constraints",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutListFilterConstraints"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payouts filtered",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutListResponse"
}
}
}
},
"404": {
"description": "Payout not found"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/{payout_id}/confirm": {
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - Confirm",
"operationId": "Confirm a Payout",
"parameters": [
{
"name": "payout_id",
"in": "path",
"description": "The identifier for payout",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutConfirmRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Payout updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
},
"400": {
"description": "Missing Mandatory fields"
}
},
"security": [
{
"api_key": []
}
]
}
},
"/payouts/filter": {
"post": {
"tags": [
"Payouts"
],
"summary": "Payouts - List available filters",
"operationId": "List available payout filters",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TimeRange"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Filters listed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PayoutListFilters"
}
}
}
}
},
"security": [
{
"api_key": []
}
]
}
},
"/api_keys/{merchant_id}": {
"post": {
"tags": [
"API Key"
],
"summary": "API Key - Create",
"description": "Create a new API Key for accessing our APIs from your servers. The plaintext API Key will be\ndisplayed only once on creation, so ensure you store it securely.",
"operationId": "Create an API Key",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "API Key created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyResponse"
}
}
}
},
"400": {
"description": "Invalid data"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/api_keys/{merchant_id}/{key_id}": {
"get": {
"tags": [
"API Key"
],
"summary": "API Key - Retrieve",
"description": "Retrieve information about the specified API Key.",
"operationId": "Retrieve an API Key",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "key_id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API Key retrieved",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"post": {
"tags": [
"API Key"
],
"summary": "API Key - Update",
"description": "Update information for the specified API Key.",
"operationId": "Update an API Key",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "key_id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "API Key updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
},
"delete": {
"tags": [
"API Key"
],
"summary": "API Key - Revoke",
"description": "Revoke the specified API Key. Once revoked, the API Key can no longer be used for\nauthenticating with our APIs.",
"operationId": "Revoke an API Key",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "key_id",
"in": "path",
"description": "The unique identifier for the API Key",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API Key revoked",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RevokeApiKeyResponse"
}
}
}
},
"404": {
"description": "API Key not found"
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/api_keys/{merchant_id}/list": {
"get": {
"tags": [
"API Key"
],
"summary": "API Key - List",
"description": "List all the API Keys associated to a merchant account.",
"operationId": "List all API Keys associated with a merchant account",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the merchant account",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "limit",
"in": "query",
"description": "The maximum number of API Keys to include in the response",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "skip",
"in": "query",
"description": "The number of API Keys to skip when retrieving the list of API keys.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "List of API Keys retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RetrieveApiKeyResponse"
}
}
}
}
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/events/{merchant_id}": {
"get": {
"tags": [
"Event"
],
"summary": "Events - List",
"description": "List all Events associated with a Merchant Account or Profile.",
"operationId": "List all Events associated with a Merchant Account or Profile",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the Merchant Account.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "created_after",
"in": "query",
"description": "Only include Events created after the specified time. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "created_before",
"in": "query",
"description": "Only include Events created before the specified time. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "limit",
"in": "query",
"description": "The maximum number of Events to include in the response. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "offset",
"in": "query",
"description": "The number of Events to skip when retrieving the list of Events.\n Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "object_id",
"in": "query",
"description": "Only include Events associated with the specified object (Payment Intent ID, Refund ID, etc.). Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "profile_id",
"in": "query",
"description": "Only include Events associated with the Profile identified by the specified Profile ID.",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "is_delivered",
"in": "query",
"description": "Only include Events which are ultimately delivered to the merchant.",
"required": false,
"schema": {
"type": "boolean",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "List of Events retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TotalEventsResponse"
}
}
}
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/events/profile/list": {
"get": {
"tags": [
"Event"
],
"summary": "Events - List",
"description": "List all Events associated with a Profile.",
"operationId": "List all Events associated with a Profile",
"parameters": [
{
"name": "created_after",
"in": "query",
"description": "Only include Events created after the specified time. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "created_before",
"in": "query",
"description": "Only include Events created before the specified time. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"format": "date-time",
"nullable": true
}
},
{
"name": "limit",
"in": "query",
"description": "The maximum number of Events to include in the response. Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "offset",
"in": "query",
"description": "The number of Events to skip when retrieving the list of Events.\n Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
}
},
{
"name": "object_id",
"in": "query",
"description": "Only include Events associated with the specified object (Payment Intent ID, Refund ID, etc.). Either only `object_id` must be specified, or one or more of `created_after`, `created_before`, `limit` and `offset` must be specified.",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "List of Events retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventListItemResponse"
}
}
}
}
}
},
"security": [
{
"jwt_key": []
}
]
}
},
"/events/{merchant_id}/{event_id}/attempts": {
"get": {
"tags": [
"Event"
],
"summary": "Events - Delivery Attempt List",
"description": "List all delivery attempts for the specified Event.",
"operationId": "List all delivery attempts for an Event",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the Merchant Account.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "event_id",
"in": "path",
"description": "The unique identifier for the Event",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "List of delivery attempts retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventRetrieveResponse"
}
}
}
}
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/events/{merchant_id}/{event_id}/retry": {
"post": {
"tags": [
"Event"
],
"summary": "Events - Manual Retry",
"description": "Manually retry the delivery of the specified Event.",
"operationId": "Manually retry the delivery of an Event",
"parameters": [
{
"name": "merchant_id",
"in": "path",
"description": "The unique identifier for the Merchant Account.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "event_id",
"in": "path",
"description": "The unique identifier for the Event",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The delivery of the Event was attempted. Check the `response` field in the response payload to identify the status of the delivery attempt.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EventRetrieveResponse"
}
}
}
}
},
"security": [
{
"admin_api_key": []
}
]
}
},
"/poll/status/{poll_id}": {
"get": {
"tags": [
"Poll"
],
"summary": "Poll - Retrieve Poll Status",
"operationId": "Retrieve Poll Status",
"parameters": [
{
"name": "poll_id",
"in": "path",
"description": "The identifier for poll",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The poll status was retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PollResponse"
}
}
}
},
"404": {
"description": "Poll not found"
}
},
"security": [
{
"publishable_key": []
}
]
}
}
},
"components": {
"schemas": {
"AcceptanceType": {
"type": "string",
"description": "This is used to indicate if the mandate was accepted online or offline",
"enum": [
"online",
"offline"
]
},
"AcceptedCountries": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
},
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"disable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"all_accepted"
]
}
}
}
],
"description": "Object to filter the customer countries for which the payment method is displayed",
"discriminator": {
"propertyName": "type"
}
},
"AcceptedCurrencies": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
}
},
{
"type": "object",
"required": [
"type",
"list"
],
"properties": {
"type": {
"type": "string",
"enum": [
"disable_only"
]
},
"list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
}
}
}
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"all_accepted"
]
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"AchBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"routing_number"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for ach bank debit payment",
"example": "0001****3456"
},
"routing_number": {
"type": "string",
"description": "Partially masked routing number for ach bank debit payment",
"example": "110***000"
},
"card_holder_name": {
"type": "string",
"description": "Card holder's name",
"example": "John Doe",
"nullable": true
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
},
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"bank_type": {
"allOf": [
{
"$ref": "#/components/schemas/BankType"
}
],
"nullable": true
},
"bank_holder_type": {
"allOf": [
{
"$ref": "#/components/schemas/BankHolderType"
}
],
"nullable": true
}
}
},
"AchBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"bank_routing_number"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"bank_routing_number": {
"type": "string",
"description": "[9 digits] Routing number - used in USA for identifying a specific bank.",
"example": "110000000"
}
}
},
"AchBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for ach bank transfer payout method",
"required": [
"bank_account_number",
"bank_routing_number"
],
"properties": {
"bank_account_number": {
"type": "string",
"description": "Partially masked account number for ach bank debit payment",
"example": "0001****3456"
},
"bank_routing_number": {
"type": "string",
"description": "Partially masked routing number for ach bank debit payment",
"example": "110***000"
},
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
}
}
},
"AchBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "The Email ID for ACH billing",
"example": "example@me.com",
"nullable": true
}
}
},
"AchTransfer": {
"type": "object",
"required": [
"account_number",
"bank_name",
"routing_number",
"swift_code"
],
"properties": {
"account_number": {
"type": "string",
"example": "122385736258"
},
"bank_name": {
"type": "string"
},
"routing_number": {
"type": "string",
"example": "012"
},
"swift_code": {
"type": "string",
"example": "234"
}
}
},
"AdditionalMerchantData": {
"oneOf": [
{
"type": "object",
"required": [
"open_banking_recipient_data"
],
"properties": {
"open_banking_recipient_data": {
"$ref": "#/components/schemas/MerchantRecipientData"
}
}
}
]
},
"AdditionalPayoutMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"Card"
],
"properties": {
"Card": {
"$ref": "#/components/schemas/CardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Bank"
],
"properties": {
"Bank": {
"$ref": "#/components/schemas/BankAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Wallet"
],
"properties": {
"Wallet": {
"$ref": "#/components/schemas/WalletAdditionalData"
}
}
}
],
"description": "Masked payout method details for storing in db"
},
"Address": {
"type": "object",
"properties": {
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"phone": {
"allOf": [
{
"$ref": "#/components/schemas/PhoneDetails"
}
],
"nullable": true
},
"email": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"AddressDetails": {
"type": "object",
"description": "Address details",
"properties": {
"city": {
"type": "string",
"description": "The address city",
"example": "New York",
"nullable": true,
"maxLength": 50
},
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"line1": {
"type": "string",
"description": "The first line of the address",
"example": "123, King Street",
"nullable": true,
"maxLength": 200
},
"line2": {
"type": "string",
"description": "The second line of the address",
"example": "Powelson Avenue",
"nullable": true,
"maxLength": 50
},
"line3": {
"type": "string",
"description": "The third line of the address",
"example": "Bridgewater",
"nullable": true,
"maxLength": 50
},
"zip": {
"type": "string",
"description": "The zip/postal code for the address",
"example": "08807",
"nullable": true,
"maxLength": 50
},
"state": {
"type": "string",
"description": "The address state",
"example": "New York",
"nullable": true
},
"first_name": {
"type": "string",
"description": "The first name for the address",
"example": "John",
"nullable": true,
"maxLength": 255
},
"last_name": {
"type": "string",
"description": "The last name for the address",
"example": "Doe",
"nullable": true,
"maxLength": 255
}
},
"additionalProperties": false
},
"AdyenSplitData": {
"type": "object",
"description": "Fee information for Split Payments to be charged on the payment being collected for Adyen",
"required": [
"split_items"
],
"properties": {
"store": {
"type": "string",
"description": "The store identifier",
"nullable": true
},
"split_items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AdyenSplitItem"
},
"description": "Data for the split items"
}
},
"additionalProperties": false
},
"AdyenSplitItem": {
"type": "object",
"description": "Data for the split items",
"required": [
"amount",
"split_type",
"reference"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The amount of the split item",
"example": 6540
},
"split_type": {
"$ref": "#/components/schemas/AdyenSplitType"
},
"account": {
"type": "string",
"description": "The unique identifier of the account to which the split amount is allocated.",
"nullable": true
},
"reference": {
"type": "string",
"description": "Unique Identifier for the split item"
},
"description": {
"type": "string",
"description": "Description for the part of the payment that will be allocated to the specified account.",
"nullable": true
}
},
"additionalProperties": false
},
"AdyenSplitType": {
"type": "string",
"enum": [
"BalanceAccount",
"AcquiringFees",
"PaymentFee",
"AdyenFees",
"AdyenCommission",
"AdyenMarkup",
"Interchange",
"SchemeFee",
"Commission",
"TopUp",
"Vat"
]
},
"AirwallexData": {
"type": "object",
"properties": {
"payload": {
"type": "string",
"description": "payload required by airwallex",
"nullable": true
}
}
},
"AlfamartVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Alfamart",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Alfamart",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Alfamart",
"example": "example@me.com",
"nullable": true
}
}
},
"AliPayHkRedirection": {
"type": "object"
},
"AliPayQr": {
"type": "object"
},
"AliPayRedirection": {
"type": "object"
},
"AmazonPayRedirectData": {
"type": "object"
},
"AmountFilter": {
"type": "object",
"properties": {
"start_amount": {
"type": "integer",
"format": "int64",
"description": "The start amount to filter list of transactions which are greater than or equal to the start amount",
"nullable": true
},
"end_amount": {
"type": "integer",
"format": "int64",
"description": "The end amount to filter list of transactions which are less than or equal to the end amount",
"nullable": true
}
}
},
"AmountInfo": {
"type": "object",
"required": [
"label",
"amount"
],
"properties": {
"label": {
"type": "string",
"description": "The label must be the name of the merchant."
},
"type": {
"type": "string",
"description": "A value that indicates whether the line item(Ex: total, tax, discount, or grand total) is final or pending.",
"nullable": true
},
"amount": {
"type": "string",
"description": "The total amount for the payment in majot unit string (Ex: 38.02)",
"example": "38.02"
}
}
},
"ApiKeyExpiration": {
"oneOf": [
{
"type": "string",
"enum": [
"never"
]
},
{
"type": "string",
"format": "date-time"
}
]
},
"ApplePayAddressParameters": {
"type": "string",
"enum": [
"postalAddress",
"phone",
"email"
]
},
"ApplePayBillingContactFields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApplePayAddressParameters"
}
},
"ApplePayPaymentRequest": {
"type": "object",
"required": [
"country_code",
"currency_code",
"total"
],
"properties": {
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total": {
"$ref": "#/components/schemas/AmountInfo"
},
"merchant_capabilities": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of merchant capabilities(ex: whether capable of 3ds or no-3ds)",
"nullable": true
},
"supported_networks": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of supported networks",
"nullable": true
},
"merchant_identifier": {
"type": "string",
"nullable": true
},
"required_billing_contact_fields": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayBillingContactFields"
}
],
"nullable": true
},
"required_shipping_contact_fields": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayShippingContactFields"
}
],
"nullable": true
},
"recurring_payment_request": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayRecurringPaymentRequest"
}
],
"nullable": true
}
}
},
"ApplePayPaymentTiming": {
"type": "string",
"enum": [
"immediate",
"recurring"
]
},
"ApplePayRecurringDetails": {
"type": "object",
"required": [
"payment_description",
"regular_billing",
"management_url"
],
"properties": {
"payment_description": {
"type": "string",
"description": "A description of the recurring payment that Apple Pay displays to the user in the payment sheet"
},
"regular_billing": {
"$ref": "#/components/schemas/ApplePayRegularBillingDetails"
},
"billing_agreement": {
"type": "string",
"description": "A localized billing agreement that the payment sheet displays to the user before the user authorizes the payment",
"nullable": true
},
"management_url": {
"type": "string",
"description": "A URL to a web page where the user can update or delete the payment method for the recurring payment",
"example": "https://hyperswitch.io"
}
}
},
"ApplePayRecurringPaymentRequest": {
"type": "object",
"required": [
"payment_description",
"regular_billing",
"management_u_r_l"
],
"properties": {
"payment_description": {
"type": "string",
"description": "A description of the recurring payment that Apple Pay displays to the user in the payment sheet"
},
"regular_billing": {
"$ref": "#/components/schemas/ApplePayRegularBillingRequest"
},
"billing_agreement": {
"type": "string",
"description": "A localized billing agreement that the payment sheet displays to the user before the user authorizes the payment",
"nullable": true
},
"management_u_r_l": {
"type": "string",
"description": "A URL to a web page where the user can update or delete the payment method for the recurring payment",
"example": "https://hyperswitch.io"
}
}
},
"ApplePayRedirectData": {
"type": "object"
},
"ApplePayRegularBillingDetails": {
"type": "object",
"required": [
"label"
],
"properties": {
"label": {
"type": "string",
"description": "The label that Apple Pay displays to the user in the payment sheet with the recurring details"
},
"recurring_payment_start_date": {
"type": "string",
"format": "date-time",
"description": "The date of the first payment",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"recurring_payment_end_date": {
"type": "string",
"format": "date-time",
"description": "The date of the final payment",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"recurring_payment_interval_unit": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringPaymentIntervalUnit"
}
],
"nullable": true
},
"recurring_payment_interval_count": {
"type": "integer",
"format": "int32",
"description": "The number of interval units that make up the total payment interval",
"nullable": true
}
}
},
"ApplePayRegularBillingRequest": {
"type": "object",
"required": [
"amount",
"label",
"payment_timing"
],
"properties": {
"amount": {
"type": "string",
"description": "The amount of the recurring payment",
"example": "38.02"
},
"label": {
"type": "string",
"description": "The label that Apple Pay displays to the user in the payment sheet with the recurring details"
},
"payment_timing": {
"$ref": "#/components/schemas/ApplePayPaymentTiming"
},
"recurring_payment_start_date": {
"type": "string",
"format": "date-time",
"description": "The date of the first payment",
"nullable": true
},
"recurring_payment_end_date": {
"type": "string",
"format": "date-time",
"description": "The date of the final payment",
"nullable": true
},
"recurring_payment_interval_unit": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringPaymentIntervalUnit"
}
],
"nullable": true
},
"recurring_payment_interval_count": {
"type": "integer",
"format": "int32",
"description": "The number of interval units that make up the total payment interval",
"nullable": true
}
}
},
"ApplePaySessionResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/ThirdPartySdkSessionResponse"
},
{
"$ref": "#/components/schemas/NoThirdPartySdkSessionResponse"
},
{
"type": "object",
"default": null,
"nullable": true
}
]
},
"ApplePayShippingContactFields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApplePayAddressParameters"
}
},
"ApplePayThirdPartySdkData": {
"type": "object"
},
"ApplePayWalletData": {
"type": "object",
"required": [
"payment_data",
"payment_method",
"transaction_identifier"
],
"properties": {
"payment_data": {
"type": "string",
"description": "The payment data of Apple pay"
},
"payment_method": {
"$ref": "#/components/schemas/ApplepayPaymentMethod"
},
"transaction_identifier": {
"type": "string",
"description": "The unique identifier for the transaction"
}
}
},
"ApplepayConnectorMetadataRequest": {
"type": "object",
"properties": {
"session_token_data": {
"allOf": [
{
"$ref": "#/components/schemas/SessionTokenInfo"
}
],
"nullable": true
}
}
},
"ApplepayInitiative": {
"type": "string",
"enum": [
"web",
"ios"
]
},
"ApplepayPaymentMethod": {
"type": "object",
"required": [
"display_name",
"network",
"type"
],
"properties": {
"display_name": {
"type": "string",
"description": "The name to be displayed on Apple Pay button"
},
"network": {
"type": "string",
"description": "The network of the Apple pay payment method"
},
"type": {
"type": "string",
"description": "The type of the payment method"
}
}
},
"ApplepaySessionTokenResponse": {
"type": "object",
"required": [
"connector",
"delayed_session_token",
"sdk_next_action"
],
"properties": {
"session_token_data": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePaySessionResponse"
}
],
"nullable": true
},
"payment_request_data": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayPaymentRequest"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The session token is w.r.t this connector"
},
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
},
"connector_reference_id": {
"type": "string",
"description": "The connector transaction id",
"nullable": true
},
"connector_sdk_public_key": {
"type": "string",
"description": "The public key id is to invoke third party sdk",
"nullable": true
},
"connector_merchant_id": {
"type": "string",
"description": "The connector merchant id",
"nullable": true
}
}
},
"AttemptStatus": {
"type": "string",
"description": "The status of the attempt",
"enum": [
"started",
"authentication_failed",
"router_declined",
"authentication_pending",
"authentication_successful",
"authorized",
"authorization_failed",
"charged",
"authorizing",
"cod_initiated",
"voided",
"void_initiated",
"capture_initiated",
"capture_failed",
"void_failed",
"auto_refunded",
"partial_charged",
"partial_charged_and_chargeable",
"unresolved",
"pending",
"failure",
"payment_method_awaited",
"confirmation_awaited",
"device_data_collection_pending"
]
},
"AuthenticationConnectorDetails": {
"type": "object",
"required": [
"authentication_connectors",
"three_ds_requestor_url"
],
"properties": {
"authentication_connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthenticationConnectors"
},
"description": "List of authentication connectors"
},
"three_ds_requestor_url": {
"type": "string",
"description": "URL of the (customer service) website that will be shown to the shopper in case of technical errors during the 3D Secure 2 process."
},
"three_ds_requestor_app_url": {
"type": "string",
"description": "Merchant app declaring their URL within the CReq message so that the Authentication app can call the Merchant app after OOB authentication has occurred.",
"nullable": true
}
}
},
"AuthenticationConnectors": {
"type": "string",
"enum": [
"threedsecureio",
"netcetera",
"gpayments",
"ctp_mastercard",
"unified_authentication_service",
"juspaythreedsserver",
"ctp_visa"
]
},
"AuthenticationStatus": {
"type": "string",
"enum": [
"started",
"pending",
"success",
"failed"
]
},
"AuthenticationType": {
"type": "string",
"description": "Pass this parameter to force 3DS or non 3DS auth for this payment. Some connectors will still force 3DS auth even in case of passing 'no_three_ds' here and vice versa. Default value is 'no_three_ds' if not set",
"enum": [
"three_ds",
"no_three_ds"
]
},
"AuthorizationStatus": {
"type": "string",
"enum": [
"success",
"failure",
"processing",
"unresolved"
]
},
"BacsBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"sort_code"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for Bacs payment method",
"example": "0001****3456"
},
"sort_code": {
"type": "string",
"description": "Partially masked sort code for Bacs payment method",
"example": "108800"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"BacsBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"bank_sort_code"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"bank_sort_code": {
"type": "string",
"description": "[6 digits] Sort Code - used in UK and Ireland for identifying a bank and it's branches.",
"example": "98-76-54"
}
}
},
"BacsBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for bacs bank transfer payout method",
"required": [
"bank_sort_code",
"bank_account_number"
],
"properties": {
"bank_sort_code": {
"type": "string",
"description": "Partially masked sort code for Bacs payment method",
"example": "108800"
},
"bank_account_number": {
"type": "string",
"description": "Bank account's owner name",
"example": "0001****3456"
},
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
}
}
},
"BacsBankTransferInstructions": {
"type": "object",
"required": [
"account_holder_name",
"account_number",
"sort_code"
],
"properties": {
"account_holder_name": {
"type": "string",
"example": "Jane Doe"
},
"account_number": {
"type": "string",
"example": "10244123908"
},
"sort_code": {
"type": "string",
"example": "012"
}
}
},
"BancontactBankRedirectAdditionalData": {
"type": "object",
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the card number",
"example": "4242",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "12",
"nullable": true
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test",
"nullable": true
}
}
},
"Bank": {
"oneOf": [
{
"$ref": "#/components/schemas/AchBankTransfer"
},
{
"$ref": "#/components/schemas/BacsBankTransfer"
},
{
"$ref": "#/components/schemas/SepaBankTransfer"
},
{
"$ref": "#/components/schemas/PixBankTransfer"
}
]
},
"BankAdditionalData": {
"oneOf": [
{
"$ref": "#/components/schemas/AchBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/BacsBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/SepaBankTransferAdditionalData"
},
{
"$ref": "#/components/schemas/PixBankTransferAdditionalData"
}
],
"description": "Masked payout method details for bank payout method"
},
"BankCodeResponse": {
"type": "object",
"required": [
"bank_name",
"eligible_connectors"
],
"properties": {
"bank_name": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BankNames"
}
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"BankDebitAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"ach"
],
"properties": {
"ach": {
"$ref": "#/components/schemas/AchBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"$ref": "#/components/schemas/BacsBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"becs"
],
"properties": {
"becs": {
"$ref": "#/components/schemas/BecsBankDebitAdditionalData"
}
}
},
{
"type": "object",
"required": [
"sepa"
],
"properties": {
"sepa": {
"$ref": "#/components/schemas/SepaBankDebitAdditionalData"
}
}
}
]
},
"BankDebitBilling": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The billing name for bank debits",
"example": "John Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The billing email for bank debits",
"example": "example@example.com",
"nullable": true
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
}
}
},
"BankDebitData": {
"oneOf": [
{
"type": "object",
"required": [
"ach_bank_debit"
],
"properties": {
"ach_bank_debit": {
"type": "object",
"description": "Payment Method data for Ach bank debit",
"required": [
"account_number",
"routing_number",
"card_holder_name",
"bank_account_holder_name",
"bank_name",
"bank_type",
"bank_holder_type"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for ach bank debit payment",
"example": "000123456789"
},
"routing_number": {
"type": "string",
"description": "Routing number for ach bank debit payment",
"example": "110000000"
},
"card_holder_name": {
"type": "string",
"example": "John Test"
},
"bank_account_holder_name": {
"type": "string",
"example": "John Doe"
},
"bank_name": {
"type": "string",
"example": "ACH"
},
"bank_type": {
"type": "string",
"example": "Checking"
},
"bank_holder_type": {
"type": "string",
"example": "Personal"
}
}
}
}
},
{
"type": "object",
"required": [
"sepa_bank_debit"
],
"properties": {
"sepa_bank_debit": {
"type": "object",
"required": [
"iban",
"bank_account_holder_name"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"iban": {
"type": "string",
"description": "International bank account number (iban) for SEPA",
"example": "DE89370400440532013000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Owner name for bank debit",
"example": "A. Schneider"
}
}
}
}
},
{
"type": "object",
"required": [
"becs_bank_debit"
],
"properties": {
"becs_bank_debit": {
"type": "object",
"required": [
"account_number",
"bsb_number"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for Becs payment method",
"example": "000123456"
},
"bsb_number": {
"type": "string",
"description": "Bank-State-Branch (bsb) number",
"example": "000000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Owner name for bank debit",
"example": "A. Schneider",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bacs_bank_debit"
],
"properties": {
"bacs_bank_debit": {
"type": "object",
"required": [
"account_number",
"sort_code",
"bank_account_holder_name"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitBilling"
}
],
"nullable": true
},
"account_number": {
"type": "string",
"description": "Account number for Bacs payment method",
"example": "00012345"
},
"sort_code": {
"type": "string",
"description": "Sort code for Bacs payment method",
"example": "108800"
},
"bank_account_holder_name": {
"type": "string",
"description": "holder name for bank debit",
"example": "A. Schneider"
}
}
}
}
}
]
},
"BankDebitResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankDebitAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"BankDebitTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"BankHolderType": {
"type": "string",
"enum": [
"personal",
"business"
]
},
"BankNames": {
"type": "string",
"description": "Name of banks supported by Hyperswitch",
"enum": [
"american_express",
"affin_bank",
"agro_bank",
"alliance_bank",
"am_bank",
"bank_of_america",
"bank_of_china",
"bank_islam",
"bank_muamalat",
"bank_rakyat",
"bank_simpanan_nasional",
"barclays",
"blik_p_s_p",
"capital_one",
"chase",
"citi",
"cimb_bank",
"discover",
"navy_federal_credit_union",
"pentagon_federal_credit_union",
"synchrony_bank",
"wells_fargo",
"abn_amro",
"asn_bank",
"bunq",
"handelsbanken",
"hong_leong_bank",
"hsbc_bank",
"ing",
"knab",
"kuwait_finance_house",
"moneyou",
"rabobank",
"regiobank",
"revolut",
"sns_bank",
"triodos_bank",
"van_lanschot",
"arzte_und_apotheker_bank",
"austrian_anadi_bank_ag",
"bank_austria",
"bank99_ag",
"bankhaus_carl_spangler",
"bankhaus_schelhammer_und_schattera_ag",
"bank_millennium",
"bank_p_e_k_a_o_s_a",
"bawag_psk_ag",
"bks_bank_ag",
"brull_kallmus_bank_ag",
"btv_vier_lander_bank",
"capital_bank_grawe_gruppe_ag",
"ceska_sporitelna",
"dolomitenbank",
"easybank_ag",
"e_platby_v_u_b",
"erste_bank_und_sparkassen",
"friesland_bank",
"hypo_alpeadriabank_international_ag",
"hypo_noe_lb_fur_niederosterreich_u_wien",
"hypo_oberosterreich_salzburg_steiermark",
"hypo_tirol_bank_ag",
"hypo_vorarlberg_bank_ag",
"hypo_bank_burgenland_aktiengesellschaft",
"komercni_banka",
"m_bank",
"marchfelder_bank",
"maybank",
"oberbank_ag",
"osterreichische_arzte_und_apothekerbank",
"ocbc_bank",
"pay_with_i_n_g",
"place_z_i_p_k_o",
"platnosc_online_karta_platnicza",
"posojilnica_bank_e_gen",
"postova_banka",
"public_bank",
"raiffeisen_bankengruppe_osterreich",
"rhb_bank",
"schelhammer_capital_bank_ag",
"standard_chartered_bank",
"schoellerbank_ag",
"sparda_bank_wien",
"sporo_pay",
"santander_przelew24",
"tatra_pay",
"viamo",
"volksbank_gruppe",
"volkskreditbank_ag",
"vr_bank_braunau",
"uob_bank",
"pay_with_alior_bank",
"banki_spoldzielcze",
"pay_with_inteligo",
"b_n_p_paribas_poland",
"bank_nowy_s_a",
"credit_agricole",
"pay_with_b_o_s",
"pay_with_citi_handlowy",
"pay_with_plus_bank",
"toyota_bank",
"velo_bank",
"e_transfer_pocztowy24",
"plus_bank",
"etransfer_pocztowy24",
"banki_spbdzielcze",
"bank_nowy_bfg_sa",
"getin_bank",
"blik",
"noble_pay",
"idea_bank",
"envelo_bank",
"nest_przelew",
"mbank_mtransfer",
"inteligo",
"pbac_z_ipko",
"bnp_paribas",
"bank_pekao_sa",
"volkswagen_bank",
"alior_bank",
"boz",
"bangkok_bank",
"krungsri_bank",
"krung_thai_bank",
"the_siam_commercial_bank",
"kasikorn_bank",
"open_bank_success",
"open_bank_failure",
"open_bank_cancelled",
"aib",
"bank_of_scotland",
"danske_bank",
"first_direct",
"first_trust",
"halifax",
"lloyds",
"monzo",
"nat_west",
"nationwide_bank",
"royal_bank_of_scotland",
"starling",
"tsb_bank",
"tesco_bank",
"ulster_bank",
"yoursafe",
"n26",
"nationale_nederlanden"
]
},
"BankRedirectBilling": {
"type": "object",
"required": [
"billing_name",
"email"
],
"properties": {
"billing_name": {
"type": "string",
"description": "The name for which billing is issued",
"example": "John Doe"
},
"email": {
"type": "string",
"description": "The billing email for bank redirect",
"example": "example@example.com"
}
}
},
"BankRedirectData": {
"oneOf": [
{
"type": "object",
"required": [
"bancontact_card"
],
"properties": {
"bancontact_card": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bizum"
],
"properties": {
"bizum": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"blik"
],
"properties": {
"blik": {
"type": "object",
"properties": {
"blik_code": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"eps"
],
"properties": {
"eps": {
"type": "object",
"required": [
"bank_name",
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_name": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"giropay"
],
"properties": {
"giropay": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_account_bic": {
"type": "string",
"description": "Bank account bic code",
"nullable": true
},
"bank_account_iban": {
"type": "string",
"description": "Bank account iban",
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"ideal"
],
"properties": {
"ideal": {
"type": "object",
"required": [
"bank_name",
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"bank_name": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"interac"
],
"properties": {
"interac": {
"type": "object",
"properties": {
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"email": {
"type": "string",
"example": "john.doe@example.com",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_czech_republic"
],
"properties": {
"online_banking_czech_republic": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_finland"
],
"properties": {
"online_banking_finland": {
"type": "object",
"properties": {
"email": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_poland"
],
"properties": {
"online_banking_poland": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_slovakia"
],
"properties": {
"online_banking_slovakia": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"open_banking_uk"
],
"properties": {
"open_banking_uk": {
"type": "object",
"required": [
"issuer",
"country"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"przelewy24"
],
"properties": {
"przelewy24": {
"type": "object",
"properties": {
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
},
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"sofort"
],
"properties": {
"sofort": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectBilling"
}
],
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"preferred_language": {
"type": "string",
"description": "The preferred language",
"example": "en",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"trustly"
],
"properties": {
"trustly": {
"type": "object",
"required": [
"country"
],
"properties": {
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_fpx"
],
"properties": {
"online_banking_fpx": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"online_banking_thailand"
],
"properties": {
"online_banking_thailand": {
"type": "object",
"required": [
"issuer"
],
"properties": {
"issuer": {
"$ref": "#/components/schemas/BankNames"
}
}
}
}
},
{
"type": "object",
"required": [
"local_bank_redirect"
],
"properties": {
"local_bank_redirect": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"eft"
],
"properties": {
"eft": {
"type": "object",
"required": [
"provider"
],
"properties": {
"provider": {
"type": "string",
"description": "The preferred eft provider",
"example": "ozow"
}
}
}
}
}
]
},
"BankRedirectDetails": {
"oneOf": [
{
"type": "object",
"required": [
"BancontactCard"
],
"properties": {
"BancontactCard": {
"$ref": "#/components/schemas/BancontactBankRedirectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Blik"
],
"properties": {
"Blik": {
"$ref": "#/components/schemas/BlikBankRedirectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"Giropay"
],
"properties": {
"Giropay": {
"$ref": "#/components/schemas/GiropayBankRedirectAdditionalData"
}
}
}
]
},
"BankRedirectResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankRedirectDetails"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"bank_name": {
"allOf": [
{
"$ref": "#/components/schemas/BankNames"
}
],
"nullable": true
}
}
}
]
},
"BankTransferAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"ach"
],
"properties": {
"ach": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"sepa"
],
"properties": {
"sepa": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"multibanco"
],
"properties": {
"multibanco": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"permata"
],
"properties": {
"permata": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bca"
],
"properties": {
"bca": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bni_va"
],
"properties": {
"bni_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"bri_va"
],
"properties": {
"bri_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"cimb_va"
],
"properties": {
"cimb_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"danamon_va"
],
"properties": {
"danamon_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"mandiri_va"
],
"properties": {
"mandiri_va": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"pix"
],
"properties": {
"pix": {
"$ref": "#/components/schemas/PixBankTransferAdditionalData"
}
}
},
{
"type": "object",
"required": [
"pse"
],
"properties": {
"pse": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"local_bank_transfer"
],
"properties": {
"local_bank_transfer": {
"$ref": "#/components/schemas/LocalBankTransferAdditionalData"
}
}
},
{
"type": "object",
"required": [
"instant_bank_transfer"
],
"properties": {
"instant_bank_transfer": {
"type": "object"
}
}
}
]
},
"BankTransferData": {
"oneOf": [
{
"type": "object",
"required": [
"ach_bank_transfer"
],
"properties": {
"ach_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/AchBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"sepa_bank_transfer"
],
"properties": {
"sepa_bank_transfer": {
"type": "object",
"required": [
"country"
],
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/SepaAndBacsBillingDetails"
}
],
"nullable": true
},
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
}
}
},
{
"type": "object",
"required": [
"bacs_bank_transfer"
],
"properties": {
"bacs_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/SepaAndBacsBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"multibanco_bank_transfer"
],
"properties": {
"multibanco_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/MultibancoBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"permata_bank_transfer"
],
"properties": {
"permata_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bca_bank_transfer"
],
"properties": {
"bca_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bni_va_bank_transfer"
],
"properties": {
"bni_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bri_va_bank_transfer"
],
"properties": {
"bri_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"cimb_va_bank_transfer"
],
"properties": {
"cimb_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"danamon_va_bank_transfer"
],
"properties": {
"danamon_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"mandiri_va_bank_transfer"
],
"properties": {
"mandiri_va_bank_transfer": {
"type": "object",
"properties": {
"billing_details": {
"allOf": [
{
"$ref": "#/components/schemas/DokuBillingDetails"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pix"
],
"properties": {
"pix": {
"type": "object",
"properties": {
"pix_key": {
"type": "string",
"description": "Unique key for pix transfer",
"example": "a1f4102e-a446-4a57-bcce-6fa48899c1d1",
"nullable": true
},
"cpf": {
"type": "string",
"description": "CPF is a Brazilian tax identification number",
"example": "10599054689",
"nullable": true
},
"cnpj": {
"type": "string",
"description": "CNPJ is a Brazilian company tax identification number",
"example": "74469027417312",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pse"
],
"properties": {
"pse": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"local_bank_transfer"
],
"properties": {
"local_bank_transfer": {
"type": "object",
"properties": {
"bank_code": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"instant_bank_transfer"
],
"properties": {
"instant_bank_transfer": {
"type": "object"
}
}
}
]
},
"BankTransferInstructions": {
"oneOf": [
{
"type": "object",
"required": [
"doku_bank_transfer_instructions"
],
"properties": {
"doku_bank_transfer_instructions": {
"$ref": "#/components/schemas/DokuBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"ach_credit_transfer"
],
"properties": {
"ach_credit_transfer": {
"$ref": "#/components/schemas/AchTransfer"
}
}
},
{
"type": "object",
"required": [
"sepa_bank_instructions"
],
"properties": {
"sepa_bank_instructions": {
"$ref": "#/components/schemas/SepaBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"bacs_bank_instructions"
],
"properties": {
"bacs_bank_instructions": {
"$ref": "#/components/schemas/BacsBankTransferInstructions"
}
}
},
{
"type": "object",
"required": [
"multibanco"
],
"properties": {
"multibanco": {
"$ref": "#/components/schemas/MultibancoTransferInstructions"
}
}
}
]
},
"BankTransferNextStepsData": {
"allOf": [
{
"$ref": "#/components/schemas/BankTransferInstructions"
},
{
"type": "object",
"properties": {
"receiver": {
"allOf": [
{
"$ref": "#/components/schemas/ReceiverDetails"
}
],
"nullable": true
}
}
}
]
},
"BankTransferResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/BankTransferAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"BankTransferTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given payment experience",
"example": [
"stripe",
"adyen"
]
}
}
},
"BankType": {
"type": "string",
"enum": [
"checking",
"savings"
]
},
"BecsBankDebitAdditionalData": {
"type": "object",
"required": [
"account_number",
"bsb_number"
],
"properties": {
"account_number": {
"type": "string",
"description": "Partially masked account number for Becs payment method",
"example": "0001****3456"
},
"bsb_number": {
"type": "string",
"description": "Bank-State-Branch (bsb) number",
"example": "000000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"BlikBankRedirectAdditionalData": {
"type": "object",
"properties": {
"blik_code": {
"type": "string",
"example": "3GD9MO",
"nullable": true
}
}
},
"BlocklistDataKind": {
"type": "string",
"enum": [
"payment_method",
"card_bin",
"extended_card_bin"
]
},
"BlocklistRequest": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"card_bin"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"fingerprint"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"extended_card_bin"
]
},
"data": {
"type": "string"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"BlocklistResponse": {
"type": "object",
"required": [
"fingerprint_id",
"data_kind",
"created_at"
],
"properties": {
"fingerprint_id": {
"type": "string"
},
"data_kind": {
"$ref": "#/components/schemas/BlocklistDataKind"
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
},
"BoletoVoucherData": {
"type": "object",
"properties": {
"social_security_number": {
"type": "string",
"description": "The shopper's social security number",
"nullable": true
}
}
},
"BraintreeData": {
"type": "object",
"required": [
"merchant_account_id",
"merchant_config_currency"
],
"properties": {
"merchant_account_id": {
"type": "string",
"description": "Information about the merchant_account_id that merchant wants to specify at connector level."
},
"merchant_config_currency": {
"type": "string",
"description": "Information about the merchant_config_currency that merchant wants to specify at connector level."
}
}
},
"BrowserInformation": {
"type": "object",
"description": "Browser information to be used for 3DS 2.0",
"properties": {
"color_depth": {
"type": "integer",
"format": "int32",
"description": "Color depth supported by the browser",
"nullable": true,
"minimum": 0
},
"java_enabled": {
"type": "boolean",
"description": "Whether java is enabled in the browser",
"nullable": true
},
"java_script_enabled": {
"type": "boolean",
"description": "Whether javascript is enabled in the browser",
"nullable": true
},
"language": {
"type": "string",
"description": "Language supported",
"nullable": true
},
"screen_height": {
"type": "integer",
"format": "int32",
"description": "The screen height in pixels",
"nullable": true,
"minimum": 0
},
"screen_width": {
"type": "integer",
"format": "int32",
"description": "The screen width in pixels",
"nullable": true,
"minimum": 0
},
"time_zone": {
"type": "integer",
"format": "int32",
"description": "Time zone of the client",
"nullable": true
},
"ip_address": {
"type": "string",
"description": "Ip address of the client",
"nullable": true
},
"accept_header": {
"type": "string",
"description": "List of headers that are accepted",
"example": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"nullable": true
},
"user_agent": {
"type": "string",
"description": "User-agent of the browser",
"nullable": true
},
"os_type": {
"type": "string",
"description": "The os type of the client device",
"nullable": true
},
"os_version": {
"type": "string",
"description": "The os version of the client device",
"nullable": true
},
"device_model": {
"type": "string",
"description": "The device model of the client",
"nullable": true
}
}
},
"BusinessCollectLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessGenericLinkConfig"
},
{
"type": "object",
"required": [
"enabled_payment_methods"
],
"properties": {
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\", \"sepa\"]}]"
}
}
}
]
},
"BusinessGenericLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
},
{
"type": "object",
"required": [
"allowed_domains"
],
"properties": {
"domain_name": {
"type": "string",
"description": "Custom domain name to be used for hosting the link",
"nullable": true
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true
}
}
}
]
},
"BusinessPaymentLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
},
{
"type": "object",
"properties": {
"domain_name": {
"type": "string",
"description": "Custom domain name to be used for hosting the link in your own domain",
"nullable": true
},
"business_specific_configs": {
"type": "object",
"description": "list of configs for multi theme setup",
"additionalProperties": {
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
},
"nullable": true
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true,
"nullable": true
},
"branding_visibility": {
"type": "boolean",
"description": "Toggle for HyperSwitch branding visibility",
"nullable": true
}
}
}
]
},
"BusinessPayoutLinkConfig": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessGenericLinkConfig"
},
{
"type": "object",
"properties": {
"form_layout": {
"allOf": [
{
"$ref": "#/components/schemas/UIWidgetFormLayout"
}
],
"nullable": true
},
"payout_test_mode": {
"type": "boolean",
"description": "Allows for removing any validations / pre-requisites which are necessary in a production environment",
"default": false,
"nullable": true
}
}
}
]
},
"CaptureMethod": {
"type": "string",
"description": "Default value if not passed is set to 'automatic' which results in Auth and Capture in one single API request. Pass 'manual' or 'manual_multiple' in case you want do a separate Auth and Capture by first authorizing and placing a hold on your customer's funds so that you can use the Payments/Capture endpoint later to capture the authorized amount. Pass 'manual' if you want to only capture the amount later once or 'manual_multiple' if you want to capture the funds multiple times later. Both 'manual' and 'manual_multiple' are only supported by a specific list of processors",
"enum": [
"automatic",
"manual",
"manual_multiple",
"scheduled",
"sequential_automatic"
]
},
"CaptureResponse": {
"type": "object",
"required": [
"capture_id",
"status",
"amount",
"connector",
"authorized_attempt_id",
"capture_sequence"
],
"properties": {
"capture_id": {
"type": "string",
"description": "Unique identifier for the capture"
},
"status": {
"$ref": "#/components/schemas/CaptureStatus"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The capture amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6540
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payment"
},
"authorized_attempt_id": {
"type": "string",
"description": "Unique identifier for the parent attempt on which this capture is made"
},
"connector_capture_id": {
"type": "string",
"description": "A unique identifier for this capture provided by the connector",
"nullable": true
},
"capture_sequence": {
"type": "integer",
"format": "int32",
"description": "Sequence number of this capture, in the series of captures made for the parent attempt"
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"nullable": true
},
"error_reason": {
"type": "string",
"description": "If there was an error while calling the connectors the reason is received here",
"nullable": true
},
"reference_id": {
"type": "string",
"description": "Reference to the capture at connector side",
"nullable": true
}
}
},
"CaptureStatus": {
"type": "string",
"enum": [
"started",
"charged",
"pending",
"failed"
]
},
"Card": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"card_cvc"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The card holder's nick name",
"example": "John Test",
"nullable": true
}
}
},
"CardAdditionalData": {
"type": "object",
"description": "Masked payout method details for card payout method",
"required": [
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_issuer": {
"type": "string",
"description": "Issuer of the card",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"description": "Card type, can be either `credit` or `debit`",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"description": "Card issuing country",
"nullable": true
},
"bank_code": {
"type": "string",
"description": "Code for Card issuing bank",
"nullable": true
},
"last4": {
"type": "string",
"description": "Last 4 digits of the card number",
"nullable": true
},
"card_isin": {
"type": "string",
"description": "The ISIN of the card",
"nullable": true
},
"card_extended_bin": {
"type": "string",
"description": "Extended bin of card, contains the first 8 digits of card number",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "Card expiry month",
"example": "01"
},
"card_exp_year": {
"type": "string",
"description": "Card expiry year",
"example": "2026"
},
"card_holder_name": {
"type": "string",
"description": "Card holder name",
"example": "John Doe"
}
}
},
"CardDetail": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_number": {
"type": "string",
"description": "Card Number",
"example": "4111111145551142"
},
"card_exp_month": {
"type": "string",
"description": "Card Expiry Month",
"example": "10"
},
"card_exp_year": {
"type": "string",
"description": "Card Expiry Year",
"example": "25"
},
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe"
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"description": "Card Issuing Country",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "Issuer Bank for Card",
"nullable": true
},
"card_type": {
"type": "string",
"description": "Card Type",
"nullable": true
}
},
"additionalProperties": false
},
"CardDetailFromLocker": {
"type": "object",
"required": [
"saved_to_locker"
],
"properties": {
"scheme": {
"type": "string",
"nullable": true
},
"issuer_country": {
"type": "string",
"nullable": true
},
"last4_digits": {
"type": "string",
"nullable": true
},
"expiry_month": {
"type": "string",
"nullable": true
},
"expiry_year": {
"type": "string",
"nullable": true
},
"card_token": {
"type": "string",
"nullable": true
},
"card_holder_name": {
"type": "string",
"nullable": true
},
"card_fingerprint": {
"type": "string",
"nullable": true
},
"nick_name": {
"type": "string",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_isin": {
"type": "string",
"nullable": true
},
"card_issuer": {
"type": "string",
"nullable": true
},
"card_type": {
"type": "string",
"nullable": true
},
"saved_to_locker": {
"type": "boolean"
}
}
},
"CardDetailUpdate": {
"type": "object",
"required": [
"card_exp_month",
"card_exp_year",
"card_holder_name"
],
"properties": {
"card_exp_month": {
"type": "string",
"description": "Card Expiry Month",
"example": "10"
},
"card_exp_year": {
"type": "string",
"description": "Card Expiry Year",
"example": "25"
},
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe"
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
}
},
"additionalProperties": false
},
"CardDiscovery": {
"type": "string",
"description": "Indicates the method by which a card is discovered during a payment",
"enum": [
"manual",
"saved_card",
"click_to_pay"
]
},
"CardNetwork": {
"type": "string",
"description": "Indicates the card network.",
"enum": [
"Visa",
"Mastercard",
"AmericanExpress",
"JCB",
"DinersClub",
"Discover",
"CartesBancaires",
"UnionPay",
"Interac",
"RuPay",
"Maestro"
]
},
"CardNetworkTokenizeRequest": {
"allOf": [
{
"$ref": "#/components/schemas/TokenizeDataRequest"
},
{
"type": "object",
"required": [
"merchant_id",
"customer"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "Merchant ID associated with the tokenization request",
"example": "merchant_1671528864"
},
"customer": {
"$ref": "#/components/schemas/CustomerDetails"
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payment_method_issuer": {
"type": "string",
"description": "The name of the bank/ provider issuing the payment method to the end user",
"nullable": true
}
}
}
]
},
"CardNetworkTokenizeResponse": {
"type": "object",
"required": [
"customer",
"card_tokenized"
],
"properties": {
"payment_method_response": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodResponse"
}
],
"nullable": true
},
"customer": {
"$ref": "#/components/schemas/CustomerDetails"
},
"card_tokenized": {
"type": "boolean",
"description": "Card network tokenization status"
},
"error_code": {
"type": "string",
"description": "Error code",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error message",
"nullable": true
},
"tokenization_data": {
"allOf": [
{
"$ref": "#/components/schemas/TokenizeDataRequest"
}
],
"nullable": true
}
}
},
"CardNetworkTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeDetailsResponse"
}
],
"nullable": true
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given card network",
"example": [
"stripe",
"adyen"
]
}
}
},
"CardPayout": {
"type": "object",
"required": [
"card_number",
"expiry_month",
"expiry_year",
"card_holder_name"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"expiry_month": {
"type": "string",
"description": "The card's expiry month"
},
"expiry_year": {
"type": "string",
"description": "The card's expiry year"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Doe"
}
}
},
"CardRedirectData": {
"oneOf": [
{
"type": "object",
"required": [
"knet"
],
"properties": {
"knet": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"benefit"
],
"properties": {
"benefit": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"momo_atm"
],
"properties": {
"momo_atm": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"type": "object"
}
}
}
]
},
"CardRedirectResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CardRedirectData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CardResponse": {
"type": "object",
"properties": {
"last4": {
"type": "string",
"nullable": true
},
"card_type": {
"type": "string",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"nullable": true
},
"card_isin": {
"type": "string",
"nullable": true
},
"card_extended_bin": {
"type": "string",
"nullable": true
},
"card_exp_month": {
"type": "string",
"nullable": true
},
"card_exp_year": {
"type": "string",
"nullable": true
},
"card_holder_name": {
"type": "string",
"nullable": true
},
"payment_checks": {
"nullable": true
},
"authentication_data": {
"nullable": true
}
}
},
"CardSpecificFeatures": {
"type": "object",
"required": [
"three_ds",
"no_three_ds",
"supported_card_networks"
],
"properties": {
"three_ds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"no_three_ds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"supported_card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetwork"
},
"description": "List of supported card networks"
}
}
},
"CardTestingGuardConfig": {
"type": "object",
"required": [
"card_ip_blocking_status",
"card_ip_blocking_threshold",
"guest_user_card_blocking_status",
"guest_user_card_blocking_threshold",
"customer_id_blocking_status",
"customer_id_blocking_threshold",
"card_testing_guard_expiry"
],
"properties": {
"card_ip_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"card_ip_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Card IP Blocking for profile"
},
"guest_user_card_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"guest_user_card_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Guest User Card Blocking for profile"
},
"customer_id_blocking_status": {
"$ref": "#/components/schemas/CardTestingGuardStatus"
},
"customer_id_blocking_threshold": {
"type": "integer",
"format": "int32",
"description": "Determines the unsuccessful payment threshold for Customer Id Blocking for profile"
},
"card_testing_guard_expiry": {
"type": "integer",
"format": "int32",
"description": "Determines Redis Expiry for Card Testing Guard for profile"
}
}
},
"CardTestingGuardStatus": {
"type": "string",
"enum": [
"enabled",
"disabled"
]
},
"CardToken": {
"type": "object",
"required": [
"card_holder_name"
],
"properties": {
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"nullable": true
}
}
},
"CardTokenAdditionalData": {
"type": "object",
"required": [
"card_holder_name"
],
"properties": {
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
}
}
},
"CardTokenResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CardTokenAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CardType": {
"type": "string",
"enum": [
"credit",
"debit"
]
},
"CashappQr": {
"type": "object"
},
"ChargeRefunds": {
"type": "object",
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account. Check sub-fields for more details.",
"required": [
"charge_id"
],
"properties": {
"charge_id": {
"type": "string",
"description": "Identifier for charge created for the payment"
},
"revert_platform_fee": {
"type": "boolean",
"description": "Toggle for reverting the application fee that was collected for the payment.\nIf set to false, the funds are pulled from the destination account.",
"nullable": true
},
"revert_transfer": {
"type": "boolean",
"description": "Toggle for reverting the transfer that was made during the charge.\nIf set to false, the funds are pulled from the main platform's account.",
"nullable": true
}
}
},
"ClickToPaySessionResponse": {
"type": "object",
"required": [
"dpa_id",
"dpa_name",
"locale",
"card_brands",
"acquirer_bin",
"acquirer_merchant_id",
"merchant_category_code",
"merchant_country_code",
"transaction_amount",
"transaction_currency_code"
],
"properties": {
"dpa_id": {
"type": "string"
},
"dpa_name": {
"type": "string"
},
"locale": {
"type": "string"
},
"card_brands": {
"type": "array",
"items": {
"type": "string"
}
},
"acquirer_bin": {
"type": "string"
},
"acquirer_merchant_id": {
"type": "string"
},
"merchant_category_code": {
"type": "string"
},
"merchant_country_code": {
"type": "string"
},
"transaction_amount": {
"type": "string",
"example": "38.02"
},
"transaction_currency_code": {
"$ref": "#/components/schemas/Currency"
},
"phone_number": {
"type": "string",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"nullable": true
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceProvider"
}
],
"nullable": true
},
"dpa_client_id": {
"type": "string",
"nullable": true
}
}
},
"Comparison": {
"type": "object",
"description": "Represents a single comparison condition.",
"required": [
"lhs",
"comparison",
"value",
"metadata"
],
"properties": {
"lhs": {
"type": "string",
"description": "The left hand side which will always be a domain input identifier like \"payment.method.cardtype\""
},
"comparison": {
"$ref": "#/components/schemas/ComparisonType"
},
"value": {
"$ref": "#/components/schemas/ValueType"
},
"metadata": {
"type": "object",
"description": "Additional metadata that the Static Analyzer and Backend does not touch.\nThis can be used to store useful information for the frontend and is required for communication\nbetween the static analyzer and the frontend.",
"additionalProperties": {}
}
}
},
"ComparisonType": {
"type": "string",
"description": "Conditional comparison type",
"enum": [
"equal",
"not_equal",
"less_than",
"less_than_equal",
"greater_than",
"greater_than_equal"
]
},
"Connector": {
"type": "string",
"enum": [
"adyenplatform",
"phonypay",
"fauxpay",
"pretendpay",
"stripe_test",
"adyen_test",
"checkout_test",
"paypal_test",
"aci",
"adyen",
"airwallex",
"authorizedotnet",
"bambora",
"bamboraapac",
"bankofamerica",
"billwerk",
"bitpay",
"bluesnap",
"boku",
"braintree",
"cashtocode",
"chargebee",
"checkout",
"coinbase",
"coingate",
"cryptopay",
"ctp_mastercard",
"ctp_visa",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"dlocal",
"ebanx",
"elavon",
"fiserv",
"fiservemea",
"fiuu",
"forte",
"getnet",
"globalpay",
"globepay",
"gocardless",
"gpayments",
"hipay",
"helcim",
"inespay",
"iatapay",
"itaubank",
"jpmorgan",
"juspaythreedsserver",
"klarna",
"mifinity",
"mollie",
"moneris",
"multisafepay",
"netcetera",
"nexinets",
"nexixpay",
"nmi",
"nomupay",
"noon",
"novalnet",
"nuvei",
"opennode",
"paybox",
"payme",
"payone",
"paypal",
"paystack",
"payu",
"placetopay",
"powertranz",
"prophetpay",
"rapyd",
"razorpay",
"recurly",
"redsys",
"shift4",
"square",
"stax",
"stripe",
"stripebilling",
"taxjar",
"threedsecureio",
"trustpay",
"tsys",
"volt",
"wellsfargo",
"wise",
"worldline",
"worldpay",
"signifyd",
"plaid",
"riskified",
"xendit",
"zen",
"zsl"
]
},
"ConnectorChargeResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_payment"
],
"properties": {
"stripe_split_payment": {
"$ref": "#/components/schemas/StripeChargeResponseData"
}
}
},
{
"type": "object",
"required": [
"adyen_split_payment"
],
"properties": {
"adyen_split_payment": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_payment"
],
"properties": {
"xendit_split_payment": {
"$ref": "#/components/schemas/XenditChargeResponseData"
}
}
}
],
"description": "Charge Information"
},
"ConnectorFeatureMatrixResponse": {
"type": "object",
"required": [
"name",
"supported_payment_methods"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the connector"
},
"display_name": {
"type": "string",
"description": "The display name of the connector",
"nullable": true
},
"description": {
"type": "string",
"description": "The description of the connector",
"nullable": true
},
"category": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentConnectorCategory"
}
],
"nullable": true
},
"supported_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SupportedPaymentMethod"
},
"description": "The list of payment methods supported by the connector"
},
"supported_webhook_flows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventClass"
},
"description": "The list of webhook flows supported by the connector",
"nullable": true
}
}
},
"ConnectorMetadata": {
"type": "object",
"description": "Some connectors like Apple Pay, Airwallex and Noon might require some additional information, find specific details in the child attributes below.",
"properties": {
"apple_pay": {
"allOf": [
{
"$ref": "#/components/schemas/ApplepayConnectorMetadataRequest"
}
],
"nullable": true
},
"airwallex": {
"allOf": [
{
"$ref": "#/components/schemas/AirwallexData"
}
],
"nullable": true
},
"noon": {
"allOf": [
{
"$ref": "#/components/schemas/NoonData"
}
],
"nullable": true
},
"braintree": {
"allOf": [
{
"$ref": "#/components/schemas/BraintreeData"
}
],
"nullable": true
}
}
},
"ConnectorSelection": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"ConnectorStatus": {
"type": "string",
"enum": [
"inactive",
"active"
]
},
"ConnectorType": {
"type": "string",
"description": "Type of the Connector for the financial use case. Could range from Payments to Accounting to Banking.",
"enum": [
"payment_processor",
"payment_vas",
"fin_operations",
"fiz_operations",
"networks",
"banking_entities",
"non_banking_finance",
"payout_processor",
"payment_method_auth",
"authentication_processor",
"tax_processor",
"billing_processor"
]
},
"ConnectorVolumeSplit": {
"type": "object",
"required": [
"connector",
"split"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
},
"split": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
"ConnectorWalletDetails": {
"type": "object",
"properties": {
"apple_pay_combined": {
"type": "object",
"description": "This field contains the Apple Pay certificates and credentials for iOS and Web Apple Pay flow",
"nullable": true
},
"apple_pay": {
"type": "object",
"description": "This field is for our legacy Apple Pay flow that contains the Apple Pay certificates and credentials for only iOS Apple Pay flow",
"nullable": true
},
"samsung_pay": {
"type": "object",
"description": "This field contains the Samsung Pay certificates and credentials",
"nullable": true
},
"paze": {
"type": "object",
"description": "This field contains the Paze certificates and credentials",
"nullable": true
},
"google_pay": {
"type": "object",
"description": "This field contains the Google Pay certificates and credentials",
"nullable": true
}
},
"additionalProperties": false
},
"ContractBasedRoutingConfig": {
"type": "object",
"properties": {
"config": {
"allOf": [
{
"$ref": "#/components/schemas/ContractBasedRoutingConfigBody"
}
],
"nullable": true
},
"label_info": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LabelInformation"
},
"nullable": true
}
}
},
"ContractBasedRoutingConfigBody": {
"type": "object",
"properties": {
"constants": {
"type": "array",
"items": {
"type": "number",
"format": "double"
},
"nullable": true
},
"time_scale": {
"allOf": [
{
"$ref": "#/components/schemas/ContractBasedTimeScale"
}
],
"nullable": true
}
}
},
"ContractBasedTimeScale": {
"type": "string",
"enum": [
"day",
"month"
]
},
"CountryAlpha2": {
"type": "string",
"enum": [
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BQ",
"BA",
"BW",
"BV",
"BR",
"IO",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"VA",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MK",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"SS",
"ES",
"LK",
"SD",
"SR",
"SJ",
"SZ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UG",
"UA",
"AE",
"GB",
"UM",
"UY",
"UZ",
"VU",
"VE",
"VN",
"VG",
"VI",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"US"
]
},
"CountryAlpha3": {
"type": "string",
"enum": [
"AFG",
"ALA",
"ALB",
"DZA",
"ASM",
"AND",
"AGO",
"AIA",
"ATA",
"ATG",
"ARG",
"ARM",
"ABW",
"AUS",
"AUT",
"AZE",
"BHS",
"BHR",
"BGD",
"BRB",
"BLR",
"BEL",
"BLZ",
"BEN",
"BMU",
"BTN",
"BOL",
"BES",
"BIH",
"BWA",
"BVT",
"BRA",
"IOT",
"BRN",
"BGR",
"BFA",
"BDI",
"CPV",
"KHM",
"CMR",
"CAN",
"CYM",
"CAF",
"TCD",
"CHL",
"CHN",
"CXR",
"CCK",
"COL",
"COM",
"COG",
"COD",
"COK",
"CRI",
"CIV",
"HRV",
"CUB",
"CUW",
"CYP",
"CZE",
"DNK",
"DJI",
"DMA",
"DOM",
"ECU",
"EGY",
"SLV",
"GNQ",
"ERI",
"EST",
"ETH",
"FLK",
"FRO",
"FJI",
"FIN",
"FRA",
"GUF",
"PYF",
"ATF",
"GAB",
"GMB",
"GEO",
"DEU",
"GHA",
"GIB",
"GRC",
"GRL",
"GRD",
"GLP",
"GUM",
"GTM",
"GGY",
"GIN",
"GNB",
"GUY",
"HTI",
"HMD",
"VAT",
"HND",
"HKG",
"HUN",
"ISL",
"IND",
"IDN",
"IRN",
"IRQ",
"IRL",
"IMN",
"ISR",
"ITA",
"JAM",
"JPN",
"JEY",
"JOR",
"KAZ",
"KEN",
"KIR",
"PRK",
"KOR",
"KWT",
"KGZ",
"LAO",
"LVA",
"LBN",
"LSO",
"LBR",
"LBY",
"LIE",
"LTU",
"LUX",
"MAC",
"MKD",
"MDG",
"MWI",
"MYS",
"MDV",
"MLI",
"MLT",
"MHL",
"MTQ",
"MRT",
"MUS",
"MYT",
"MEX",
"FSM",
"MDA",
"MCO",
"MNG",
"MNE",
"MSR",
"MAR",
"MOZ",
"MMR",
"NAM",
"NRU",
"NPL",
"NLD",
"NCL",
"NZL",
"NIC",
"NER",
"NGA",
"NIU",
"NFK",
"MNP",
"NOR",
"OMN",
"PAK",
"PLW",
"PSE",
"PAN",
"PNG",
"PRY",
"PER",
"PHL",
"PCN",
"POL",
"PRT",
"PRI",
"QAT",
"REU",
"ROU",
"RUS",
"RWA",
"BLM",
"SHN",
"KNA",
"LCA",
"MAF",
"SPM",
"VCT",
"WSM",
"SMR",
"STP",
"SAU",
"SEN",
"SRB",
"SYC",
"SLE",
"SGP",
"SXM",
"SVK",
"SVN",
"SLB",
"SOM",
"ZAF",
"SGS",
"SSD",
"ESP",
"LKA",
"SDN",
"SUR",
"SJM",
"SWZ",
"SWE",
"CHE",
"SYR",
"TWN",
"TJK",
"TZA",
"THA",
"TLS",
"TGO",
"TKL",
"TON",
"TTO",
"TUN",
"TUR",
"TKM",
"TCA",
"TUV",
"UGA",
"UKR",
"ARE",
"GBR",
"USA",
"UMI",
"URY",
"UZB",
"VUT",
"VEN",
"VNM",
"VGB",
"VIR",
"WLF",
"ESH",
"YEM",
"ZMB",
"ZWE"
]
},
"CreateApiKeyRequest": {
"type": "object",
"description": "The request body for creating an API Key.",
"required": [
"name",
"expiration"
],
"properties": {
"name": {
"type": "string",
"description": "A unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "A description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
},
"additionalProperties": false
},
"CreateApiKeyResponse": {
"type": "object",
"description": "The response body for creating an API Key.",
"required": [
"key_id",
"merchant_id",
"name",
"api_key",
"created",
"expiration"
],
"properties": {
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"name": {
"type": "string",
"description": "The unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "The description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"api_key": {
"type": "string",
"description": "The plaintext API Key used for server-side API access. Ensure you store the API Key\nsecurely as you will not be able to see it again.",
"maxLength": 128
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which the API Key was created.",
"example": "2022-09-10T10:11:12Z"
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
}
},
"CryptoData": {
"type": "object",
"properties": {
"pay_currency": {
"type": "string",
"nullable": true
},
"network": {
"type": "string",
"nullable": true
}
}
},
"CryptoResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/CryptoData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"CtpServiceDetails": {
"type": "object",
"properties": {
"merchant_transaction_id": {
"type": "string",
"description": "merchant transaction id",
"nullable": true
},
"correlation_id": {
"type": "string",
"description": "network transaction correlation id",
"nullable": true
},
"x_src_flow_id": {
"type": "string",
"description": "session transaction flow id",
"nullable": true
},
"provider": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceProvider"
}
],
"nullable": true
},
"encypted_payload": {
"type": "string",
"description": "Encrypted payload",
"nullable": true
}
}
},
"CtpServiceProvider": {
"type": "string",
"enum": [
"visa",
"mastercard"
]
},
"Currency": {
"type": "string",
"description": "The three letter ISO currency code in uppercase. Eg: 'USD' for the United States Dollar.",
"enum": [
"AED",
"AFN",
"ALL",
"AMD",
"ANG",
"AOA",
"ARS",
"AUD",
"AWG",
"AZN",
"BAM",
"BBD",
"BDT",
"BGN",
"BHD",
"BIF",
"BMD",
"BND",
"BOB",
"BRL",
"BSD",
"BTN",
"BWP",
"BYN",
"BZD",
"CAD",
"CDF",
"CHF",
"CLF",
"CLP",
"CNY",
"COP",
"CRC",
"CUC",
"CUP",
"CVE",
"CZK",
"DJF",
"DKK",
"DOP",
"DZD",
"EGP",
"ERN",
"ETB",
"EUR",
"FJD",
"FKP",
"GBP",
"GEL",
"GHS",
"GIP",
"GMD",
"GNF",
"GTQ",
"GYD",
"HKD",
"HNL",
"HRK",
"HTG",
"HUF",
"IDR",
"ILS",
"INR",
"IQD",
"IRR",
"ISK",
"JMD",
"JOD",
"JPY",
"KES",
"KGS",
"KHR",
"KMF",
"KPW",
"KRW",
"KWD",
"KYD",
"KZT",
"LAK",
"LBP",
"LKR",
"LRD",
"LSL",
"LYD",
"MAD",
"MDL",
"MGA",
"MKD",
"MMK",
"MNT",
"MOP",
"MRU",
"MUR",
"MVR",
"MWK",
"MXN",
"MYR",
"MZN",
"NAD",
"NGN",
"NIO",
"NOK",
"NPR",
"NZD",
"OMR",
"PAB",
"PEN",
"PGK",
"PHP",
"PKR",
"PLN",
"PYG",
"QAR",
"RON",
"RSD",
"RUB",
"RWF",
"SAR",
"SBD",
"SCR",
"SDG",
"SEK",
"SGD",
"SHP",
"SLE",
"SLL",
"SOS",
"SRD",
"SSP",
"STD",
"STN",
"SVC",
"SYP",
"SZL",
"THB",
"TJS",
"TMT",
"TND",
"TOP",
"TRY",
"TTD",
"TWD",
"TZS",
"UAH",
"UGX",
"USD",
"UYU",
"UZS",
"VES",
"VND",
"VUV",
"WST",
"XAF",
"XCD",
"XOF",
"XPF",
"YER",
"ZAR",
"ZMW",
"ZWL"
]
},
"CurrentBlockThreshold": {
"type": "object",
"properties": {
"duration_in_mins": {
"type": "integer",
"format": "int64",
"nullable": true,
"minimum": 0
},
"max_total_count": {
"type": "integer",
"format": "int64",
"nullable": true,
"minimum": 0
}
}
},
"CustomerAcceptance": {
"type": "object",
"description": "This \"CustomerAcceptance\" object is passed during Payments-Confirm request, it enlists the type, time, and mode of acceptance properties related to an acceptance done by the customer. The customer_acceptance sub object is usually passed by the SDK or client.",
"required": [
"acceptance_type"
],
"properties": {
"acceptance_type": {
"$ref": "#/components/schemas/AcceptanceType"
},
"accepted_at": {
"type": "string",
"format": "date-time",
"description": "Specifying when the customer acceptance was provided",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"online": {
"allOf": [
{
"$ref": "#/components/schemas/OnlineMandate"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"CustomerDefaultPaymentMethodResponse": {
"type": "object",
"required": [
"customer_id",
"payment_method"
],
"properties": {
"default_payment_method_id": {
"type": "string",
"description": "The unique identifier of the Payment method",
"example": "card_rGK4Vi5iSW70MY7J2mIg",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
}
}
},
"CustomerDeleteResponse": {
"type": "object",
"required": [
"customer_id",
"customer_deleted",
"address_deleted",
"payment_methods_deleted"
],
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for the customer object",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"customer_deleted": {
"type": "boolean",
"description": "Whether customer was deleted or not",
"example": false
},
"address_deleted": {
"type": "boolean",
"description": "Whether address was deleted or not",
"example": false
},
"payment_methods_deleted": {
"type": "boolean",
"description": "Whether payment methods deleted or not",
"example": false
}
}
},
"CustomerDetails": {
"type": "object",
"description": "Passing this object creates a new customer or attaches an existing customer to the payment",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "The identifier for the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 10
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer's phone number",
"example": "+1",
"nullable": true,
"maxLength": 2
}
}
},
"CustomerDetailsResponse": {
"type": "object",
"description": "Details of customer attached to this payment",
"properties": {
"id": {
"type": "string",
"description": "The identifier for the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 10
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer's phone number",
"example": "+1",
"nullable": true,
"maxLength": 2
}
}
},
"CustomerPaymentMethod": {
"type": "object",
"required": [
"payment_token",
"payment_method_id",
"customer_id",
"payment_method",
"recurring_enabled",
"installment_payment_enabled",
"requires_cvv",
"default_payment_method_set"
],
"properties": {
"payment_token": {
"type": "string",
"description": "Token for payment method in temporary card locker which gets refreshed often",
"example": "7ebf443f-a050-4067-84e5-e6f6d4800aef"
},
"payment_method_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "pm_iouuy468iyuowqs"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"payment_method_issuer": {
"type": "string",
"description": "The name of the bank/ provider issuing the payment method to the end user",
"example": "Citibank",
"nullable": true
},
"payment_method_issuer_code": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodIssuerCode"
}
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for recurring payments",
"example": true
},
"installment_payment_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for installment payments",
"example": true
},
"payment_experience": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentExperience"
},
"description": "Type of payment experience enabled with the connector",
"example": [
"redirect_to_url"
],
"nullable": true
},
"card": {
"allOf": [
{
"$ref": "#/components/schemas/CardDetailFromLocker"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was created",
"example": "2023-01-18T11:04:09.922Z",
"nullable": true
},
"bank_transfer": {
"allOf": [
{
"$ref": "#/components/schemas/Bank"
}
],
"nullable": true
},
"bank": {
"allOf": [
{
"$ref": "#/components/schemas/MaskedBankDetails"
}
],
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeDetailsResponse"
}
],
"nullable": true
},
"requires_cvv": {
"type": "boolean",
"description": "Whether this payment method requires CVV to be collected",
"example": true
},
"last_used_at": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was last used",
"example": "2024-02-24T11:04:09.922Z",
"nullable": true
},
"default_payment_method_set": {
"type": "boolean",
"description": "Indicates if the payment method has been set to default or not",
"example": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
}
},
"CustomerPaymentMethodsListResponse": {
"type": "object",
"required": [
"customer_payment_methods"
],
"properties": {
"customer_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerPaymentMethod"
},
"description": "List of payment methods for customer"
},
"is_guest_customer": {
"type": "boolean",
"description": "Returns whether a customer id is not tied to a payment intent (only when the request is made against a client secret)",
"nullable": true
}
}
},
"CustomerRequest": {
"type": "object",
"description": "The customer details",
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
}
}
},
"CustomerResponse": {
"type": "object",
"required": [
"customer_id",
"created_at"
],
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for the customer object",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the customer was created",
"example": "2023-01-18T11:04:09.922Z"
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
},
"default_payment_method_id": {
"type": "string",
"description": "The identifier for the default payment method.",
"example": "pm_djh2837dwduh890123",
"nullable": true,
"maxLength": 64
}
}
},
"CustomerUpdateRequest": {
"type": "object",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.",
"properties": {
"name": {
"type": "string",
"description": "The customer's name",
"example": "Jon Test",
"nullable": true,
"maxLength": 255
},
"email": {
"type": "string",
"description": "The customer's email address",
"example": "JonTest@test.com",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number",
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"description": {
"type": "string",
"description": "An arbitrary string that you can attach to a customer object.",
"example": "First Customer",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number",
"example": "+65",
"nullable": true,
"maxLength": 255
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
"nullable": true
}
}
},
"DecoupledAuthenticationType": {
"type": "string",
"enum": [
"challenge",
"frictionless"
]
},
"DefaultPaymentMethod": {
"type": "object",
"required": [
"customer_id",
"payment_method_id"
],
"properties": {
"customer_id": {
"type": "string",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"payment_method_id": {
"type": "string"
}
}
},
"DeviceChannel": {
"type": "string",
"description": "Device Channel indicating whether request is coming from App or Browser",
"enum": [
"APP",
"BRW"
]
},
"DisplayAmountOnSdk": {
"type": "object",
"required": [
"net_amount",
"order_tax_amount",
"shipping_cost"
],
"properties": {
"net_amount": {
"type": "string",
"description": "net amount = amount + order_tax_amount + shipping_cost"
},
"order_tax_amount": {
"type": "string",
"description": "order tax amount calculated by tax connectors"
},
"shipping_cost": {
"type": "string",
"description": "shipping cost for the order"
}
}
},
"DisputeResponse": {
"type": "object",
"required": [
"dispute_id",
"payment_id",
"attempt_id",
"amount",
"currency",
"dispute_stage",
"dispute_status",
"connector",
"connector_status",
"connector_dispute_id",
"created_at"
],
"properties": {
"dispute_id": {
"type": "string",
"description": "The identifier for dispute"
},
"payment_id": {
"type": "string",
"description": "The identifier for payment_intent"
},
"attempt_id": {
"type": "string",
"description": "The identifier for payment_attempt"
},
"amount": {
"type": "string",
"description": "The dispute amount"
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"dispute_stage": {
"$ref": "#/components/schemas/DisputeStage"
},
"dispute_status": {
"$ref": "#/components/schemas/DisputeStatus"
},
"connector": {
"type": "string",
"description": "connector to which dispute is associated with"
},
"connector_status": {
"type": "string",
"description": "Status of the dispute sent by connector"
},
"connector_dispute_id": {
"type": "string",
"description": "Dispute id sent by connector"
},
"connector_reason": {
"type": "string",
"description": "Reason of dispute sent by connector",
"nullable": true
},
"connector_reason_code": {
"type": "string",
"description": "Reason code of dispute sent by connector",
"nullable": true
},
"challenge_required_by": {
"type": "string",
"format": "date-time",
"description": "Evidence deadline of dispute sent by connector",
"nullable": true
},
"connector_created_at": {
"type": "string",
"format": "date-time",
"description": "Dispute created time sent by connector",
"nullable": true
},
"connector_updated_at": {
"type": "string",
"format": "date-time",
"description": "Dispute updated time sent by connector",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Time at which dispute is received"
},
"profile_id": {
"type": "string",
"description": "The `profile_id` associated with the dispute",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "The `merchant_connector_id` of the connector / processor through which the dispute was processed",
"nullable": true
}
}
},
"DisputeResponsePaymentsRetrieve": {
"type": "object",
"required": [
"dispute_id",
"dispute_stage",
"dispute_status",
"connector_status",
"connector_dispute_id",
"created_at"
],
"properties": {
"dispute_id": {
"type": "string",
"description": "The identifier for dispute"
},
"dispute_stage": {
"$ref": "#/components/schemas/DisputeStage"
},
"dispute_status": {
"$ref": "#/components/schemas/DisputeStatus"
},
"connector_status": {
"type": "string",
"description": "Status of the dispute sent by connector"
},
"connector_dispute_id": {
"type": "string",
"description": "Dispute id sent by connector"
},
"connector_reason": {
"type": "string",
"description": "Reason of dispute sent by connector",
"nullable": true
},
"connector_reason_code": {
"type": "string",
"description": "Reason code of dispute sent by connector",
"nullable": true
},
"challenge_required_by": {
"type": "string",
"format": "date-time",
"description": "Evidence deadline of dispute sent by connector",
"nullable": true
},
"connector_created_at": {
"type": "string",
"format": "date-time",
"description": "Dispute created time sent by connector",
"nullable": true
},
"connector_updated_at": {
"type": "string",
"format": "date-time",
"description": "Dispute updated time sent by connector",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Time at which dispute is received"
}
}
},
"DisputeStage": {
"type": "string",
"description": "Stage of the dispute",
"enum": [
"pre_dispute",
"dispute",
"pre_arbitration"
]
},
"DisputeStatus": {
"type": "string",
"description": "Status of the dispute",
"enum": [
"dispute_opened",
"dispute_expired",
"dispute_accepted",
"dispute_cancelled",
"dispute_challenged",
"dispute_won",
"dispute_lost"
]
},
"DokuBankTransferInstructions": {
"type": "object",
"required": [
"expires_at",
"reference",
"instructions_url"
],
"properties": {
"expires_at": {
"type": "string",
"example": "1707091200000"
},
"reference": {
"type": "string",
"example": "122385736258"
},
"instructions_url": {
"type": "string"
}
}
},
"DokuBillingDetails": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Doku",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Doku",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Doku billing",
"example": "example@me.com",
"nullable": true
}
}
},
"DynamicRoutingConfigParams": {
"type": "string",
"enum": [
"PaymentMethod",
"PaymentMethodType",
"AuthenticationType",
"Currency",
"Country",
"CardNetwork",
"CardBin"
]
},
"DynamicRoutingFeatures": {
"type": "string",
"enum": [
"metrics",
"dynamic_connector_selection",
"none"
]
},
"ElementPosition": {
"type": "string",
"enum": [
"left",
"top left",
"top",
"top right",
"right",
"bottom right",
"bottom",
"bottom left",
"center"
]
},
"ElementSize": {
"oneOf": [
{
"type": "object",
"required": [
"Variants"
],
"properties": {
"Variants": {
"$ref": "#/components/schemas/SizeVariants"
}
}
},
{
"type": "object",
"required": [
"Percentage"
],
"properties": {
"Percentage": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
{
"type": "object",
"required": [
"Pixels"
],
"properties": {
"Pixels": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
}
]
},
"EnabledPaymentMethod": {
"type": "object",
"description": "Object for EnabledPaymentMethod",
"required": [
"payment_method",
"payment_method_types"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "An array of associated payment method types",
"uniqueItems": true
}
}
},
"EphemeralKeyCreateResponse": {
"type": "object",
"description": "ephemeral_key for the customer_id mentioned",
"required": [
"customer_id",
"created_at",
"expires",
"secret"
],
"properties": {
"customer_id": {
"type": "string",
"description": "customer_id to which this ephemeral key belongs to",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"created_at": {
"type": "integer",
"format": "int64",
"description": "time at which this ephemeral key was created"
},
"expires": {
"type": "integer",
"format": "int64",
"description": "time at which this ephemeral key would expire"
},
"secret": {
"type": "string",
"description": "ephemeral key"
}
}
},
"ErrorCategory": {
"type": "string",
"enum": [
"frm_decline",
"processor_downtime",
"processor_decline_unauthorized",
"issue_with_payment_method",
"processor_decline_incorrect_data"
]
},
"EventClass": {
"type": "string",
"enum": [
"payments",
"refunds",
"disputes",
"mandates",
"payouts"
]
},
"EventListItemResponse": {
"type": "object",
"description": "The response body for each item when listing events.",
"required": [
"event_id",
"merchant_id",
"profile_id",
"object_id",
"event_type",
"event_class",
"initial_attempt_id",
"created"
],
"properties": {
"event_id": {
"type": "string",
"description": "The identifier for the Event.",
"example": "evt_018e31720d1b7a2b82677d3032cab959",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"profile_id": {
"type": "string",
"description": "The identifier for the Business Profile.",
"example": "SqB0zwDGR5wHppWf0bx7GKr1f2",
"maxLength": 64
},
"object_id": {
"type": "string",
"description": "The identifier for the object (Payment Intent ID, Refund ID, etc.)",
"example": "QHrfd5LUDdZaKtAjdJmMu0dMa1",
"maxLength": 64
},
"event_type": {
"$ref": "#/components/schemas/EventType"
},
"event_class": {
"$ref": "#/components/schemas/EventClass"
},
"is_delivery_successful": {
"type": "boolean",
"description": "Indicates whether the webhook was ultimately delivered or not.",
"nullable": true
},
"initial_attempt_id": {
"type": "string",
"description": "The identifier for the initial delivery attempt. This will be the same as `event_id` for\nthe initial delivery attempt.",
"example": "evt_018e31720d1b7a2b82677d3032cab959",
"maxLength": 64
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time at which the event was created.",
"example": "2022-09-10T10:11:12Z"
}
}
},
"EventRetrieveResponse": {
"allOf": [
{
"$ref": "#/components/schemas/EventListItemResponse"
},
{
"type": "object",
"required": [
"request",
"response"
],
"properties": {
"request": {
"$ref": "#/components/schemas/OutgoingWebhookRequestContent"
},
"response": {
"$ref": "#/components/schemas/OutgoingWebhookResponseContent"
},
"delivery_attempt": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDeliveryAttempt"
}
],
"nullable": true
}
}
}
],
"description": "The response body for retrieving an event."
},
"EventType": {
"type": "string",
"enum": [
"payment_succeeded",
"payment_failed",
"payment_processing",
"payment_cancelled",
"payment_authorized",
"payment_captured",
"action_required",
"refund_succeeded",
"refund_failed",
"dispute_opened",
"dispute_expired",
"dispute_accepted",
"dispute_cancelled",
"dispute_challenged",
"dispute_won",
"dispute_lost",
"mandate_active",
"mandate_revoked",
"payout_success",
"payout_failed",
"payout_initiated",
"payout_processing",
"payout_cancelled",
"payout_expired",
"payout_reversed"
]
},
"ExtendedCardInfo": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"card_cvc"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
}
}
},
"ExtendedCardInfoConfig": {
"type": "object",
"required": [
"public_key"
],
"properties": {
"public_key": {
"type": "string",
"description": "Merchant public key"
},
"ttl_in_secs": {
"type": "integer",
"format": "int32",
"description": "TTL for extended card info",
"default": 900,
"maximum": 7200,
"minimum": 0
}
}
},
"ExtendedCardInfoResponse": {
"type": "object",
"required": [
"payload"
],
"properties": {
"payload": {
"type": "string"
}
}
},
"ExternalAuthenticationDetailsResponse": {
"type": "object",
"description": "Details of external authentication",
"required": [
"status"
],
"properties": {
"authentication_flow": {
"allOf": [
{
"$ref": "#/components/schemas/DecoupledAuthenticationType"
}
],
"nullable": true
},
"electronic_commerce_indicator": {
"type": "string",
"description": "Electronic Commerce Indicator (eci)",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/AuthenticationStatus"
},
"ds_transaction_id": {
"type": "string",
"description": "DS Transaction ID",
"nullable": true
},
"version": {
"type": "string",
"description": "Message Version",
"nullable": true
},
"error_code": {
"type": "string",
"description": "Error Code",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error Message",
"nullable": true
}
}
},
"FeatureMatrixListResponse": {
"type": "object",
"required": [
"connector_count",
"connectors"
],
"properties": {
"connector_count": {
"type": "integer",
"description": "The number of connectors included in the response",
"minimum": 0
},
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorFeatureMatrixResponse"
}
}
}
},
"FeatureMatrixRequest": {
"type": "object",
"properties": {
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"nullable": true
}
}
},
"FeatureMetadata": {
"type": "object",
"description": "additional data that might be required by hyperswitch",
"properties": {
"redirect_response": {
"allOf": [
{
"$ref": "#/components/schemas/RedirectResponse"
}
],
"nullable": true
},
"search_tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional tags to be used for global search",
"nullable": true
},
"apple_pay_recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/ApplePayRecurringDetails"
}
],
"nullable": true
}
}
},
"FeatureStatus": {
"type": "string",
"description": "The status of the feature",
"enum": [
"not_supported",
"supported"
]
},
"FieldType": {
"oneOf": [
{
"type": "string",
"enum": [
"user_card_number"
]
},
{
"type": "string",
"enum": [
"user_card_expiry_month"
]
},
{
"type": "string",
"enum": [
"user_card_expiry_year"
]
},
{
"type": "string",
"enum": [
"user_card_cvc"
]
},
{
"type": "string",
"enum": [
"user_card_network"
]
},
{
"type": "string",
"enum": [
"user_full_name"
]
},
{
"type": "string",
"enum": [
"user_email_address"
]
},
{
"type": "string",
"enum": [
"user_phone_number"
]
},
{
"type": "string",
"enum": [
"user_phone_number_country_code"
]
},
{
"type": "object",
"required": [
"user_country"
],
"properties": {
"user_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "object",
"required": [
"user_currency"
],
"properties": {
"user_currency": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_crypto_currency_network"
]
},
{
"type": "string",
"enum": [
"user_billing_name"
]
},
{
"type": "string",
"enum": [
"user_address_line1"
]
},
{
"type": "string",
"enum": [
"user_address_line2"
]
},
{
"type": "string",
"enum": [
"user_address_city"
]
},
{
"type": "string",
"enum": [
"user_address_pincode"
]
},
{
"type": "string",
"enum": [
"user_address_state"
]
},
{
"type": "object",
"required": [
"user_address_country"
],
"properties": {
"user_address_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_shipping_name"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_line1"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_line2"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_city"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_pincode"
]
},
{
"type": "string",
"enum": [
"user_shipping_address_state"
]
},
{
"type": "object",
"required": [
"user_shipping_address_country"
],
"properties": {
"user_shipping_address_country": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_social_security_number"
]
},
{
"type": "string",
"enum": [
"user_blik_code"
]
},
{
"type": "string",
"enum": [
"user_bank"
]
},
{
"type": "string",
"enum": [
"user_bank_account_number"
]
},
{
"type": "string",
"enum": [
"text"
]
},
{
"type": "object",
"required": [
"drop_down"
],
"properties": {
"drop_down": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_date_of_birth"
]
},
{
"type": "string",
"enum": [
"user_vpa_id"
]
},
{
"type": "object",
"required": [
"language_preference"
],
"properties": {
"language_preference": {
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"type": "string",
"enum": [
"user_pix_key"
]
},
{
"type": "string",
"enum": [
"user_cpf"
]
},
{
"type": "string",
"enum": [
"user_cnpj"
]
},
{
"type": "string",
"enum": [
"user_iban"
]
},
{
"type": "string",
"enum": [
"user_bsb_number"
]
},
{
"type": "string",
"enum": [
"user_bank_sort_code"
]
},
{
"type": "string",
"enum": [
"user_bank_routing_number"
]
},
{
"type": "string",
"enum": [
"user_msisdn"
]
},
{
"type": "string",
"enum": [
"user_client_identifier"
]
},
{
"type": "string",
"enum": [
"order_details_product_name"
]
}
],
"description": "Possible field type of required fields in payment_method_data"
},
"FrmAction": {
"type": "string",
"enum": [
"cancel_txn",
"auto_refund",
"manual_review"
]
},
"FrmConfigs": {
"type": "object",
"description": "Details of FrmConfigs are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"gateway",
"payment_methods"
],
"properties": {
"gateway": {
"$ref": "#/components/schemas/ConnectorType"
},
"payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmPaymentMethod"
},
"description": "payment methods that can be used in the payment"
}
},
"additionalProperties": false
},
"FrmMessage": {
"type": "object",
"description": "frm message is an object sent inside the payments response...when frm is invoked, its value is Some(...), else its None",
"required": [
"frm_name"
],
"properties": {
"frm_name": {
"type": "string"
},
"frm_transaction_id": {
"type": "string",
"nullable": true
},
"frm_transaction_type": {
"type": "string",
"nullable": true
},
"frm_status": {
"type": "string",
"nullable": true
},
"frm_score": {
"type": "integer",
"format": "int32",
"nullable": true
},
"frm_reason": {
"nullable": true
},
"frm_error": {
"type": "string",
"nullable": true
}
}
},
"FrmPaymentMethod": {
"type": "object",
"description": "Details of FrmPaymentMethod are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"payment_method"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmPaymentMethodType"
},
"description": "payment method types(credit, debit) that can be used in the payment. This field is deprecated. It has not been removed to provide backward compatibility.",
"nullable": true
},
"flow": {
"allOf": [
{
"$ref": "#/components/schemas/FrmPreferredFlowTypes"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"FrmPaymentMethodType": {
"type": "object",
"description": "Details of FrmPaymentMethodType are mentioned here... it should be passed in payment connector create api call, and stored in merchant_connector_table",
"required": [
"payment_method_type",
"card_networks",
"flow",
"action"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"card_networks": {
"$ref": "#/components/schemas/CardNetwork"
},
"flow": {
"$ref": "#/components/schemas/FrmPreferredFlowTypes"
},
"action": {
"$ref": "#/components/schemas/FrmAction"
}
},
"additionalProperties": false
},
"FrmPreferredFlowTypes": {
"type": "string",
"enum": [
"pre",
"post"
]
},
"FutureUsage": {
"type": "string",
"description": "Indicates that you intend to make future payments with the payment methods used for this Payment. Providing this parameter will attach the payment method to the Customer, if present, after the Payment is confirmed and any required actions from the user are complete.\n- On_session - Payment method saved only at hyperswitch when consent is provided by the user. CVV will asked during the returning user payment\n- Off_session - Payment method saved at both hyperswitch and Processor when consent is provided by the user. No input is required during the returning user payment.",
"enum": [
"off_session",
"on_session"
]
},
"GcashRedirection": {
"type": "object"
},
"GenericLinkUiConfig": {
"type": "object",
"description": "Object for GenericLinkUiConfig",
"properties": {
"logo": {
"type": "string",
"description": "Merchant's display logo",
"example": "https://hyperswitch.io/favicon.ico",
"nullable": true,
"maxLength": 255
},
"merchant_name": {
"type": "string",
"description": "Custom merchant name for the link",
"example": "Hyperswitch",
"nullable": true,
"maxLength": 255
},
"theme": {
"type": "string",
"description": "Primary color to be used in the form represented in hex format",
"example": "#4285F4",
"nullable": true,
"maxLength": 255
}
}
},
"GiftCardAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"givex"
],
"properties": {
"givex": {
"$ref": "#/components/schemas/GivexGiftCardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"pay_safe_card"
],
"properties": {
"pay_safe_card": {
"type": "object"
}
}
}
]
},
"GiftCardData": {
"oneOf": [
{
"type": "object",
"required": [
"givex"
],
"properties": {
"givex": {
"$ref": "#/components/schemas/GiftCardDetails"
}
}
},
{
"type": "object",
"required": [
"pay_safe_card"
],
"properties": {
"pay_safe_card": {
"type": "object"
}
}
}
]
},
"GiftCardDetails": {
"type": "object",
"required": [
"number",
"cvc"
],
"properties": {
"number": {
"type": "string",
"description": "The gift card number"
},
"cvc": {
"type": "string",
"description": "The card verification code."
}
}
},
"GiftCardResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GiftCardAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"GiropayBankRedirectAdditionalData": {
"type": "object",
"properties": {
"bic": {
"type": "string",
"description": "Masked bank account bic code",
"nullable": true
},
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"nullable": true
},
"country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
},
"GivexGiftCardAdditionalData": {
"type": "object",
"required": [
"last4"
],
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the gift card number",
"example": "4242"
}
}
},
"GoPayRedirection": {
"type": "object"
},
"GooglePayAssuranceDetails": {
"type": "object",
"required": [
"card_holder_authenticated",
"account_verified"
],
"properties": {
"card_holder_authenticated": {
"type": "boolean",
"description": "indicates that Cardholder possession validation has been performed"
},
"account_verified": {
"type": "boolean",
"description": "indicates that identification and verifications (ID&V) was performed"
}
}
},
"GooglePayPaymentMethodInfo": {
"type": "object",
"required": [
"card_network",
"card_details"
],
"properties": {
"card_network": {
"type": "string",
"description": "The name of the card network"
},
"card_details": {
"type": "string",
"description": "The details of the card"
},
"assurance_details": {
"allOf": [
{
"$ref": "#/components/schemas/GooglePayAssuranceDetails"
}
],
"nullable": true
}
}
},
"GooglePayRedirectData": {
"type": "object"
},
"GooglePaySessionResponse": {
"type": "object",
"required": [
"merchant_info",
"shipping_address_required",
"email_required",
"shipping_address_parameters",
"allowed_payment_methods",
"transaction_info",
"delayed_session_token",
"connector",
"sdk_next_action"
],
"properties": {
"merchant_info": {
"$ref": "#/components/schemas/GpayMerchantInfo"
},
"shipping_address_required": {
"type": "boolean",
"description": "Is shipping address required"
},
"email_required": {
"type": "boolean",
"description": "Is email required"
},
"shipping_address_parameters": {
"$ref": "#/components/schemas/GpayShippingAddressParameters"
},
"allowed_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GpayAllowedPaymentMethods"
},
"description": "List of the allowed payment meythods"
},
"transaction_info": {
"$ref": "#/components/schemas/GpayTransactionInfo"
},
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"connector": {
"type": "string",
"description": "The name of the connector"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
},
"secrets": {
"allOf": [
{
"$ref": "#/components/schemas/SecretInfoToInitiateSdk"
}
],
"nullable": true
}
}
},
"GooglePayThirdPartySdk": {
"type": "object",
"required": [
"delayed_session_token",
"connector",
"sdk_next_action"
],
"properties": {
"delayed_session_token": {
"type": "boolean",
"description": "Identifier for the delayed session response"
},
"connector": {
"type": "string",
"description": "The name of the connector"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
}
}
},
"GooglePayThirdPartySdkData": {
"type": "object"
},
"GooglePayWalletData": {
"type": "object",
"required": [
"type",
"description",
"info",
"tokenization_data"
],
"properties": {
"type": {
"type": "string",
"description": "The type of payment method"
},
"description": {
"type": "string",
"description": "User-facing message to describe the payment method that funds this transaction."
},
"info": {
"$ref": "#/components/schemas/GooglePayPaymentMethodInfo"
},
"tokenization_data": {
"$ref": "#/components/schemas/GpayTokenizationData"
}
}
},
"GpayAllowedMethodsParameters": {
"type": "object",
"required": [
"allowed_auth_methods",
"allowed_card_networks"
],
"properties": {
"allowed_auth_methods": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of allowed auth methods (ex: 3DS, No3DS, PAN_ONLY etc)"
},
"allowed_card_networks": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of allowed card networks (ex: AMEX,JCB etc)"
},
"billing_address_required": {
"type": "boolean",
"description": "Is billing address required",
"nullable": true
},
"billing_address_parameters": {
"allOf": [
{
"$ref": "#/components/schemas/GpayBillingAddressParameters"
}
],
"nullable": true
},
"assurance_details_required": {
"type": "boolean",
"description": "Whether assurance details are required",
"nullable": true
}
}
},
"GpayAllowedPaymentMethods": {
"type": "object",
"required": [
"type",
"parameters",
"tokenization_specification"
],
"properties": {
"type": {
"type": "string",
"description": "The type of payment method"
},
"parameters": {
"$ref": "#/components/schemas/GpayAllowedMethodsParameters"
},
"tokenization_specification": {
"$ref": "#/components/schemas/GpayTokenizationSpecification"
}
}
},
"GpayBillingAddressFormat": {
"type": "string",
"enum": [
"FULL",
"MIN"
]
},
"GpayBillingAddressParameters": {
"type": "object",
"required": [
"phone_number_required",
"format"
],
"properties": {
"phone_number_required": {
"type": "boolean",
"description": "Is billing phone number required"
},
"format": {
"$ref": "#/components/schemas/GpayBillingAddressFormat"
}
}
},
"GpayMerchantInfo": {
"type": "object",
"required": [
"merchant_name"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant Identifier that needs to be passed while invoking Gpay SDK",
"nullable": true
},
"merchant_name": {
"type": "string",
"description": "The name of the merchant that needs to be displayed on Gpay PopUp"
}
}
},
"GpaySessionTokenResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/GooglePayThirdPartySdk"
},
{
"$ref": "#/components/schemas/GooglePaySessionResponse"
}
]
},
"GpayShippingAddressParameters": {
"type": "object",
"required": [
"phone_number_required"
],
"properties": {
"phone_number_required": {
"type": "boolean",
"description": "Is shipping phone number required"
}
}
},
"GpayTokenParameters": {
"type": "object",
"properties": {
"gateway": {
"type": "string",
"description": "The name of the connector",
"nullable": true
},
"gateway_merchant_id": {
"type": "string",
"description": "The merchant ID registered in the connector associated",
"nullable": true
},
"stripe:version": {
"type": "string",
"nullable": true
},
"stripe:publishableKey": {
"type": "string",
"nullable": true
},
"protocol_version": {
"type": "string",
"description": "The protocol version for encryption",
"nullable": true
},
"public_key": {
"type": "string",
"description": "The public key provided by the merchant",
"nullable": true
}
}
},
"GpayTokenizationData": {
"type": "object",
"required": [
"type",
"token"
],
"properties": {
"type": {
"type": "string",
"description": "The type of the token"
},
"token": {
"type": "string",
"description": "Token generated for the wallet"
}
}
},
"GpayTokenizationSpecification": {
"type": "object",
"required": [
"type",
"parameters"
],
"properties": {
"type": {
"type": "string",
"description": "The token specification type(ex: PAYMENT_GATEWAY)"
},
"parameters": {
"$ref": "#/components/schemas/GpayTokenParameters"
}
}
},
"GpayTransactionInfo": {
"type": "object",
"required": [
"country_code",
"currency_code",
"total_price_status",
"total_price"
],
"properties": {
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total_price_status": {
"type": "string",
"description": "The total price status (ex: 'FINAL')"
},
"total_price": {
"type": "string",
"description": "The total price",
"example": "38.02"
}
}
},
"GsmCreateRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message",
"status",
"decision",
"step_up_possible",
"clear_pan_possible"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/Connector"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router"
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"$ref": "#/components/schemas/GsmDecision"
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible"
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible"
}
}
},
"GsmDecision": {
"type": "string",
"enum": [
"retry",
"requeue",
"do_default"
]
},
"GsmDeleteRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
}
}
},
"GsmDeleteResponse": {
"type": "object",
"required": [
"gsm_rule_delete",
"connector",
"flow",
"sub_flow",
"code"
],
"properties": {
"gsm_rule_delete": {
"type": "boolean"
},
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
}
}
},
"GsmResponse": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message",
"status",
"decision",
"step_up_possible",
"clear_pan_possible"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router"
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"type": "string",
"description": "decision to be taken for auto retries flow"
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible"
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible"
}
}
},
"GsmRetrieveRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/Connector"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
}
}
},
"GsmUpdateRequest": {
"type": "object",
"required": [
"connector",
"flow",
"sub_flow",
"code",
"message"
],
"properties": {
"connector": {
"type": "string",
"description": "The connector through which payment has gone through"
},
"flow": {
"type": "string",
"description": "The flow in which the code and message occurred for a connector"
},
"sub_flow": {
"type": "string",
"description": "The sub_flow in which the code and message occurred for a connector"
},
"code": {
"type": "string",
"description": "code received from the connector"
},
"message": {
"type": "string",
"description": "message received from the connector"
},
"status": {
"type": "string",
"description": "status provided by the router",
"nullable": true
},
"router_error": {
"type": "string",
"description": "optional error provided by the router",
"nullable": true
},
"decision": {
"allOf": [
{
"$ref": "#/components/schemas/GsmDecision"
}
],
"nullable": true
},
"step_up_possible": {
"type": "boolean",
"description": "indicates if step_up retry is possible",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors",
"nullable": true
},
"error_category": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCategory"
}
],
"nullable": true
},
"clear_pan_possible": {
"type": "boolean",
"description": "indicates if retry with pan is possible",
"nullable": true
}
}
},
"IfStatement": {
"type": "object",
"description": "Represents an IF statement with conditions and optional nested IF statements\n\n```text\npayment.method = card {\npayment.method.cardtype = (credit, debit) {\npayment.method.network = (amex, rupay, diners)\n}\n}\n```",
"required": [
"condition"
],
"properties": {
"condition": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Comparison"
}
},
"nested": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IfStatement"
},
"nullable": true
}
}
},
"IframeData": {
"oneOf": [
{
"type": "object",
"required": [
"three_ds_method_url",
"three_ds_method_data_submission",
"directory_server_id",
"method_key"
],
"properties": {
"three_ds_method_url": {
"type": "string",
"description": "ThreeDS method url"
},
"three_ds_method_data_submission": {
"type": "boolean",
"description": "Whether ThreeDS method data submission is required"
},
"three_ds_method_data": {
"type": "string",
"description": "ThreeDS method data",
"nullable": true
},
"directory_server_id": {
"type": "string",
"description": "ThreeDS Server ID"
},
"message_version": {
"type": "string",
"description": "ThreeDS Protocol version",
"nullable": true
},
"method_key": {
"type": "string",
"enum": [
"threeDSMethodData"
]
}
}
}
],
"discriminator": {
"propertyName": "method_key"
}
},
"IncrementalAuthorizationResponse": {
"type": "object",
"required": [
"authorization_id",
"amount",
"status",
"previously_authorized_amount"
],
"properties": {
"authorization_id": {
"type": "string",
"description": "The unique identifier of authorization"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "Amount the authorization has been made for",
"example": 6540
},
"status": {
"$ref": "#/components/schemas/AuthorizationStatus"
},
"error_code": {
"type": "string",
"description": "Error code sent by the connector for authorization",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Error message sent by the connector for authorization",
"nullable": true
},
"previously_authorized_amount": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
"IndomaretVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Alfamart",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name for Alfamart",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Alfamart",
"example": "example@me.com",
"nullable": true
}
}
},
"IntentStatus": {
"type": "string",
"description": "The status of the current payment that was made",
"enum": [
"succeeded",
"failed",
"cancelled",
"processing",
"requires_customer_action",
"requires_merchant_action",
"requires_payment_method",
"requires_confirmation",
"requires_capture",
"partially_captured",
"partially_captured_and_capturable"
]
},
"JCSVoucherData": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The billing first name for Japanese convenience stores",
"example": "Jane",
"nullable": true
},
"last_name": {
"type": "string",
"description": "The billing second name Japanese convenience stores",
"example": "Doe",
"nullable": true
},
"email": {
"type": "string",
"description": "The Email ID for Japanese convenience stores",
"example": "example@me.com",
"nullable": true
},
"phone_number": {
"type": "string",
"description": "The telephone number for Japanese convenience stores",
"example": "9123456789",
"nullable": true
}
}
},
"KakaoPayRedirection": {
"type": "object"
},
"KlarnaSdkPaymentMethodResponse": {
"type": "object",
"properties": {
"payment_type": {
"type": "string",
"nullable": true
}
}
},
"KlarnaSessionTokenResponse": {
"type": "object",
"required": [
"session_token",
"session_id"
],
"properties": {
"session_token": {
"type": "string",
"description": "The session token for Klarna"
},
"session_id": {
"type": "string",
"description": "The identifier for the session"
}
}
},
"LabelInformation": {
"type": "object",
"required": [
"label",
"target_count",
"target_time",
"mca_id"
],
"properties": {
"label": {
"type": "string"
},
"target_count": {
"type": "integer",
"format": "int64",
"minimum": 0
},
"target_time": {
"type": "integer",
"format": "int64",
"minimum": 0
},
"mca_id": {
"type": "string"
}
}
},
"LinkedRoutingConfigRetrieveResponse": {
"oneOf": [
{
"$ref": "#/components/schemas/RoutingRetrieveResponse"
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
]
},
"ListBlocklistQuery": {
"type": "object",
"required": [
"data_kind"
],
"properties": {
"data_kind": {
"$ref": "#/components/schemas/BlocklistDataKind"
},
"limit": {
"type": "integer",
"format": "int32",
"minimum": 0
},
"offset": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
},
"LocalBankTransferAdditionalData": {
"type": "object",
"properties": {
"bank_code": {
"type": "string",
"description": "Partially masked bank code",
"example": "**** OA2312",
"nullable": true
}
}
},
"MandateAmountData": {
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The maximum amount to be debited for the mandate transaction",
"example": 6540
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"start_date": {
"type": "string",
"format": "date-time",
"description": "Specifying start date of the mandate",
"example": "2022-09-10T00:00:00Z",
"nullable": true
},
"end_date": {
"type": "string",
"format": "date-time",
"description": "Specifying end date of the mandate",
"example": "2023-09-10T23:59:59Z",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Additional details required by mandate",
"nullable": true
}
}
},
"MandateCardDetails": {
"type": "object",
"properties": {
"last4_digits": {
"type": "string",
"description": "The last 4 digits of card",
"nullable": true
},
"card_exp_month": {
"type": "string",
"description": "The expiry month of card",
"nullable": true
},
"card_exp_year": {
"type": "string",
"description": "The expiry year of card",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "The card holder name",
"nullable": true
},
"card_token": {
"type": "string",
"description": "The token from card locker",
"nullable": true
},
"scheme": {
"type": "string",
"description": "The card scheme network for the particular card",
"nullable": true
},
"issuer_country": {
"type": "string",
"description": "The country code in in which the card was issued",
"nullable": true
},
"card_fingerprint": {
"type": "string",
"description": "A unique identifier alias to identify a particular card",
"nullable": true
},
"card_isin": {
"type": "string",
"description": "The first 6 digits of card",
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "The bank that issued the card",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"description": "The type of the payment card",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The nick_name of the card holder",
"nullable": true
}
}
},
"MandateData": {
"type": "object",
"description": "Passing this object during payments creates a mandate. The mandate_type sub object is passed by the server.",
"properties": {
"update_mandate_id": {
"type": "string",
"description": "A way to update the mandate's payment method details",
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"mandate_type": {
"allOf": [
{
"$ref": "#/components/schemas/MandateType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MandateResponse": {
"type": "object",
"required": [
"mandate_id",
"status",
"payment_method_id",
"payment_method"
],
"properties": {
"mandate_id": {
"type": "string",
"description": "The identifier for mandate"
},
"status": {
"$ref": "#/components/schemas/MandateStatus"
},
"payment_method_id": {
"type": "string",
"description": "The identifier for payment method"
},
"payment_method": {
"type": "string",
"description": "The payment method"
},
"payment_method_type": {
"type": "string",
"description": "The payment method type",
"nullable": true
},
"card": {
"allOf": [
{
"$ref": "#/components/schemas/MandateCardDetails"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
}
}
},
"MandateRevokedResponse": {
"type": "object",
"required": [
"mandate_id",
"status"
],
"properties": {
"mandate_id": {
"type": "string",
"description": "The identifier for mandate"
},
"status": {
"$ref": "#/components/schemas/MandateStatus"
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
}
}
},
"MandateStatus": {
"type": "string",
"description": "The status of the mandate, which indicates whether it can be used to initiate a payment.",
"enum": [
"active",
"inactive",
"pending",
"revoked"
]
},
"MandateType": {
"oneOf": [
{
"type": "object",
"required": [
"single_use"
],
"properties": {
"single_use": {
"$ref": "#/components/schemas/MandateAmountData"
}
}
},
{
"type": "object",
"required": [
"multi_use"
],
"properties": {
"multi_use": {
"allOf": [
{
"$ref": "#/components/schemas/MandateAmountData"
}
],
"nullable": true
}
}
}
]
},
"MaskedBankDetails": {
"type": "object",
"required": [
"mask"
],
"properties": {
"mask": {
"type": "string"
}
}
},
"MbWayRedirection": {
"type": "object",
"required": [
"telephone_number"
],
"properties": {
"telephone_number": {
"type": "string",
"description": "Telephone number of the shopper. Should be Portuguese phone number."
}
}
},
"MerchantAccountCreate": {
"type": "object",
"required": [
"merchant_id"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64,
"minLength": 1
},
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account",
"example": "NewAge Retailer",
"nullable": true
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"payout_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"sub_merchants_enabled": {
"type": "boolean",
"description": "A boolean value to indicate if the merchant is a sub-merchant under a master or a parent merchant. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"parent_merchant_id": {
"type": "string",
"description": "Refers to the Parent Merchant ID if the merchant being created is a sub-merchant",
"example": "xkkdf909012sdjki2dkh5sdf",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": false,
"example": true,
"nullable": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled.",
"default": false,
"example": true,
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object",
"nullable": true
},
"publishable_key": {
"type": "string",
"description": "API key that will be used for client side API access. A publishable key has to be always paired with a `client_secret`.\nA `client_secret` can be obtained by creating a payment with `confirm` set to false",
"example": "AH3423bkjbkjdsfbkj",
"nullable": true
},
"locker_id": {
"type": "string",
"description": "An identifier for the vault used to store payment method information.",
"example": "locker_abc123",
"nullable": true
},
"primary_business_details": {
"allOf": [
{
"$ref": "#/components/schemas/PrimaryBusinessDetails"
}
],
"nullable": true
},
"frm_routing_algorithm": {
"type": "object",
"description": "The frm routing algorithm to be used for routing payments to desired FRM's",
"nullable": true
},
"organization_id": {
"type": "string",
"description": "The id of the organization to which the merchant belongs to, if not passed an organization is created",
"example": "org_q98uSGAYbjEwqs0mJwnz",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"pm_collect_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessCollectLinkConfig"
}
],
"nullable": true
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantProductType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantAccountData": {
"oneOf": [
{
"type": "object",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "object",
"required": [
"iban",
"name"
],
"properties": {
"iban": {
"type": "string"
},
"name": {
"type": "string"
},
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"bacs"
],
"properties": {
"bacs": {
"type": "object",
"required": [
"account_number",
"sort_code",
"name"
],
"properties": {
"account_number": {
"type": "string"
},
"sort_code": {
"type": "string"
},
"name": {
"type": "string"
},
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
}
}
}
]
},
"MerchantAccountDeleteResponse": {
"type": "object",
"required": [
"merchant_id",
"deleted"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"deleted": {
"type": "boolean",
"description": "If the connector is deleted or not",
"example": false
}
}
},
"MerchantAccountResponse": {
"type": "object",
"required": [
"merchant_id",
"enable_payment_response_hash",
"redirect_to_merchant_with_http_post",
"primary_business_details",
"organization_id",
"is_recon_enabled",
"recon_status"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account",
"example": "NewAge Retailer",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after completion of the payment",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": false,
"example": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"example": "xkkdf909012sdjki2dkh5sdf",
"nullable": true,
"maxLength": 255
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"payout_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"sub_merchants_enabled": {
"type": "boolean",
"description": "A boolean value to indicate if the merchant is a sub-merchant under a master or a parent merchant. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"parent_merchant_id": {
"type": "string",
"description": "Refers to the Parent Merchant ID if the merchant being created is a sub-merchant",
"example": "xkkdf909012sdjki2dkh5sdf",
"nullable": true,
"maxLength": 255
},
"publishable_key": {
"type": "string",
"description": "API key that will be used for server side API access",
"example": "AH3423bkjbkjdsfbkj",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"locker_id": {
"type": "string",
"description": "An identifier for the vault used to store payment method information.",
"example": "locker_abc123",
"nullable": true
},
"primary_business_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PrimaryBusinessDetails"
},
"description": "Details about the primary business unit of the merchant account"
},
"frm_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"organization_id": {
"type": "string",
"description": "The organization id merchant is associated with",
"example": "org_q98uSGAYbjEwqs0mJwnz",
"maxLength": 64,
"minLength": 1
},
"is_recon_enabled": {
"type": "boolean",
"description": "A boolean value to indicate if the merchant has recon service is enabled or not, by default value is false"
},
"default_profile": {
"type": "string",
"description": "The default profile that must be used for creating merchant accounts and payments",
"nullable": true,
"maxLength": 64
},
"recon_status": {
"$ref": "#/components/schemas/ReconStatus"
},
"pm_collect_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessCollectLinkConfig"
}
],
"nullable": true
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantProductType"
}
],
"nullable": true
}
}
},
"MerchantAccountUpdate": {
"type": "object",
"required": [
"merchant_id"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"merchant_name": {
"type": "string",
"description": "Name of the Merchant Account",
"example": "NewAge Retailer",
"nullable": true
},
"merchant_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantDetails"
}
],
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"payout_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"sub_merchants_enabled": {
"type": "boolean",
"description": "A boolean value to indicate if the merchant is a sub-merchant under a master or a parent merchant. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"parent_merchant_id": {
"type": "string",
"description": "Refers to the Parent Merchant ID if the merchant being created is a sub-merchant",
"example": "xkkdf909012sdjki2dkh5sdf",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": false,
"example": true,
"nullable": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true,
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"publishable_key": {
"type": "string",
"description": "API key that will be used for server side API access",
"example": "AH3423bkjbkjdsfbkj",
"nullable": true
},
"locker_id": {
"type": "string",
"description": "An identifier for the vault used to store payment method information.",
"example": "locker_abc123",
"nullable": true
},
"primary_business_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PrimaryBusinessDetails"
},
"description": "Details about the primary business unit of the merchant account",
"nullable": true
},
"frm_routing_algorithm": {
"type": "object",
"description": "The frm routing algorithm to be used for routing payments to desired FRM's",
"nullable": true
},
"default_profile": {
"type": "string",
"description": "The default profile that must be used for creating merchant accounts and payments",
"nullable": true,
"maxLength": 64
},
"pm_collect_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessCollectLinkConfig"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorCreate": {
"type": "object",
"description": "Create a new Merchant Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.\"",
"required": [
"connector_type",
"connector_name"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "This is an unique label you can generate and pass in order to identify this connector account on your Hyperswitch dashboard and reports. Eg: if your profile label is `default`, connector label can be `stripe_default`",
"example": "stripe_US_travel",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"nullable": true,
"maxLength": 64
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account",
"example": [
{
"accepted_countries": {
"list": [
"FR",
"DE",
"IN"
],
"type": "disable_only"
},
"accepted_currencies": {
"list": [
"USD",
"EUR"
],
"type": "enable_only"
},
"installment_payment_enabled": true,
"maximum_amount": 68607706,
"minimum_amount": 1,
"payment_method": "wallet",
"payment_method_issuers": [
"labore magna ipsum",
"aute"
],
"payment_method_types": [
"upi_collect",
"upi_intent"
],
"payment_schemes": [
"Discover",
"Discover"
],
"recurring_enabled": true
}
],
"nullable": true
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is in Test mode. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "The business label to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "The business sublabel to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"example": "chase",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Unique ID of the connector",
"example": "mca_5apGeP94tMts6rg3U3kR",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"nullable": true
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorStatus"
}
],
"nullable": true
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorDeleteResponse": {
"type": "object",
"required": [
"merchant_id",
"merchant_connector_id",
"deleted"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"merchant_connector_id": {
"type": "string",
"description": "Unique ID of the connector",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"deleted": {
"type": "boolean",
"description": "If the connector is deleted or not",
"example": false
}
}
},
"MerchantConnectorDetails": {
"type": "object",
"properties": {
"connector_account_details": {
"type": "object",
"description": "Account details of the Connector. You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Useful for storing additional, structured information on an object.",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
}
},
"MerchantConnectorDetailsWrap": {
"type": "object",
"description": "Merchant connector details used to make payments.",
"required": [
"creds_identifier"
],
"properties": {
"creds_identifier": {
"type": "string",
"description": "Creds Identifier is to uniquely identify the credentials. Do not send any sensitive info, like encoded_data in this field. And do not send the string \"null\"."
},
"encoded_data": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
}
}
},
"MerchantConnectorId": {
"type": "object",
"required": [
"merchant_id",
"merchant_connector_id"
],
"properties": {
"merchant_id": {
"type": "string"
},
"merchant_connector_id": {
"type": "string"
}
}
},
"MerchantConnectorListResponse": {
"type": "object",
"required": [
"connector_type",
"connector_name",
"merchant_connector_id",
"profile_id",
"status"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "A unique label to identify the connector account created under a profile",
"example": "stripe_US_travel",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Unique ID of the merchant connector account",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"maxLength": 64
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account",
"example": [
{
"accepted_countries": {
"list": [
"FR",
"DE",
"IN"
],
"type": "disable_only"
},
"accepted_currencies": {
"list": [
"USD",
"EUR"
],
"type": "enable_only"
},
"installment_payment_enabled": true,
"maximum_amount": 68607706,
"minimum_amount": 1,
"payment_method": "wallet",
"payment_method_issuers": [
"labore magna ipsum",
"aute"
],
"payment_method_types": [
"upi_collect",
"upi_intent"
],
"payment_schemes": [
"Discover",
"Discover"
],
"recurring_enabled": true
}
],
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is in Test mode. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "The business label to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"example": "travel",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "The business sublabel to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"example": "chase",
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "identifier for the verified domains of a particular connector account",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
}
},
"additionalProperties": false
},
"MerchantConnectorResponse": {
"type": "object",
"description": "Response of creating a new Merchant Connector for the merchant account.\"",
"required": [
"connector_type",
"connector_name",
"merchant_connector_id",
"profile_id",
"status"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_name": {
"$ref": "#/components/schemas/Connector"
},
"connector_label": {
"type": "string",
"description": "A unique label to identify the connector account created under a profile",
"example": "stripe_US_travel",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Unique ID of the merchant connector account",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"profile_id": {
"type": "string",
"description": "Identifier for the profile, if not provided default will be chosen from merchant account",
"maxLength": 64
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account",
"example": [
{
"accepted_countries": {
"list": [
"FR",
"DE",
"IN"
],
"type": "disable_only"
},
"accepted_currencies": {
"list": [
"USD",
"EUR"
],
"type": "enable_only"
},
"installment_payment_enabled": true,
"maximum_amount": 68607706,
"minimum_amount": 1,
"payment_method": "wallet",
"payment_method_issuers": [
"labore magna ipsum",
"aute"
],
"payment_method_types": [
"upi_collect",
"upi_intent"
],
"payment_schemes": [
"Discover",
"Discover"
],
"recurring_enabled": true
}
],
"nullable": true
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is in Test mode. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "The business label to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"example": "travel",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "The business sublabel to which the connector account is attached. To be deprecated soon. Use the 'profile_id' instead",
"example": "chase",
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "identifier for the verified domains of a particular connector account",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorUpdate": {
"type": "object",
"description": "Create a new Merchant Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.\"",
"required": [
"connector_type",
"status"
],
"properties": {
"connector_type": {
"$ref": "#/components/schemas/ConnectorType"
},
"connector_label": {
"type": "string",
"description": "This is an unique label you can generate and pass in order to identify this connector account on your Hyperswitch dashboard and reports. Eg: if your profile label is `default`, connector label can be `stripe_default`",
"example": "stripe_US_travel",
"nullable": true
},
"connector_account_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetails"
}
],
"nullable": true
},
"payment_methods_enabled": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodsEnabled"
},
"description": "An object containing the details about the payment methods that need to be enabled under this merchant connector account",
"example": [
{
"accepted_countries": {
"list": [
"FR",
"DE",
"IN"
],
"type": "disable_only"
},
"accepted_currencies": {
"list": [
"USD",
"EUR"
],
"type": "enable_only"
},
"installment_payment_enabled": true,
"maximum_amount": 68607706,
"minimum_amount": 1,
"payment_method": "wallet",
"payment_method_issuers": [
"labore magna ipsum",
"aute"
],
"payment_method_types": [
"upi_collect",
"upi_intent"
],
"payment_schemes": [
"Discover",
"Discover"
],
"recurring_enabled": true
}
],
"nullable": true
},
"connector_webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorWebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is in Test mode. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"disabled": {
"type": "boolean",
"description": "A boolean value to indicate if the connector is disabled. By default, its value is false.",
"default": false,
"example": false,
"nullable": true
},
"frm_configs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FrmConfigs"
},
"description": "Contains the frm configs for the merchant connector",
"example": "\n[{\"gateway\":\"stripe\",\"payment_methods\":[{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\",\"action\":\"cancel_txn\"},{\"payment_method_type\":\"debit\",\"card_networks\":[\"Visa\"],\"flow\":\"pre\"}]}]}]\n",
"nullable": true
},
"pm_auth_config": {
"type": "object",
"description": "pm_auth_config will relate MCA records to their respective chosen auth services, based on payment_method and pmt",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/ConnectorStatus"
},
"additional_merchant_data": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalMerchantData"
}
],
"nullable": true
},
"connector_wallets_details": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorWalletDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantConnectorWebhookDetails": {
"type": "object",
"required": [
"merchant_secret",
"additional_secret"
],
"properties": {
"merchant_secret": {
"type": "string",
"example": "12345678900987654321"
},
"additional_secret": {
"type": "string",
"example": "12345678900987654321"
}
},
"additionalProperties": false
},
"MerchantDetails": {
"type": "object",
"properties": {
"primary_contact_person": {
"type": "string",
"description": "The merchant's primary contact name",
"example": "John Doe",
"nullable": true,
"maxLength": 255
},
"primary_phone": {
"type": "string",
"description": "The merchant's primary phone number",
"example": "999999999",
"nullable": true,
"maxLength": 255
},
"primary_email": {
"type": "string",
"description": "The merchant's primary email address",
"example": "johndoe@test.com",
"nullable": true,
"maxLength": 255
},
"secondary_contact_person": {
"type": "string",
"description": "The merchant's secondary contact name",
"example": "John Doe2",
"nullable": true,
"maxLength": 255
},
"secondary_phone": {
"type": "string",
"description": "The merchant's secondary phone number",
"example": "999999988",
"nullable": true,
"maxLength": 255
},
"secondary_email": {
"type": "string",
"description": "The merchant's secondary email address",
"example": "johndoe2@test.com",
"nullable": true,
"maxLength": 255
},
"website": {
"type": "string",
"description": "The business website of the merchant",
"example": "www.example.com",
"nullable": true,
"maxLength": 255
},
"about_business": {
"type": "string",
"description": "A brief description about merchant's business",
"example": "Online Retail with a wide selection of organic products for North America",
"nullable": true,
"maxLength": 255
},
"address": {
"allOf": [
{
"$ref": "#/components/schemas/AddressDetails"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"MerchantProductType": {
"type": "string",
"enum": [
"orchestration",
"vault",
"recon",
"recovery",
"cost_observability",
"dynamic_routing"
]
},
"MerchantRecipientData": {
"oneOf": [
{
"type": "object",
"required": [
"connector_recipient_id"
],
"properties": {
"connector_recipient_id": {
"type": "string",
"nullable": true
}
}
},
{
"type": "object",
"required": [
"wallet_id"
],
"properties": {
"wallet_id": {
"type": "string",
"nullable": true
}
}
},
{
"type": "object",
"required": [
"account_data"
],
"properties": {
"account_data": {
"$ref": "#/components/schemas/MerchantAccountData"
}
}
}
]
},
"MerchantRoutingAlgorithm": {
"type": "object",
"description": "Routing Algorithm specific to merchants",
"required": [
"id",
"profile_id",
"name",
"description",
"algorithm",
"created_at",
"modified_at",
"algorithm_for"
],
"properties": {
"id": {
"type": "string"
},
"profile_id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"algorithm": {
"$ref": "#/components/schemas/RoutingAlgorithm"
},
"created_at": {
"type": "integer",
"format": "int64"
},
"modified_at": {
"type": "integer",
"format": "int64"
},
"algorithm_for": {
"$ref": "#/components/schemas/TransactionType"
}
}
},
"MetadataValue": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"MifinityData": {
"type": "object",
"required": [
"date_of_birth"
],
"properties": {
"date_of_birth": {
"type": "string",
"format": "date"
},
"language_preference": {
"type": "string",
"nullable": true
}
}
},
"MinorUnit": {
"type": "integer",
"format": "int64",
"description": "This Unit struct represents MinorUnit in which core amount works"
},
"MobilePayRedirection": {
"type": "object"
},
"MobilePaymentConsent": {
"type": "string",
"enum": [
"consent_required",
"consent_not_required",
"consent_optional"
]
},
"MobilePaymentData": {
"oneOf": [
{
"type": "object",
"required": [
"direct_carrier_billing"
],
"properties": {
"direct_carrier_billing": {
"type": "object",
"required": [
"msisdn"
],
"properties": {
"msisdn": {
"type": "string",
"description": "The phone number of the user",
"example": "1234567890"
},
"client_uid": {
"type": "string",
"description": "Unique user id",
"example": "02iacdYXGI9CnyJdoN8c7",
"nullable": true
}
}
}
}
}
]
},
"MobilePaymentNextStepData": {
"type": "object",
"required": [
"consent_data_required"
],
"properties": {
"consent_data_required": {
"$ref": "#/components/schemas/MobilePaymentConsent"
}
}
},
"MobilePaymentResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/MobilePaymentData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"MomoRedirection": {
"type": "object"
},
"MultibancoBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"example": "example@me.com",
"nullable": true
}
}
},
"MultibancoTransferInstructions": {
"type": "object",
"required": [
"reference",
"entity"
],
"properties": {
"reference": {
"type": "string",
"example": "122385736258"
},
"entity": {
"type": "string",
"example": "12345"
}
}
},
"NetworkTransactionIdAndCardDetails": {
"type": "object",
"required": [
"card_number",
"card_exp_month",
"card_exp_year",
"card_holder_name",
"network_transaction_id"
],
"properties": {
"card_number": {
"type": "string",
"description": "The card number",
"example": "4242424242424242"
},
"card_exp_month": {
"type": "string",
"description": "The card's expiry month",
"example": "24"
},
"card_exp_year": {
"type": "string",
"description": "The card's expiry year",
"example": "24"
},
"card_holder_name": {
"type": "string",
"description": "The card holder's name",
"example": "John Test"
},
"card_issuer": {
"type": "string",
"description": "The name of the issuer of card",
"example": "chase",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_type": {
"type": "string",
"example": "CREDIT",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"example": "INDIA",
"nullable": true
},
"bank_code": {
"type": "string",
"example": "JP_AMEX",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "The card holder's nick name",
"example": "John Test",
"nullable": true
},
"network_transaction_id": {
"type": "string",
"description": "The network transaction ID provided by the card network during a CIT (Customer Initiated Transaction),\nwhere `setup_future_usage` is set to `off_session`."
}
}
},
"NextActionCall": {
"type": "string",
"enum": [
"post_session_tokens",
"confirm",
"sync",
"complete_authorize"
]
},
"NextActionData": {
"oneOf": [
{
"type": "object",
"description": "Contains the url for redirection flow",
"required": [
"redirect_to_url",
"type"
],
"properties": {
"redirect_to_url": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"redirect_to_url"
]
}
}
},
{
"type": "object",
"description": "Informs the next steps for bank transfer and also contains the charges details (ex: amount received, amount charged etc)",
"required": [
"bank_transfer_steps_and_charges_details",
"type"
],
"properties": {
"bank_transfer_steps_and_charges_details": {
"$ref": "#/components/schemas/BankTransferNextStepsData"
},
"type": {
"type": "string",
"enum": [
"display_bank_transfer_information"
]
}
}
},
{
"type": "object",
"description": "Contains third party sdk session token response",
"required": [
"type"
],
"properties": {
"session_token": {
"allOf": [
{
"$ref": "#/components/schemas/SessionToken"
}
],
"nullable": true
},
"type": {
"type": "string",
"enum": [
"third_party_sdk_session_token"
]
}
}
},
{
"type": "object",
"description": "Contains url for Qr code image, this qr code has to be shown in sdk",
"required": [
"image_data_url",
"qr_code_url",
"type"
],
"properties": {
"image_data_url": {
"type": "string",
"description": "Hyperswitch generated image data source url"
},
"display_to_timestamp": {
"type": "integer",
"format": "int64",
"nullable": true
},
"qr_code_url": {
"type": "string",
"description": "The url for Qr code given by the connector"
},
"display_text": {
"type": "string",
"nullable": true
},
"border_color": {
"type": "string",
"nullable": true
},
"type": {
"type": "string",
"enum": [
"qr_code_information"
]
}
}
},
{
"type": "object",
"description": "Contains url to fetch Qr code data",
"required": [
"qr_code_fetch_url",
"type"
],
"properties": {
"qr_code_fetch_url": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"fetch_qr_code_information"
]
}
}
},
{
"type": "object",
"description": "Contains the download url and the reference number for transaction",
"required": [
"voucher_details",
"type"
],
"properties": {
"voucher_details": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"display_voucher_information"
]
}
}
},
{
"type": "object",
"description": "Contains duration for displaying a wait screen, wait screen with timer is displayed by sdk",
"required": [
"display_from_timestamp",
"type"
],
"properties": {
"display_from_timestamp": {
"type": "integer"
},
"display_to_timestamp": {
"type": "integer",
"nullable": true
},
"type": {
"type": "string",
"enum": [
"wait_screen_information"
]
}
}
},
{
"type": "object",
"description": "Contains the information regarding three_ds_method_data submission, three_ds authentication, and authorization flows",
"required": [
"three_ds_data",
"type"
],
"properties": {
"three_ds_data": {
"$ref": "#/components/schemas/ThreeDsData"
},
"type": {
"type": "string",
"enum": [
"three_ds_invoke"
]
}
}
},
{
"type": "object",
"required": [
"next_action_data",
"type"
],
"properties": {
"next_action_data": {
"$ref": "#/components/schemas/SdkNextActionData"
},
"type": {
"type": "string",
"enum": [
"invoke_sdk_client"
]
}
}
},
{
"type": "object",
"description": "Contains consent to collect otp for mobile payment",
"required": [
"consent_data_required",
"type"
],
"properties": {
"consent_data_required": {
"$ref": "#/components/schemas/MobilePaymentConsent"
},
"type": {
"type": "string",
"enum": [
"collect_otp"
]
}
}
},
{
"type": "object",
"description": "Contains data required to invoke hidden iframe",
"required": [
"iframe_data",
"type"
],
"properties": {
"iframe_data": {
"$ref": "#/components/schemas/IframeData"
},
"type": {
"type": "string",
"enum": [
"invoke_hidden_iframe"
]
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"NextActionType": {
"type": "string",
"enum": [
"redirect_to_url",
"display_qr_code",
"invoke_sdk_client",
"trigger_api",
"display_bank_transfer_information",
"display_wait_screen",
"collect_otp"
]
},
"NoThirdPartySdkSessionResponse": {
"type": "object",
"required": [
"epoch_timestamp",
"expires_at",
"merchant_session_identifier",
"nonce",
"merchant_identifier",
"domain_name",
"display_name",
"signature",
"operational_analytics_identifier",
"retries",
"psp_id"
],
"properties": {
"epoch_timestamp": {
"type": "integer",
"format": "int64",
"description": "Timestamp at which session is requested",
"minimum": 0
},
"expires_at": {
"type": "integer",
"format": "int64",
"description": "Timestamp at which session expires",
"minimum": 0
},
"merchant_session_identifier": {
"type": "string",
"description": "The identifier for the merchant session"
},
"nonce": {
"type": "string",
"description": "Apple pay generated unique ID (UUID) value"
},
"merchant_identifier": {
"type": "string",
"description": "The identifier for the merchant"
},
"domain_name": {
"type": "string",
"description": "The domain name of the merchant which is registered in Apple Pay"
},
"display_name": {
"type": "string",
"description": "The name to be displayed on Apple Pay button"
},
"signature": {
"type": "string",
"description": "A string which represents the properties of a payment"
},
"operational_analytics_identifier": {
"type": "string",
"description": "The identifier for the operational analytics"
},
"retries": {
"type": "integer",
"format": "int32",
"description": "The number of retries to get the session response",
"minimum": 0
},
"psp_id": {
"type": "string",
"description": "The identifier for the connector transaction"
}
}
},
"NoonData": {
"type": "object",
"properties": {
"order_category": {
"type": "string",
"description": "Information about the order category that merchant wants to specify at connector level. (e.g. In Noon Payments it can take values like \"pay\", \"food\", or any other custom string set by the merchant in Noon's Dashboard)",
"nullable": true
}
}
},
"NumberComparison": {
"type": "object",
"description": "Represents a number comparison for \"NumberComparisonArrayValue\"",
"required": [
"comparisonType",
"number"
],
"properties": {
"comparisonType": {
"$ref": "#/components/schemas/ComparisonType"
},
"number": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
"OnlineMandate": {
"type": "object",
"required": [
"ip_address",
"user_agent"
],
"properties": {
"ip_address": {
"type": "string",
"description": "Ip address of the customer machine from which the mandate was created",
"example": "123.32.25.123"
},
"user_agent": {
"type": "string",
"description": "The user-agent of the customer's browser"
}
},
"additionalProperties": false
},
"OpenBankingData": {
"oneOf": [
{
"type": "object",
"required": [
"open_banking_pis"
],
"properties": {
"open_banking_pis": {
"type": "object"
}
}
}
]
},
"OpenBankingResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/OpenBankingData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"OpenBankingSessionToken": {
"type": "object",
"required": [
"open_banking_session_token"
],
"properties": {
"open_banking_session_token": {
"type": "string",
"description": "The session token for OpenBanking Connectors"
}
}
},
"OrderDetailsWithAmount": {
"type": "object",
"required": [
"product_name",
"quantity",
"amount"
],
"properties": {
"product_name": {
"type": "string",
"description": "Name of the product that is being purchased",
"example": "shirt",
"maxLength": 255
},
"quantity": {
"type": "integer",
"format": "int32",
"description": "The quantity of the product to be purchased",
"example": 1,
"minimum": 0
},
"amount": {
"type": "integer",
"format": "int64",
"description": "the amount per quantity of product"
},
"tax_rate": {
"type": "number",
"format": "double",
"description": "tax rate applicable to the product",
"nullable": true
},
"total_tax_amount": {
"type": "integer",
"format": "int64",
"description": "total tax amount applicable to the product",
"nullable": true
},
"requires_shipping": {
"type": "boolean",
"nullable": true
},
"product_img_link": {
"type": "string",
"description": "The image URL of the product",
"nullable": true
},
"product_id": {
"type": "string",
"description": "ID of the product that is being purchased",
"nullable": true
},
"category": {
"type": "string",
"description": "Category of the product that is being purchased",
"nullable": true
},
"sub_category": {
"type": "string",
"description": "Sub category of the product that is being purchased",
"nullable": true
},
"brand": {
"type": "string",
"description": "Brand of the product that is being purchased",
"nullable": true
},
"product_type": {
"allOf": [
{
"$ref": "#/components/schemas/ProductType"
}
],
"nullable": true
},
"product_tax_code": {
"type": "string",
"description": "The tax code for the product",
"nullable": true
}
}
},
"OrganizationCreateRequest": {
"type": "object",
"required": [
"organization_name"
],
"properties": {
"organization_name": {
"type": "string",
"description": "Name of the organization"
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"OrganizationResponse": {
"type": "object",
"required": [
"organization_id",
"modified_at",
"created_at"
],
"properties": {
"organization_id": {
"type": "string",
"description": "The unique identifier for the Organization",
"example": "org_q98uSGAYbjEwqs0mJwnz",
"maxLength": 64,
"minLength": 1
},
"organization_name": {
"type": "string",
"description": "Name of the Organization",
"nullable": true
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"modified_at": {
"type": "string",
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
},
"OrganizationUpdateRequest": {
"type": "object",
"properties": {
"organization_name": {
"type": "string",
"description": "Name of the organization",
"nullable": true
},
"organization_details": {
"type": "object",
"description": "Details about the organization",
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"OutgoingWebhook": {
"type": "object",
"required": [
"merchant_id",
"event_id",
"event_type",
"content"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant id of the merchant"
},
"event_id": {
"type": "string",
"description": "The unique event id for each webhook"
},
"event_type": {
"$ref": "#/components/schemas/EventType"
},
"content": {
"$ref": "#/components/schemas/OutgoingWebhookContent"
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "The time at which webhook was sent"
}
}
},
"OutgoingWebhookContent": {
"oneOf": [
{
"type": "object",
"title": "PaymentsResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payment_details"
]
},
"object": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
},
{
"type": "object",
"title": "RefundResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"refund_details"
]
},
"object": {
"$ref": "#/components/schemas/RefundResponse"
}
}
},
{
"type": "object",
"title": "DisputeResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"dispute_details"
]
},
"object": {
"$ref": "#/components/schemas/DisputeResponse"
}
}
},
{
"type": "object",
"title": "MandateResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"mandate_details"
]
},
"object": {
"$ref": "#/components/schemas/MandateResponse"
}
}
},
{
"type": "object",
"title": "PayoutCreateResponse",
"required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payout_details"
]
},
"object": {
"$ref": "#/components/schemas/PayoutCreateResponse"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"OutgoingWebhookRequestContent": {
"type": "object",
"description": "The request information (headers and body) sent in the webhook.",
"required": [
"body",
"headers"
],
"properties": {
"body": {
"type": "string",
"description": "The request body sent in the webhook."
},
"headers": {
"type": "array",
"items": {
"type": "array",
"items": {
"allOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"description": "The request headers sent in the webhook.",
"example": [
[
"content-type",
"application/json"
],
[
"content-length",
"1024"
]
]
}
}
},
"OutgoingWebhookResponseContent": {
"type": "object",
"description": "The response information (headers, body and status code) received for the webhook sent.",
"properties": {
"body": {
"type": "string",
"description": "The response body received for the webhook sent.",
"nullable": true
},
"headers": {
"type": "array",
"items": {
"type": "array",
"items": {
"allOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"description": "The response headers received for the webhook sent.",
"example": [
[
"content-type",
"application/json"
],
[
"content-length",
"1024"
]
],
"nullable": true
},
"status_code": {
"type": "integer",
"format": "int32",
"description": "The HTTP status code for the webhook sent.",
"example": 200,
"nullable": true,
"minimum": 0
},
"error_message": {
"type": "string",
"description": "Error message in case any error occurred when trying to deliver the webhook.",
"example": 200,
"nullable": true
}
}
},
"PayLaterData": {
"oneOf": [
{
"type": "object",
"required": [
"klarna_redirect"
],
"properties": {
"klarna_redirect": {
"type": "object",
"description": "For KlarnaRedirect as PayLater Option",
"properties": {
"billing_email": {
"type": "string",
"description": "The billing email",
"nullable": true
},
"billing_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"klarna_sdk"
],
"properties": {
"klarna_sdk": {
"type": "object",
"description": "For Klarna Sdk as PayLater Option",
"required": [
"token"
],
"properties": {
"token": {
"type": "string",
"description": "The token for the sdk workflow"
}
}
}
}
},
{
"type": "object",
"required": [
"affirm_redirect"
],
"properties": {
"affirm_redirect": {
"type": "object",
"description": "For Affirm redirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"afterpay_clearpay_redirect"
],
"properties": {
"afterpay_clearpay_redirect": {
"type": "object",
"description": "For AfterpayClearpay redirect as PayLater Option",
"properties": {
"billing_email": {
"type": "string",
"description": "The billing email",
"nullable": true
},
"billing_name": {
"type": "string",
"description": "The billing name",
"nullable": true
}
}
}
}
},
{
"type": "object",
"required": [
"pay_bright_redirect"
],
"properties": {
"pay_bright_redirect": {
"type": "object",
"description": "For PayBright Redirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"walley_redirect"
],
"properties": {
"walley_redirect": {
"type": "object",
"description": "For WalleyRedirect as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"alma_redirect"
],
"properties": {
"alma_redirect": {
"type": "object",
"description": "For Alma Redirection as PayLater Option"
}
}
},
{
"type": "object",
"required": [
"atome_redirect"
],
"properties": {
"atome_redirect": {
"type": "object"
}
}
}
]
},
"PayPalWalletData": {
"type": "object",
"required": [
"token"
],
"properties": {
"token": {
"type": "string",
"description": "Token generated for the Apple pay"
}
}
},
"PaylaterResponse": {
"type": "object",
"properties": {
"klarna_sdk": {
"allOf": [
{
"$ref": "#/components/schemas/KlarnaSdkPaymentMethodResponse"
}
],
"nullable": true
}
}
},
"PaymentAttemptResponse": {
"type": "object",
"required": [
"attempt_id",
"status",
"amount",
"created_at",
"modified_at"
],
"properties": {
"attempt_id": {
"type": "string",
"description": "Unique identifier for the attempt"
},
"status": {
"$ref": "#/components/schemas/AttemptStatus"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment attempt amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6540
},
"order_tax_amount": {
"type": "integer",
"format": "int64",
"description": "The payment attempt tax_amount.",
"example": 6540,
"nullable": true
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payment",
"nullable": true
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector, the error message is received here",
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Time at which the payment attempt was created",
"example": "2022-09-10T10:11:12Z"
},
"modified_at": {
"type": "string",
"format": "date-time",
"description": "Time at which the payment attempt was last modified",
"example": "2022-09-10T10:11:12Z"
},
"cancellation_reason": {
"type": "string",
"description": "If the payment was cancelled the reason will be provided here",
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate, can be use instead of payment_method_data",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the error code is received here",
"nullable": true
},
"payment_token": {
"type": "string",
"description": "Provide a reference to a stored payment method",
"nullable": true
},
"connector_metadata": {
"description": "Additional data related to some connectors",
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"reference_id": {
"type": "string",
"description": "Reference to the payment at connector side",
"example": "993672945374576J",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "(This field is not live yet)Error code unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "(This field is not live yet)Error message unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"client_source": {
"type": "string",
"description": "Value passed in X-CLIENT-SOURCE header during payments confirm request by the client",
"nullable": true
},
"client_version": {
"type": "string",
"description": "Value passed in X-CLIENT-VERSION header during payments confirm request by the client",
"nullable": true
}
}
},
"PaymentChargeType": {
"oneOf": [
{
"type": "object",
"required": [
"Stripe"
],
"properties": {
"Stripe": {
"$ref": "#/components/schemas/StripeChargeType"
}
}
}
]
},
"PaymentConnectorCategory": {
"type": "string",
"description": "Connector Access Method",
"enum": [
"payment_gateway",
"alternative_payment_method",
"bank_acquirer"
]
},
"PaymentCreatePaymentLinkConfig": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkConfigRequest"
}
],
"nullable": true
},
{
"type": "object"
}
],
"description": "Configure a custom payment link for the particular payment"
},
"PaymentExperience": {
"type": "string",
"description": "To indicate the type of payment experience that the customer would go through",
"enum": [
"redirect_to_url",
"invoke_sdk_client",
"display_qr_code",
"one_click",
"link_wallet",
"invoke_payment_app",
"display_wait_screen",
"collect_otp"
]
},
"PaymentExperienceTypes": {
"type": "object",
"required": [
"eligible_connectors"
],
"properties": {
"payment_experience_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"eligible_connectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of eligible connectors for a given payment experience",
"example": [
"stripe",
"adyen"
]
}
}
},
"PaymentLinkBackgroundImageConfig": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "URL of the image",
"example": "https://hyperswitch.io/favicon.ico"
},
"position": {
"allOf": [
{
"$ref": "#/components/schemas/ElementPosition"
}
],
"nullable": true
},
"size": {
"allOf": [
{
"$ref": "#/components/schemas/ElementSize"
}
],
"nullable": true
}
}
},
"PaymentLinkConfig": {
"type": "object",
"required": [
"theme",
"logo",
"seller_name",
"sdk_layout",
"display_sdk_only",
"enabled_saved_payment_method",
"hide_card_nickname_field",
"show_card_form_by_default",
"enable_button_only_on_form_ready"
],
"properties": {
"theme": {
"type": "string",
"description": "custom theme for the payment link"
},
"logo": {
"type": "string",
"description": "merchant display logo"
},
"seller_name": {
"type": "string",
"description": "Custom merchant name for payment link"
},
"sdk_layout": {
"type": "string",
"description": "Custom layout for sdk"
},
"display_sdk_only": {
"type": "boolean",
"description": "Display only the sdk for payment link"
},
"enabled_saved_payment_method": {
"type": "boolean",
"description": "Enable saved payment method option for payment link"
},
"hide_card_nickname_field": {
"type": "boolean",
"description": "Hide card nickname field option for payment link"
},
"show_card_form_by_default": {
"type": "boolean",
"description": "Show card form by default for payment link"
},
"allowed_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of allowed domains (glob patterns) where this link can be embedded / opened from",
"uniqueItems": true,
"nullable": true
},
"transaction_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentLinkTransactionDetails"
},
"description": "Dynamic details related to merchant to be rendered in payment link",
"nullable": true
},
"background_image": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkBackgroundImageConfig"
}
],
"nullable": true
},
"details_layout": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkDetailsLayout"
}
],
"nullable": true
},
"branding_visibility": {
"type": "boolean",
"description": "Toggle for HyperSwitch branding visibility",
"nullable": true
},
"payment_button_text": {
"type": "string",
"description": "Text for payment link's handle confirm button",
"nullable": true
},
"custom_message_for_card_terms": {
"type": "string",
"description": "Text for customizing message for card terms",
"nullable": true
},
"payment_button_colour": {
"type": "string",
"description": "Custom background colour for payment link's handle confirm button",
"nullable": true
},
"skip_status_screen": {
"type": "boolean",
"description": "Skip the status screen after payment completion",
"nullable": true
},
"payment_button_text_colour": {
"type": "string",
"description": "Custom text colour for payment link's handle confirm button",
"nullable": true
},
"background_colour": {
"type": "string",
"description": "Custom background colour for the payment link",
"nullable": true
},
"sdk_ui_rules": {
"type": "object",
"description": "SDK configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"payment_link_ui_rules": {
"type": "object",
"description": "Payment link configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"enable_button_only_on_form_ready": {
"type": "boolean",
"description": "Flag to enable the button only when the payment form is ready for submission"
}
}
},
"PaymentLinkConfigRequest": {
"type": "object",
"properties": {
"theme": {
"type": "string",
"description": "custom theme for the payment link",
"example": "#4E6ADD",
"nullable": true,
"maxLength": 255
},
"logo": {
"type": "string",
"description": "merchant display logo",
"example": "https://i.pinimg.com/736x/4d/83/5c/4d835ca8aafbbb15f84d07d926fda473.jpg",
"nullable": true,
"maxLength": 255
},
"seller_name": {
"type": "string",
"description": "Custom merchant name for payment link",
"example": "hyperswitch",
"nullable": true,
"maxLength": 255
},
"sdk_layout": {
"type": "string",
"description": "Custom layout for sdk",
"example": "accordion",
"nullable": true,
"maxLength": 255
},
"display_sdk_only": {
"type": "boolean",
"description": "Display only the sdk for payment link",
"default": false,
"example": true,
"nullable": true
},
"enabled_saved_payment_method": {
"type": "boolean",
"description": "Enable saved payment method option for payment link",
"default": false,
"example": true,
"nullable": true
},
"hide_card_nickname_field": {
"type": "boolean",
"description": "Hide card nickname field option for payment link",
"default": false,
"example": true,
"nullable": true
},
"show_card_form_by_default": {
"type": "boolean",
"description": "Show card form by default for payment link",
"default": true,
"example": true,
"nullable": true
},
"transaction_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentLinkTransactionDetails"
},
"description": "Dynamic details related to merchant to be rendered in payment link",
"nullable": true
},
"background_image": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkBackgroundImageConfig"
}
],
"nullable": true
},
"details_layout": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkDetailsLayout"
}
],
"nullable": true
},
"payment_button_text": {
"type": "string",
"description": "Text for payment link's handle confirm button",
"nullable": true
},
"custom_message_for_card_terms": {
"type": "string",
"description": "Text for customizing message for card terms",
"nullable": true
},
"payment_button_colour": {
"type": "string",
"description": "Custom background colour for payment link's handle confirm button",
"nullable": true
},
"skip_status_screen": {
"type": "boolean",
"description": "Skip the status screen after payment completion",
"nullable": true
},
"payment_button_text_colour": {
"type": "string",
"description": "Custom text colour for payment link's handle confirm button",
"nullable": true
},
"background_colour": {
"type": "string",
"description": "Custom background colour for the payment link",
"nullable": true
},
"sdk_ui_rules": {
"type": "object",
"description": "SDK configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"payment_link_ui_rules": {
"type": "object",
"description": "Payment link configuration rules",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"nullable": true
},
"enable_button_only_on_form_ready": {
"type": "boolean",
"description": "Flag to enable the button only when the payment form is ready for submission",
"nullable": true
}
}
},
"PaymentLinkDetailsLayout": {
"type": "string",
"enum": [
"layout1",
"layout2"
]
},
"PaymentLinkInitiateRequest": {
"type": "object",
"required": [
"merchant_id",
"payment_id"
],
"properties": {
"merchant_id": {
"type": "string"
},
"payment_id": {
"type": "string"
}
}
},
"PaymentLinkResponse": {
"type": "object",
"required": [
"link",
"payment_link_id"
],
"properties": {
"link": {
"type": "string",
"description": "URL for rendering the open payment link"
},
"secure_link": {
"type": "string",
"description": "URL for rendering the secure payment link",
"nullable": true
},
"payment_link_id": {
"type": "string",
"description": "Identifier for the payment link"
}
}
},
"PaymentLinkStatus": {
"type": "string",
"description": "Status Of the Payment Link",
"enum": [
"active",
"expired"
]
},
"PaymentLinkTransactionDetails": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string",
"description": "Key for the transaction details",
"example": "Policy-Number",
"maxLength": 255
},
"value": {
"type": "string",
"description": "Value for the transaction details",
"example": "297472368473924",
"maxLength": 255
},
"ui_configuration": {
"allOf": [
{
"$ref": "#/components/schemas/TransactionDetailsUiConfiguration"
}
],
"nullable": true
}
}
},
"PaymentListConstraints": {
"type": "object",
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"starting_after": {
"type": "string",
"description": "A cursor for use in pagination, fetch the next list after some object",
"example": "pay_fafa124123",
"nullable": true
},
"ending_before": {
"type": "string",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"example": "pay_fafa124123",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int32",
"description": "limit on the number of objects to return",
"default": 10,
"maximum": 100,
"minimum": 0
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which payment is created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"created.lt": {
"type": "string",
"format": "date-time",
"description": "Time less than the payment created time",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"created.gt": {
"type": "string",
"format": "date-time",
"description": "Time greater than the payment created time",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"created.lte": {
"type": "string",
"format": "date-time",
"description": "Time less than or equals to the payment created time",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"created.gte": {
"type": "string",
"format": "date-time",
"description": "Time greater than or equals to the payment created time",
"example": "2022-09-10T10:11:12Z",
"nullable": true
}
},
"additionalProperties": false
},
"PaymentListResponse": {
"type": "object",
"required": [
"size",
"data"
],
"properties": {
"size": {
"type": "integer",
"description": "The number of payments included in the list",
"minimum": 0
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentsResponse"
}
}
}
},
"PaymentMethod": {
"type": "string",
"description": "Indicates the type of payment method. Eg: 'card', 'wallet', etc.",
"enum": [
"card",
"card_redirect",
"pay_later",
"wallet",
"bank_redirect",
"bank_transfer",
"crypto",
"bank_debit",
"reward",
"real_time_payment",
"upi",
"voucher",
"gift_card",
"open_banking",
"mobile_payment"
]
},
"PaymentMethodCollectLinkRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"customer_id"
],
"properties": {
"pm_collect_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_92dnwed8s32bV9D8Snbiasd8v"
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"return_url": {
"type": "string",
"description": "Redirect to this URL post completion",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1/status",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
}
}
}
]
},
"PaymentMethodCollectLinkResponse": {
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
},
{
"type": "object",
"required": [
"pm_collect_link_id",
"customer_id",
"expiry",
"link"
],
"properties": {
"pm_collect_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_92dnwed8s32bV9D8Snbiasd8v"
},
"expiry": {
"type": "string",
"format": "date-time",
"description": "Time when this link will be expired in ISO8601 format",
"example": "2025-01-18T11:04:09.922Z"
},
"link": {
"type": "string",
"description": "URL to the form's link generated for collecting payment method details.",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1"
},
"return_url": {
"type": "string",
"description": "Redirect to this URL post completion",
"example": "https://sandbox.hyperswitch.io/payment_method/collect/pm_collect_link_2bdacf398vwzq5n422S1/status",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payment methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
}
}
}
]
},
"PaymentMethodCreate": {
"type": "object",
"required": [
"payment_method"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"payment_method_issuer": {
"type": "string",
"description": "The name of the bank/ provider issuing the payment method to the end user",
"example": "Citibank",
"nullable": true
},
"payment_method_issuer_code": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodIssuerCode"
}
],
"nullable": true
},
"card": {
"allOf": [
{
"$ref": "#/components/schemas/CardDetail"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"card_network": {
"type": "string",
"description": "The card network",
"example": "Visa",
"nullable": true
},
"bank_transfer": {
"allOf": [
{
"$ref": "#/components/schemas/Bank"
}
],
"nullable": true
},
"wallet": {
"allOf": [
{
"$ref": "#/components/schemas/Wallet"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "For Client based calls, SDK will use the client_secret\nin order to call /payment_methods\nClient secret will be generated whenever a new\npayment method is created",
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodCreateData"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"PaymentMethodCreateData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardDetail"
}
}
}
]
},
"PaymentMethodData": {
"oneOf": [
{
"type": "object",
"title": "Card",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/Card"
}
}
},
{
"type": "object",
"title": "CardRedirect",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"$ref": "#/components/schemas/CardRedirectData"
}
}
},
{
"type": "object",
"title": "Wallet",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletData"
}
}
},
{
"type": "object",
"title": "PayLater",
"required": [
"pay_later"
],
"properties": {
"pay_later": {
"$ref": "#/components/schemas/PayLaterData"
}
}
},
{
"type": "object",
"title": "BankRedirect",
"required": [
"bank_redirect"
],
"properties": {
"bank_redirect": {
"$ref": "#/components/schemas/BankRedirectData"
}
}
},
{
"type": "object",
"title": "BankDebit",
"required": [
"bank_debit"
],
"properties": {
"bank_debit": {
"$ref": "#/components/schemas/BankDebitData"
}
}
},
{
"type": "object",
"title": "BankTransfer",
"required": [
"bank_transfer"
],
"properties": {
"bank_transfer": {
"$ref": "#/components/schemas/BankTransferData"
}
}
},
{
"type": "object",
"title": "RealTimePayment",
"required": [
"real_time_payment"
],
"properties": {
"real_time_payment": {
"$ref": "#/components/schemas/RealTimePaymentData"
}
}
},
{
"type": "object",
"title": "Crypto",
"required": [
"crypto"
],
"properties": {
"crypto": {
"$ref": "#/components/schemas/CryptoData"
}
}
},
{
"type": "string",
"title": "MandatePayment",
"enum": [
"mandate_payment"
]
},
{
"type": "string",
"title": "Reward",
"enum": [
"reward"
]
},
{
"type": "object",
"title": "Upi",
"required": [
"upi"
],
"properties": {
"upi": {
"$ref": "#/components/schemas/UpiData"
}
}
},
{
"type": "object",
"title": "Voucher",
"required": [
"voucher"
],
"properties": {
"voucher": {
"$ref": "#/components/schemas/VoucherData"
}
}
},
{
"type": "object",
"title": "GiftCard",
"required": [
"gift_card"
],
"properties": {
"gift_card": {
"$ref": "#/components/schemas/GiftCardData"
}
}
},
{
"type": "object",
"title": "CardToken",
"required": [
"card_token"
],
"properties": {
"card_token": {
"$ref": "#/components/schemas/CardToken"
}
}
},
{
"type": "object",
"title": "OpenBanking",
"required": [
"open_banking"
],
"properties": {
"open_banking": {
"$ref": "#/components/schemas/OpenBankingData"
}
}
},
{
"type": "object",
"title": "MobilePayment",
"required": [
"mobile_payment"
],
"properties": {
"mobile_payment": {
"$ref": "#/components/schemas/MobilePaymentData"
}
}
}
]
},
"PaymentMethodDataRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodData"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
}
}
],
"description": "The payment method information provided for making a payment"
},
"PaymentMethodDataResponse": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardResponse"
}
}
},
{
"type": "object",
"required": [
"bank_transfer"
],
"properties": {
"bank_transfer": {
"$ref": "#/components/schemas/BankTransferResponse"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletResponse"
}
}
},
{
"type": "object",
"required": [
"pay_later"
],
"properties": {
"pay_later": {
"$ref": "#/components/schemas/PaylaterResponse"
}
}
},
{
"type": "object",
"required": [
"bank_redirect"
],
"properties": {
"bank_redirect": {
"$ref": "#/components/schemas/BankRedirectResponse"
}
}
},
{
"type": "object",
"required": [
"crypto"
],
"properties": {
"crypto": {
"$ref": "#/components/schemas/CryptoResponse"
}
}
},
{
"type": "object",
"required": [
"bank_debit"
],
"properties": {
"bank_debit": {
"$ref": "#/components/schemas/BankDebitResponse"
}
}
},
{
"type": "object",
"required": [
"mandate_payment"
],
"properties": {
"mandate_payment": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"reward"
],
"properties": {
"reward": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"real_time_payment"
],
"properties": {
"real_time_payment": {
"$ref": "#/components/schemas/RealTimePaymentDataResponse"
}
}
},
{
"type": "object",
"required": [
"upi"
],
"properties": {
"upi": {
"$ref": "#/components/schemas/UpiResponse"
}
}
},
{
"type": "object",
"required": [
"voucher"
],
"properties": {
"voucher": {
"$ref": "#/components/schemas/VoucherResponse"
}
}
},
{
"type": "object",
"required": [
"gift_card"
],
"properties": {
"gift_card": {
"$ref": "#/components/schemas/GiftCardResponse"
}
}
},
{
"type": "object",
"required": [
"card_redirect"
],
"properties": {
"card_redirect": {
"$ref": "#/components/schemas/CardRedirectResponse"
}
}
},
{
"type": "object",
"required": [
"card_token"
],
"properties": {
"card_token": {
"$ref": "#/components/schemas/CardTokenResponse"
}
}
},
{
"type": "object",
"required": [
"open_banking"
],
"properties": {
"open_banking": {
"$ref": "#/components/schemas/OpenBankingResponse"
}
}
},
{
"type": "object",
"required": [
"mobile_payment"
],
"properties": {
"mobile_payment": {
"$ref": "#/components/schemas/MobilePaymentResponse"
}
}
}
]
},
"PaymentMethodDataResponseWithBilling": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataResponse"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
}
}
}
]
},
"PaymentMethodDeleteResponse": {
"type": "object",
"required": [
"payment_method_id",
"deleted"
],
"properties": {
"payment_method_id": {
"type": "string",
"description": "The unique identifier of the Payment method",
"example": "card_rGK4Vi5iSW70MY7J2mIg"
},
"deleted": {
"type": "boolean",
"description": "Whether payment method was deleted or not",
"example": true
}
}
},
"PaymentMethodIssuerCode": {
"type": "string",
"enum": [
"jp_hdfc",
"jp_icici",
"jp_googlepay",
"jp_applepay",
"jp_phonepay",
"jp_wechat",
"jp_sofort",
"jp_giropay",
"jp_sepa",
"jp_bacs"
]
},
"PaymentMethodListResponse": {
"type": "object",
"required": [
"currency",
"payment_methods",
"mandate_payment",
"show_surcharge_breakup_screen",
"request_external_three_ds_authentication",
"is_tax_calculation_enabled"
],
"properties": {
"redirect_url": {
"type": "string",
"description": "Redirect URL of the merchant",
"example": "https://www.google.com",
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResponsePaymentMethodsEnabled"
},
"description": "Information about the payment method"
},
"mandate_payment": {
"$ref": "#/components/schemas/MandateType"
},
"merchant_name": {
"type": "string",
"nullable": true
},
"show_surcharge_breakup_screen": {
"type": "boolean",
"description": "flag to indicate if surcharge and tax breakup screen should be shown or not"
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentType"
}
],
"nullable": true
},
"request_external_three_ds_authentication": {
"type": "boolean",
"description": "flag to indicate whether to perform external 3ds authentication",
"example": true
},
"collect_shipping_details_from_wallets": {
"type": "boolean",
"description": "flag that indicates whether to collect shipping details from wallets or from the customer",
"nullable": true
},
"collect_billing_details_from_wallets": {
"type": "boolean",
"description": "flag that indicates whether to collect billing details from wallets or from the customer",
"nullable": true
},
"is_tax_calculation_enabled": {
"type": "boolean",
"description": "flag that indicates whether to calculate tax on the order amount"
}
}
},
"PaymentMethodResponse": {
"type": "object",
"required": [
"merchant_id",
"payment_method_id",
"payment_method",
"recurring_enabled",
"installment_payment_enabled"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "Unique identifier for a merchant",
"example": "merchant_1671528864"
},
"customer_id": {
"type": "string",
"description": "The unique identifier of the customer.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"payment_method_id": {
"type": "string",
"description": "The unique identifier of the Payment method",
"example": "card_rGK4Vi5iSW70MY7J2mIg"
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"card": {
"allOf": [
{
"$ref": "#/components/schemas/CardDetailFromLocker"
}
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for recurring payments",
"example": true
},
"installment_payment_enabled": {
"type": "boolean",
"description": "Indicates whether the payment method is eligible for installment payments",
"example": true
},
"payment_experience": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentExperience"
},
"description": "Type of payment experience enabled with the connector",
"example": [
"redirect_to_url"
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment method was created",
"example": "2023-01-18T11:04:09.922Z",
"nullable": true
},
"bank_transfer": {
"allOf": [
{
"$ref": "#/components/schemas/Bank"
}
],
"nullable": true
},
"last_used_at": {
"type": "string",
"format": "date-time",
"example": "2024-02-24T11:04:09.922Z",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "For Client based calls",
"nullable": true
}
}
},
"PaymentMethodSpecificFeatures": {
"oneOf": [
{
"$ref": "#/components/schemas/CardSpecificFeatures"
}
]
},
"PaymentMethodStatus": {
"type": "string",
"description": "Payment Method Status",
"enum": [
"active",
"inactive",
"processing",
"awaiting_data"
]
},
"PaymentMethodType": {
"type": "string",
"description": "Indicates the sub type of payment method. Eg: 'google_pay' & 'apple_pay' for wallets.",
"enum": [
"ach",
"affirm",
"afterpay_clearpay",
"alfamart",
"ali_pay",
"ali_pay_hk",
"alma",
"amazon_pay",
"apple_pay",
"atome",
"bacs",
"bancontact_card",
"becs",
"benefit",
"bizum",
"blik",
"boleto",
"bca_bank_transfer",
"bni_va",
"bri_va",
"card_redirect",
"cimb_va",
"classic",
"credit",
"crypto_currency",
"cashapp",
"dana",
"danamon_va",
"debit",
"duit_now",
"efecty",
"eft",
"eps",
"fps",
"evoucher",
"giropay",
"givex",
"google_pay",
"go_pay",
"gcash",
"ideal",
"interac",
"indomaret",
"klarna",
"kakao_pay",
"local_bank_redirect",
"mandiri_va",
"knet",
"mb_way",
"mobile_pay",
"momo",
"momo_atm",
"multibanco",
"online_banking_thailand",
"online_banking_czech_republic",
"online_banking_finland",
"online_banking_fpx",
"online_banking_poland",
"online_banking_slovakia",
"oxxo",
"pago_efectivo",
"permata_bank_transfer",
"open_banking_uk",
"pay_bright",
"paypal",
"paze",
"pix",
"pay_safe_card",
"przelewy24",
"prompt_pay",
"pse",
"red_compra",
"red_pagos",
"samsung_pay",
"sepa",
"sepa_bank_transfer",
"sofort",
"swish",
"touch_n_go",
"trustly",
"twint",
"upi_collect",
"upi_intent",
"vipps",
"viet_qr",
"venmo",
"walley",
"we_chat_pay",
"seven_eleven",
"lawson",
"mini_stop",
"family_mart",
"seicomart",
"pay_easy",
"local_bank_transfer",
"mifinity",
"open_banking_pis",
"direct_carrier_billing",
"instant_bank_transfer"
]
},
"PaymentMethodUpdate": {
"type": "object",
"properties": {
"card": {
"allOf": [
{
"$ref": "#/components/schemas/CardDetailUpdate"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "This is a 15 minute expiry token which shall be used from the client to authenticate and perform sessions from the SDK",
"example": "secret_k2uj3he2893eiu2d",
"nullable": true,
"maxLength": 30,
"minLength": 30
}
},
"additionalProperties": false
},
"PaymentMethodsEnabled": {
"type": "object",
"description": "Details of all the payment methods enabled for the connector for the given merchant account",
"required": [
"payment_method"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RequestPaymentMethodTypes"
},
"description": "Subtype of payment method",
"example": [
"credit"
],
"nullable": true
}
},
"additionalProperties": false
},
"PaymentProcessingDetails": {
"type": "object",
"required": [
"payment_processing_certificate",
"payment_processing_certificate_key"
],
"properties": {
"payment_processing_certificate": {
"type": "string"
},
"payment_processing_certificate_key": {
"type": "string"
}
}
},
"PaymentProcessingDetailsAt": {
"oneOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentProcessingDetails"
},
{
"type": "object",
"required": [
"payment_processing_details_at"
],
"properties": {
"payment_processing_details_at": {
"type": "string",
"enum": [
"Hyperswitch"
]
}
}
}
]
},
{
"type": "object",
"required": [
"payment_processing_details_at"
],
"properties": {
"payment_processing_details_at": {
"type": "string",
"enum": [
"Connector"
]
}
}
}
],
"discriminator": {
"propertyName": "payment_processing_details_at"
}
},
"PaymentRetrieveBody": {
"type": "object",
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"nullable": true
},
"force_sync": {
"type": "boolean",
"description": "Decider to enable or disable the connector call for retrieve request",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "This is a token which expires after 15 minutes, used from the client to authenticate and create sessions from the SDK",
"nullable": true
},
"expand_captures": {
"type": "boolean",
"description": "If enabled provides list of captures linked to latest attempt",
"nullable": true
},
"expand_attempts": {
"type": "boolean",
"description": "If enabled provides list of attempts linked to payment intent",
"nullable": true
}
}
},
"PaymentType": {
"type": "string",
"description": "The type of the payment that differentiates between normal and various types of mandate payments. Use 'setup_mandate' in case of zero auth flow.",
"enum": [
"normal",
"new_mandate",
"setup_mandate",
"recurring_mandate"
]
},
"PaymentsCancelRequest": {
"type": "object",
"properties": {
"cancellation_reason": {
"type": "string",
"description": "The reason for the payment cancel",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
}
}
},
"PaymentsCaptureRequest": {
"type": "object",
"required": [
"amount_to_capture"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The unique identifier for the merchant",
"nullable": true
},
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured/ debited from the user's payment method. If not passed the full amount will be captured.",
"example": 6540
},
"refund_uncaptured_amount": {
"type": "boolean",
"description": "Decider to refund the uncaptured amount",
"nullable": true
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements.",
"nullable": true
},
"statement_descriptor_prefix": {
"type": "string",
"description": "Concatenated with the statement descriptor suffix that’s set on the account to form the complete statement descriptor.",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
}
}
},
"PaymentsCompleteAuthorizeRequest": {
"type": "object",
"required": [
"client_secret"
],
"properties": {
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
}
},
"PaymentsConfirmRequest": {
"type": "object",
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"nullable": true,
"minimum": 0
},
"order_tax_amount": {
"type": "integer",
"format": "int64",
"description": "Total tax amount applicable to the order",
"example": 6540,
"nullable": true
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured / debited from the users payment method. It shall be in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, the default amount_to_capture will be the payment amount. Also, it must be less than or equal to the original payment account.",
"example": 6540,
"nullable": true
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment. This is required for tax calculation in some regions.",
"example": 6540,
"nullable": true
},
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant. The value for this field can be specified in the request, it will be auto generated otherwise and returned in the API response.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/StraightThroughAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"description": "This allows to manually select a connector with which the payment can go through.",
"example": [
"stripe",
"adyen"
],
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "Whether to confirm the payment (if applicable). It can be used to completely process a payment by attaching a payment method, setting `confirm=true` and `capture_method = automatic` in the *Payments/Create API* request itself.",
"default": false,
"example": true,
"nullable": true
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. When making a recurring payment by passing a mandate_id, this parameter is mandatory",
"example": true,
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataRequest"
}
],
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "As Hyperswitch tokenises the sensitive details about the payments method, it provides the payment_token as a reference to a stored payment method, ensuring that the sensitive details are not exposed in any manner.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate. To do Recurring payments after a mandate has been created, pass the mandate_id instead of payment_method_data",
"example": "mandate_iwer89rnjef349dni3",
"nullable": true,
"maxLength": 255
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"retry_action": {
"allOf": [
{
"$ref": "#/components/schemas/RetryAction"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"payment_link": {
"type": "boolean",
"description": "Whether to generate the payment link for this payment or not (if applicable)",
"default": false,
"example": true,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentCreatePaymentLinkConfig"
}
],
"nullable": true
},
"payment_link_config_id": {
"type": "string",
"description": "Custom payment link config id set at business profile, send only if business_specific_configs is configured",
"nullable": true
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentType"
}
],
"nullable": true
},
"request_incremental_authorization": {
"type": "boolean",
"description": "Request an incremental authorization, i.e., increase the authorized amount on a confirmed payment before you capture it.",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"type": "boolean",
"description": "Whether to perform external authentication (if applicable)",
"example": true,
"nullable": true
},
"recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringDetails"
}
],
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/SplitPaymentsRequest"
}
],
"nullable": true
},
"request_extended_authorization": {
"type": "boolean",
"description": "Optional boolean value to extent authorization period of this payment\n\ncapture method must be manual or manual_multiple",
"default": false,
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"skip_external_tax_calculation": {
"type": "boolean",
"description": "Whether to calculate tax for this payment intent",
"nullable": true
},
"psd2_sca_exemption_type": {
"allOf": [
{
"$ref": "#/components/schemas/ScaExemptionType"
}
],
"nullable": true
},
"ctp_service_details": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceDetails"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
}
},
"PaymentsCreateRequest": {
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"minimum": 0
},
"order_tax_amount": {
"type": "integer",
"format": "int64",
"description": "Total tax amount applicable to the order",
"example": 6540,
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured / debited from the users payment method. It shall be in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, the default amount_to_capture will be the payment amount. Also, it must be less than or equal to the original payment account.",
"example": 6540,
"nullable": true
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment. This is required for tax calculation in some regions.",
"example": 6540,
"nullable": true
},
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant. The value for this field can be specified in the request, it will be auto generated otherwise and returned in the API response.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/StraightThroughAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"description": "This allows to manually select a connector with which the payment can go through.",
"example": [
"stripe",
"adyen"
],
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "Whether to confirm the payment (if applicable). It can be used to completely process a payment by attaching a payment method, setting `confirm=true` and `capture_method = automatic` in the *Payments/Create API* request itself.",
"default": false,
"example": true,
"nullable": true
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. When making a recurring payment by passing a mandate_id, this parameter is mandatory",
"example": true,
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataRequest"
}
],
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "As Hyperswitch tokenises the sensitive details about the payments method, it provides the payment_token as a reference to a stored payment method, ensuring that the sensitive details are not exposed in any manner.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate. To do Recurring payments after a mandate has been created, pass the mandate_id instead of payment_method_data",
"example": "mandate_iwer89rnjef349dni3",
"nullable": true,
"maxLength": 255
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payment.\nTo be deprecated soon. Pass the profile_id instead",
"example": "food",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"payment_link": {
"type": "boolean",
"description": "Whether to generate the payment link for this payment or not (if applicable)",
"default": false,
"example": true,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentCreatePaymentLinkConfig"
}
],
"nullable": true
},
"payment_link_config_id": {
"type": "string",
"description": "Custom payment link config id set at business profile, send only if business_specific_configs is configured",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to be used for this payment, if not passed the default business profile associated with the merchant account will be used. It is mandatory in case multiple business profiles have been set up.",
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/RequestSurchargeDetails"
}
],
"nullable": true
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentType"
}
],
"nullable": true
},
"request_incremental_authorization": {
"type": "boolean",
"description": "Request an incremental authorization, i.e., increase the authorized amount on a confirmed payment before you capture it.",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"type": "boolean",
"description": "Whether to perform external authentication (if applicable)",
"example": true,
"nullable": true
},
"recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringDetails"
}
],
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/SplitPaymentsRequest"
}
],
"nullable": true
},
"request_extended_authorization": {
"type": "boolean",
"description": "Optional boolean value to extent authorization period of this payment\n\ncapture method must be manual or manual_multiple",
"default": false,
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"skip_external_tax_calculation": {
"type": "boolean",
"description": "Whether to calculate tax for this payment intent",
"nullable": true
},
"psd2_sca_exemption_type": {
"allOf": [
{
"$ref": "#/components/schemas/ScaExemptionType"
}
],
"nullable": true
},
"ctp_service_details": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceDetails"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
}
},
"PaymentsCreateResponseOpenApi": {
"type": "object",
"required": [
"payment_id",
"merchant_id",
"status",
"amount",
"net_amount",
"amount_capturable",
"currency",
"payment_method",
"attempt_count"
],
"properties": {
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"maxLength": 255
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/IntentStatus"
}
],
"default": "requires_confirmation"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6540
},
"net_amount": {
"type": "integer",
"format": "int64",
"description": "The payment net amount. net_amount = amount + surcharge_details.surcharge_amount + surcharge_details.tax_amount + shipping_cost + order_tax_amount,\nIf no surcharge_details, shipping_cost, order_tax_amount, net_amount = amount",
"example": 6540
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment.",
"example": 6540,
"nullable": true
},
"amount_capturable": {
"type": "integer",
"format": "int64",
"description": "The maximum amount that could be captured from the payment",
"example": 6540,
"minimum": 100
},
"amount_received": {
"type": "integer",
"format": "int64",
"description": "The amount which is already captured from the payment, this helps in the cases where merchants can't capture all capturable amount at once.",
"example": 6540,
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payment",
"example": "stripe",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payment was created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.\nThis field will be deprecated soon. Please refer to `customer.id`",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"description": {
"type": "string",
"description": "A description of the payment",
"example": "It's my first payment request",
"nullable": true
},
"refunds": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundResponse"
},
"description": "List of refunds that happened on this intent, as same payment intent can have multiple refund requests depending on the nature of order",
"nullable": true
},
"disputes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DisputeResponsePaymentsRetrieve"
},
"description": "List of disputes that happened on this intent",
"nullable": true
},
"attempts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentAttemptResponse"
},
"description": "List of attempts that happened on this intent",
"nullable": true
},
"captures": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CaptureResponse"
},
"description": "List of captures done on latest attempt",
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate, can be used instead of payment_method_data, in case of setting up recurring payments",
"example": "mandate_iwer89rnjef349dni3",
"nullable": true,
"maxLength": 255
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. This parameter can only be used with confirm=true.",
"example": true,
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataResponseWithBilling"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "Provide a reference to a stored payment method",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Information about the product , quantity and amount for connectors. (e.g. Klarna)",
"example": "[{\n \"product_name\": \"gillete creme\",\n \"quantity\": 15,\n \"amount\" : 900\n }]",
"nullable": true
},
"email": {
"type": "string",
"description": "description: The customer's email address\nThis field will be deprecated soon. Please refer to `customer.email` object",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "description: The customer's name\nThis field will be deprecated soon. Please refer to `customer.name` object",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number\nThis field will be deprecated soon. Please refer to `customer.phone` object",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 255 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"next_action": {
"allOf": [
{
"$ref": "#/components/schemas/NextActionData"
}
],
"nullable": true
},
"cancellation_reason": {
"type": "string",
"description": "If the payment was cancelled the reason will be provided here",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_label": {
"type": "string",
"description": "The connector used for this payment along with the country and business details",
"example": "stripe_US_food",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "The business label of merchant for this payment",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "The business_sub_label for this payment",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Allowed Payment Method Types for a given PaymentIntent",
"nullable": true
},
"ephemeral_key": {
"allOf": [
{
"$ref": "#/components/schemas/EphemeralKeyCreateResponse"
}
],
"nullable": true
},
"manual_retry_allowed": {
"type": "boolean",
"description": "If true the payment can be retried with same or different payment method which means the confirm call can be made again.",
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector",
"example": "993672945374576J",
"nullable": true
},
"frm_message": {
"allOf": [
{
"$ref": "#/components/schemas/FrmMessage"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"reference_id": {
"type": "string",
"description": "reference(Identifier) to the payment at connector side",
"example": "993672945374576J",
"nullable": true
},
"payment_link": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkResponse"
}
],
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this payment",
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/RequestSurchargeDetails"
}
],
"nullable": true
},
"attempt_count": {
"type": "integer",
"format": "int32",
"description": "Total number of attempts associated with this payment"
},
"merchant_decision": {
"type": "string",
"description": "Denotes the action(approve or reject) taken by merchant in case of manual review. Manual review can occur when the transaction is marked as risky by the frm_processor, payment processor or when there is underpayment/over payment incase of crypto payment",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"nullable": true
},
"incremental_authorization_allowed": {
"type": "boolean",
"description": "If true, incremental authorization can be performed on this payment, in case the funds authorized initially fall short.",
"nullable": true
},
"authorization_count": {
"type": "integer",
"format": "int32",
"description": "Total number of authorizations happened in an incremental_authorization payment",
"nullable": true
},
"incremental_authorizations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IncrementalAuthorizationResponse"
},
"description": "List of incremental authorizations happened to the payment",
"nullable": true
},
"external_authentication_details": {
"allOf": [
{
"$ref": "#/components/schemas/ExternalAuthenticationDetailsResponse"
}
],
"nullable": true
},
"external_3ds_authentication_attempted": {
"type": "boolean",
"description": "Flag indicating if external 3ds authentication is made or not",
"nullable": true
},
"expires_on": {
"type": "string",
"format": "date-time",
"description": "Date Time for expiry of the payment",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"fingerprint": {
"type": "string",
"description": "Payment Fingerprint, to identify a particular card.\nIt is a 20 character long alphanumeric code.",
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_method_id": {
"type": "string",
"description": "Identifier for Payment Method used for the payment",
"nullable": true
},
"payment_method_status": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodStatus"
}
],
"nullable": true
},
"updated": {
"type": "string",
"format": "date-time",
"description": "Date time at which payment was updated",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorChargeResponseData"
}
],
"nullable": true
},
"frm_metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. FRM Metadata is useful for storing additional, structured information on an object related to FRM.",
"nullable": true
},
"extended_authorization_applied": {
"type": "boolean",
"description": "flag that indicates if extended authorization is applied on this payment or not",
"nullable": true
},
"capture_before": {
"type": "string",
"format": "date-time",
"description": "date and time after which this payment cannot be captured",
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"connector_mandate_id": {
"type": "string",
"description": "Connector Identifier for the payment method",
"nullable": true
},
"card_discovery": {
"allOf": [
{
"$ref": "#/components/schemas/CardDiscovery"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"force_3ds_challenge_trigger": {
"type": "boolean",
"description": "Indicates if 3ds challenge is triggered",
"nullable": true
},
"issuer_error_code": {
"type": "string",
"description": "Error code received from the issuer in case of failed payments",
"nullable": true
},
"issuer_error_message": {
"type": "string",
"description": "Error message received from the issuer in case of failed payments",
"nullable": true
}
}
},
"PaymentsDynamicTaxCalculationRequest": {
"type": "object",
"required": [
"shipping",
"client_secret",
"payment_method_type"
],
"properties": {
"shipping": {
"$ref": "#/components/schemas/Address"
},
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"session_id": {
"type": "string",
"description": "Session Id",
"nullable": true
}
}
},
"PaymentsDynamicTaxCalculationResponse": {
"type": "object",
"required": [
"payment_id",
"net_amount",
"display_amount"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"net_amount": {
"$ref": "#/components/schemas/MinorUnit"
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"shipping_cost": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"display_amount": {
"$ref": "#/components/schemas/DisplayAmountOnSdk"
}
}
},
"PaymentsExternalAuthenticationRequest": {
"type": "object",
"required": [
"client_secret",
"device_channel",
"threeds_method_comp_ind"
],
"properties": {
"client_secret": {
"type": "string",
"description": "Client Secret"
},
"sdk_information": {
"allOf": [
{
"$ref": "#/components/schemas/SdkInformation"
}
],
"nullable": true
},
"device_channel": {
"$ref": "#/components/schemas/DeviceChannel"
},
"threeds_method_comp_ind": {
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
}
},
"PaymentsExternalAuthenticationResponse": {
"type": "object",
"required": [
"trans_status",
"three_ds_requestor_url"
],
"properties": {
"trans_status": {
"$ref": "#/components/schemas/TransactionStatus"
},
"acs_url": {
"type": "string",
"description": "Access Server URL to be used for challenge submission",
"nullable": true
},
"challenge_request": {
"type": "string",
"description": "Challenge request which should be sent to acs_url",
"nullable": true
},
"acs_reference_number": {
"type": "string",
"description": "Unique identifier assigned by the EMVCo(Europay, Mastercard and Visa)",
"nullable": true
},
"acs_trans_id": {
"type": "string",
"description": "Unique identifier assigned by the ACS to identify a single transaction",
"nullable": true
},
"three_dsserver_trans_id": {
"type": "string",
"description": "Unique identifier assigned by the 3DS Server to identify a single transaction",
"nullable": true
},
"acs_signed_content": {
"type": "string",
"description": "Contains the JWS object created by the ACS for the ARes(Authentication Response) message",
"nullable": true
},
"three_ds_requestor_url": {
"type": "string",
"description": "Three DS Requestor URL"
},
"three_ds_requestor_app_url": {
"type": "string",
"description": "Merchant app declaring their URL within the CReq message so that the Authentication app can call the Merchant app after OOB authentication has occurred",
"nullable": true
}
}
},
"PaymentsIncrementalAuthorizationRequest": {
"type": "object",
"required": [
"amount"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The total amount including previously authorized amount and additional amount",
"example": 6540
},
"reason": {
"type": "string",
"description": "Reason for incremental authorization",
"nullable": true
}
}
},
"PaymentsPostSessionTokensRequest": {
"type": "object",
"required": [
"client_secret",
"payment_method_type",
"payment_method"
],
"properties": {
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification."
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
}
}
},
"PaymentsPostSessionTokensResponse": {
"type": "object",
"required": [
"payment_id",
"status"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"next_action": {
"allOf": [
{
"$ref": "#/components/schemas/NextActionData"
}
],
"nullable": true
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/IntentStatus"
}
],
"default": "requires_confirmation"
}
}
},
"PaymentsRequest": {
"type": "object",
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"nullable": true,
"minimum": 0
},
"order_tax_amount": {
"type": "integer",
"format": "int64",
"description": "Total tax amount applicable to the order",
"example": 6540,
"nullable": true
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured / debited from the users payment method. It shall be in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, the default amount_to_capture will be the payment amount. Also, it must be less than or equal to the original payment account.",
"example": 6540,
"nullable": true
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment. This is required for tax calculation in some regions.",
"example": 6540,
"nullable": true
},
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant. The value for this field can be specified in the request, it will be auto generated otherwise and returned in the API response.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"nullable": true,
"maxLength": 255
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/StraightThroughAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"description": "This allows to manually select a connector with which the payment can go through.",
"example": [
"stripe",
"adyen"
],
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"capture_on": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment should be captured.\nProviding this field will automatically set `capture` to true",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "Whether to confirm the payment (if applicable). It can be used to completely process a payment by attaching a payment method, setting `confirm=true` and `capture_method = automatic` in the *Payments/Create API* request itself.",
"default": false,
"example": true,
"nullable": true
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"email": {
"type": "string",
"description": "The customer's email address.\nThis field will be deprecated soon, use the customer object instead",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "The customer's name.\nThis field will be deprecated soon, use the customer object instead.",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number\nThis field will be deprecated soon, use the customer object instead",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "The country code for the customer phone number\nThis field will be deprecated soon, use the customer object instead",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. When making a recurring payment by passing a mandate_id, this parameter is mandatory",
"example": true,
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataRequest"
}
],
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "As Hyperswitch tokenises the sensitive details about the payments method, it provides the payment_token as a reference to a stored payment method, ensuring that the sensitive details are not exposed in any manner.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"card_cvc": {
"type": "string",
"description": "This is used along with the payment_token field while collecting during saved card payments. This field will be deprecated soon, use the payment_method_data.card_token object instead",
"deprecated": true,
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate. To do Recurring payments after a mandate has been created, pass the mandate_id instead of payment_method_data",
"example": "mandate_iwer89rnjef349dni3",
"nullable": true,
"maxLength": 255
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payment.\nTo be deprecated soon. Pass the profile_id instead",
"example": "food",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "Business sub label for the payment",
"nullable": true
},
"retry_action": {
"allOf": [
{
"$ref": "#/components/schemas/RetryAction"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"payment_link": {
"type": "boolean",
"description": "Whether to generate the payment link for this payment or not (if applicable)",
"default": false,
"example": true,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentCreatePaymentLinkConfig"
}
],
"nullable": true
},
"payment_link_config_id": {
"type": "string",
"description": "Custom payment link config id set at business profile, send only if business_specific_configs is configured",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to be used for this payment, if not passed the default business profile associated with the merchant account will be used. It is mandatory in case multiple business profiles have been set up.",
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/RequestSurchargeDetails"
}
],
"nullable": true
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentType"
}
],
"nullable": true
},
"request_incremental_authorization": {
"type": "boolean",
"description": "Request an incremental authorization, i.e., increase the authorized amount on a confirmed payment before you capture it.",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"type": "boolean",
"description": "Whether to perform external authentication (if applicable)",
"example": true,
"nullable": true
},
"recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringDetails"
}
],
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/SplitPaymentsRequest"
}
],
"nullable": true
},
"request_extended_authorization": {
"type": "boolean",
"description": "Optional boolean value to extent authorization period of this payment\n\ncapture method must be manual or manual_multiple",
"default": false,
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"skip_external_tax_calculation": {
"type": "boolean",
"description": "Whether to calculate tax for this payment intent",
"nullable": true
},
"psd2_sca_exemption_type": {
"allOf": [
{
"$ref": "#/components/schemas/ScaExemptionType"
}
],
"nullable": true
},
"ctp_service_details": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceDetails"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"PaymentsResponse": {
"type": "object",
"required": [
"payment_id",
"merchant_id",
"status",
"amount",
"net_amount",
"amount_capturable",
"currency",
"payment_method",
"attempt_count"
],
"properties": {
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"maxLength": 255
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/IntentStatus"
}
],
"default": "requires_confirmation"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6540
},
"net_amount": {
"type": "integer",
"format": "int64",
"description": "The payment net amount. net_amount = amount + surcharge_details.surcharge_amount + surcharge_details.tax_amount + shipping_cost + order_tax_amount,\nIf no surcharge_details, shipping_cost, order_tax_amount, net_amount = amount",
"example": 6540
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment.",
"example": 6540,
"nullable": true
},
"amount_capturable": {
"type": "integer",
"format": "int64",
"description": "The maximum amount that could be captured from the payment",
"example": 6540,
"minimum": 100
},
"amount_received": {
"type": "integer",
"format": "int64",
"description": "The amount which is already captured from the payment, this helps in the cases where merchants can't capture all capturable amount at once.",
"example": 6540,
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payment",
"example": "stripe",
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payment was created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.\nThis field will be deprecated soon. Please refer to `customer.id`",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetailsResponse"
}
],
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payment",
"example": "It's my first payment request",
"nullable": true
},
"refunds": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundResponse"
},
"description": "List of refunds that happened on this intent, as same payment intent can have multiple refund requests depending on the nature of order",
"nullable": true
},
"disputes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DisputeResponsePaymentsRetrieve"
},
"description": "List of disputes that happened on this intent",
"nullable": true
},
"attempts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentAttemptResponse"
},
"description": "List of attempts that happened on this intent",
"nullable": true
},
"captures": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CaptureResponse"
},
"description": "List of captures done on latest attempt",
"nullable": true
},
"mandate_id": {
"type": "string",
"description": "A unique identifier to link the payment to a mandate, can be used instead of payment_method_data, in case of setting up recurring payments",
"example": "mandate_iwer89rnjef349dni3",
"nullable": true,
"maxLength": 255
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. This parameter can only be used with confirm=true.",
"example": true,
"nullable": true
},
"capture_on": {
"type": "string",
"format": "date-time",
"description": "A timestamp (ISO 8601 code) that determines when the payment should be captured.\nProviding this field will automatically set `capture` to true",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataResponseWithBilling"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "Provide a reference to a stored payment method",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Information about the product , quantity and amount for connectors. (e.g. Klarna)",
"example": "[{\n \"product_name\": \"gillete creme\",\n \"quantity\": 15,\n \"amount\" : 900\n }]",
"nullable": true
},
"email": {
"type": "string",
"description": "description: The customer's email address\nThis field will be deprecated soon. Please refer to `customer.email` object",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "description: The customer's name\nThis field will be deprecated soon. Please refer to `customer.name` object",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "The customer's phone number\nThis field will be deprecated soon. Please refer to `customer.phone` object",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 255 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"next_action": {
"allOf": [
{
"$ref": "#/components/schemas/NextActionData"
}
],
"nullable": true
},
"cancellation_reason": {
"type": "string",
"description": "If the payment was cancelled the reason will be provided here",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "error code unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "error message unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_label": {
"type": "string",
"description": "The connector used for this payment along with the country and business details",
"example": "stripe_US_food",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "The business label of merchant for this payment",
"nullable": true
},
"business_sub_label": {
"type": "string",
"description": "The business_sub_label for this payment",
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Allowed Payment Method Types for a given PaymentIntent",
"nullable": true
},
"ephemeral_key": {
"allOf": [
{
"$ref": "#/components/schemas/EphemeralKeyCreateResponse"
}
],
"nullable": true
},
"manual_retry_allowed": {
"type": "boolean",
"description": "If true the payment can be retried with same or different payment method which means the confirm call can be made again.",
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payment provided by the connector",
"example": "993672945374576J",
"nullable": true
},
"frm_message": {
"allOf": [
{
"$ref": "#/components/schemas/FrmMessage"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"feature_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureMetadata"
}
],
"nullable": true
},
"reference_id": {
"type": "string",
"description": "reference(Identifier) to the payment at connector side",
"example": "993672945374576J",
"nullable": true
},
"payment_link": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentLinkResponse"
}
],
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this payment",
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/RequestSurchargeDetails"
}
],
"nullable": true
},
"attempt_count": {
"type": "integer",
"format": "int32",
"description": "Total number of attempts associated with this payment"
},
"merchant_decision": {
"type": "string",
"description": "Denotes the action(approve or reject) taken by merchant in case of manual review. Manual review can occur when the transaction is marked as risky by the frm_processor, payment processor or when there is underpayment/over payment incase of crypto payment",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"nullable": true
},
"incremental_authorization_allowed": {
"type": "boolean",
"description": "If true, incremental authorization can be performed on this payment, in case the funds authorized initially fall short.",
"nullable": true
},
"authorization_count": {
"type": "integer",
"format": "int32",
"description": "Total number of authorizations happened in an incremental_authorization payment",
"nullable": true
},
"incremental_authorizations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IncrementalAuthorizationResponse"
},
"description": "List of incremental authorizations happened to the payment",
"nullable": true
},
"external_authentication_details": {
"allOf": [
{
"$ref": "#/components/schemas/ExternalAuthenticationDetailsResponse"
}
],
"nullable": true
},
"external_3ds_authentication_attempted": {
"type": "boolean",
"description": "Flag indicating if external 3ds authentication is made or not",
"nullable": true
},
"expires_on": {
"type": "string",
"format": "date-time",
"description": "Date Time for expiry of the payment",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"fingerprint": {
"type": "string",
"description": "Payment Fingerprint, to identify a particular card.\nIt is a 20 character long alphanumeric code.",
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_method_id": {
"type": "string",
"description": "Identifier for Payment Method used for the payment",
"nullable": true
},
"payment_method_status": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodStatus"
}
],
"nullable": true
},
"updated": {
"type": "string",
"format": "date-time",
"description": "Date time at which payment was updated",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorChargeResponseData"
}
],
"nullable": true
},
"frm_metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. FRM Metadata is useful for storing additional, structured information on an object related to FRM.",
"nullable": true
},
"extended_authorization_applied": {
"type": "boolean",
"description": "flag that indicates if extended authorization is applied on this payment or not",
"nullable": true
},
"capture_before": {
"type": "string",
"format": "date-time",
"description": "date and time after which this payment cannot be captured",
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"order_tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"connector_mandate_id": {
"type": "string",
"description": "Connector Identifier for the payment method",
"nullable": true
},
"card_discovery": {
"allOf": [
{
"$ref": "#/components/schemas/CardDiscovery"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"force_3ds_challenge_trigger": {
"type": "boolean",
"description": "Indicates if 3ds challenge is triggered",
"nullable": true
},
"issuer_error_code": {
"type": "string",
"description": "Error code received from the issuer in case of failed payments",
"nullable": true
},
"issuer_error_message": {
"type": "string",
"description": "Error message received from the issuer in case of failed payments",
"nullable": true
}
}
},
"PaymentsRetrieveRequest": {
"type": "object",
"required": [
"resource_id",
"force_sync"
],
"properties": {
"resource_id": {
"type": "string",
"description": "The type of ID (ex: payment intent id, payment attempt id or connector txn id)"
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"nullable": true
},
"force_sync": {
"type": "boolean",
"description": "Decider to enable or disable the connector call for retrieve request"
},
"param": {
"type": "string",
"description": "The parameters passed to a retrieve request",
"nullable": true
},
"connector": {
"type": "string",
"description": "The name of the connector",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "This is a token which expires after 15 minutes, used from the client to authenticate and create sessions from the SDK",
"nullable": true
},
"expand_captures": {
"type": "boolean",
"description": "If enabled provides list of captures linked to latest attempt",
"nullable": true
},
"expand_attempts": {
"type": "boolean",
"description": "If enabled provides list of attempts linked to payment intent",
"nullable": true
}
}
},
"PaymentsSessionRequest": {
"type": "object",
"required": [
"payment_id",
"client_secret",
"wallets"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"client_secret": {
"type": "string",
"description": "This is a token which expires after 15 minutes, used from the client to authenticate and create sessions from the SDK"
},
"wallets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "The list of the supported wallets"
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
}
}
},
"PaymentsSessionResponse": {
"type": "object",
"required": [
"payment_id",
"client_secret",
"session_token"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment"
},
"client_secret": {
"type": "string",
"description": "This is a token which expires after 15 minutes, used from the client to authenticate and create sessions from the SDK"
},
"session_token": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SessionToken"
},
"description": "The list of session token object"
}
}
},
"PaymentsUpdateRequest": {
"type": "object",
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency, (i.e) in cents for USD denomination, in yen for JPY denomination etc. E.g., Pass 100 to charge $1.00 and 1 for 1¥ since ¥ is a zero-decimal currency. Read more about [the Decimal and Non-Decimal Currencies](https://github.com/juspay/hyperswitch/wiki/Decimal-and-Non%E2%80%90Decimal-Currencies)",
"example": 6540,
"nullable": true,
"minimum": 0
},
"order_tax_amount": {
"type": "integer",
"format": "int64",
"description": "Total tax amount applicable to the order",
"example": 6540,
"nullable": true
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"amount_to_capture": {
"type": "integer",
"format": "int64",
"description": "The Amount to be captured / debited from the users payment method. It shall be in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, the default amount_to_capture will be the payment amount. Also, it must be less than or equal to the original payment account.",
"example": 6540,
"nullable": true
},
"shipping_cost": {
"type": "integer",
"format": "int64",
"description": "The shipping cost for the payment. This is required for tax calculation in some regions.",
"example": 6540,
"nullable": true
},
"payment_id": {
"type": "string",
"description": "Unique identifier for the payment. This ensures idempotency for multiple payments\nthat have been done by a single merchant. The value for this field can be specified in the request, it will be auto generated otherwise and returned in the API response.",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/StraightThroughAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Connector"
},
"description": "This allows to manually select a connector with which the payment can go through.",
"example": [
"stripe",
"adyen"
],
"nullable": true
},
"capture_method": {
"allOf": [
{
"$ref": "#/components/schemas/CaptureMethod"
}
],
"nullable": true
},
"authentication_type": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationType"
}
],
"default": "three_ds",
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "Whether to confirm the payment (if applicable). It can be used to completely process a payment by attaching a payment method, setting `confirm=true` and `capture_method = automatic` in the *Payments/Create API* request itself.",
"default": false,
"example": true,
"nullable": true
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 64,
"minLength": 1
},
"off_session": {
"type": "boolean",
"description": "Set to true to indicate that the customer is not in your checkout flow during this payment, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and charge them later. When making a recurring payment by passing a mandate_id, this parameter is mandatory",
"example": true,
"nullable": true
},
"description": {
"type": "string",
"description": "A description for the payment",
"example": "It's my first payment request",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to which you want the user to be redirected after the completion of the payment operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"setup_future_usage": {
"allOf": [
{
"$ref": "#/components/schemas/FutureUsage"
}
],
"nullable": true
},
"payment_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodDataRequest"
}
],
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethod"
}
],
"nullable": true
},
"payment_token": {
"type": "string",
"description": "As Hyperswitch tokenises the sensitive details about the payments method, it provides the payment_token as a reference to a stored payment method, ensuring that the sensitive details are not exposed in any manner.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"shipping": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"statement_descriptor_name": {
"type": "string",
"description": "For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.",
"example": "Hyperswitch Router",
"nullable": true,
"maxLength": 255
},
"statement_descriptor_suffix": {
"type": "string",
"description": "Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.",
"example": "Payment for shoes purchase",
"nullable": true,
"maxLength": 255
},
"order_details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderDetailsWithAmount"
},
"description": "Use this object to capture the details about the different products for which the payment is being made. The sum of amount across different products here should be equal to the overall payment amount",
"example": "[{\n \"product_name\": \"Apple iPhone 16\",\n \"quantity\": 1,\n \"amount\" : 69000\n \"product_img_link\" : \"https://dummy-img-link.com\"\n }]",
"nullable": true
},
"mandate_data": {
"allOf": [
{
"$ref": "#/components/schemas/MandateData"
}
],
"nullable": true
},
"customer_acceptance": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerAcceptance"
}
],
"nullable": true
},
"browser_info": {
"allOf": [
{
"$ref": "#/components/schemas/BrowserInformation"
}
],
"nullable": true
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"payment_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"allowed_payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"description": "Use this parameter to restrict the Payment Method Types to show for a given PaymentIntent",
"nullable": true
},
"retry_action": {
"allOf": [
{
"$ref": "#/components/schemas/RetryAction"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"connector_metadata": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectorMetadata"
}
],
"nullable": true
},
"payment_link": {
"type": "boolean",
"description": "Whether to generate the payment link for this payment or not (if applicable)",
"default": false,
"example": true,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentCreatePaymentLinkConfig"
}
],
"nullable": true
},
"payment_link_config_id": {
"type": "string",
"description": "Custom payment link config id set at business profile, send only if business_specific_configs is configured",
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/RequestSurchargeDetails"
}
],
"nullable": true
},
"payment_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentType"
}
],
"nullable": true
},
"request_incremental_authorization": {
"type": "boolean",
"description": "Request an incremental authorization, i.e., increase the authorized amount on a confirmed payment before you capture it.",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_metadata": {
"type": "object",
"description": "Additional data related to some frm(Fraud Risk Management) connectors",
"nullable": true
},
"request_external_three_ds_authentication": {
"type": "boolean",
"description": "Whether to perform external authentication (if applicable)",
"example": true,
"nullable": true
},
"recurring_details": {
"allOf": [
{
"$ref": "#/components/schemas/RecurringDetails"
}
],
"nullable": true
},
"split_payments": {
"allOf": [
{
"$ref": "#/components/schemas/SplitPaymentsRequest"
}
],
"nullable": true
},
"request_extended_authorization": {
"type": "boolean",
"description": "Optional boolean value to extent authorization period of this payment\n\ncapture method must be manual or manual_multiple",
"default": false,
"nullable": true
},
"merchant_order_reference_id": {
"type": "string",
"description": "Merchant's identifier for the payment/invoice. This will be sent to the connector\nif the connector provides support to accept multiple reference ids.\nIn case the connector supports only one reference id, Hyperswitch's Payment ID will be sent as reference.",
"example": "Custom_Order_id_123",
"nullable": true,
"maxLength": 255
},
"skip_external_tax_calculation": {
"type": "boolean",
"description": "Whether to calculate tax for this payment intent",
"nullable": true
},
"psd2_sca_exemption_type": {
"allOf": [
{
"$ref": "#/components/schemas/ScaExemptionType"
}
],
"nullable": true
},
"ctp_service_details": {
"allOf": [
{
"$ref": "#/components/schemas/CtpServiceDetails"
}
],
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"threeds_method_comp_ind": {
"allOf": [
{
"$ref": "#/components/schemas/ThreeDsCompletionIndicator"
}
],
"nullable": true
}
}
},
"PayoutAttemptResponse": {
"type": "object",
"required": [
"attempt_id",
"status",
"amount"
],
"properties": {
"attempt_id": {
"type": "string",
"description": "Unique identifier for the attempt"
},
"status": {
"$ref": "#/components/schemas/PayoutStatus"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout attempt amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 6583
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the payout",
"nullable": true
},
"error_code": {
"type": "string",
"description": "Connector's error code in case of failures",
"nullable": true
},
"error_message": {
"type": "string",
"description": "Connector's error message in case of failures",
"nullable": true
},
"payment_method": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_type": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodType"
}
],
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "A unique identifier for a payout provided by the connector",
"nullable": true
},
"cancellation_reason": {
"type": "string",
"description": "If the payout was cancelled the reason provided here",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "(This field is not live yet)\nError code unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "UE_000",
"nullable": true,
"maxLength": 255
},
"unified_message": {
"type": "string",
"description": "(This field is not live yet)\nError message unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "Invalid card details",
"nullable": true,
"maxLength": 1024
}
}
},
"PayoutCancelRequest": {
"type": "object",
"required": [
"payout_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
}
}
},
"PayoutConfirmRequest": {
"type": "object",
"required": [
"client_secret"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 1000,
"nullable": true,
"minimum": 0
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "This field allows the merchant to manually select a connector with which the payout can go through.",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodData"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true,
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated. _Deprecated: Use customer_id instead._",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification."
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout. _Deprecated: Use profile_id instead._",
"deprecated": true,
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutEntityType"
}
],
"nullable": true
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false,
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payout_token": {
"type": "string",
"description": "Provide a reference to a stored payout method, used to process the payout.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to use for this payout, especially if there are multiple business profiles associated with the account, otherwise default business profile associated with the merchant account will be used.",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"payout_link": {
"type": "boolean",
"description": "Whether to get the payout link (if applicable). Merchant need to specify this during the Payout _Create_, this field can not be updated during Payout _Update_.",
"default": false,
"example": true,
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutCreatePayoutLinkConfig"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
}
},
"PayoutConnectors": {
"type": "string",
"enum": [
"adyen",
"adyenplatform",
"cybersource",
"ebanx",
"nomupay",
"payone",
"paypal",
"stripe",
"wise"
]
},
"PayoutCreatePayoutLinkConfig": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GenericLinkUiConfig"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"payout_link_id": {
"type": "string",
"description": "The unique identifier for the collect link.",
"example": "pm_collect_link_2bdacf398vwzq5n422S1",
"nullable": true
},
"enabled_payment_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EnabledPaymentMethod"
},
"description": "List of payout methods shown on collect UI",
"example": "[{\"payment_method\": \"bank_transfer\", \"payment_method_types\": [\"ach\", \"bacs\"]}]",
"nullable": true
},
"form_layout": {
"allOf": [
{
"$ref": "#/components/schemas/UIWidgetFormLayout"
}
],
"nullable": true
},
"test_mode": {
"type": "boolean",
"description": "`test_mode` allows for opening payout links without any restrictions. This removes\n- domain name validations\n- check for making sure link is accessed within an iframe",
"example": false,
"nullable": true
}
}
}
],
"description": "Custom payout link config for the particular payout, if payout link is to be generated."
},
"PayoutCreateResponse": {
"type": "object",
"required": [
"payout_id",
"merchant_id",
"amount",
"currency",
"auto_fulfill",
"customer_id",
"client_secret",
"return_url",
"business_country",
"entity_type",
"recurring",
"status",
"profile_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "This is an identifier for the merchant account. This is inferred from the API key\nprovided during the request",
"example": "merchant_1668273825",
"maxLength": 255
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 1000
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"connector": {
"type": "string",
"description": "The connector used for the payout",
"example": "wise",
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodDataResponse"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated.",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetailsResponse"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo"
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io"
},
"business_country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout",
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"$ref": "#/components/schemas/PayoutEntityType"
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "Unique identifier of the merchant connector account",
"example": "mca_sAD3OZLATetvjLOYhUSy",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/PayoutStatus"
},
"error_message": {
"type": "string",
"description": "If there was an error while calling the connector the error message is received here",
"example": "Failed while verifying the card",
"nullable": true
},
"error_code": {
"type": "string",
"description": "If there was an error while calling the connectors the code is received here",
"example": "E0001",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this payout"
},
"created": {
"type": "string",
"format": "date-time",
"description": "Time when the payout was created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
},
"connector_transaction_id": {
"type": "string",
"description": "Underlying processor's payout resource ID",
"example": "S3FC9G9M2MVFDXT5",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"attempts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutAttemptResponse"
},
"description": "List of attempts",
"nullable": true
},
"payout_link": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutLinkResponse"
}
],
"nullable": true
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"unified_code": {
"type": "string",
"description": "(This field is not live yet)\nError code unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "UE_000",
"nullable": true,
"maxLength": 255
},
"unified_message": {
"type": "string",
"description": "(This field is not live yet)\nError message unified across the connectors is received here in case of errors while calling the underlying connector",
"example": "Invalid card details",
"nullable": true,
"maxLength": 1024
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
},
"additionalProperties": false
},
"PayoutEntityType": {
"type": "string",
"description": "Type of entity to whom the payout is being carried out to, select from the given list of options",
"enum": [
"Individual",
"Company",
"NonProfit",
"PublicSector",
"NaturalPerson",
"lowercase",
"Personal"
]
},
"PayoutFulfillRequest": {
"type": "object",
"required": [
"payout_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
}
}
},
"PayoutLinkInitiateRequest": {
"type": "object",
"required": [
"merchant_id",
"payout_id"
],
"properties": {
"merchant_id": {
"type": "string"
},
"payout_id": {
"type": "string"
}
}
},
"PayoutLinkResponse": {
"type": "object",
"required": [
"payout_link_id",
"link"
],
"properties": {
"payout_link_id": {
"type": "string"
},
"link": {
"type": "string"
}
}
},
"PayoutListConstraints": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"customer_id": {
"type": "string",
"description": "The identifier for customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true
},
"starting_after": {
"type": "string",
"description": "A cursor for use in pagination, fetch the next list after some object",
"example": "pay_fafa124123",
"nullable": true
},
"ending_before": {
"type": "string",
"description": "A cursor for use in pagination, fetch the previous list before some object",
"example": "pay_fafa124123",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int32",
"description": "limit on the number of objects to return",
"default": 10,
"maximum": 100,
"minimum": 0
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which payout is created",
"example": "2022-09-10T10:11:12Z",
"nullable": true
}
}
}
]
},
"PayoutListFilterConstraints": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"currency",
"entity_type"
],
"properties": {
"payout_id": {
"type": "string",
"description": "The identifier for payout",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"profile_id": {
"type": "string",
"description": "The identifier for business profile",
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for customer",
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int32",
"description": "The limit on the number of objects. The default limit is 10 and max limit is 20",
"minimum": 0
},
"offset": {
"type": "integer",
"format": "int32",
"description": "The starting point within a list of objects",
"nullable": true,
"minimum": 0
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "The list of connectors to filter payouts list",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"status": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutStatus"
},
"description": "The list of payout status to filter payouts list",
"example": [
"pending",
"failed"
],
"nullable": true
},
"payout_method": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutType"
},
"description": "The list of payout methods to filter payouts list",
"example": [
"bank",
"card"
],
"nullable": true
},
"entity_type": {
"$ref": "#/components/schemas/PayoutEntityType"
}
}
}
]
},
"PayoutListFilters": {
"type": "object",
"required": [
"connector",
"currency",
"status",
"payout_method"
],
"properties": {
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "The list of available connector filters"
},
"currency": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "The list of available currency filters"
},
"status": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutStatus"
},
"description": "The list of available payout status filters"
},
"payout_method": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutType"
},
"description": "The list of available payout method filters"
}
}
},
"PayoutListResponse": {
"type": "object",
"required": [
"size",
"data"
],
"properties": {
"size": {
"type": "integer",
"description": "The number of payouts included in the list",
"minimum": 0
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutCreateResponse"
},
"description": "The list of payouts response objects"
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "The total number of available payouts for given constraints",
"nullable": true
}
}
},
"PayoutMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardPayout"
}
}
},
{
"type": "object",
"required": [
"bank"
],
"properties": {
"bank": {
"$ref": "#/components/schemas/Bank"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/Wallet"
}
}
}
],
"description": "The payout method information required for carrying out a payout"
},
"PayoutMethodDataResponse": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/CardAdditionalData"
}
}
},
{
"type": "object",
"required": [
"bank"
],
"properties": {
"bank": {
"$ref": "#/components/schemas/BankAdditionalData"
}
}
},
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"$ref": "#/components/schemas/WalletAdditionalData"
}
}
}
],
"description": "The payout method information for response"
},
"PayoutRetrieveBody": {
"type": "object",
"properties": {
"force_sync": {
"type": "boolean",
"nullable": true
},
"merchant_id": {
"type": "string",
"nullable": true
}
}
},
"PayoutRetrieveRequest": {
"type": "object",
"required": [
"payout_id"
],
"properties": {
"payout_id": {
"type": "string",
"description": "Unique identifier for the payout. This ensures idempotency for multiple payouts\nthat have been done by a single merchant. This field is auto generated and is returned in the API response.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"maxLength": 30,
"minLength": 30
},
"force_sync": {
"type": "boolean",
"description": "`force_sync` with the connector to get payout details\n(defaults to false)",
"default": false,
"example": true,
"nullable": true
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"nullable": true
}
}
},
"PayoutSendPriority": {
"type": "string",
"description": "The send method which will be required for processing payouts, check options for better understanding.",
"enum": [
"instant",
"fast",
"regular",
"wire",
"cross_border",
"internal"
]
},
"PayoutStatus": {
"type": "string",
"enum": [
"success",
"failed",
"cancelled",
"initiated",
"expired",
"reversed",
"pending",
"ineligible",
"requires_creation",
"requires_confirmation",
"requires_payout_method_data",
"requires_fulfillment",
"requires_vendor_account_creation"
]
},
"PayoutType": {
"type": "string",
"description": "The payout_type of the payout request is a mandatory field for confirming the payouts. It should be specified in the Create request. If not provided, it must be updated in the Payout Update request before it can be confirmed.",
"enum": [
"card",
"bank",
"wallet"
]
},
"PayoutUpdateRequest": {
"type": "object",
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"example": 1000,
"nullable": true,
"minimum": 0
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "This field allows the merchant to manually select a connector with which the payout can go through.",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "This field is used when merchant wants to confirm the payout, thus useful for the payout _Confirm_ request. Ideally merchants should _Create_ a payout, _Update_ it (if required), then _Confirm_ it.",
"default": false,
"example": true,
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodData"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true,
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated. _Deprecated: Use customer_id instead._",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"example": "pay_U42c409qyHwOkWo3vK60_secret_el9ksDkiB8hi6j9N78yo",
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout. _Deprecated: Use profile_id instead._",
"deprecated": true,
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutEntityType"
}
],
"nullable": true
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false,
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payout_token": {
"type": "string",
"description": "Provide a reference to a stored payout method, used to process the payout.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to use for this payout, especially if there are multiple business profiles associated with the account, otherwise default business profile associated with the merchant account will be used.",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"payout_link": {
"type": "boolean",
"description": "Whether to get the payout link (if applicable). Merchant need to specify this during the Payout _Create_, this field can not be updated during Payout _Update_.",
"default": false,
"example": true,
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutCreatePayoutLinkConfig"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
}
},
"PayoutsCreateRequest": {
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The payout amount. Amount for the payout in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc.,",
"minimum": 0
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"routing": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PayoutConnectors"
},
"description": "This field allows the merchant to manually select a connector with which the payout can go through.",
"example": [
"wise",
"adyen"
],
"nullable": true
},
"confirm": {
"type": "boolean",
"description": "This field is used when merchant wants to confirm the payout, thus useful for the payout _Confirm_ request. Ideally merchants should _Create_ a payout, _Update_ it (if required), then _Confirm_ it.",
"default": false,
"example": true,
"nullable": true
},
"payout_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutType"
}
],
"nullable": true
},
"payout_method_data": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutMethodData"
}
],
"nullable": true
},
"billing": {
"allOf": [
{
"$ref": "#/components/schemas/Address"
}
],
"nullable": true
},
"auto_fulfill": {
"type": "boolean",
"description": "Set to true to confirm the payout without review, no further action required",
"default": false,
"example": true,
"nullable": true
},
"customer_id": {
"type": "string",
"description": "The identifier for the customer object. If not provided the customer ID will be autogenerated. _Deprecated: Use customer_id instead._",
"deprecated": true,
"example": "cus_y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"customer": {
"allOf": [
{
"$ref": "#/components/schemas/CustomerDetails"
}
],
"nullable": true
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://hyperswitch.io",
"nullable": true
},
"business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"business_label": {
"type": "string",
"description": "Business label of the merchant for this payout. _Deprecated: Use profile_id instead._",
"deprecated": true,
"example": "food",
"nullable": true
},
"description": {
"type": "string",
"description": "A description of the payout",
"example": "It's my first payout request",
"nullable": true
},
"entity_type": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutEntityType"
}
],
"nullable": true
},
"recurring": {
"type": "boolean",
"description": "Specifies whether or not the payout request is recurring",
"default": false,
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"payout_token": {
"type": "string",
"description": "Provide a reference to a stored payout method, used to process the payout.",
"example": "187282ab-40ef-47a9-9206-5099ba31e432",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The business profile to use for this payout, especially if there are multiple business profiles associated with the account, otherwise default business profile associated with the merchant account will be used.",
"nullable": true
},
"priority": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutSendPriority"
}
],
"nullable": true
},
"payout_link": {
"type": "boolean",
"description": "Whether to get the payout link (if applicable). Merchant need to specify this during the Payout _Create_, this field can not be updated during Payout _Update_.",
"default": false,
"example": true,
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/PayoutCreatePayoutLinkConfig"
}
],
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Will be used to expire client secret after certain amount of time to be supplied in seconds\n(900) for 15 mins",
"example": 900,
"nullable": true,
"minimum": 0
},
"email": {
"type": "string",
"description": "Customer's email. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Customer's name. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "John Test",
"nullable": true,
"maxLength": 255
},
"phone": {
"type": "string",
"description": "Customer's phone. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "9123456789",
"nullable": true,
"maxLength": 255
},
"phone_country_code": {
"type": "string",
"description": "Customer's phone country code. _Deprecated: Use customer object instead._",
"deprecated": true,
"example": "+1",
"nullable": true,
"maxLength": 255
},
"payout_method_id": {
"type": "string",
"description": "Identifier for payout method",
"nullable": true
}
}
},
"Paypal": {
"type": "object",
"required": [
"email",
"telephone_number",
"paypal_id"
],
"properties": {
"email": {
"type": "string",
"description": "Email linked with paypal account",
"example": "john.doe@example.com"
},
"telephone_number": {
"type": "string",
"description": "mobile number linked to paypal account",
"example": "16608213349"
},
"paypal_id": {
"type": "string",
"description": "id of the paypal account",
"example": "G83KXTJ5EHCQ2"
}
}
},
"PaypalAdditionalData": {
"type": "object",
"description": "Masked payout method details for paypal wallet payout method",
"properties": {
"email": {
"type": "string",
"description": "Email linked with paypal account",
"example": "john.doe@example.com",
"nullable": true
},
"telephone_number": {
"type": "string",
"description": "mobile number linked to paypal account",
"example": "******* 3349",
"nullable": true
},
"paypal_id": {
"type": "string",
"description": "id of the paypal account",
"example": "G83K ***** HCQ2",
"nullable": true
}
}
},
"PaypalRedirection": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "paypal's email address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
}
}
},
"PaypalSessionTokenResponse": {
"type": "object",
"required": [
"connector",
"session_token",
"sdk_next_action"
],
"properties": {
"connector": {
"type": "string",
"description": "Name of the connector"
},
"session_token": {
"type": "string",
"description": "The session token for PayPal"
},
"sdk_next_action": {
"$ref": "#/components/schemas/SdkNextAction"
}
}
},
"PazeSessionTokenResponse": {
"type": "object",
"required": [
"client_id",
"client_name",
"client_profile_id",
"transaction_currency_code",
"transaction_amount"
],
"properties": {
"client_id": {
"type": "string",
"description": "Paze Client ID"
},
"client_name": {
"type": "string",
"description": "Client Name to be displayed on the Paze screen"
},
"client_profile_id": {
"type": "string",
"description": "Paze Client Profile ID"
},
"transaction_currency_code": {
"$ref": "#/components/schemas/Currency"
},
"transaction_amount": {
"type": "string",
"description": "The transaction amount",
"example": "38.02"
},
"email_address": {
"type": "string",
"description": "Email Address",
"example": "johntest@test.com",
"nullable": true,
"maxLength": 255
}
}
},
"PazeWalletData": {
"type": "object",
"required": [
"complete_response"
],
"properties": {
"complete_response": {
"type": "string"
}
}
},
"PhoneDetails": {
"type": "object",
"properties": {
"number": {
"type": "string",
"description": "The contact number",
"example": "9123456789",
"nullable": true
},
"country_code": {
"type": "string",
"description": "The country code attached to the number",
"example": "+1",
"nullable": true
}
}
},
"PixBankTransfer": {
"type": "object",
"required": [
"bank_account_number",
"pix_key"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_branch": {
"type": "string",
"description": "Bank branch",
"example": "3707",
"nullable": true
},
"bank_account_number": {
"type": "string",
"description": "Bank account number is an unique identifier assigned by a bank to a customer.",
"example": "000123456"
},
"pix_key": {
"type": "string",
"description": "Unique key for pix customer",
"example": "000123456"
},
"tax_id": {
"type": "string",
"description": "Individual taxpayer identification number",
"example": "000123456",
"nullable": true
}
}
},
"PixBankTransferAdditionalData": {
"type": "object",
"properties": {
"pix_key": {
"type": "string",
"description": "Partially masked unique key for pix transfer",
"example": "a1f4102e ****** 6fa48899c1d1",
"nullable": true
},
"cpf": {
"type": "string",
"description": "Partially masked CPF - CPF is a Brazilian tax identification number",
"example": "**** 124689",
"nullable": true
},
"cnpj": {
"type": "string",
"description": "Partially masked CNPJ - CNPJ is a Brazilian company tax identification number",
"example": "**** 417312",
"nullable": true
}
}
},
"PollConfigResponse": {
"type": "object",
"required": [
"poll_id",
"delay_in_secs",
"frequency"
],
"properties": {
"poll_id": {
"type": "string",
"description": "Poll Id"
},
"delay_in_secs": {
"type": "integer",
"format": "int32",
"description": "Interval of the poll"
},
"frequency": {
"type": "integer",
"format": "int32",
"description": "Frequency of the poll"
}
}
},
"PollResponse": {
"type": "object",
"required": [
"poll_id",
"status"
],
"properties": {
"poll_id": {
"type": "string",
"description": "The poll id"
},
"status": {
"$ref": "#/components/schemas/PollStatus"
}
}
},
"PollStatus": {
"type": "string",
"enum": [
"pending",
"completed",
"not_found"
]
},
"PrimaryBusinessDetails": {
"type": "object",
"required": [
"country",
"business"
],
"properties": {
"country": {
"$ref": "#/components/schemas/CountryAlpha2"
},
"business": {
"type": "string",
"example": "food"
}
},
"additionalProperties": false
},
"ProcessorPaymentToken": {
"type": "object",
"description": "Processor payment token for MIT payments where payment_method_data is not available",
"required": [
"processor_payment_token"
],
"properties": {
"processor_payment_token": {
"type": "string"
},
"merchant_connector_id": {
"type": "string",
"nullable": true
}
}
},
"ProductType": {
"type": "string",
"enum": [
"physical",
"digital",
"travel",
"ride",
"event",
"accommodation"
]
},
"ProfileCreate": {
"type": "object",
"properties": {
"profile_name": {
"type": "string",
"description": "The name of profile",
"nullable": true,
"maxLength": 64
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": true,
"example": true,
"nullable": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true,
"nullable": true
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"routing_algorithm": {
"type": "object",
"description": "The routing algorithm to be used for routing payments to desired connectors",
"nullable": true
},
"intent_fulfillment_time": {
"type": "integer",
"format": "int32",
"description": "Will be used to determine the time till which your payment will be active once the payment session starts",
"example": 900,
"nullable": true,
"minimum": 0
},
"frm_routing_algorithm": {
"type": "object",
"description": "The frm routing algorithm to be used for routing payments to desired FRM's",
"nullable": true
},
"payout_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Verified Apple Pay domains for a particular profile",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int32",
"description": "Client Secret Default expiry for all payments created under this profile",
"example": 900,
"nullable": true,
"minimum": 0
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPaymentLinkConfig"
}
],
"nullable": true
},
"authentication_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationConnectorDetails"
}
],
"nullable": true
},
"use_billing_as_payment_method_billing": {
"type": "boolean",
"description": "Whether to use the billing details passed when creating the intent as payment method billing",
"nullable": true
},
"collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"is_connector_agnostic_mit_enabled": {
"type": "boolean",
"description": "Indicates if the MIT (merchant initiated transaction) payments can be made connector\nagnostic, i.e., MITs may be processed through different connector than CIT (customer\ninitiated transaction) based on the routing rules.\nIf set to `false`, MIT will go through the same connector as the CIT.",
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPayoutLinkConfig"
}
],
"nullable": true
},
"outgoing_webhook_custom_http_headers": {
"type": "object",
"description": "These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs.",
"nullable": true
},
"tax_connector_id": {
"type": "string",
"description": "Merchant Connector id to be stored for tax_calculator connector",
"nullable": true
},
"is_tax_connector_enabled": {
"type": "boolean",
"description": "Indicates if tax_calculator connector is enabled or not.\nIf set to `true` tax_connector_id will be checked."
},
"is_network_tokenization_enabled": {
"type": "boolean",
"description": "Indicates if network tokenization is enabled or not."
},
"is_auto_retries_enabled": {
"type": "boolean",
"description": "Indicates if is_auto_retries_enabled is enabled or not.",
"nullable": true
},
"max_auto_retries_enabled": {
"type": "integer",
"format": "int32",
"description": "Maximum number of auto retries allowed for a payment",
"nullable": true,
"minimum": 0
},
"always_request_extended_authorization": {
"type": "boolean",
"description": "Bool indicating if extended authentication must be requested for all payments",
"nullable": true
},
"is_click_to_pay_enabled": {
"type": "boolean",
"description": "Indicates if click to pay is enabled or not."
},
"authentication_product_ids": {
"type": "object",
"description": "Product authentication ids",
"nullable": true
},
"card_testing_guard_config": {
"allOf": [
{
"$ref": "#/components/schemas/CardTestingGuardConfig"
}
],
"nullable": true
},
"is_clear_pan_retries_enabled": {
"type": "boolean",
"description": "Indicates if clear pan retries is enabled or not.",
"nullable": true
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced",
"nullable": true
},
"is_debit_routing_enabled": {
"type": "boolean",
"description": "Indicates if debit routing is enabled or not",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"ProfileDefaultRoutingConfig": {
"type": "object",
"required": [
"profile_id",
"connectors"
],
"properties": {
"profile_id": {
"type": "string"
},
"connectors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
"ProfileResponse": {
"type": "object",
"required": [
"merchant_id",
"profile_id",
"profile_name",
"enable_payment_response_hash",
"redirect_to_merchant_with_http_post",
"is_tax_connector_enabled",
"is_network_tokenization_enabled",
"is_auto_retries_enabled",
"is_click_to_pay_enabled",
"is_clear_pan_retries_enabled",
"force_3ds_challenge"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"profile_id": {
"type": "string",
"description": "The identifier for profile. This must be used for creating merchant accounts, payments and payouts",
"example": "pro_abcdefghijklmnopqrstuvwxyz",
"maxLength": 64
},
"profile_name": {
"type": "string",
"description": "Name of the profile",
"maxLength": 64
},
"return_url": {
"type": "string",
"description": "The URL to redirect after the completion of the operation",
"example": "https://www.example.com/success",
"nullable": true,
"maxLength": 255
},
"enable_payment_response_hash": {
"type": "boolean",
"description": "A boolean value to indicate if payment response hash needs to be enabled",
"default": true,
"example": true
},
"payment_response_hash_key": {
"type": "string",
"description": "Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated.",
"nullable": true
},
"redirect_to_merchant_with_http_post": {
"type": "boolean",
"description": "A boolean value to indicate if redirect to merchant with http post needs to be enabled",
"default": false,
"example": true
},
"webhook_details": {
"allOf": [
{
"$ref": "#/components/schemas/WebhookDetails"
}
],
"nullable": true
},
"metadata": {
"type": "object",
"description": "Metadata is useful for storing additional, unstructured information on an object.",
"nullable": true
},
"routing_algorithm": {
"type": "object",
"description": "The routing algorithm to be used for routing payments to desired connectors",
"nullable": true
},
"intent_fulfillment_time": {
"type": "integer",
"format": "int64",
"description": "Will be used to determine the time till which your payment will be active once the payment session starts",
"example": 900,
"nullable": true
},
"frm_routing_algorithm": {
"type": "object",
"description": "The routing algorithm to be used to process the incoming request from merchant to outgoing payment processor or payment method. The default is 'Custom'",
"nullable": true
},
"payout_routing_algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"applepay_verified_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Verified Apple Pay domains for a particular profile",
"nullable": true
},
"session_expiry": {
"type": "integer",
"format": "int64",
"description": "Client Secret Default expiry for all payments created under this profile",
"example": 900,
"nullable": true
},
"payment_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPaymentLinkConfig"
}
],
"nullable": true
},
"authentication_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/AuthenticationConnectorDetails"
}
],
"nullable": true
},
"use_billing_as_payment_method_billing": {
"type": "boolean",
"nullable": true
},
"extended_card_info_config": {
"allOf": [
{
"$ref": "#/components/schemas/ExtendedCardInfoConfig"
}
],
"nullable": true
},
"collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_shipping_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer shipping details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"always_collect_billing_details_from_wallet_connector": {
"type": "boolean",
"description": "A boolean value to indicate if customer billing details needs to be collected from wallet\nconnector irrespective of connector required fields (Eg. Apple pay, Google pay etc)",
"default": false,
"example": false,
"nullable": true
},
"is_connector_agnostic_mit_enabled": {
"type": "boolean",
"description": "Indicates if the MIT (merchant initiated transaction) payments can be made connector\nagnostic, i.e., MITs may be processed through different connector than CIT (customer\ninitiated transaction) based on the routing rules.\nIf set to `false`, MIT will go through the same connector as the CIT.",
"nullable": true
},
"payout_link_config": {
"allOf": [
{
"$ref": "#/components/schemas/BusinessPayoutLinkConfig"
}
],
"nullable": true
},
"outgoing_webhook_custom_http_headers": {
"type": "object",
"description": "These key-value pairs are sent as additional custom headers in the outgoing webhook request.",
"nullable": true
},
"tax_connector_id": {
"type": "string",
"description": "Merchant Connector id to be stored for tax_calculator connector",
"nullable": true
},
"is_tax_connector_enabled": {
"type": "boolean",
"description": "Indicates if tax_calculator connector is enabled or not.\nIf set to `true` tax_connector_id will be checked."
},
"is_network_tokenization_enabled": {
"type": "boolean",
"description": "Indicates if network tokenization is enabled or not.",
"default": false,
"example": false
},
"is_auto_retries_enabled": {
"type": "boolean",
"description": "Indicates if is_auto_retries_enabled is enabled or not.",
"default": false,
"example": false
},
"max_auto_retries_enabled": {
"type": "integer",
"format": "int32",
"description": "Maximum number of auto retries allowed for a payment",
"nullable": true
},
"always_request_extended_authorization": {
"type": "boolean",
"description": "Bool indicating if extended authentication must be requested for all payments",
"nullable": true
},
"is_click_to_pay_enabled": {
"type": "boolean",
"description": "Indicates if click to pay is enabled or not.",
"default": false,
"example": false
},
"authentication_product_ids": {
"type": "object",
"description": "Product authentication ids",
"nullable": true
},
"card_testing_guard_config": {
"allOf": [
{
"$ref": "#/components/schemas/CardTestingGuardConfig"
}
],
"nullable": true
},
"is_clear_pan_retries_enabled": {
"type": "boolean",
"description": "Indicates if clear pan retries is enabled or not."
},
"force_3ds_challenge": {
"type": "boolean",
"description": "Indicates if 3ds challenge is forced"
},
"is_debit_routing_enabled": {
"type": "boolean",
"description": "Indicates if debit routing is enabled or not",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
},
"ProgramConnectorSelection": {
"type": "object",
"description": "The program, having a default connector selection and\na bunch of rules. Also can hold arbitrary metadata.",
"required": [
"defaultSelection",
"rules",
"metadata"
],
"properties": {
"defaultSelection": {
"$ref": "#/components/schemas/ConnectorSelection"
},
"rules": {
"$ref": "#/components/schemas/RuleConnectorSelection"
},
"metadata": {
"type": "object",
"additionalProperties": {}
}
}
},
"RealTimePaymentData": {
"oneOf": [
{
"type": "object",
"required": [
"fps"
],
"properties": {
"fps": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"duit_now"
],
"properties": {
"duit_now": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"prompt_pay"
],
"properties": {
"prompt_pay": {
"type": "object"
}
}
},
{
"type": "object",
"required": [
"viet_qr"
],
"properties": {
"viet_qr": {
"type": "object"
}
}
}
]
},
"RealTimePaymentDataResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/RealTimePaymentData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"ReceiverDetails": {
"type": "object",
"required": [
"amount_received"
],
"properties": {
"amount_received": {
"type": "integer",
"format": "int64",
"description": "The amount received by receiver"
},
"amount_charged": {
"type": "integer",
"format": "int64",
"description": "The amount charged by ACH",
"nullable": true
},
"amount_remaining": {
"type": "integer",
"format": "int64",
"description": "The amount remaining to be sent via ACH",
"nullable": true
}
}
},
"ReconStatus": {
"type": "string",
"enum": [
"not_requested",
"requested",
"active",
"disabled"
]
},
"RecurringDetails": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"mandate_id"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"payment_method_id"
]
},
"data": {
"type": "string"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"processor_payment_token"
]
},
"data": {
"$ref": "#/components/schemas/ProcessorPaymentToken"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"network_transaction_id_and_card_details"
]
},
"data": {
"$ref": "#/components/schemas/NetworkTransactionIdAndCardDetails"
}
}
}
],
"description": "Details required for recurring payment",
"discriminator": {
"propertyName": "type"
}
},
"RecurringPaymentIntervalUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"hour",
"minute"
]
},
"RedirectResponse": {
"type": "object",
"properties": {
"param": {
"type": "string",
"nullable": true
},
"json_payload": {
"type": "object",
"nullable": true
}
}
},
"RefundListRequest": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/TimeRange"
}
],
"nullable": true
},
{
"type": "object",
"properties": {
"payment_id": {
"type": "string",
"description": "The identifier for the payment",
"nullable": true
},
"refund_id": {
"type": "string",
"description": "The identifier for the refund",
"nullable": true
},
"profile_id": {
"type": "string",
"description": "The identifier for business profile",
"nullable": true
},
"limit": {
"type": "integer",
"format": "int64",
"description": "Limit on the number of objects to return",
"nullable": true
},
"offset": {
"type": "integer",
"format": "int64",
"description": "The starting point within a list of objects",
"nullable": true
},
"amount_filter": {
"allOf": [
{
"$ref": "#/components/schemas/AmountFilter"
}
],
"nullable": true
},
"connector": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of connectors to filter refunds list",
"nullable": true
},
"merchant_connector_id": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of merchant connector ids to filter the refunds list for selected label",
"nullable": true
},
"currency": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "The list of currencies to filter refunds list",
"nullable": true
},
"refund_status": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundStatus"
},
"description": "The list of refund statuses to filter refunds list",
"nullable": true
}
}
}
]
},
"RefundListResponse": {
"type": "object",
"required": [
"count",
"total_count",
"data"
],
"properties": {
"count": {
"type": "integer",
"description": "The number of refunds included in the list",
"minimum": 0
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "The total number of refunds in the list"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefundResponse"
},
"description": "The List of refund response object"
}
}
},
"RefundRequest": {
"type": "object",
"required": [
"payment_id"
],
"properties": {
"payment_id": {
"type": "string",
"description": "The payment id against which refund is to be initiated",
"example": "pay_mbabizu24mvu3mela5njyhpit4",
"maxLength": 30,
"minLength": 30
},
"refund_id": {
"type": "string",
"description": "Unique Identifier for the Refund. This is to ensure idempotency for multiple partial refunds initiated against the same payment. If this is not passed by the merchant, this field shall be auto generated and provided in the API response. It is recommended to generate uuid(v4) as the refund_id.",
"example": "ref_mbabizu24mvu3mela5njyhpit4",
"nullable": true,
"maxLength": 30,
"minLength": 30
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"nullable": true,
"maxLength": 255
},
"amount": {
"type": "integer",
"format": "int64",
"description": "Total amount for which the refund is to be initiated. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc., If not provided, this will default to the full payment amount",
"example": 6540,
"nullable": true,
"minimum": 100
},
"reason": {
"type": "string",
"description": "Reason for the refund. Often useful for displaying to users and your customer support executive. In case the payment went through Stripe, this field needs to be passed with one of these enums: `duplicate`, `fraudulent`, or `requested_by_customer`",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
},
"refund_type": {
"allOf": [
{
"$ref": "#/components/schemas/RefundType"
}
],
"default": "Instant",
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
},
"merchant_connector_details": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantConnectorDetailsWrap"
}
],
"nullable": true
},
"split_refunds": {
"allOf": [
{
"$ref": "#/components/schemas/SplitRefund"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"RefundResponse": {
"type": "object",
"required": [
"refund_id",
"payment_id",
"amount",
"currency",
"status",
"connector"
],
"properties": {
"refund_id": {
"type": "string",
"description": "Unique Identifier for the refund"
},
"payment_id": {
"type": "string",
"description": "The payment id against which refund is initiated"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The refund amount, which should be less than or equal to the total payment amount. Amount for the payment in lowest denomination of the currency. (i.e) in cents for USD denomination, in paisa for INR denomination etc",
"example": 6540,
"minimum": 100
},
"currency": {
"type": "string",
"description": "The three-letter ISO currency code"
},
"status": {
"$ref": "#/components/schemas/RefundStatus"
},
"reason": {
"type": "string",
"description": "An arbitrary string attached to the object. Often useful for displaying to users and your customer support executive",
"nullable": true
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object",
"nullable": true
},
"error_message": {
"type": "string",
"description": "The error message",
"nullable": true
},
"error_code": {
"type": "string",
"description": "The code for the error",
"nullable": true
},
"unified_code": {
"type": "string",
"description": "Error code unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"unified_message": {
"type": "string",
"description": "Error message unified across the connectors is received here if there was an error while calling connector",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp at which refund is created",
"nullable": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp at which refund is updated",
"nullable": true
},
"connector": {
"type": "string",
"description": "The connector used for the refund and the corresponding payment",
"example": "stripe"
},
"profile_id": {
"type": "string",
"description": "The id of business profile for this refund",
"nullable": true
},
"merchant_connector_id": {
"type": "string",
"description": "The merchant_connector_id of the processor through which this payment went through",
"nullable": true
},
"split_refunds": {
"allOf": [
{
"$ref": "#/components/schemas/SplitRefund"
}
],
"nullable": true
},
"issuer_error_code": {
"type": "string",
"description": "Error code received from the issuer in case of failed refunds",
"nullable": true
},
"issuer_error_message": {
"type": "string",
"description": "Error message received from the issuer in case of failed refunds",
"nullable": true
}
}
},
"RefundStatus": {
"type": "string",
"description": "The status for refunds",
"enum": [
"succeeded",
"failed",
"pending",
"review"
]
},
"RefundType": {
"type": "string",
"description": "To indicate whether to refund needs to be instant or scheduled",
"enum": [
"scheduled",
"instant"
]
},
"RefundUpdateRequest": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "An arbitrary string attached to the object. Often useful for displaying to users and your customer support executive",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
},
"metadata": {
"type": "object",
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Metadata is useful for storing additional, structured information on an object.",
"nullable": true
}
},
"additionalProperties": false
},
"RelayData": {
"oneOf": [
{
"type": "object",
"required": [
"refund"
],
"properties": {
"refund": {
"$ref": "#/components/schemas/RelayRefundRequestData"
}
}
}
]
},
"RelayError": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string",
"description": "The error code"
},
"message": {
"type": "string",
"description": "The error message"
}
}
},
"RelayRefundRequestData": {
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer",
"format": "int64",
"description": "The amount that is being refunded",
"example": 6540
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"reason": {
"type": "string",
"description": "The reason for the refund",
"example": "Customer returned the product",
"nullable": true,
"maxLength": 255
}
}
},
"RelayRequest": {
"type": "object",
"required": [
"connector_resource_id",
"connector_id",
"type"
],
"properties": {
"connector_resource_id": {
"type": "string",
"description": "The identifier that is associated to a resource at the connector reference to which the relay request is being made",
"example": "7256228702616471803954"
},
"connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"type": {
"$ref": "#/components/schemas/RelayType"
},
"data": {
"allOf": [
{
"$ref": "#/components/schemas/RelayData"
}
],
"nullable": true
}
}
},
"RelayResponse": {
"type": "object",
"required": [
"id",
"status",
"connector_resource_id",
"connector_id",
"profile_id",
"type"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for the Relay",
"example": "relay_mbabizu24mvu3mela5njyhpit4"
},
"status": {
"$ref": "#/components/schemas/RelayStatus"
},
"connector_resource_id": {
"type": "string",
"description": "The identifier that is associated to a resource at the connector reference to which the relay request is being made",
"example": "pi_3MKEivSFNglxLpam0ZaL98q9"
},
"error": {
"allOf": [
{
"$ref": "#/components/schemas/RelayError"
}
],
"nullable": true
},
"connector_reference_id": {
"type": "string",
"description": "The identifier that is associated to a resource at the connector to which the relay request is being made",
"example": "re_3QY4TnEOqOywnAIx1Mm1p7GQ",
"nullable": true
},
"connector_id": {
"type": "string",
"description": "Identifier of the connector ( merchant connector account ) which was chosen to make the payment",
"example": "mca_5apGeP94tMts6rg3U3kR"
},
"profile_id": {
"type": "string",
"description": "The business profile that is associated with this relay request.",
"example": "pro_abcdefghijklmnopqrstuvwxyz"
},
"type": {
"$ref": "#/components/schemas/RelayType"
},
"data": {
"allOf": [
{
"$ref": "#/components/schemas/RelayData"
}
],
"nullable": true
}
}
},
"RelayStatus": {
"type": "string",
"enum": [
"created",
"pending",
"success",
"failure"
]
},
"RelayType": {
"type": "string",
"enum": [
"refund"
]
},
"RequestPaymentMethodTypes": {
"type": "object",
"required": [
"payment_method_type",
"recurring_enabled",
"installment_payment_enabled"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_experience": {
"allOf": [
{
"$ref": "#/components/schemas/PaymentExperience"
}
],
"nullable": true
},
"card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetwork"
},
"nullable": true
},
"accepted_currencies": {
"allOf": [
{
"$ref": "#/components/schemas/AcceptedCurrencies"
}
],
"nullable": true
},
"accepted_countries": {
"allOf": [
{
"$ref": "#/components/schemas/AcceptedCountries"
}
],
"nullable": true
},
"minimum_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"maximum_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"recurring_enabled": {
"type": "boolean",
"description": "Boolean to enable recurring payments / mandates. Default is true.",
"default": true,
"example": false
},
"installment_payment_enabled": {
"type": "boolean",
"description": "Boolean to enable installment / EMI / BNPL payments. Default is true.",
"default": true,
"example": false
}
}
},
"RequestSurchargeDetails": {
"type": "object",
"description": "Details of surcharge applied on this payment, if applicable",
"required": [
"surcharge_amount"
],
"properties": {
"surcharge_amount": {
"type": "integer",
"format": "int64",
"example": 6540
},
"tax_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
}
}
},
"RequiredFieldInfo": {
"type": "object",
"description": "Required fields info used while listing the payment_method_data",
"required": [
"required_field",
"display_name",
"field_type"
],
"properties": {
"required_field": {
"type": "string",
"description": "Required field for a payment_method through a payment_method_type"
},
"display_name": {
"type": "string",
"description": "Display name of the required field in the front-end"
},
"field_type": {
"$ref": "#/components/schemas/FieldType"
},
"value": {
"type": "string",
"nullable": true
}
}
},
"ResponsePaymentMethodTypes": {
"type": "object",
"required": [
"payment_method_type"
],
"properties": {
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_experience": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentExperienceTypes"
},
"description": "The list of payment experiences enabled, if applicable for a payment method type",
"nullable": true
},
"card_networks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CardNetworkTypes"
},
"description": "The list of card networks enabled, if applicable for a payment method type",
"nullable": true
},
"bank_names": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BankCodeResponse"
},
"description": "The list of banks enabled, if applicable for a payment method type",
"nullable": true
},
"bank_debits": {
"allOf": [
{
"$ref": "#/components/schemas/BankDebitTypes"
}
],
"nullable": true
},
"bank_transfers": {
"allOf": [
{
"$ref": "#/components/schemas/BankTransferTypes"
}
],
"nullable": true
},
"required_fields": {
"type": "object",
"description": "Required fields for the payment_method_type.",
"additionalProperties": {
"$ref": "#/components/schemas/RequiredFieldInfo"
},
"nullable": true
},
"surcharge_details": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargeDetailsResponse"
}
],
"nullable": true
},
"pm_auth_connector": {
"type": "string",
"description": "auth service connector label for this payment method type, if exists",
"nullable": true
}
}
},
"ResponsePaymentMethodsEnabled": {
"type": "object",
"required": [
"payment_method",
"payment_method_types"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResponsePaymentMethodTypes"
},
"description": "The list of payment method types enabled for a connector account"
}
}
},
"RetrieveApiKeyResponse": {
"type": "object",
"description": "The response body for retrieving an API Key.",
"required": [
"key_id",
"merchant_id",
"name",
"prefix",
"created",
"expiration"
],
"properties": {
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"name": {
"type": "string",
"description": "The unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"maxLength": 64
},
"description": {
"type": "string",
"description": "The description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"prefix": {
"type": "string",
"description": "The first few characters of the plaintext API Key to help you identify it.",
"maxLength": 64
},
"created": {
"type": "string",
"format": "date-time",
"description": "The time at which the API Key was created.",
"example": "2022-09-10T10:11:12Z"
},
"expiration": {
"$ref": "#/components/schemas/ApiKeyExpiration"
}
}
},
"RetrievePaymentLinkRequest": {
"type": "object",
"properties": {
"client_secret": {
"type": "string",
"description": "It's a token used for client side verification.",
"nullable": true
}
}
},
"RetrievePaymentLinkResponse": {
"type": "object",
"required": [
"payment_link_id",
"merchant_id",
"link_to_pay",
"amount",
"created_at",
"status"
],
"properties": {
"payment_link_id": {
"type": "string",
"description": "Identifier for Payment Link"
},
"merchant_id": {
"type": "string",
"description": "Identifier for Merchant"
},
"link_to_pay": {
"type": "string",
"description": "Open payment link (without any security checks and listing SPMs)"
},
"amount": {
"type": "integer",
"format": "int64",
"description": "The payment amount. Amount for the payment in the lowest denomination of the currency",
"example": 6540
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Date and time of Payment Link creation"
},
"expiry": {
"type": "string",
"format": "date-time",
"description": "Date and time of Expiration for Payment Link",
"nullable": true
},
"description": {
"type": "string",
"description": "Description for Payment Link",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/PaymentLinkStatus"
},
"currency": {
"allOf": [
{
"$ref": "#/components/schemas/Currency"
}
],
"nullable": true
},
"secure_link": {
"type": "string",
"description": "Secure payment link (with security checks and listing saved payment methods)",
"nullable": true
}
}
},
"RetryAction": {
"type": "string",
"description": "Denotes the retry action",
"enum": [
"manual_retry",
"requeue"
]
},
"RevokeApiKeyResponse": {
"type": "object",
"description": "The response body for revoking an API Key.",
"required": [
"merchant_id",
"key_id",
"revoked"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account.",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 64
},
"key_id": {
"type": "string",
"description": "The identifier for the API Key.",
"example": "5hEEqkgJUyuxgSKGArHA4mWSnX",
"maxLength": 64
},
"revoked": {
"type": "boolean",
"description": "Indicates whether the API key was revoked or not.",
"example": "true"
}
}
},
"RewardData": {
"type": "object",
"required": [
"merchant_id"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The merchant ID with which we have to call the connector"
}
}
},
"RoutableChoiceKind": {
"type": "string",
"enum": [
"OnlyConnector",
"FullStruct"
]
},
"RoutableConnectorChoice": {
"type": "object",
"description": "Routable Connector chosen for a payment",
"required": [
"connector"
],
"properties": {
"connector": {
"$ref": "#/components/schemas/RoutableConnectors"
},
"merchant_connector_id": {
"type": "string",
"nullable": true
}
}
},
"RoutableConnectors": {
"type": "string",
"description": "RoutableConnectors are the subset of Connectors that are eligible for payments routing",
"enum": [
"adyenplatform",
"phonypay",
"fauxpay",
"pretendpay",
"stripe_test",
"adyen_test",
"checkout_test",
"paypal_test",
"aci",
"adyen",
"airwallex",
"authorizedotnet",
"bankofamerica",
"billwerk",
"bitpay",
"bambora",
"bamboraapac",
"bluesnap",
"boku",
"braintree",
"cashtocode",
"chargebee",
"checkout",
"coinbase",
"coingate",
"cryptopay",
"cybersource",
"datatrans",
"deutschebank",
"digitalvirgo",
"dlocal",
"ebanx",
"elavon",
"fiserv",
"fiservemea",
"fiuu",
"forte",
"getnet",
"globalpay",
"globepay",
"gocardless",
"hipay",
"helcim",
"iatapay",
"inespay",
"itaubank",
"jpmorgan",
"klarna",
"mifinity",
"mollie",
"moneris",
"multisafepay",
"nexinets",
"nexixpay",
"nmi",
"nomupay",
"noon",
"novalnet",
"nuvei",
"opennode",
"paybox",
"payme",
"payone",
"paypal",
"paystack",
"payu",
"placetopay",
"powertranz",
"prophetpay",
"rapyd",
"razorpay",
"recurly",
"redsys",
"riskified",
"shift4",
"signifyd",
"square",
"stax",
"stripe",
"stripebilling",
"trustpay",
"tsys",
"volt",
"wellsfargo",
"wise",
"worldline",
"worldpay",
"xendit",
"zen",
"plaid",
"zsl"
]
},
"RoutingAlgorithm": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"single"
]
},
"data": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
},
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"advanced"
]
},
"data": {
"$ref": "#/components/schemas/ProgramConnectorSelection"
}
}
}
],
"description": "Routing Algorithm kind",
"discriminator": {
"propertyName": "type"
}
},
"RoutingAlgorithmKind": {
"type": "string",
"enum": [
"single",
"priority",
"volume_split",
"advanced",
"dynamic"
]
},
"RoutingConfigRequest": {
"type": "object",
"properties": {
"name": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/RoutingAlgorithm"
}
],
"nullable": true
},
"profile_id": {
"type": "string",
"nullable": true
}
}
},
"RoutingDictionary": {
"type": "object",
"required": [
"merchant_id",
"records"
],
"properties": {
"merchant_id": {
"type": "string"
},
"active_id": {
"type": "string",
"nullable": true
},
"records": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
}
},
"RoutingDictionaryRecord": {
"type": "object",
"required": [
"id",
"profile_id",
"name",
"kind",
"description",
"created_at",
"modified_at"
],
"properties": {
"id": {
"type": "string"
},
"profile_id": {
"type": "string"
},
"name": {
"type": "string"
},
"kind": {
"$ref": "#/components/schemas/RoutingAlgorithmKind"
},
"description": {
"type": "string"
},
"created_at": {
"type": "integer",
"format": "int64"
},
"modified_at": {
"type": "integer",
"format": "int64"
},
"algorithm_for": {
"allOf": [
{
"$ref": "#/components/schemas/TransactionType"
}
],
"nullable": true
}
}
},
"RoutingKind": {
"oneOf": [
{
"$ref": "#/components/schemas/RoutingDictionary"
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutingDictionaryRecord"
}
}
]
},
"RoutingRetrieveResponse": {
"type": "object",
"description": "Response of the retrieved routing configs for a merchant account",
"properties": {
"algorithm": {
"allOf": [
{
"$ref": "#/components/schemas/MerchantRoutingAlgorithm"
}
],
"nullable": true
}
}
},
"RuleConnectorSelection": {
"type": "object",
"description": "Represents a rule\n\n```text\nrule_name: [stripe, adyen, checkout]\n{\npayment.method = card {\npayment.method.cardtype = (credit, debit) {\npayment.method.network = (amex, rupay, diners)\n}\n\npayment.method.cardtype = credit\n}\n}\n```",
"required": [
"name",
"connectorSelection",
"statements"
],
"properties": {
"name": {
"type": "string"
},
"connectorSelection": {
"$ref": "#/components/schemas/ConnectorSelection"
},
"statements": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IfStatement"
}
}
}
},
"SamsungPayAmountDetails": {
"type": "object",
"required": [
"option",
"currency_code",
"total"
],
"properties": {
"option": {
"$ref": "#/components/schemas/SamsungPayAmountFormat"
},
"currency_code": {
"$ref": "#/components/schemas/Currency"
},
"total": {
"type": "string",
"description": "The total amount of the transaction",
"example": "38.02"
}
}
},
"SamsungPayAmountFormat": {
"type": "string",
"enum": [
"FORMAT_TOTAL_PRICE_ONLY",
"FORMAT_TOTAL_ESTIMATED_AMOUNT"
]
},
"SamsungPayAppWalletData": {
"type": "object",
"required": [
"3_d_s",
"payment_card_brand",
"payment_currency_type",
"payment_last4_fpan"
],
"properties": {
"3_d_s": {
"$ref": "#/components/schemas/SamsungPayTokenData"
},
"payment_card_brand": {
"$ref": "#/components/schemas/SamsungPayCardBrand"
},
"payment_currency_type": {
"type": "string",
"description": "Currency type of the payment"
},
"payment_last4_dpan": {
"type": "string",
"description": "Last 4 digits of the device specific card number",
"nullable": true
},
"payment_last4_fpan": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"merchant_ref": {
"type": "string",
"description": "Merchant reference id that was passed in the session call request",
"nullable": true
},
"method": {
"type": "string",
"description": "Specifies authentication method used",
"nullable": true
},
"recurring_payment": {
"type": "boolean",
"description": "Value if credential is enabled for recurring payment",
"nullable": true
}
}
},
"SamsungPayCardBrand": {
"type": "string",
"enum": [
"visa",
"mastercard",
"amex",
"discover",
"unknown"
]
},
"SamsungPayMerchantPaymentInformation": {
"type": "object",
"required": [
"name",
"country_code"
],
"properties": {
"name": {
"type": "string",
"description": "Merchant name, this will be displayed on the Samsung Pay screen"
},
"url": {
"type": "string",
"description": "Merchant domain that process payments, required for web payments",
"nullable": true
},
"country_code": {
"$ref": "#/components/schemas/CountryAlpha2"
}
}
},
"SamsungPayProtocolType": {
"type": "string",
"enum": [
"PROTOCOL3DS"
]
},
"SamsungPaySessionTokenResponse": {
"type": "object",
"required": [
"version",
"service_id",
"order_number",
"merchant",
"amount",
"protocol",
"allowed_brands",
"billing_address_required",
"shipping_address_required"
],
"properties": {
"version": {
"type": "string",
"description": "Samsung Pay API version"
},
"service_id": {
"type": "string",
"description": "Samsung Pay service ID to which session call needs to be made"
},
"order_number": {
"type": "string",
"description": "Order number of the transaction"
},
"merchant": {
"$ref": "#/components/schemas/SamsungPayMerchantPaymentInformation"
},
"amount": {
"$ref": "#/components/schemas/SamsungPayAmountDetails"
},
"protocol": {
"$ref": "#/components/schemas/SamsungPayProtocolType"
},
"allowed_brands": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of supported card brands"
},
"billing_address_required": {
"type": "boolean",
"description": "Is billing address required to be collected from wallet"
},
"shipping_address_required": {
"type": "boolean",
"description": "Is shipping address required to be collected from wallet"
}
}
},
"SamsungPayTokenData": {
"type": "object",
"required": [
"version",
"data"
],
"properties": {
"type": {
"type": "string",
"description": "3DS type used by Samsung Pay",
"nullable": true
},
"version": {
"type": "string",
"description": "3DS version used by Samsung Pay"
},
"data": {
"type": "string",
"description": "Samsung Pay encrypted payment credential data"
}
}
},
"SamsungPayWalletCredentials": {
"oneOf": [
{
"$ref": "#/components/schemas/SamsungPayWebWalletData"
},
{
"$ref": "#/components/schemas/SamsungPayAppWalletData"
}
]
},
"SamsungPayWalletData": {
"type": "object",
"required": [
"payment_credential"
],
"properties": {
"payment_credential": {
"$ref": "#/components/schemas/SamsungPayWalletCredentials"
}
}
},
"SamsungPayWebWalletData": {
"type": "object",
"required": [
"card_brand",
"card_last4digits",
"3_d_s"
],
"properties": {
"method": {
"type": "string",
"description": "Specifies authentication method used",
"nullable": true
},
"recurring_payment": {
"type": "boolean",
"description": "Value if credential is enabled for recurring payment",
"nullable": true
},
"card_brand": {
"$ref": "#/components/schemas/SamsungPayCardBrand"
},
"card_last4digits": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"3_d_s": {
"$ref": "#/components/schemas/SamsungPayTokenData"
}
}
},
"ScaExemptionType": {
"type": "string",
"description": "SCA Exemptions types available for authentication",
"enum": [
"low_value",
"transaction_risk_analysis"
]
},
"SdkInformation": {
"type": "object",
"description": "SDK Information if request is from SDK",
"required": [
"sdk_app_id",
"sdk_enc_data",
"sdk_ephem_pub_key",
"sdk_trans_id",
"sdk_reference_number",
"sdk_max_timeout"
],
"properties": {
"sdk_app_id": {
"type": "string",
"description": "Unique ID created on installations of the 3DS Requestor App on a Consumer Device"
},
"sdk_enc_data": {
"type": "string",
"description": "JWE Object containing data encrypted by the SDK for the DS to decrypt"
},
"sdk_ephem_pub_key": {
"type": "object",
"description": "Public key component of the ephemeral key pair generated by the 3DS SDK",
"additionalProperties": {
"type": "string"
}
},
"sdk_trans_id": {
"type": "string",
"description": "Unique transaction identifier assigned by the 3DS SDK"
},
"sdk_reference_number": {
"type": "string",
"description": "Identifies the vendor and version for the 3DS SDK that is integrated in a 3DS Requestor App"
},
"sdk_max_timeout": {
"type": "integer",
"format": "int32",
"description": "Indicates maximum amount of time in minutes",
"minimum": 0
},
"sdk_type": {
"allOf": [
{
"$ref": "#/components/schemas/SdkType"
}
],
"nullable": true
}
}
},
"SdkNextAction": {
"type": "object",
"required": [
"next_action"
],
"properties": {
"next_action": {
"$ref": "#/components/schemas/NextActionCall"
}
}
},
"SdkNextActionData": {
"type": "object",
"required": [
"next_action"
],
"properties": {
"next_action": {
"$ref": "#/components/schemas/NextActionCall"
},
"order_id": {
"type": "string",
"nullable": true
}
}
},
"SdkType": {
"type": "string",
"description": "Enum representing the type of 3DS SDK.",
"enum": [
"01",
"02",
"03",
"04",
"05"
]
},
"SecretInfoToInitiateSdk": {
"type": "object",
"required": [
"display",
"payment"
],
"properties": {
"display": {
"type": "string"
},
"payment": {
"type": "string"
}
}
},
"SepaAndBacsBillingDetails": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "The Email ID for SEPA and BACS billing",
"example": "example@me.com",
"nullable": true
},
"name": {
"type": "string",
"description": "The billing name for SEPA and BACS billing",
"example": "Jane Doe",
"nullable": true
}
}
},
"SepaBankDebitAdditionalData": {
"type": "object",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"example": "DE8937******013000"
},
"bank_account_holder_name": {
"type": "string",
"description": "Bank account's owner name",
"example": "John Doe",
"nullable": true
}
}
},
"SepaBankTransfer": {
"type": "object",
"required": [
"iban",
"bic"
],
"properties": {
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"iban": {
"type": "string",
"description": "International Bank Account Number (iban) - used in many countries for identifying a bank along with it's customer.",
"example": "DE89370400440532013000"
},
"bic": {
"type": "string",
"description": "[8 / 11 digits] Bank Identifier Code (bic) / Swift Code - used in many countries for identifying a bank and it's branches",
"example": "HSBCGB2LXXX"
}
}
},
"SepaBankTransferAdditionalData": {
"type": "object",
"description": "Masked payout method details for sepa bank transfer payout method",
"required": [
"iban"
],
"properties": {
"iban": {
"type": "string",
"description": "Partially masked international bank account number (iban) for SEPA",
"example": "DE8937******013000"
},
"bank_name": {
"type": "string",
"description": "Bank name",
"example": "Deutsche Bank",
"nullable": true
},
"bank_country_code": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
},
"bank_city": {
"type": "string",
"description": "Bank city",
"example": "California",
"nullable": true
},
"bic": {
"type": "string",
"description": "[8 / 11 digits] Bank Identifier Code (bic) / Swift Code - used in many countries for identifying a bank and it's branches",
"example": "HSBCGB2LXXX",
"nullable": true
}
}
},
"SepaBankTransferInstructions": {
"type": "object",
"required": [
"account_holder_name",
"bic",
"country",
"iban",
"reference"
],
"properties": {
"account_holder_name": {
"type": "string",
"example": "Jane Doe"
},
"bic": {
"type": "string",
"example": "9123456789"
},
"country": {
"type": "string"
},
"iban": {
"type": "string",
"example": "123456789"
},
"reference": {
"type": "string",
"example": "U2PVVSEV4V9Y"
}
}
},
"SessionToken": {
"oneOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/GpaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"google_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/SamsungPaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"samsung_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/KlarnaSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"klarna"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/PaypalSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"paypal"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/ApplepaySessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"apple_pay"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/OpenBankingSessionToken"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"open_banking"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/PazeSessionTokenResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"paze"
]
}
}
}
]
},
{
"allOf": [
{
"$ref": "#/components/schemas/ClickToPaySessionResponse"
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"click_to_pay"
]
}
}
}
]
},
{
"type": "object",
"required": [
"wallet_name"
],
"properties": {
"wallet_name": {
"type": "string",
"enum": [
"no_session_token_received"
]
}
}
}
],
"discriminator": {
"propertyName": "wallet_name"
}
},
"SessionTokenInfo": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentProcessingDetailsAt"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"certificate",
"certificate_keys",
"merchant_identifier",
"display_name",
"initiative"
],
"properties": {
"certificate": {
"type": "string"
},
"certificate_keys": {
"type": "string"
},
"merchant_identifier": {
"type": "string"
},
"display_name": {
"type": "string"
},
"initiative": {
"$ref": "#/components/schemas/ApplepayInitiative"
},
"initiative_context": {
"type": "string",
"nullable": true
},
"merchant_business_country": {
"allOf": [
{
"$ref": "#/components/schemas/CountryAlpha2"
}
],
"nullable": true
}
}
}
]
},
"SizeVariants": {
"type": "string",
"enum": [
"cover",
"contain"
]
},
"SplitPaymentsRequest": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_payment"
],
"properties": {
"stripe_split_payment": {
"$ref": "#/components/schemas/StripeSplitPaymentRequest"
}
}
},
{
"type": "object",
"required": [
"adyen_split_payment"
],
"properties": {
"adyen_split_payment": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_payment"
],
"properties": {
"xendit_split_payment": {
"$ref": "#/components/schemas/XenditSplitRequest"
}
}
}
],
"description": "Fee information for Split Payments to be charged on the payment being collected"
},
"SplitRefund": {
"oneOf": [
{
"type": "object",
"required": [
"stripe_split_refund"
],
"properties": {
"stripe_split_refund": {
"$ref": "#/components/schemas/StripeSplitRefundRequest"
}
}
},
{
"type": "object",
"required": [
"adyen_split_refund"
],
"properties": {
"adyen_split_refund": {
"$ref": "#/components/schemas/AdyenSplitData"
}
}
},
{
"type": "object",
"required": [
"xendit_split_refund"
],
"properties": {
"xendit_split_refund": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account. Check sub-fields for more details."
},
"StraightThroughAlgorithm": {
"oneOf": [
{
"type": "object",
"title": "Single",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"single"
]
},
"data": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
},
{
"type": "object",
"title": "Priority",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"priority"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RoutableConnectorChoice"
}
}
}
},
{
"type": "object",
"title": "VolumeSplit",
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"volume_split"
]
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorVolumeSplit"
}
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"StripeChargeResponseData": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via Stripe",
"required": [
"charge_type",
"application_fees",
"transfer_account_id"
],
"properties": {
"charge_id": {
"type": "string",
"description": "Identifier for charge created for the payment",
"nullable": true
},
"charge_type": {
"$ref": "#/components/schemas/PaymentChargeType"
},
"application_fees": {
"type": "integer",
"format": "int64",
"description": "Platform fees collected on the payment",
"example": 6540
},
"transfer_account_id": {
"type": "string",
"description": "Identifier for the reseller's account where the funds were transferred"
}
},
"additionalProperties": false
},
"StripeChargeType": {
"type": "string",
"enum": [
"direct",
"destination"
]
},
"StripeSplitPaymentRequest": {
"type": "object",
"description": "Fee information for Split Payments to be charged on the payment being collected for Stripe",
"required": [
"charge_type",
"application_fees",
"transfer_account_id"
],
"properties": {
"charge_type": {
"$ref": "#/components/schemas/PaymentChargeType"
},
"application_fees": {
"type": "integer",
"format": "int64",
"description": "Platform fees to be collected on the payment",
"example": 6540
},
"transfer_account_id": {
"type": "string",
"description": "Identifier for the reseller's account where the funds were transferred"
}
},
"additionalProperties": false
},
"StripeSplitRefundRequest": {
"type": "object",
"description": "Charge specific fields for controlling the revert of funds from either platform or connected account for Stripe. Check sub-fields for more details.",
"properties": {
"revert_platform_fee": {
"type": "boolean",
"description": "Toggle for reverting the application fee that was collected for the payment.\nIf set to false, the funds are pulled from the destination account.",
"nullable": true
},
"revert_transfer": {
"type": "boolean",
"description": "Toggle for reverting the transfer that was made during the charge.\nIf set to false, the funds are pulled from the main platform's account.",
"nullable": true
}
},
"additionalProperties": false
},
"SuccessBasedRoutingConfig": {
"type": "object",
"properties": {
"params": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DynamicRoutingConfigParams"
},
"nullable": true
},
"config": {
"allOf": [
{
"$ref": "#/components/schemas/SuccessBasedRoutingConfigBody"
}
],
"nullable": true
}
}
},
"SuccessBasedRoutingConfigBody": {
"type": "object",
"properties": {
"min_aggregates_size": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
},
"default_success_rate": {
"type": "number",
"format": "double",
"nullable": true
},
"max_aggregates_size": {
"type": "integer",
"format": "int32",
"nullable": true,
"minimum": 0
},
"current_block_threshold": {
"allOf": [
{
"$ref": "#/components/schemas/CurrentBlockThreshold"
}
],
"nullable": true
},
"specificity_level": {
"$ref": "#/components/schemas/SuccessRateSpecificityLevel"
}
}
},
"SuccessRateSpecificityLevel": {
"type": "string",
"enum": [
"merchant",
"global"
]
},
"SupportedPaymentMethod": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/PaymentMethodSpecificFeatures"
}
],
"nullable": true
},
{
"type": "object",
"required": [
"payment_method",
"payment_method_type",
"payment_method_type_display_name",
"mandates",
"refunds",
"supported_capture_methods"
],
"properties": {
"payment_method": {
"$ref": "#/components/schemas/PaymentMethod"
},
"payment_method_type": {
"$ref": "#/components/schemas/PaymentMethodType"
},
"payment_method_type_display_name": {
"type": "string",
"description": "The display name of the payment method type"
},
"mandates": {
"$ref": "#/components/schemas/FeatureStatus"
},
"refunds": {
"$ref": "#/components/schemas/FeatureStatus"
},
"supported_capture_methods": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CaptureMethod"
},
"description": "List of supported capture methods supported by the payment method type"
},
"supported_countries": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CountryAlpha3"
},
"description": "List of countries supported by the payment method type via the connector",
"uniqueItems": true,
"nullable": true
},
"supported_currencies": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Currency"
},
"description": "List of currencies supported by the payment method type via the connector",
"uniqueItems": true,
"nullable": true
}
}
}
]
},
"SurchargeDetailsResponse": {
"type": "object",
"required": [
"surcharge",
"display_surcharge_amount",
"display_tax_on_surcharge_amount",
"display_total_surcharge_amount"
],
"properties": {
"surcharge": {
"$ref": "#/components/schemas/SurchargeResponse"
},
"tax_on_surcharge": {
"allOf": [
{
"$ref": "#/components/schemas/SurchargePercentage"
}
],
"nullable": true
},
"display_surcharge_amount": {
"type": "number",
"format": "double",
"description": "surcharge amount for this payment"
},
"display_tax_on_surcharge_amount": {
"type": "number",
"format": "double",
"description": "tax on surcharge amount for this payment"
},
"display_total_surcharge_amount": {
"type": "number",
"format": "double",
"description": "sum of display_surcharge_amount and display_tax_on_surcharge_amount"
}
}
},
"SurchargePercentage": {
"type": "object",
"required": [
"percentage"
],
"properties": {
"percentage": {
"type": "number",
"format": "float"
}
}
},
"SurchargeResponse": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"fixed"
]
},
"value": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"rate"
]
},
"value": {
"$ref": "#/components/schemas/SurchargePercentage"
}
}
}
],
"discriminator": {
"propertyName": "type"
}
},
"SwishQrData": {
"type": "object"
},
"ThirdPartySdkSessionResponse": {
"type": "object",
"required": [
"secrets"
],
"properties": {
"secrets": {
"$ref": "#/components/schemas/SecretInfoToInitiateSdk"
}
}
},
"ThreeDsCompletionIndicator": {
"type": "string",
"enum": [
"Y",
"N",
"U"
]
},
"ThreeDsData": {
"type": "object",
"required": [
"three_ds_authentication_url",
"three_ds_authorize_url",
"three_ds_method_details",
"poll_config"
],
"properties": {
"three_ds_authentication_url": {
"type": "string",
"description": "ThreeDS authentication url - to initiate authentication"
},
"three_ds_authorize_url": {
"type": "string",
"description": "ThreeDS authorize url - to complete the payment authorization after authentication"
},
"three_ds_method_details": {
"$ref": "#/components/schemas/ThreeDsMethodData"
},
"poll_config": {
"$ref": "#/components/schemas/PollConfigResponse"
},
"message_version": {
"type": "string",
"description": "Message Version",
"nullable": true
},
"directory_server_id": {
"type": "string",
"description": "Directory Server ID",
"nullable": true
}
}
},
"ThreeDsMethodData": {
"oneOf": [
{
"type": "object",
"required": [
"three_ds_method_data_submission",
"three_ds_method_key"
],
"properties": {
"three_ds_method_data_submission": {
"type": "boolean",
"description": "Whether ThreeDS method data submission is required"
},
"three_ds_method_data": {
"type": "string",
"description": "ThreeDS method data",
"nullable": true
},
"three_ds_method_url": {
"type": "string",
"description": "ThreeDS method url",
"nullable": true
},
"three_ds_method_key": {
"type": "string",
"enum": [
"threeDSMethodData"
]
}
}
}
],
"discriminator": {
"propertyName": "three_ds_method_key"
}
},
"TimeRange": {
"type": "object",
"description": "A type representing a range of time for filtering, including a mandatory start time and an optional end time.",
"required": [
"start_time"
],
"properties": {
"start_time": {
"type": "string",
"format": "date-time",
"description": "The start time to filter payments list or to get list of filters. To get list of filters start time is needed to be passed"
},
"end_time": {
"type": "string",
"format": "date-time",
"description": "The end time to filter payments list or to get list of filters. If not passed the default time is now",
"nullable": true
}
}
},
"ToggleBlocklistResponse": {
"type": "object",
"required": [
"blocklist_guard_status"
],
"properties": {
"blocklist_guard_status": {
"type": "string"
}
}
},
"ToggleDynamicRoutingPath": {
"type": "object",
"required": [
"profile_id"
],
"properties": {
"profile_id": {
"type": "string"
}
}
},
"ToggleDynamicRoutingQuery": {
"type": "object",
"required": [
"enable"
],
"properties": {
"enable": {
"$ref": "#/components/schemas/DynamicRoutingFeatures"
}
}
},
"ToggleKVRequest": {
"type": "object",
"required": [
"kv_enabled"
],
"properties": {
"kv_enabled": {
"type": "boolean",
"description": "Status of KV for the specific merchant",
"example": true
}
}
},
"ToggleKVResponse": {
"type": "object",
"required": [
"merchant_id",
"kv_enabled"
],
"properties": {
"merchant_id": {
"type": "string",
"description": "The identifier for the Merchant Account",
"example": "y3oqhf46pyzuxjbcn2giaqnb44",
"maxLength": 255
},
"kv_enabled": {
"type": "boolean",
"description": "Status of KV for the specific merchant",
"example": true
}
}
},
"TokenizeCardRequest": {
"type": "object",
"required": [
"raw_card_number",
"card_expiry_month",
"card_expiry_year"
],
"properties": {
"raw_card_number": {
"type": "string",
"description": "Card Number",
"example": "4111111145551142"
},
"card_expiry_month": {
"type": "string",
"description": "Card Expiry Month",
"example": "10"
},
"card_expiry_year": {
"type": "string",
"description": "Card Expiry Year",
"example": "25"
},
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242",
"nullable": true
},
"card_holder_name": {
"type": "string",
"description": "Card Holder Name",
"example": "John Doe",
"nullable": true
},
"nick_name": {
"type": "string",
"description": "Card Holder's Nick Name",
"example": "John Doe",
"nullable": true
},
"card_issuing_country": {
"type": "string",
"description": "Card Issuing Country",
"nullable": true
},
"card_network": {
"allOf": [
{
"$ref": "#/components/schemas/CardNetwork"
}
],
"nullable": true
},
"card_issuer": {
"type": "string",
"description": "Issuer Bank for Card",
"nullable": true
},
"card_type": {
"allOf": [
{
"$ref": "#/components/schemas/CardType"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"TokenizeDataRequest": {
"oneOf": [
{
"type": "object",
"required": [
"card"
],
"properties": {
"card": {
"$ref": "#/components/schemas/TokenizeCardRequest"
}
}
},
{
"type": "object",
"required": [
"existing_payment_method"
],
"properties": {
"existing_payment_method": {
"$ref": "#/components/schemas/TokenizePaymentMethodRequest"
}
}
}
]
},
"TokenizePaymentMethodRequest": {
"type": "object",
"properties": {
"card_cvc": {
"type": "string",
"description": "The CVC number for the card",
"example": "242",
"nullable": true
}
}
},
"TotalEventsResponse": {
"type": "object",
"description": "The response body of list initial delivery attempts api call.",
"required": [
"events",
"total_count"
],
"properties": {
"events": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventListItemResponse"
},
"description": "The list of events"
},
"total_count": {
"type": "integer",
"format": "int64",
"description": "Count of total events"
}
}
},
"TouchNGoRedirection": {
"type": "object"
},
"TransactionDetailsUiConfiguration": {
"type": "object",
"properties": {
"position": {
"type": "integer",
"format": "int32",
"description": "Position of the key-value pair in the UI",
"example": 5,
"nullable": true
},
"is_key_bold": {
"type": "boolean",
"description": "Whether the key should be bold",
"default": false,
"example": true,
"nullable": true
},
"is_value_bold": {
"type": "boolean",
"description": "Whether the value should be bold",
"default": false,
"example": true,
"nullable": true
}
}
},
"TransactionStatus": {
"type": "string",
"description": "Indicates the transaction status",
"enum": [
"Y",
"N",
"U",
"A",
"R",
"C",
"D",
"I"
]
},
"TransactionType": {
"type": "string",
"enum": [
"payment",
"payout"
]
},
"TriggeredBy": {
"type": "string",
"enum": [
"internal",
"external"
]
},
"UIWidgetFormLayout": {
"type": "string",
"enum": [
"tabs",
"journey"
]
},
"UpdateApiKeyRequest": {
"type": "object",
"description": "The request body for updating an API Key.",
"properties": {
"name": {
"type": "string",
"description": "A unique name for the API Key to help you identify it.",
"example": "Sandbox integration key",
"nullable": true,
"maxLength": 64
},
"description": {
"type": "string",
"description": "A description to provide more context about the API Key.",
"example": "Key used by our developers to integrate with the sandbox environment",
"nullable": true,
"maxLength": 256
},
"expiration": {
"allOf": [
{
"$ref": "#/components/schemas/ApiKeyExpiration"
}
],
"nullable": true
}
},
"additionalProperties": false
},
"UpiAdditionalData": {
"oneOf": [
{
"type": "object",
"required": [
"upi_collect"
],
"properties": {
"upi_collect": {
"$ref": "#/components/schemas/UpiCollectAdditionalData"
}
}
},
{
"type": "object",
"required": [
"upi_intent"
],
"properties": {
"upi_intent": {
"$ref": "#/components/schemas/UpiIntentData"
}
}
}
]
},
"UpiCollectAdditionalData": {
"type": "object",
"properties": {
"vpa_id": {
"type": "string",
"description": "Masked VPA ID",
"example": "ab********@okhdfcbank",
"nullable": true
}
}
},
"UpiCollectData": {
"type": "object",
"properties": {
"vpa_id": {
"type": "string",
"example": "successtest@iata",
"nullable": true
}
}
},
"UpiData": {
"oneOf": [
{
"type": "object",
"required": [
"upi_collect"
],
"properties": {
"upi_collect": {
"$ref": "#/components/schemas/UpiCollectData"
}
}
},
{
"type": "object",
"required": [
"upi_intent"
],
"properties": {
"upi_intent": {
"$ref": "#/components/schemas/UpiIntentData"
}
}
}
]
},
"UpiIntentData": {
"type": "object"
},
"UpiResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/UpiAdditionalData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"ValueType": {
"oneOf": [
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number"
]
},
"value": {
"$ref": "#/components/schemas/MinorUnit"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enum_variant"
]
},
"value": {
"type": "string",
"description": "Represents an enum variant"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"metadata_variant"
]
},
"value": {
"$ref": "#/components/schemas/MetadataValue"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"str_value"
]
},
"value": {
"type": "string",
"description": "Represents a arbitrary String value"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number_array"
]
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MinorUnit"
},
"description": "Represents an array of numbers. This is basically used for\n\"one of the given numbers\" operations\neg: payment.method.amount = (1, 2, 3)"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"enum_variant_array"
]
},
"value": {
"type": "array",
"items": {
"type": "string"
},
"description": "Similar to NumberArray but for enum variants\neg: payment.method.cardtype = (debit, credit)"
}
}
},
{
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string",
"enum": [
"number_comparison_array"
]
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NumberComparison"
},
"description": "Like a number array but can include comparisons. Useful for\nconditions like \"500 < amount < 1000\"\neg: payment.amount = (> 500, < 1000)"
}
}
}
],
"description": "Represents a value in the DSL",
"discriminator": {
"propertyName": "type"
}
},
"Venmo": {
"type": "object",
"required": [
"telephone_number"
],
"properties": {
"telephone_number": {
"type": "string",
"description": "mobile number linked to venmo account",
"example": "16608213349"
}
}
},
"VenmoAdditionalData": {
"type": "object",
"description": "Masked payout method details for venmo wallet payout method",
"properties": {
"telephone_number": {
"type": "string",
"description": "mobile number linked to venmo account",
"example": "******* 3349",
"nullable": true
}
}
},
"VoucherData": {
"oneOf": [
{
"type": "object",
"required": [
"boleto"
],
"properties": {
"boleto": {
"$ref": "#/components/schemas/BoletoVoucherData"
}
}
},
{
"type": "string",
"enum": [
"efecty"
]
},
{
"type": "string",
"enum": [
"pago_efectivo"
]
},
{
"type": "string",
"enum": [
"red_compra"
]
},
{
"type": "string",
"enum": [
"red_pagos"
]
},
{
"type": "object",
"required": [
"alfamart"
],
"properties": {
"alfamart": {
"$ref": "#/components/schemas/AlfamartVoucherData"
}
}
},
{
"type": "object",
"required": [
"indomaret"
],
"properties": {
"indomaret": {
"$ref": "#/components/schemas/IndomaretVoucherData"
}
}
},
{
"type": "string",
"enum": [
"oxxo"
]
},
{
"type": "object",
"required": [
"seven_eleven"
],
"properties": {
"seven_eleven": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"lawson"
],
"properties": {
"lawson": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"mini_stop"
],
"properties": {
"mini_stop": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"family_mart"
],
"properties": {
"family_mart": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"seicomart"
],
"properties": {
"seicomart": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
},
{
"type": "object",
"required": [
"pay_easy"
],
"properties": {
"pay_easy": {
"$ref": "#/components/schemas/JCSVoucherData"
}
}
}
]
},
"VoucherResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/VoucherData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"Wallet": {
"oneOf": [
{
"type": "object",
"required": [
"paypal"
],
"properties": {
"paypal": {
"$ref": "#/components/schemas/Paypal"
}
}
},
{
"type": "object",
"required": [
"venmo"
],
"properties": {
"venmo": {
"$ref": "#/components/schemas/Venmo"
}
}
}
]
},
"WalletAdditionalData": {
"oneOf": [
{
"$ref": "#/components/schemas/PaypalAdditionalData"
},
{
"$ref": "#/components/schemas/VenmoAdditionalData"
}
],
"description": "Masked payout method details for wallet payout method"
},
"WalletAdditionalDataForCard": {
"type": "object",
"required": [
"last4",
"card_network"
],
"properties": {
"last4": {
"type": "string",
"description": "Last 4 digits of the card number"
},
"card_network": {
"type": "string",
"description": "The information of the payment method"
},
"type": {
"type": "string",
"description": "The type of payment method",
"nullable": true
}
}
},
"WalletData": {
"oneOf": [
{
"type": "object",
"required": [
"ali_pay_qr"
],
"properties": {
"ali_pay_qr": {
"$ref": "#/components/schemas/AliPayQr"
}
}
},
{
"type": "object",
"required": [
"ali_pay_redirect"
],
"properties": {
"ali_pay_redirect": {
"$ref": "#/components/schemas/AliPayRedirection"
}
}
},
{
"type": "object",
"required": [
"ali_pay_hk_redirect"
],
"properties": {
"ali_pay_hk_redirect": {
"$ref": "#/components/schemas/AliPayHkRedirection"
}
}
},
{
"type": "object",
"required": [
"amazon_pay_redirect"
],
"properties": {
"amazon_pay_redirect": {
"$ref": "#/components/schemas/AmazonPayRedirectData"
}
}
},
{
"type": "object",
"required": [
"momo_redirect"
],
"properties": {
"momo_redirect": {
"$ref": "#/components/schemas/MomoRedirection"
}
}
},
{
"type": "object",
"required": [
"kakao_pay_redirect"
],
"properties": {
"kakao_pay_redirect": {
"$ref": "#/components/schemas/KakaoPayRedirection"
}
}
},
{
"type": "object",
"required": [
"go_pay_redirect"
],
"properties": {
"go_pay_redirect": {
"$ref": "#/components/schemas/GoPayRedirection"
}
}
},
{
"type": "object",
"required": [
"gcash_redirect"
],
"properties": {
"gcash_redirect": {
"$ref": "#/components/schemas/GcashRedirection"
}
}
},
{
"type": "object",
"required": [
"apple_pay"
],
"properties": {
"apple_pay": {
"$ref": "#/components/schemas/ApplePayWalletData"
}
}
},
{
"type": "object",
"required": [
"apple_pay_redirect"
],
"properties": {
"apple_pay_redirect": {
"$ref": "#/components/schemas/ApplePayRedirectData"
}
}
},
{
"type": "object",
"required": [
"apple_pay_third_party_sdk"
],
"properties": {
"apple_pay_third_party_sdk": {
"$ref": "#/components/schemas/ApplePayThirdPartySdkData"
}
}
},
{
"type": "object",
"required": [
"dana_redirect"
],
"properties": {
"dana_redirect": {
"type": "object",
"description": "Wallet data for DANA redirect flow"
}
}
},
{
"type": "object",
"required": [
"google_pay"
],
"properties": {
"google_pay": {
"$ref": "#/components/schemas/GooglePayWalletData"
}
}
},
{
"type": "object",
"required": [
"google_pay_redirect"
],
"properties": {
"google_pay_redirect": {
"$ref": "#/components/schemas/GooglePayRedirectData"
}
}
},
{
"type": "object",
"required": [
"google_pay_third_party_sdk"
],
"properties": {
"google_pay_third_party_sdk": {
"$ref": "#/components/schemas/GooglePayThirdPartySdkData"
}
}
},
{
"type": "object",
"required": [
"mb_way_redirect"
],
"properties": {
"mb_way_redirect": {
"$ref": "#/components/schemas/MbWayRedirection"
}
}
},
{
"type": "object",
"required": [
"mobile_pay_redirect"
],
"properties": {
"mobile_pay_redirect": {
"$ref": "#/components/schemas/MobilePayRedirection"
}
}
},
{
"type": "object",
"required": [
"paypal_redirect"
],
"properties": {
"paypal_redirect": {
"$ref": "#/components/schemas/PaypalRedirection"
}
}
},
{
"type": "object",
"required": [
"paypal_sdk"
],
"properties": {
"paypal_sdk": {
"$ref": "#/components/schemas/PayPalWalletData"
}
}
},
{
"type": "object",
"required": [
"paze"
],
"properties": {
"paze": {
"$ref": "#/components/schemas/PazeWalletData"
}
}
},
{
"type": "object",
"required": [
"samsung_pay"
],
"properties": {
"samsung_pay": {
"$ref": "#/components/schemas/SamsungPayWalletData"
}
}
},
{
"type": "object",
"required": [
"twint_redirect"
],
"properties": {
"twint_redirect": {
"type": "object",
"description": "Wallet data for Twint Redirection"
}
}
},
{
"type": "object",
"required": [
"vipps_redirect"
],
"properties": {
"vipps_redirect": {
"type": "object",
"description": "Wallet data for Vipps Redirection"
}
}
},
{
"type": "object",
"required": [
"touch_n_go_redirect"
],
"properties": {
"touch_n_go_redirect": {
"$ref": "#/components/schemas/TouchNGoRedirection"
}
}
},
{
"type": "object",
"required": [
"we_chat_pay_redirect"
],
"properties": {
"we_chat_pay_redirect": {
"$ref": "#/components/schemas/WeChatPayRedirection"
}
}
},
{
"type": "object",
"required": [
"we_chat_pay_qr"
],
"properties": {
"we_chat_pay_qr": {
"$ref": "#/components/schemas/WeChatPayQr"
}
}
},
{
"type": "object",
"required": [
"cashapp_qr"
],
"properties": {
"cashapp_qr": {
"$ref": "#/components/schemas/CashappQr"
}
}
},
{
"type": "object",
"required": [
"swish_qr"
],
"properties": {
"swish_qr": {
"$ref": "#/components/schemas/SwishQrData"
}
}
},
{
"type": "object",
"required": [
"mifinity"
],
"properties": {
"mifinity": {
"$ref": "#/components/schemas/MifinityData"
}
}
}
]
},
"WalletResponse": {
"allOf": [
{
"allOf": [
{
"$ref": "#/components/schemas/WalletResponseData"
}
],
"nullable": true
},
{
"type": "object"
}
]
},
"WalletResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"apple_pay"
],
"properties": {
"apple_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
},
{
"type": "object",
"required": [
"google_pay"
],
"properties": {
"google_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
},
{
"type": "object",
"required": [
"samsung_pay"
],
"properties": {
"samsung_pay": {
"$ref": "#/components/schemas/WalletAdditionalDataForCard"
}
}
}
],
"description": "Hyperswitch supports SDK integration with Apple Pay and Google Pay wallets. For other wallets, we integrate with their respective connectors, redirecting the customer to the connector for wallet payments. As a result, we don’t receive any payment method data in the confirm call for payments made through other wallets."
},
"WeChatPay": {
"type": "object"
},
"WeChatPayQr": {
"type": "object"
},
"WeChatPayRedirection": {
"type": "object"
},
"WebhookDeliveryAttempt": {
"type": "string",
"enum": [
"initial_attempt",
"automatic_retry",
"manual_retry"
]
},
"WebhookDetails": {
"type": "object",
"properties": {
"webhook_version": {
"type": "string",
"description": "The version for Webhook",
"example": "1.0.2",
"nullable": true,
"maxLength": 255
},
"webhook_username": {
"type": "string",
"description": "The user name for Webhook login",
"example": "ekart_retail",
"nullable": true,
"maxLength": 255
},
"webhook_password": {
"type": "string",
"description": "The password for Webhook login",
"example": "ekart@123",
"nullable": true,
"maxLength": 255
},
"webhook_url": {
"type": "string",
"description": "The url for the webhook endpoint",
"example": "www.ekart.com/webhooks",
"nullable": true
},
"payment_created_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a new payment is created",
"example": true,
"nullable": true
},
"payment_succeeded_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a payment is successful",
"example": true,
"nullable": true
},
"payment_failed_enabled": {
"type": "boolean",
"description": "If this property is true, a webhook message is posted whenever a payment fails",
"example": true,
"nullable": true
}
},
"additionalProperties": false
},
"XenditChargeResponseData": {
"oneOf": [
{
"type": "object",
"required": [
"multiple_splits"
],
"properties": {
"multiple_splits": {
"$ref": "#/components/schemas/XenditMultipleSplitResponse"
}
}
},
{
"type": "object",
"required": [
"single_split"
],
"properties": {
"single_split": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Charge Information"
},
"XenditMultipleSplitRequest": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via xendit",
"required": [
"name",
"description",
"routes"
],
"properties": {
"name": {
"type": "string",
"description": "Name to identify split rule. Not required to be unique. Typically based on transaction and/or sub-merchant types."
},
"description": {
"type": "string",
"description": "Description to identify fee rule"
},
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for.",
"nullable": true
},
"routes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/XenditSplitRoute"
},
"description": "Array of objects that define how the platform wants to route the fees and to which accounts."
}
},
"additionalProperties": false
},
"XenditMultipleSplitResponse": {
"type": "object",
"description": "Fee information charged on the payment being collected via xendit",
"required": [
"split_rule_id",
"name",
"description",
"routes"
],
"properties": {
"split_rule_id": {
"type": "string",
"description": "Identifier for split rule created for the payment"
},
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for.",
"nullable": true
},
"name": {
"type": "string",
"description": "Name to identify split rule. Not required to be unique. Typically based on transaction and/or sub-merchant types."
},
"description": {
"type": "string",
"description": "Description to identify fee rule"
},
"routes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/XenditSplitRoute"
},
"description": "Array of objects that define how the platform wants to route the fees and to which accounts."
}
},
"additionalProperties": false
},
"XenditSplitRequest": {
"oneOf": [
{
"type": "object",
"required": [
"multiple_splits"
],
"properties": {
"multiple_splits": {
"$ref": "#/components/schemas/XenditMultipleSplitRequest"
}
}
},
{
"type": "object",
"required": [
"single_split"
],
"properties": {
"single_split": {
"$ref": "#/components/schemas/XenditSplitSubMerchantData"
}
}
}
],
"description": "Xendit Charge Request"
},
"XenditSplitRoute": {
"type": "object",
"description": "Fee information to be charged on the payment being collected via xendit",
"required": [
"currency",
"destination_account_id",
"reference_id"
],
"properties": {
"flat_amount": {
"allOf": [
{
"$ref": "#/components/schemas/MinorUnit"
}
],
"nullable": true
},
"percent_amount": {
"type": "integer",
"format": "int64",
"description": "Amount of payments to be split, using a percent rate as unit",
"nullable": true
},
"currency": {
"$ref": "#/components/schemas/Currency"
},
"destination_account_id": {
"type": "string",
"description": "ID of the destination account where the amount will be routed to"
},
"reference_id": {
"type": "string",
"description": "Reference ID which acts as an identifier of the route itself"
}
},
"additionalProperties": false
},
"XenditSplitSubMerchantData": {
"type": "object",
"description": "Fee information to be charged on the payment being collected for sub-merchant via xendit",
"required": [
"for_user_id"
],
"properties": {
"for_user_id": {
"type": "string",
"description": "The sub-account user-id that you want to make this transaction for."
}
},
"additionalProperties": false
}
},
"securitySchemes": {
"admin_api_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Admin API keys allow you to perform some privileged actions such as creating a merchant account and Merchant Connector account."
},
"api_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Use the API key created under your merchant account from the HyperSwitch dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application."
},
"ephemeral_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Ephemeral keys provide temporary access to singular data, such as access to a single customer object for a short period of time."
},
"publishable_key": {
"type": "apiKey",
"in": "header",
"name": "api-key",
"description": "Publishable keys are a type of keys that can be public and have limited scope of usage."
}
}
},
"tags": [
{
"name": "Merchant Account",
"description": "Create and manage merchant accounts"
},
{
"name": "Profile",
"description": "Create and manage profiles"
},
{
"name": "Merchant Connector Account",
"description": "Create and manage merchant connector accounts"
},
{
"name": "Payments",
"description": "Create and manage one-time payments, recurring payments and mandates"
},
{
"name": "Refunds",
"description": "Create and manage refunds for successful payments"
},
{
"name": "Mandates",
"description": "Manage mandates"
},
{
"name": "Customers",
"description": "Create and manage customers"
},
{
"name": "Payment Methods",
"description": "Create and manage payment methods of customers"
},
{
"name": "Disputes",
"description": "Manage disputes"
},
{
"name": "API Key",
"description": "Create and manage API Keys"
},
{
"name": "Payouts",
"description": "Create and manage payouts"
},
{
"name": "payment link",
"description": "Create payment link"
},
{
"name": "Routing",
"description": "Create and manage routing configurations"
},
{
"name": "Event",
"description": "Manage events"
}
]
} | 178,518 | 8,922 |
hyperswitch | api-reference/README.md | .md | # Api Reference
We use the [openapi specification](https://swagger.io/specification) for the api reference. The openapi file is generated from the code base [openapi_spec.json](openapi_spec.json).
## How to generate the file
This file is automatically generated from our CI pipeline when the PR is raised. However if you want to generate it manually, the following command can be used
```bash
cargo r -p openapi --features v1
```
## Render the generated openapi spec file
In order to render the openapi spec file, we use a tool called [mintlify](https://mintlify.com/). Local setup instructions can be found [here](https://mintlify.com/docs/development#development). Once the cli is installed, Run the following command to render the openapi spec
- Navigate to the directory where `mint.json` exists
```bash
cd api-reference
```
- Run the cli
```bash
mintlify dev
```
## Add new routes to openapi
If you have added new routes to the openapi. Then in order for them to be displayed on the mintlify, run the following commands
- Switch to the directory where api reference ( mint.json ) exists
```bash
cd api-reference
```
- Run the following command to generate the route files
```bash
npx @mintlify/scraping@latest openapi-file openapi_spec.json -o api-reference
```
This will generate files in [api-reference](api-reference) folder. These routes should be added to the [mint.json](mint.json) file under navigation, under respective group.
| 341 | 8,923 |
hyperswitch-control-center | Dockerfile | none |
FROM node:18 AS base
WORKDIR /usr/src/app
COPY . .
RUN npm i
RUN npm run build:prod
FROM node:18-alpine
WORKDIR /usr/src/app
COPY --from=base /usr/src/app/dist /usr/src/app/dist
COPY --from=base /usr/src/app/package*.json ./
RUN apk add --no-cache bash
# Create non-root user and switch to it
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
# Give ownership of /usr/src/app to appuser
RUN chown -R appuser:appgroup /usr/src/app
USER appuser
EXPOSE 8080 9000
CMD [ "/bin/bash", "-c", "npm run serve" ]
| 171 | 9,041 |
hyperswitch-control-center | tailwindHyperSwitch.config.js | .js | const plugin = require("tailwindcss/plugin");
module.exports = {
darkMode: "class",
content: ["./src/**/*.js"],
theme: {
fontFamily: {
"inter-style": '"Inter"',
},
extend: {
screens: {
mobile: "28.125rem",
tablet: "93.75rem",
desktop: "118.75rem",
},
width: {
58: "14.6875rem",
94: "26.5rem",
100: "25rem",
120: "27rem",
128: "31.25rem",
133: "35rem",
135: "35.625rem",
200: "58rem",
"1.1-rem": "1.125rem",
"45-vw": "45vw",
"77-rem": "77rem",
"80-rem": "80rem",
"30-rem": "30rem",
"35-rem": "35rem",
"55-rem": "55rem",
"22.7-rem": "22.75rem",
pageWidth10: "62.5rem",
pageWidth11: "75rem",
pageWidth12: "85rem",
pageWidth14: "101rem",
successCardWidth: "52rem",
fixedPageWidth: "75.5rem",
standardPageWidth: "67.5rem",
},
scale: {
400: "4",
},
rotate: {
270: "270deg",
},
height: {
"1.1-rem": "1.125rem",
"5-rem": "5rem",
"6-rem": "6rem",
"7-rem": "7rem",
"8-rem": "8rem",
"12.5-rem": "12.5rem",
"25-rem": "25rem",
"30-rem": "30rem",
"35-rem": "35rem",
"40-rem": "40rem",
"45-rem": "45rem",
"48-rem": "48rem",
"50-rem": "50rem",
"93-per": "93%",
"80-vh": "80vh",
"30-vh": "30vh",
"40-vh": "40vh",
"75-vh": "75vh",
onBordingSupplier: "calc(100vh - 300px)",
},
maxHeight: {
"25-rem": "25rem",
},
maxWidth: {
fixedPageWidth: "82.75rem",
},
padding: {
1: "4px",
3.75: "15px",
11.25: "45px",
},
animation: {
"spin-slow": "spin 3s linear infinite",
slideUp: "slideUp 200ms ease-out forwards",
fade: "fadeOut 1s ease-in-out forwards",
secondsOnes: "secondsOnes 10s 0s 18 reverse", // format keyframe, duration, delay, iteration-count, direction
secondsTens: "secondsTens 60s 0s 3 forwards",
minutesOnes: "minutesOnes 180s 0s 1 forwards",
animateCards: "cardTransition 1s ease-in-out forwards",
wobble: "wobble 0.2s ease-in-out",
load: "load 3s normal forwards",
growDown: "growDown .3s ease-out forwards",
growUp: "growUp .2s ease-in forwards",
textTransition: "textTransition .3s ease",
textTransitionOff: "textTransitionOff .2s ease",
dashCheck: "dashCheck .06s .08s ease-in-out backwards",
ripple: "ripple 10s ease-in-out",
horizontalShaking: "horizontalShaking 0.5s 1s",
horizontalShakingDelay: "horizontalShaking 0.5s 4s",
},
transitionDelay: {
12: "12000ms",
24: "24000ms",
36: "36000ms",
48: "48000ms",
60: "60000ms",
84: "84000ms",
96: "96000ms",
18: "18000ms",
36: "36000ms",
54: "54000ms",
72: "72000ms",
90: "90000ms",
108: "108000ms",
126: "126000ms",
144: "144000ms",
162: "162000ms",
},
keyframes: (theme) => ({
fadeOut: {
"0%": { opacity: "100%" },
"100%": { opacity: "0%" },
},
load: {
"0%": { width: "0%" },
"100%": { width: "90%" },
},
slideUp: {
"0%": { opacity: "0%", transform: "translateY(5%)" },
"100%": { opacity: "100%", transform: "translateY(0%)" },
},
secondsOnes: {
"90%": {
transform: "translateY(-216px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"80%": {
transform: "translateY(-192px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"70%": {
transform: "translateY(-168px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"60%": {
transform: "translateY(-144px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"50%": {
transform: "translateY(-120px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"40%": {
transform: "translateY(-96px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"30%": {
transform: "translateY(-72px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"20%": {
transform: "translateY(-48px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"10%": {
transform: "translateY(-24px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
"0%": {
transform: "translateY(-0px)",
animationTimingFunction: "cubic-bezier(1, 0, 1, 0)",
},
},
secondsTens: {
"0%": {
transform: "translateY(-24px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
"16.6667%": {
transform: "translateY(-48px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
"33.3334%": {
transform: "translateY(-72px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
"50%": {
transform: "translateY(-96px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
"66.6667%": {
transform: "translateY(-120px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
"83.3334%": {
transform: "translateY(-144px)",
animationTimingFunction: "steps(1, end)",
animationDelay: "0s",
animationDuration: "0s",
},
},
minutesOnes: {
"0%": {
transform: "translateY(-24px)",
animationTimingFunction: "steps(1, end)",
},
"33.3334%": {
transform: "translateY(-48px)",
animationTimingFunction: "steps(1, end)",
},
"66.6667%": {
transform: "translateY(-72px)",
animationTimingFunction: "steps(1, end)",
},
},
cardTransition: {
0: { bottom: "-100%" },
"100%": { bottom: "0%" },
},
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
horizontalShaking: {
"0%": {
transform: "translateX(0px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"14.285%": {
transform: "translateX(-5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"28.57%": {
transform: "translateX(5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"42.857%": {
transform: "translateX(-5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"57.14%": {
transform: "translateX(5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"71.428%": {
transform: "translateX(-5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"85.714%": {
transform: "translateX(5px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
"100%": {
transform: "translateX(0px)",
animationTimingFunction: "cubic-bezier(0.65, 0, 0.35, 1)",
},
},
growDown: {
"0%": { transform: "scaleY(0)" },
"100%": { transform: "scaleY(1)" },
},
growUp: {
"0%": { transform: "scaleY(1)" },
"100%": { transform: "scaleY(0)" },
},
textTransition: {
"0%": { opacity: "0%" },
"80%": { opacity: "0%" },
"100%": { opacity: "100%" },
},
textTransitionOff: {
"0%": { opacity: "100%" },
"20%": { opacity: "0%" },
"100%": { opacity: "0%" },
},
dashCheck: {
"0%": {
strokeDashoffset: "100px",
},
"100%": {
strokeDashoffset: "0px",
},
},
ripple: {
"0%": {
opacity: "100%",
},
"50%": {
opacity: "50%",
},
"100%": {
opacity: "100%",
},
},
wobble: {
"0%": { transform: "translateX(0%)" },
"15%": {
transform: "translateX(-10%) rotate(-5deg)",
},
"30%": { transform: "translateX(10%) rotate(3deg) " },
"45%": {
transform: "translateX(-8%) rotate(-3deg)",
},
"60%": { transform: "translateX(8%) rotate(2deg)" },
"75%": {
transform: "translateX(-5%) rotate(-1deg)",
},
"100%": { transform: "translateX(0%)" },
},
}),
fontSize: {
body: "1rem",
small: "0.85rem",
},
colors: {
blue: {
100: "#F1F2F4",
200: "#DAECFF",
300: "#BED4F0",
400: "#006DF9CC",
500: "#006DF9",
600: "#005ED6",
700: "#66A9FF",
800: "#F5F9FF",
background_blue: "#EAEEF9",
info_blue_background: "#F6F8FA",
},
grey: {
0: "#FEFEFE",
50: "#808080",
100: "#B9BABC",
200: "#B9BABC",
300: "#8A8C8F",
400: "#8A8C8F",
500: "#8A8C8F",
550: "#8A8C8F",
600: "#808080",
650: "#8A8C8F",
700: "#151A1F",
750: "#151A1F",
800: "#151A1F",
850: "#151A1F",
900: "#333333",
950: "#212830",
},
green: {
50: "#EFF4EF",
100: "#EFF4EF",
200: "#EFF4EF",
300: "#EFF4EF",
400: "#EFF4EF",
500: "#EFF4EF",
550: "#B8D1B4",
600: "#B8D1B4",
650: "#B8D1B4",
700: "#6CB851",
750: "#6CB851",
800: "#6CB851",
850: "#6CB851",
900: "#6CB851",
950: "#79A779",
960: "#3A833A",
success_page_bg: "#E8FDF2",
accepted_green_800: "#39934F",
},
orange: {
50: "#FEF2E9",
100: "#FEF2E9",
200: "#FEF2E9",
300: "#E4BDA1",
400: "#E4BDA1",
500: "#E4BDA1",
550: "#FDD4B6",
600: "#FDD4B6",
650: "#D88B54",
700: "#D88B54",
750: "#D88B54",
800: "#D88B54",
850: "#D88B54",
900: "#D88B54",
950: "#D88B54",
960: "#E89519",
border_orange: "#eea23640",
warning_background_orange: "#eea2361a",
warning_text_orange: "#EEA236",
},
red: {
50: "#F9EDED",
100: "#F9EDED",
200: "#F9EDED",
300: "#F9EDED",
800: "#C04141",
900: "#DA0E0F",
950: "#F04849",
960: "#EF6969",
970: "#FF0000",
980: "#FC5454",
1000: "#A7A0A0",
failed_page_bg: "#FDEDE8",
},
"error-red": "#DA0E0F",
"status-green": "#36AF47",
"popover-background": "#334264",
"popover-background-hover": "#2E3B58",
"status-text-orange": "#E9AA0A",
"status-blue": "#0585DD",
"status-yellow": "#F7981C",
"status-gray": "#5B5F62",
"table-violet": "#3D5BF00F",
"table-border": "#EBEEFE",
"progress-bar-red": "#ef6969",
"progress-bar-blue": "#72b4f9",
"progress-bar-orange": "#f7981c",
"progress-bar-green": "#36af47",
"security-tab-light-gray": "#d6d6ce",
"security-tab-dark-gray": "#39373b",
"border-light-grey": "#E6E6E6",
light_blue_bg: "#F8FAFF",
"light-grey": "#DFDFDF",
"extra-light-grey": "#F0F2F4",
"sidebar-blue": "#242F48",
"profile-sidebar-blue": "#16488F",
"jp-gray": {
50: "#FAFBFD",
100: "#F7F8FA",
200: "#F1F5FA",
250: "#FDFEFF",
300: "#E7EAF1",
350: "#F1F5FA",
400: "#D1D4D8",
450: "#FDFEFF",
500: "#D8DDE9",
600: "#CCCFD4",
700: "#9A9FA8",
800: "#67707D",
850: "#31333A",
870: "#6c6c6c",
900: "#354052",
950: "#202124",
960: "#2C2D2F",
970: "#1B1B1D",
920: "#282A2F",
930: "#989AA5",
940: "#CCD2E2",
980: "#ACADB8",
dark_table_border_color: "#2e2f39",
tabset_gray: "#f6f8f9",
disabled_border: "#262626",
table_hover: "#F9FBFF",
darkgray_background: "#151A1F",
lightgray_background: "#151A1F",
text_darktheme: "#F6F8F9",
lightmode_steelgray: "#CCD2E2",
tooltip_bg_dark: "#F7F7FA",
tooltip_bg_light: "#23211D",
disable_heading_color: "#ACADB8",
dark_disable_border_color: "#8d8f9a",
light_table_border_color: "#CDD4EB",
dark_background_hover: "#F8FAFC",
no_data_border: "#6E727A",
border_gray: "#354052",
conflicts_light: "#f5f7fc",
sankey_labels: "#7e828f",
my_account_border: "#dfe2e5",
dark_black: "#0E0E0E",
banner_black: "#333333",
back_light: "#6c6c6c",
suboption_background_gray: "#212830",
hover_color: "#2B3139",
light_gray_bg: "#FAFAFA",
divider_gray: "#B7B7B7",
button_gray: "#F7F7F7",
divider_gray: "#B7B7B7",
border_gray: "#E8E8E8",
secondary_hover: "#EEEEEE",
test_credentials_bg: "#D9D9D959",
},
hyperswitch_dark_bg: "#212E46",
hyperswitch_blue_bg: "#212E46",
light_blue: "#006DF966",
light_grey: "#454545",
hyperswitch_green: "#71B44B",
light_green: "#32AA52",
hyperswitch_green_trans: "#71B44B20",
hyperswitch_red: "#D7625B",
hyperswitch_red_bg: "#F8E5E4",
hyperswitch_background: "#F7F8FB",
milestone_card_border: "#6DB852",
pdf_background: "#F5F5F5",
offset_white: "#FEFEFE",
light_white: "#FFFFFF0D",
unselected_white: "#9197A3",
"infra-gray": {
300: "#CCCCCC",
700: "#3F3447",
800: "#28212D",
900: "#1A141F",
},
"infra-indigo": {
50: "#E4E8FC10",
100: "#E4E8FC15",
200: "#E4E8FC47",
300: "#E4E8FC64",
400: "#E4E8FC87",
500: "#E4E8FC",
800: "#758AF0",
},
"infra-red": {
600: "#FAABA6",
900: "#F97F77",
},
"infra-amber": {
600: "#F8D2A2",
900: "#F9C077",
},
brown: {
600: "#77612a",
},
yellow: {
light_yellow: "#FFF5E1",
pending_page_bg: "#FDF4DD",
},
"ardra-blue": {
50: "#0E111E",
100: "#13182C",
},
"ardra-gray": {
200: "#5C6073",
},
"ardra-purple": "#7984E6",
statusArdra: "#E6A779",
statusCreated: "#5C6073",
},
fontSize: {
"fs-10": "10px",
"fs-11": "11px",
"fs-13": "13px",
"fs-14": "14px",
"fs-16": "16px",
"fs-18": "18px",
"fs-20": "20px",
"fs-24": "24px",
"fs-28": "28px",
},
opacity: {
3: "0.03",
},
borderWidth: {
1: "1px",
3: "3px",
},
boxShadow: {
generic_shadow: "0 2px 5px 0 rgba(0, 0, 0, 0.12)",
generic_shadow_dark: "0px 2px 5px 0 rgba(0, 0, 0, 0.78)",
side_shadow: "0 4px 4px rgba(0, 0, 0, 0.25)",
hyperswitch_box_shadow: "0 2px 8px 0px rgba(0,0,0,0.08)",
checklistShadow: "-2px -4px 12px 0px rgba(0,0,0,0.11)",
paymentLogsShadow: "0 0 4px 2px rgba(0,112,255,0.2)",
sidebarShadow: "0 -2px 12px 0 rgba(0, 0, 0, 0.06)",
connectorTagShadow: "0px 1px 4px 2px rgba(0, 0, 0, 0.06)",
boxShadowMultiple:
"2px -2px 24px 0px rgba(0, 0, 0, 0.04), -2px 2px 24px 0px rgba(0, 0, 0, 0.02)",
homePageBoxShadow: "0px 2px 16px 2px rgba(51, 51, 51, 0.16)",
},
gridTemplateColumns: {
6: "repeat(6, minmax(0, 1fr))",
},
margin: {
"10vh": "10vh",
"20vh": "20vh",
},
},
},
variants: {},
plugins: [
plugin(function ({ addUtilities }) {
const newUtilities = {
"*::-webkit-scrollbar": {
display: "none", // chrome and other
},
"*": {
scrollbarWidth: "none", // firefox
},
".show-scrollbar::-webkit-scrollbar": {
display: "block",
overflow: "scroll",
height: "4px",
width: "8px",
},
".show-scrollbar::-webkit-scrollbar-thumb": {
display: "block",
borderRadius: "20rem",
backgroundColor: "#8A8C8F",
},
".show-scrollbar::-webkit-scrollbar-track": {
backgroundColor: "#FFFFFFF",
},
};
addUtilities(newUtilities);
}),
],
};
| 6,444 | 9,042 |
hyperswitch-control-center | package.json | .json | {
"name": "hyperswitch-dashboard",
"version": "1.0.5",
"main": "index.js",
"author": "Shiva Nandan <shiva.nandan@juspay.in>",
"license": "MIT",
"scripts": {
"pre-commit": "bash .githooks/commit-msg",
"start": "cross-env APP_VERSION=$npm_package_version webpack serve --config webpack.dev.js",
"serve": "node dist/server/server.js",
"prod:start": "cross-env NODE_ENV=production webpack serve --config webpack.dev.js",
"build:common": "npm run re:clean && npm run re:build && cross-env APP_VERSION=$npm_package_version",
"build:prod": "npm run build:common && webpack --config webpack.prod.js",
"build:custom": "npm run build:common && webpack --config webpack.custom.js",
"build:test": "npm run build:common && webpack --config webpack.prod.js",
"re:build": "rescript",
"re:clean": "rescript clean",
"re:start": "rescript -w",
"re:format": "rescript format -all",
"test:start": "cross-env default__endpoints__api_url=http://localhost:8080 default__features__email=true node dist/server/server.js",
"postinstall": "git config core.hooksPath .githooks && chmod +x .githooks/commit-msg",
"cy:open": "sh cypress/start_hyperswitch.sh && cypress open",
"cy:run": "sh cypress/start_hyperswitch.sh && cypress run",
"local:cy:open": "cypress open",
"lint:hooks": "eslint src/ --max-warnings 0",
"lint:fix": "eslint src/ --fix && prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.24",
"@eslint/create-config": "0.4.6",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cypress": "^13.6.0",
"eslint": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^1.3.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"nyc": "^15.1.0",
"postcss": "^8.3.6",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
"rescript": "^11.1.1",
"serve": "^14.2.1",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.3.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@iarna/toml": "^2.2.5",
"@juspay-tech/hyper-js": "^1.6.0",
"@juspay-tech/react-hyper-js": "^1.2.1",
"@monaco-editor/react": "^4.4.5",
"@rescript/core": "^0.6.0",
"@rescript/react": "^0.12.0",
"apexcharts": "^4.0.0",
"bs-fetch": "^0.6.2",
"dayjs": "^1.10.4",
"final-form": "^4.20.4",
"framer-motion": "^10.12.16",
"highcharts": "^9.3.0",
"highcharts-react-official": "^3.1.0",
"js-datepicker": "^5.18.2",
"js-sha256": "^0.9.0",
"lottie-react": "^2.3.1",
"mixpanel-browser": "2.45.0",
"monaco-editor": "^0.34.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-ga4": "^2.0.0",
"react-pdf": "^9.1.1",
"react-qr-code": "^2.0.12",
"react-syntax-highlighter": "^15.5.0",
"react-window": "^1.8.8",
"recoil": "^0.1.2",
"rescript-webapi": "^0.9.1",
"tailwindcss": "^3.0.0"
},
"packageManager": "yarn@3.2.1"
}
| 1,304 | 9,043 |
hyperswitch-control-center | CHANGELOG.md | .md | # Changelog
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
- - -
## 2025.04.22.0
### Bug Fixes
- Connector metadata default ([#2849](https://github.com/juspay/hyperswitch-control-center/pull/2849)) ([`a48970b`](https://github.com/juspay/hyperswitch-control-center/commit/a48970b0c524953ff9d90617306d55a64014c15b))
- Webhooks request response data interchange fix ([#2850](https://github.com/juspay/hyperswitch-control-center/pull/2850)) ([`fa160e0`](https://github.com/juspay/hyperswitch-control-center/commit/fa160e0541e122ee69333b446690e374ab52e297))
### Miscellaneous Tasks
- Update login event ([#2855](https://github.com/juspay/hyperswitch-control-center/pull/2855)) ([`2c06a3c`](https://github.com/juspay/hyperswitch-control-center/commit/2c06a3cfe56df58e97f340e2d509e645f9712475))
**Full Changelog:** [`2025.04.18.0...2025.04.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.18.0...2025.04.22.0)
- - -
## 2025.04.18.0
### Bug Fixes
- Analytics group by currency NA row fix ([#2839](https://github.com/juspay/hyperswitch-control-center/pull/2839)) ([`bf681d9`](https://github.com/juspay/hyperswitch-control-center/commit/bf681d9a5e94bd7abab97ebb449dcc118612c5bb))
- Amount available to refund in payments page initiate refund ([#2840](https://github.com/juspay/hyperswitch-control-center/pull/2840)) ([`a990680`](https://github.com/juspay/hyperswitch-control-center/commit/a990680773329da9adecca760a3213251fdc89dc))
- Logs in payments details ([#2825](https://github.com/juspay/hyperswitch-control-center/pull/2825)) ([`00a0e67`](https://github.com/juspay/hyperswitch-control-center/commit/00a0e670121c9e62005da46a23eb4949fa94414c))
- Wrong metrics in the operations cards ([#2842](https://github.com/juspay/hyperswitch-control-center/pull/2842)) ([`d662154`](https://github.com/juspay/hyperswitch-control-center/commit/d6621540dd1b5bc3db777525eafadc7d0e734d63))
### Testing
- Refactor tests ([#2837](https://github.com/juspay/hyperswitch-control-center/pull/2837)) ([`8b3288e`](https://github.com/juspay/hyperswitch-control-center/commit/8b3288e2bbf29b831c31161eb3d83e643147a94d))
### Miscellaneous Tasks
- Modified connector bodykey handling for NoAuth auth type ([#2797](https://github.com/juspay/hyperswitch-control-center/pull/2797)) ([`955dad1`](https://github.com/juspay/hyperswitch-control-center/commit/955dad1884b3eda8b09730d776536a9244a059f7))
- Changed merchant level api endpoint to profile level ([#2843](https://github.com/juspay/hyperswitch-control-center/pull/2843)) ([`68f14af`](https://github.com/juspay/hyperswitch-control-center/commit/68f14af459f7a2478e3db8ab7f592f03eb431377))
**Full Changelog:** [`2025.04.17.0...2025.04.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.17.0...2025.04.18.0)
- - -
## 2025.04.17.0
### Bug Fixes
- Refunds disable/enable in operations ([#2833](https://github.com/juspay/hyperswitch-control-center/pull/2833)) ([`93fe0ec`](https://github.com/juspay/hyperswitch-control-center/commit/93fe0ec58b67574c8ff4886be1e524062fbfe6cd))
### Miscellaneous Tasks
- Added worldpay connector in prod ([#2832](https://github.com/juspay/hyperswitch-control-center/pull/2832)) ([`35e660e`](https://github.com/juspay/hyperswitch-control-center/commit/35e660e8f37fda6861c6776b277fef1183e0c71d))
- Recon navigation and url changes ([#2826](https://github.com/juspay/hyperswitch-control-center/pull/2826)) ([`bd467b9`](https://github.com/juspay/hyperswitch-control-center/commit/bd467b91b44bf5fe4474f761cff4dafb138be172))
**Full Changelog:** [`2025.04.16.0...2025.04.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.16.0...2025.04.17.0)
- - -
## 2025.04.16.0
### Features
- Recon onboarding api integration ([#2705](https://github.com/juspay/hyperswitch-control-center/pull/2705)) ([`92f0e94`](https://github.com/juspay/hyperswitch-control-center/commit/92f0e94fa31a61dc2d1a08afb04dfd711cbdce3b))
### Bug Fixes
- Text overlap in Configure PMTs & Remove profile id and name ([#2804](https://github.com/juspay/hyperswitch-control-center/pull/2804)) ([`73db657`](https://github.com/juspay/hyperswitch-control-center/commit/73db657ff29bb1b6696d3c5a99aa7fb5cf15c1af))
- Overlap sidebar ([#2817](https://github.com/juspay/hyperswitch-control-center/pull/2817)) ([`e123428`](https://github.com/juspay/hyperswitch-control-center/commit/e123428809d9d0515bd7be93bd5906d326d6ca2f))
**Full Changelog:** [`2025.04.11.2...2025.04.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.11.2...2025.04.16.0)
- - -
## 2025.04.11.2
### Bug Fixes
- Empty page issue on omp dropdown item click ([#2818](https://github.com/juspay/hyperswitch-control-center/pull/2818)) ([`12ca0a7`](https://github.com/juspay/hyperswitch-control-center/commit/12ca0a7ad3755e6ee0cfcd8e54205202ec241556))
**Full Changelog:** [`2025.04.11.1...2025.04.11.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.11.1...2025.04.11.2)
- - -
## 2025.04.11.1
### Bug Fixes
- Merchant name update failing for v2 ([#2815](https://github.com/juspay/hyperswitch-control-center/pull/2815)) ([`07df36c`](https://github.com/juspay/hyperswitch-control-center/commit/07df36c446ef66baf34514fd1b3d11b2f7f4adc7))
- Safari dashboard ui fixes ([#2809](https://github.com/juspay/hyperswitch-control-center/pull/2809)) ([`5fa8dbd`](https://github.com/juspay/hyperswitch-control-center/commit/5fa8dbd8d52b62c67e4b130c1a4f99cc0c3e1338))
- Recovery minor fixes ([#2813](https://github.com/juspay/hyperswitch-control-center/pull/2813)) ([`288eafe`](https://github.com/juspay/hyperswitch-control-center/commit/288eafec6526f4aed4ed9df77c44ac175e4b478b))
**Full Changelog:** [`2025.04.11.0...2025.04.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.11.0...2025.04.11.1)
- - -
## 2025.04.11.0
### Features
- Google pay decryption flow for cybersource ([#2652](https://github.com/juspay/hyperswitch-control-center/pull/2652)) ([`e1e9248`](https://github.com/juspay/hyperswitch-control-center/commit/e1e92484f7d07377ede90dae140d709e43187717))
- Field addition for create refund for coingate connector ([#2731](https://github.com/juspay/hyperswitch-control-center/pull/2731)) ([`3d47bfb`](https://github.com/juspay/hyperswitch-control-center/commit/3d47bfb2b7cf602e49bca853184fb9698abe4ad9))
- Webhook list and details introduced ([#2224](https://github.com/juspay/hyperswitch-control-center/pull/2224)) ([`79aff4b`](https://github.com/juspay/hyperswitch-control-center/commit/79aff4b749545eec118292fd614269155842c309))
### Bug Fixes
- Show payment details issue on new tab open ([#2805](https://github.com/juspay/hyperswitch-control-center/pull/2805)) ([`9f3d326`](https://github.com/juspay/hyperswitch-control-center/commit/9f3d326f25699274b3a3b1e97124a7eafebee97e))
- Pci security issues in docker and cypress ([#2794](https://github.com/juspay/hyperswitch-control-center/pull/2794)) ([`454757d`](https://github.com/juspay/hyperswitch-control-center/commit/454757dd74aa00ae6392e0fc18255489b38173aa))
### Refactors
- Copy text custom component displayValue type change ([#2808](https://github.com/juspay/hyperswitch-control-center/pull/2808)) ([`b722495`](https://github.com/juspay/hyperswitch-control-center/commit/b722495554ff0a5d3740fda94495610d6bb5262a))
### Miscellaneous Tasks
- Frontend Improvements ([#2802](https://github.com/juspay/hyperswitch-control-center/pull/2802)) ([`f141a66`](https://github.com/juspay/hyperswitch-control-center/commit/f141a66c953f4d4da4e71f5fd8dcf44d2aa19eeb))
- Added titles to the table instead of empty string ([#2811](https://github.com/juspay/hyperswitch-control-center/pull/2811)) ([`a242eb1`](https://github.com/juspay/hyperswitch-control-center/commit/a242eb11ad8493f5a3d8eaac4e7a65e6bb2c4813))
- Product type added in get production api payload ([#2683](https://github.com/juspay/hyperswitch-control-center/pull/2683)) ([`80113a2`](https://github.com/juspay/hyperswitch-control-center/commit/80113a24f34638365779e3571114a193dd2014aa))
- Login and signup page view count ([#2793](https://github.com/juspay/hyperswitch-control-center/pull/2793)) ([`8105d4c`](https://github.com/juspay/hyperswitch-control-center/commit/8105d4ca68d18e4c05e805ea6cf247f6c881217f))
**Full Changelog:** [`2025.04.10.0...2025.04.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.10.0...2025.04.11.0)
- - -
## 2025.04.10.0
### Bug Fixes
- Threeds app url validation ([#2795](https://github.com/juspay/hyperswitch-control-center/pull/2795)) ([`0206390`](https://github.com/juspay/hyperswitch-control-center/commit/020639081fce641472b4cbc2560c073b6b32c023))
- Profile name not showing in about payment section ([#2803](https://github.com/juspay/hyperswitch-control-center/pull/2803)) ([`d54afc9`](https://github.com/juspay/hyperswitch-control-center/commit/d54afc91b9c97c4d18e9e89e9e594c293aa26ad7))
### Miscellaneous Tasks
- Made charts responsive ([#2786](https://github.com/juspay/hyperswitch-control-center/pull/2786)) ([`5f3b144`](https://github.com/juspay/hyperswitch-control-center/commit/5f3b1447b4333ca3eec751c3090302515bfe120c))
- Show global search bar only for orchestrator ([#2801](https://github.com/juspay/hyperswitch-control-center/pull/2801)) ([`e3a5872`](https://github.com/juspay/hyperswitch-control-center/commit/e3a5872e5ab369e0095ff830d74ac7b60816ad5a))
- Recovery product name change ([#2798](https://github.com/juspay/hyperswitch-control-center/pull/2798)) ([`df5d052`](https://github.com/juspay/hyperswitch-control-center/commit/df5d052ffb0d877371b78df5cbcd8fba16c9e217))
**Full Changelog:** [`2025.04.09.0...2025.04.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.09.0...2025.04.10.0)
- - -
## 2025.04.09.0
### Bug Fixes
- Fixed vault 13 inch screen ui bugs ([#2789](https://github.com/juspay/hyperswitch-control-center/pull/2789)) ([`c4163c6`](https://github.com/juspay/hyperswitch-control-center/commit/c4163c60de43e8c0340723c6a85bd096bc6dc89b))
**Full Changelog:** [`2025.04.08.0...2025.04.09.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.08.0...2025.04.09.0)
- - -
## 2025.04.08.0
### Bug Fixes
- Browser console warnings ([#2729](https://github.com/juspay/hyperswitch-control-center/pull/2729)) ([`c75759c`](https://github.com/juspay/hyperswitch-control-center/commit/c75759c1605c93630222769278cb17ceb55b915b))
### Testing
- Add workflow tests ([#2773](https://github.com/juspay/hyperswitch-control-center/pull/2773)) ([`57ffe23`](https://github.com/juspay/hyperswitch-control-center/commit/57ffe23f85fa73128a1d394c0aa50accb7689641))
### Miscellaneous Tasks
- Changed label badge colours ([#2772](https://github.com/juspay/hyperswitch-control-center/pull/2772)) ([`d630b40`](https://github.com/juspay/hyperswitch-control-center/commit/d630b4021920bb8f6f102fc3032647b24eb5a751))
- Remove apm from product types ([#2783](https://github.com/juspay/hyperswitch-control-center/pull/2783)) ([`40a82fe`](https://github.com/juspay/hyperswitch-control-center/commit/40a82fe1f5f8522eec4e66fc7f3c5e6b4b8130df))
- Changed custom label cells to default label cells in modularit… ([#2784](https://github.com/juspay/hyperswitch-control-center/pull/2784)) ([`8bee012`](https://github.com/juspay/hyperswitch-control-center/commit/8bee01257765d0e9eaccea16104a4ef8cb0379bc))
**Full Changelog:** [`2025.04.07.0...2025.04.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.07.0...2025.04.08.0)
- - -
## 2025.04.07.0
### Bug Fixes
- Toast notification redesign ([#2771](https://github.com/juspay/hyperswitch-control-center/pull/2771)) ([`f7378f8`](https://github.com/juspay/hyperswitch-control-center/commit/f7378f8378790776f8f999b114b72ff8a724a0e9))
- Disabled the recon onboarding input fields ([#2776](https://github.com/juspay/hyperswitch-control-center/pull/2776)) ([`79024a9`](https://github.com/juspay/hyperswitch-control-center/commit/79024a95aba487ec104b4f256fd4e02e2db7c9fc))
- Hypersense product name change to cost observability ([#2780](https://github.com/juspay/hyperswitch-control-center/pull/2780)) ([`10ebe1f`](https://github.com/juspay/hyperswitch-control-center/commit/10ebe1f696a9d74740fb8eaba03091e05f0c1542))
### Miscellaneous Tasks
- Number type input for connector metadata ([#2770](https://github.com/juspay/hyperswitch-control-center/pull/2770)) ([`5fd329e`](https://github.com/juspay/hyperswitch-control-center/commit/5fd329e10c2f3aa0bd962bfbab01a16eba0af9b6))
**Full Changelog:** [`2025.04.04.0...2025.04.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.04.0...2025.04.07.0)
- - -
## 2025.04.04.0
### Features
- Addition of new connector - paystack ([#2306](https://github.com/juspay/hyperswitch-control-center/pull/2306)) ([`d7099ef`](https://github.com/juspay/hyperswitch-control-center/commit/d7099ef840c4f198e3adde688586dffe4508f7b0))
### Bug Fixes
- Recon ui issues in 13 inch screen ([#2767](https://github.com/juspay/hyperswitch-control-center/pull/2767)) ([`4726941`](https://github.com/juspay/hyperswitch-control-center/commit/4726941f67e7187065e2ee662ec4e700c35eafc7))
- Demo data banner issues ([#2768](https://github.com/juspay/hyperswitch-control-center/pull/2768)) ([`880dd75`](https://github.com/juspay/hyperswitch-control-center/commit/880dd75d461c4ea089891e150c769e5f3172aec7))
### Refactors
- Hyperswitch app refactor ([#2748](https://github.com/juspay/hyperswitch-control-center/pull/2748)) ([`65b9004`](https://github.com/juspay/hyperswitch-control-center/commit/65b9004512235feb2df9158a20d23160a85fbcd5))
### Miscellaneous Tasks
- Restructuring intelligent routing files ([#2758](https://github.com/juspay/hyperswitch-control-center/pull/2758)) ([`f13e1ee`](https://github.com/juspay/hyperswitch-control-center/commit/f13e1ee45f0f7a08153a925b15bb8b0682955c29))
**Full Changelog:** [`2025.04.03.1...2025.04.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.03.1...2025.04.04.0)
- - -
## 2025.04.03.1
### Miscellaneous Tasks
- Removed production access for v2 products ([#2761](https://github.com/juspay/hyperswitch-control-center/pull/2761)) ([`4a7646d`](https://github.com/juspay/hyperswitch-control-center/commit/4a7646d3bb11feb7fd82f82cd37560e1172ddb82))
**Full Changelog:** [`2025.04.03.0...2025.04.03.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.03.0...2025.04.03.1)
- - -
## 2025.04.03.0
### Features
- Debit routing toggle ([#2720](https://github.com/juspay/hyperswitch-control-center/pull/2720)) ([`71f2b87`](https://github.com/juspay/hyperswitch-control-center/commit/71f2b879b3c3aa4aa0570a2e0745792529fd2b4b))
### Miscellaneous Tasks
- Added mixpanel event whenever date dropdown is opened ([#2717](https://github.com/juspay/hyperswitch-control-center/pull/2717)) ([`0b38ec8`](https://github.com/juspay/hyperswitch-control-center/commit/0b38ec8f664fd35c88a4a2741b1b43cf106d90b7))
- Removed default allowed auth methods in google pay ([#2726](https://github.com/juspay/hyperswitch-control-center/pull/2726)) ([`a80f462`](https://github.com/juspay/hyperswitch-control-center/commit/a80f462c1806c72312c8858a674855acd98f4d92))
- Updated graph options ([#2752](https://github.com/juspay/hyperswitch-control-center/pull/2752)) ([`9a62866`](https://github.com/juspay/hyperswitch-control-center/commit/9a62866b6a605accd3558b5751548d129d154c0c))
**Full Changelog:** [`2025.04.02.0...2025.04.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.02.0...2025.04.03.0)
- - -
## 2025.04.02.0
### Bug Fixes
- Connector metadata ([#2732](https://github.com/juspay/hyperswitch-control-center/pull/2732)) ([`ae0a3c0`](https://github.com/juspay/hyperswitch-control-center/commit/ae0a3c0e0726c77a010924cefea896d96d9ea98c))
### Refactors
- Enable all feature flags by default ([#2733](https://github.com/juspay/hyperswitch-control-center/pull/2733)) ([`808dbaa`](https://github.com/juspay/hyperswitch-control-center/commit/808dbaa653cf06138d5f3ace0e3bfecff18d3ec0))
**Full Changelog:** [`2025.04.01.0...2025.04.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.04.01.0...2025.04.02.0)
- - -
## 2025.04.01.0
### Miscellaneous Tasks
- Updating graph ([#2721](https://github.com/juspay/hyperswitch-control-center/pull/2721)) ([`3981aa1`](https://github.com/juspay/hyperswitch-control-center/commit/3981aa1b3195f213b7e361a8746347de9aa5ce6b))
**Full Changelog:** [`2025.03.31.0...2025.04.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.31.0...2025.04.01.0)
- - -
## 2025.03.31.0
### Bug Fixes
- Remove resolve button after resolving ([#2714](https://github.com/juspay/hyperswitch-control-center/pull/2714)) ([`16b6510`](https://github.com/juspay/hyperswitch-control-center/commit/16b65105b32043072130a3fd45afe0e599385cdc))
- Webhook step horizontally scrollable ([#2719](https://github.com/juspay/hyperswitch-control-center/pull/2719)) ([`a3fcc6c`](https://github.com/juspay/hyperswitch-control-center/commit/a3fcc6ccd9edfac17ad3ecad1c9d94cf40efec03))
**Full Changelog:** [`2025.03.28.1...2025.03.31.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.28.1...2025.03.31.0)
- - -
## 2025.03.28.1
### Bug Fixes
- Recovery module bug fixes ([#2605](https://github.com/juspay/hyperswitch-control-center/pull/2605)) ([`0115ec5`](https://github.com/juspay/hyperswitch-control-center/commit/0115ec51847f13ca84e1929d19d0c1d83ebb114e))
### Refactors
- Profile Merchant Labels ([#2709](https://github.com/juspay/hyperswitch-control-center/pull/2709)) ([`1efc43f`](https://github.com/juspay/hyperswitch-control-center/commit/1efc43f0028889a19984a0926d98b46f67e0b155))
### Miscellaneous Tasks
- New design changes in intelligent routing ([#2707](https://github.com/juspay/hyperswitch-control-center/pull/2707)) ([`4ee6e79`](https://github.com/juspay/hyperswitch-control-center/commit/4ee6e7967ad71cb5ed1de5a25e658af7aa81679e))
**Full Changelog:** [`2025.03.28.0...2025.03.28.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.28.0...2025.03.28.1)
- - -
## 2025.03.28.0
### Features
- Nomupay connector addition ([#2704](https://github.com/juspay/hyperswitch-control-center/pull/2704)) ([`36068b3`](https://github.com/juspay/hyperswitch-control-center/commit/36068b30d09be062e45f479fe5f1104a22986441))
### Bug Fixes
- Render glitch of total customers and total token component ([#2711](https://github.com/juspay/hyperswitch-control-center/pull/2711)) ([`324bdeb`](https://github.com/juspay/hyperswitch-control-center/commit/324bdeb7cbe124872cad5e3e198cff1df59fbc9c))
### Testing
- Add workflow tests ([#2648](https://github.com/juspay/hyperswitch-control-center/pull/2648)) ([`ec88511`](https://github.com/juspay/hyperswitch-control-center/commit/ec88511ff7b22d1fbfc82ca4aac8db7530fe63a4))
**Full Changelog:** [`2025.03.27.0...2025.03.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.27.0...2025.03.28.0)
- - -
## 2025.03.27.0
### Bug Fixes
- Icon name fix ([#2699](https://github.com/juspay/hyperswitch-control-center/pull/2699)) ([`23415dc`](https://github.com/juspay/hyperswitch-control-center/commit/23415dcc4b783682cf4f1800c437767ae66e3ac6))
- Close icon on merchant select modal ([#2696](https://github.com/juspay/hyperswitch-control-center/pull/2696)) ([`489641a`](https://github.com/juspay/hyperswitch-control-center/commit/489641a2cdd300ab34951d09ff4d2bd9932e6795))
- Fixed vault bugs ([#2701](https://github.com/juspay/hyperswitch-control-center/pull/2701)) ([`8125392`](https://github.com/juspay/hyperswitch-control-center/commit/8125392936cdf61bc2c8cc171cf1ddc75ba9aaaf))
### Miscellaneous Tasks
- Recovery ui changes ([#2645](https://github.com/juspay/hyperswitch-control-center/pull/2645)) ([`d06efc8`](https://github.com/juspay/hyperswitch-control-center/commit/d06efc8e1f46e23a17d7c423e021013c96887260))
- Added scrollbar in vault tables ([#2703](https://github.com/juspay/hyperswitch-control-center/pull/2703)) ([`8e31612`](https://github.com/juspay/hyperswitch-control-center/commit/8e316120d9d1e02c012eb82d2e8e40508772980e))
**Full Changelog:** [`2025.03.26.1...2025.03.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.26.1...2025.03.27.0)
- - -
## 2025.03.26.1
### Bug Fixes
- PCI high severity issue ([#2676](https://github.com/juspay/hyperswitch-control-center/pull/2676)) ([`3fc8ed2`](https://github.com/juspay/hyperswitch-control-center/commit/3fc8ed22b624e519727f7fa7467ae60a47d2d119))
- Hyperloader reinitialisation ([#2693](https://github.com/juspay/hyperswitch-control-center/pull/2693)) ([`30b60db`](https://github.com/juspay/hyperswitch-control-center/commit/30b60db0701454dec45f5797d62312b657694341))
### Miscellaneous Tasks
- Add mixpanel for recon analytics ([#2691](https://github.com/juspay/hyperswitch-control-center/pull/2691)) ([`b452d5c`](https://github.com/juspay/hyperswitch-control-center/commit/b452d5c17c4ad3db4908ad610625c4763617fd47))
**Full Changelog:** [`2025.03.26.0...2025.03.26.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.26.0...2025.03.26.1)
- - -
## 2025.03.26.0
### Features
- Fetching recon reports from s3 ([#2670](https://github.com/juspay/hyperswitch-control-center/pull/2670)) ([`209308e`](https://github.com/juspay/hyperswitch-control-center/commit/209308ef1374d7cf80cffba2b6fc28f2ef447001))
- Duplicate and edit configuration for rule based routing ([#2631](https://github.com/juspay/hyperswitch-control-center/pull/2631)) ([`b62f449`](https://github.com/juspay/hyperswitch-control-center/commit/b62f4496a30f2bf0cf7e36ed96718dd8ba98a11b))
- Added scarf platform in dashboard ([#2684](https://github.com/juspay/hyperswitch-control-center/pull/2684)) ([`4786928`](https://github.com/juspay/hyperswitch-control-center/commit/47869281849e62b26a8e5faf284bd3578bf4489e))
- Recovery dummy data flow ([#2638](https://github.com/juspay/hyperswitch-control-center/pull/2638)) ([`33f55d3`](https://github.com/juspay/hyperswitch-control-center/commit/33f55d3ab25df83ca3028444778a2118e64bb88b))
### Bug Fixes
- Payout routing default fallback connector label ([#2677](https://github.com/juspay/hyperswitch-control-center/pull/2677)) ([`00e9dac`](https://github.com/juspay/hyperswitch-control-center/commit/00e9dac297aac24d51d190f6f1516ec138a03071))
- Sticky vertical step indicator in onboarding ([#2678](https://github.com/juspay/hyperswitch-control-center/pull/2678)) ([`dc770b2`](https://github.com/juspay/hyperswitch-control-center/commit/dc770b26a7ceca76e7161f729cbc7dc75ffa34f8))
- Switching merchants in modularity products ([#2682](https://github.com/juspay/hyperswitch-control-center/pull/2682)) ([`c564fbc`](https://github.com/juspay/hyperswitch-control-center/commit/c564fbc90bf049f45b6cc7df0cf5828af1f54f8b))
- Rule based routing month issue in description ([#2681](https://github.com/juspay/hyperswitch-control-center/pull/2681)) ([`320f339`](https://github.com/juspay/hyperswitch-control-center/commit/320f339fbef66d501ca37844abc3ebf8614f9c4c))
- Recon ui changes and processor validation ([#2688](https://github.com/juspay/hyperswitch-control-center/pull/2688)) ([`a197d99`](https://github.com/juspay/hyperswitch-control-center/commit/a197d991065fc77851fd068ba12c9020d839fef4))
### Miscellaneous Tasks
- Enabled only credit and debit payment methods for vault ([#2674](https://github.com/juspay/hyperswitch-control-center/pull/2674)) ([`b914184`](https://github.com/juspay/hyperswitch-control-center/commit/b914184021e52c2d822446411a10192cfd6c62d1))
- UI enhancements intelligent routing ([#2669](https://github.com/juspay/hyperswitch-control-center/pull/2669)) ([`0b2fee5`](https://github.com/juspay/hyperswitch-control-center/commit/0b2fee54bc1e42dacc424f3993effd385a52ad6e))
- Vault minor ui changes ([#2680](https://github.com/juspay/hyperswitch-control-center/pull/2680)) ([`39fad85`](https://github.com/juspay/hyperswitch-control-center/commit/39fad8548ed6425e530b2b92b0576faeefc39cf3))
**Full Changelog:** [`2025.03.24.2...2025.03.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.24.2...2025.03.26.0)
- - -
## 2025.03.24.2
### Features
- HiPay Connector addition ([#2661](https://github.com/juspay/hyperswitch-control-center/pull/2661)) ([`c491938`](https://github.com/juspay/hyperswitch-control-center/commit/c491938ee3397125203f34022cec73a8087c8894))
### Bug Fixes
- Analytics insights breaking fix ([#2672](https://github.com/juspay/hyperswitch-control-center/pull/2672)) ([`1c77c3d`](https://github.com/juspay/hyperswitch-control-center/commit/1c77c3d3a038409fbf2d55fda26b0ff7b8f8996f))
### Refactors
- Recon ui changes in analytics ([#2664](https://github.com/juspay/hyperswitch-control-center/pull/2664)) ([`bfc1182`](https://github.com/juspay/hyperswitch-control-center/commit/bfc118268f897bd0018467caa30f6b9746f040d5))
### Miscellaneous Tasks
- Remove profile level report - auth analytics ([#2633](https://github.com/juspay/hyperswitch-control-center/pull/2633)) ([`a45d922`](https://github.com/juspay/hyperswitch-control-center/commit/a45d922793cfa8986ce569c1314afc7f3ba28b01))
**Full Changelog:** [`2025.03.24.1...2025.03.24.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.24.1...2025.03.24.2)
- - -
## 2025.03.24.1
### Features
- Added new connector redsys ([#2658](https://github.com/juspay/hyperswitch-control-center/pull/2658)) ([`eb29310`](https://github.com/juspay/hyperswitch-control-center/commit/eb2931079d1ef39fe2dbd62c8cd41ef24e2cf9af))
- Wasm update for redsys ([#2659](https://github.com/juspay/hyperswitch-control-center/pull/2659)) ([`4465a60`](https://github.com/juspay/hyperswitch-control-center/commit/4465a60ac1a105928c23166edbbf888bc5ddfe1d))
- Added threeds requestor app url in payment settings ([#2650](https://github.com/juspay/hyperswitch-control-center/pull/2650)) ([`9b76b1d`](https://github.com/juspay/hyperswitch-control-center/commit/9b76b1d42581860de6d8f696117f5463b7154457))
### Bug Fixes
- Logo aspect ratio ([#2655](https://github.com/juspay/hyperswitch-control-center/pull/2655)) ([`3625158`](https://github.com/juspay/hyperswitch-control-center/commit/3625158ff53e48623cceb77c428526f40b798883))
- Default home changes ([#2657](https://github.com/juspay/hyperswitch-control-center/pull/2657)) ([`824b0dc`](https://github.com/juspay/hyperswitch-control-center/commit/824b0dc31a7bcd5bb32afddfc91126a1b9ffe567))
**Full Changelog:** [`2025.03.24.0...2025.03.24.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.24.0...2025.03.24.1)
- - -
## 2025.03.24.0
### Features
- Added checkbox for allowed auth methods in google pay ([#2359](https://github.com/juspay/hyperswitch-control-center/pull/2359)) ([`3c5c123`](https://github.com/juspay/hyperswitch-control-center/commit/3c5c1231cd27ace0caa4415e9f6006f9b3d14cda))
### Bug Fixes
- Removed actions, text changes, date changes ([#2641](https://github.com/juspay/hyperswitch-control-center/pull/2641)) ([`09442a8`](https://github.com/juspay/hyperswitch-control-center/commit/09442a854cdb9c2e78d7ada6e7bd638c14c113c6))
- Switch url redirection issue ([#2640](https://github.com/juspay/hyperswitch-control-center/pull/2640)) ([`e0ce9c5`](https://github.com/juspay/hyperswitch-control-center/commit/e0ce9c5ea5d7ee3fc042f1c3c616499ed1a0ebbd))
### Miscellaneous Tasks
- Billing connector metadata update ([#2606](https://github.com/juspay/hyperswitch-control-center/pull/2606)) ([`5c06c88`](https://github.com/juspay/hyperswitch-control-center/commit/5c06c8830e574658e7f1ef35a21f906bc996bff2))
- Configure retry tooltip text ([#2629](https://github.com/juspay/hyperswitch-control-center/pull/2629)) ([`aad4793`](https://github.com/juspay/hyperswitch-control-center/commit/aad47932600bf2e7fe1c94b3aabbae721c28b0f3))
- Added general mixpanel events ([#2607](https://github.com/juspay/hyperswitch-control-center/pull/2607)) ([`26d2d33`](https://github.com/juspay/hyperswitch-control-center/commit/26d2d33d8d0edac881938eb9678a1f11da0a3eb9))
- Made chargebee webhooks details field as required ([#2643](https://github.com/juspay/hyperswitch-control-center/pull/2643)) ([`2f9f344`](https://github.com/juspay/hyperswitch-control-center/commit/2f9f34480173c35882588d1c85886b1e6f43eb0b))
- Vault ui changes ([#2637](https://github.com/juspay/hyperswitch-control-center/pull/2637)) ([`3660da7`](https://github.com/juspay/hyperswitch-control-center/commit/3660da7d3ef883a1b3368ad07308630696f9a265))
**Full Changelog:** [`2025.03.21.0...2025.03.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.21.0...2025.03.24.0)
- - -
## 2025.03.21.0
### Miscellaneous Tasks
- Custom date style cell ([#2630](https://github.com/juspay/hyperswitch-control-center/pull/2630)) ([`18ffb71`](https://github.com/juspay/hyperswitch-control-center/commit/18ffb71e08380b6b370467bc56eab17cfb00a74e))
**Full Changelog:** [`2025.03.20.0...2025.03.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.20.0...2025.03.21.0)
- - -
## 2025.03.20.0
### Bug Fixes
- Operations external url ([#2585](https://github.com/juspay/hyperswitch-control-center/pull/2585)) ([`5adcbaa`](https://github.com/juspay/hyperswitch-control-center/commit/5adcbaaba8496eacdb54765dcdddd20dd9432c40))
### Miscellaneous Tasks
- Product type sidebar update on org switch ([#2505](https://github.com/juspay/hyperswitch-control-center/pull/2505)) ([`71247c9`](https://github.com/juspay/hyperswitch-control-center/commit/71247c97eb84a73f46046a7269bc37fa009f18d9))
**Full Changelog:** [`2025.03.19.1...2025.03.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.19.1...2025.03.20.0)
- - -
## 2025.03.19.1
### Features
- Added issuer filter - auth analytics ([#2577](https://github.com/juspay/hyperswitch-control-center/pull/2577)) ([`25e7e98`](https://github.com/juspay/hyperswitch-control-center/commit/25e7e981b8c6d2b83b1aae12834fb966ae5db8f9))
### Bug Fixes
- Show edit and copy icon in MP dropdowns mobile ([#2515](https://github.com/juspay/hyperswitch-control-center/pull/2515)) ([`83dfe5a`](https://github.com/juspay/hyperswitch-control-center/commit/83dfe5a9ba5401e73ddfcff7ae2e6f6a6d2d15f4))
### Miscellaneous Tasks
- Routing minor ui fixes ([#2535](https://github.com/juspay/hyperswitch-control-center/pull/2535)) ([`409a842`](https://github.com/juspay/hyperswitch-control-center/commit/409a842b3467e440047cb02acb02fbbbed5c54d9))
**Full Changelog:** [`2025.03.19.0...2025.03.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.19.0...2025.03.19.1)
- - -
## 2025.03.19.0
### Bug Fixes
- Connector list not updated on profile switch fix ([#2519](https://github.com/juspay/hyperswitch-control-center/pull/2519)) ([`6b0648e`](https://github.com/juspay/hyperswitch-control-center/commit/6b0648e102c7e3bcf6eef38f117f622ef705ad54))
**Full Changelog:** [`2025.03.18.1...2025.03.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.18.1...2025.03.19.0)
- - -
## 2025.03.18.1
### Bug Fixes
- Resolved issues when applying filters ([#2511](https://github.com/juspay/hyperswitch-control-center/pull/2511)) ([`1838845`](https://github.com/juspay/hyperswitch-control-center/commit/1838845e8fb233e3b56bf5bf7de4ad4924e9dc4a))
- Recon tabs and mixpanel event changes ([#2502](https://github.com/juspay/hyperswitch-control-center/pull/2502)) ([`c5619f1`](https://github.com/juspay/hyperswitch-control-center/commit/c5619f1a94d6322e51fa722e0d2a0072c37b96ee))
### Refactors
- Add constraints in smart routing rule configuration ([#2466](https://github.com/juspay/hyperswitch-control-center/pull/2466)) ([`825be17`](https://github.com/juspay/hyperswitch-control-center/commit/825be17fd322213b5f0aa018db186e75c8074a6d))
### Miscellaneous Tasks
- Changed links in vault config page ([#2516](https://github.com/juspay/hyperswitch-control-center/pull/2516)) ([`630822b`](https://github.com/juspay/hyperswitch-control-center/commit/630822be8f7615e40fd29115326be41c2d992df0))
**Full Changelog:** [`2025.03.18.0...2025.03.18.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.18.0...2025.03.18.1)
- - -
## 2025.03.18.0
### Bug Fixes
- Metrics - frictionless flow count ([#2504](https://github.com/juspay/hyperswitch-control-center/pull/2504)) ([`d906152`](https://github.com/juspay/hyperswitch-control-center/commit/d9061527dfc3762fabedcc887529522111c36ea4))
- Ui issue for insights ([#2510](https://github.com/juspay/hyperswitch-control-center/pull/2510)) ([`216618a`](https://github.com/juspay/hyperswitch-control-center/commit/216618a0f0d6f02af69ad7a26c3becec425515ad))
### Miscellaneous Tasks
- Remove tax identification number field from get production acc… ([#2507](https://github.com/juspay/hyperswitch-control-center/pull/2507)) ([`33045a3`](https://github.com/juspay/hyperswitch-control-center/commit/33045a399ad7850e7443e9b1a0b713a2a40e560d))
**Full Changelog:** [`2025.03.17.0...2025.03.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.17.0...2025.03.18.0)
- - -
## 2025.03.17.0
### Bug Fixes
- Dropdown issues in payment processors ([#2347](https://github.com/juspay/hyperswitch-control-center/pull/2347)) ([`2372d34`](https://github.com/juspay/hyperswitch-control-center/commit/2372d345f8c400018c0c7634cd700eade5f63ae8))
- Payout processor unknown issue ([#2497](https://github.com/juspay/hyperswitch-control-center/pull/2497)) ([`de16a25`](https://github.com/juspay/hyperswitch-control-center/commit/de16a252c4e52c40a03acb2cedabf70c9b534dd7))
### Miscellaneous Tasks
- Routing minor ui fixes ([#2492](https://github.com/juspay/hyperswitch-control-center/pull/2492)) ([`53663bb`](https://github.com/juspay/hyperswitch-control-center/commit/53663bb8c87f5f48381b76bf717d0ddfd85a2e0b))
**Full Changelog:** [`2025.03.13.4...2025.03.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.13.4...2025.03.17.0)
- - -
## 2025.03.13.4
### Miscellaneous Tasks
- Fix dynamic routing url ([`767805d`](https://github.com/juspay/hyperswitch-control-center/commit/767805dd2d8988f0c349e3d6fdbbe6855c393f6b))
**Full Changelog:** [`2025.03.13.3...2025.03.13.4`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.13.3...2025.03.13.4)
- - -
## 2025.03.13.3
### Bug Fixes
- Modularity fixes ([#2490](https://github.com/juspay/hyperswitch-control-center/pull/2490)) ([`b05d7c1`](https://github.com/juspay/hyperswitch-control-center/commit/b05d7c1082d9b01eb108c4e89d0acfaf2248856e))
### Miscellaneous Tasks
- Vault mixpanel events ([#2488](https://github.com/juspay/hyperswitch-control-center/pull/2488)) ([`b8f1954`](https://github.com/juspay/hyperswitch-control-center/commit/b8f1954263875bd7434fe222cfa3cbcb37409590))
**Full Changelog:** [`2025.03.13.2...2025.03.13.3`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.13.2...2025.03.13.3)
- - -
## 2025.03.13.2
### Bug Fixes
- Added acl for get started in product home ([#2477](https://github.com/juspay/hyperswitch-control-center/pull/2477)) ([`fc8868a`](https://github.com/juspay/hyperswitch-control-center/commit/fc8868a9dab737bd4855f2aa20b972d5a209526a))
- Added acl changes ([#2485](https://github.com/juspay/hyperswitch-control-center/pull/2485)) ([`b1a40d0`](https://github.com/juspay/hyperswitch-control-center/commit/b1a40d045495178cb95d03332f7f1184e9257c68))
### Miscellaneous Tasks
- Updated intelligent routing image ([#2481](https://github.com/juspay/hyperswitch-control-center/pull/2481)) ([`41236d6`](https://github.com/juspay/hyperswitch-control-center/commit/41236d6cef00d547d7c107e6917e881cf9d5581f))
- Recon mixpanel events ([#2471](https://github.com/juspay/hyperswitch-control-center/pull/2471)) ([`6ae6898`](https://github.com/juspay/hyperswitch-control-center/commit/6ae6898a956013927bdbf9605ca19c87e1e06df7))
- Api headers change for Dynamic Routing (Intelligent Routing) (Modularity) ([#2473](https://github.com/juspay/hyperswitch-control-center/pull/2473)) ([`6295490`](https://github.com/juspay/hyperswitch-control-center/commit/6295490cd98f2a075029c66c7b9eef08fa3a3532))
- Enable apis for routing ([#2479](https://github.com/juspay/hyperswitch-control-center/pull/2479)) ([`ffe4951`](https://github.com/juspay/hyperswitch-control-center/commit/ffe49518cb347d7c46277ff401825295edb56e6f))
- Intelligent routing mixpanel events ([#2484](https://github.com/juspay/hyperswitch-control-center/pull/2484)) ([`72248f2`](https://github.com/juspay/hyperswitch-control-center/commit/72248f2ffa782160054bb85664fa6e0292da4632))
**Full Changelog:** [`2025.03.13.1...2025.03.13.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.13.1...2025.03.13.2)
- - -
## 2025.03.13.1
### Features
- Generate sample report data functionality for vault ([#2411](https://github.com/juspay/hyperswitch-control-center/pull/2411)) ([`caa973e`](https://github.com/juspay/hyperswitch-control-center/commit/caa973eaa519517266e632828a919f3d6cc4c74f))
### Bug Fixes
- Connector name - unknown issue ([#2453](https://github.com/juspay/hyperswitch-control-center/pull/2453)) ([`5b373d3`](https://github.com/juspay/hyperswitch-control-center/commit/5b373d3f6fe92db3a9fe69af50eb38d6086a7dd0))
- Column graph tooltip formatter listing ([#2443](https://github.com/juspay/hyperswitch-control-center/pull/2443)) ([`c8af9b4`](https://github.com/juspay/hyperswitch-control-center/commit/c8af9b40e86ea0b072d0eaac8990b6475e3b6bfc))
- Sort issue of insights ([#2463](https://github.com/juspay/hyperswitch-control-center/pull/2463)) ([`17ff375`](https://github.com/juspay/hyperswitch-control-center/commit/17ff375e5fa2263a1a515075dc6439730732a1ea))
- Vault product minor fixes ([#2434](https://github.com/juspay/hyperswitch-control-center/pull/2434)) ([`e60ef39`](https://github.com/juspay/hyperswitch-control-center/commit/e60ef39c16abc2aef3f98ad2e707ef21193af5cb))
- Vault landing and connector api call changes ([#2467](https://github.com/juspay/hyperswitch-control-center/pull/2467)) ([`2a2ff64`](https://github.com/juspay/hyperswitch-control-center/commit/2a2ff64ccb9915db98aa48a6fd1fe571f774fcc2))
- Merchant switch home page fix ([#2474](https://github.com/juspay/hyperswitch-control-center/pull/2474)) ([`1761197`](https://github.com/juspay/hyperswitch-control-center/commit/1761197265e2cef16a67abf5c27ea6be814d0068))
### Miscellaneous Tasks
- Routing enhancements and api changes ([#2445](https://github.com/juspay/hyperswitch-control-center/pull/2445)) ([`4886bdf`](https://github.com/juspay/hyperswitch-control-center/commit/4886bdf53442c41f061d529087e04244c9f2b88f))
- Recovery token testing fixes ([#2464](https://github.com/juspay/hyperswitch-control-center/pull/2464)) ([`95b990b`](https://github.com/juspay/hyperswitch-control-center/commit/95b990b57b3d4d4277e44cff90a48ff57793498c))
- Get production access ([#2469](https://github.com/juspay/hyperswitch-control-center/pull/2469)) ([`6986068`](https://github.com/juspay/hyperswitch-control-center/commit/698606804e219c2b7049043146702f5a97801262))
### Revert
- Connector name - unknown issue ([#2461](https://github.com/juspay/hyperswitch-control-center/pull/2461)) ([`6252628`](https://github.com/juspay/hyperswitch-control-center/commit/62526283afbd536d89ca5caee4574ce3425a6a01))
**Full Changelog:** [`2025.03.13.0...2025.03.13.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.13.0...2025.03.13.1)
- - -
## 2025.03.13.0
### Features
- Recovery overview screen update and filters added ([#2435](https://github.com/juspay/hyperswitch-control-center/pull/2435)) ([`197ad9a`](https://github.com/juspay/hyperswitch-control-center/commit/197ad9a298ed2174ba606da6db70d2e7aa5b718a))
### Bug Fixes
- Add v1 - authentication analytics ([#2440](https://github.com/juspay/hyperswitch-control-center/pull/2440)) ([`2b4310e`](https://github.com/juspay/hyperswitch-control-center/commit/2b4310ed9cad6584717aa046269e8b9a272dcd43))
- Smart routing values fix ([#2439](https://github.com/juspay/hyperswitch-control-center/pull/2439)) ([`5b97ebd`](https://github.com/juspay/hyperswitch-control-center/commit/5b97ebd4ca8eea92f5b1f5f2fdf3e575f9f4b814))
### Miscellaneous Tasks
- Added v2 merchant switch apis ([#2426](https://github.com/juspay/hyperswitch-control-center/pull/2426)) ([`ff63005`](https://github.com/juspay/hyperswitch-control-center/commit/ff630053cca84ef162d5a178a3be4b71ee2a4481))
- Routing setup flow changes ([#2430](https://github.com/juspay/hyperswitch-control-center/pull/2430)) ([`38bedfe`](https://github.com/juspay/hyperswitch-control-center/commit/38bedfe4f6272c743bd0555337db5d140768b36d))
- Recovery copy changes ([#2437](https://github.com/juspay/hyperswitch-control-center/pull/2437)) ([`ba0f656`](https://github.com/juspay/hyperswitch-control-center/commit/ba0f6564e39bd4ab296b243d5f08a1b525bf8598))
- Disabled profile creation for v2 merchants ([#2441](https://github.com/juspay/hyperswitch-control-center/pull/2441)) ([`557d25e`](https://github.com/juspay/hyperswitch-control-center/commit/557d25ec1d7cad10b4d76172972874e063d53dc8))
**Full Changelog:** [`2025.03.12.1...2025.03.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.12.1...2025.03.13.0)
- - -
## 2025.03.12.1
### Features
- Recovery connector ui update ([#2422](https://github.com/juspay/hyperswitch-control-center/pull/2422)) ([`e927343`](https://github.com/juspay/hyperswitch-control-center/commit/e9273436a67a31bf396bce9c03c1c9426557ec86))
- Add generate reports for auth analytics ([#2433](https://github.com/juspay/hyperswitch-control-center/pull/2433)) ([`8871c32`](https://github.com/juspay/hyperswitch-control-center/commit/8871c327c71393e759f1773695010a91723bae4f))
### Miscellaneous Tasks
- APM screen for orchestrator ([#2415](https://github.com/juspay/hyperswitch-control-center/pull/2415)) ([`90819ee`](https://github.com/juspay/hyperswitch-control-center/commit/90819eed32591c0e9aa84b4d784a75b92d748e55))
- Routing design updates for ui ([#2424](https://github.com/juspay/hyperswitch-control-center/pull/2424)) ([`66c2972`](https://github.com/juspay/hyperswitch-control-center/commit/66c2972d1f2eb611492a52375c95780b486740de))
**Full Changelog:** [`2025.03.12.0...2025.03.12.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.12.0...2025.03.12.1)
- - -
## 2025.03.12.0
### Features
- Routing transaction count with auth rate graph ([#2420](https://github.com/juspay/hyperswitch-control-center/pull/2420)) ([`5ff9ecf`](https://github.com/juspay/hyperswitch-control-center/commit/5ff9ecfa4c72ca2592c73eb203e4bc1e991d9232))
### Miscellaneous Tasks
- Intelligent Routing Graphs ([#2412](https://github.com/juspay/hyperswitch-control-center/pull/2412)) ([`89f79fc`](https://github.com/juspay/hyperswitch-control-center/commit/89f79fc015d4b09a9410bafe48c0cd9fd29b0da9))
- Added version in user info ([#2414](https://github.com/juspay/hyperswitch-control-center/pull/2414)) ([`1043695`](https://github.com/juspay/hyperswitch-control-center/commit/10436954bb343c07d1f8e880a872ae7b60b7c3ed))
- Added v2 merchant creation and listing ([#2419](https://github.com/juspay/hyperswitch-control-center/pull/2419)) ([`7c037e6`](https://github.com/juspay/hyperswitch-control-center/commit/7c037e61ad0e4b41567fcf58e746b74e003f6868))
**Full Changelog:** [`2025.03.11.1...2025.03.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.11.1...2025.03.12.0)
- - -
## 2025.03.11.1
### Features
- Added filters in the authentication analytics ([#2404](https://github.com/juspay/hyperswitch-control-center/pull/2404)) ([`177fe57`](https://github.com/juspay/hyperswitch-control-center/commit/177fe57b0846a591ac6b8d73ff44012b2d6073d4))
### Bug Fixes
- Custom orchestrator navigation ([#2410](https://github.com/juspay/hyperswitch-control-center/pull/2410)) ([`551e01f`](https://github.com/juspay/hyperswitch-control-center/commit/551e01f7a440e195b984b6b7d6c477a8c19a2d16))
### Miscellaneous Tasks
- Vault customers and tokens api integration ([#2355](https://github.com/juspay/hyperswitch-control-center/pull/2355)) ([`a083a31`](https://github.com/juspay/hyperswitch-control-center/commit/a083a312d969d0b184895c54cad72dfae294c569))
- Additional tracking events ([#2397](https://github.com/juspay/hyperswitch-control-center/pull/2397)) ([`dd866d1`](https://github.com/juspay/hyperswitch-control-center/commit/dd866d11d6d4b5585831f179892b404366063764))
- Add product type in create merchant ([#2406](https://github.com/juspay/hyperswitch-control-center/pull/2406)) ([`e06ed1b`](https://github.com/juspay/hyperswitch-control-center/commit/e06ed1bc66886acec7263f5b770b28c387b2c087))
**Full Changelog:** [`2025.03.11.0...2025.03.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.11.0...2025.03.11.1)
- - -
## 2025.03.11.0
### Bug Fixes
- Advanced routing responsiveness ([#2400](https://github.com/juspay/hyperswitch-control-center/pull/2400)) ([`ed184a2`](https://github.com/juspay/hyperswitch-control-center/commit/ed184a20ee41c556cf888eec76ad7f551cc4c0f8))
- Key field not updating when changed in custom metadata headers ([#2393](https://github.com/juspay/hyperswitch-control-center/pull/2393)) ([`0c1ecd2`](https://github.com/juspay/hyperswitch-control-center/commit/0c1ecd2e14a8a6ed39311d06893ec0e251b988f4))
### Miscellaneous Tasks
- Intelligent routing transaction table ([#2401](https://github.com/juspay/hyperswitch-control-center/pull/2401)) ([`23ecaaa`](https://github.com/juspay/hyperswitch-control-center/commit/23ecaaafa5aa334c10b52d8863cc6eae68cc63a8))
**Full Changelog:** [`2025.03.07.3...2025.03.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.07.3...2025.03.11.0)
- - -
## 2025.03.07.3
### Features
- Analytics authentication insights ([#2390](https://github.com/juspay/hyperswitch-control-center/pull/2390)) ([`6f6a8eb`](https://github.com/juspay/hyperswitch-control-center/commit/6f6a8eb404a812145a062bb81684e1993cdeb28d))
### Bug Fixes
- Hypersense svg rendering on the home page ([#2391](https://github.com/juspay/hyperswitch-control-center/pull/2391)) ([`5ad0f80`](https://github.com/juspay/hyperswitch-control-center/commit/5ad0f80d50afe6362cfe5c84d30ab3dcf2a21a91))
- Changed metrics calculations ([#2395](https://github.com/juspay/hyperswitch-control-center/pull/2395)) ([`3e80641`](https://github.com/juspay/hyperswitch-control-center/commit/3e8064119b9c2b928f1777049e3f899ad359489b))
### Miscellaneous Tasks
- Intelligent routing ([#2379](https://github.com/juspay/hyperswitch-control-center/pull/2379)) ([`4ac7a4d`](https://github.com/juspay/hyperswitch-control-center/commit/4ac7a4dd7cc60a4934e27aabea7cc91f0fc11b9c))
**Full Changelog:** [`2025.03.07.2...2025.03.07.3`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.07.2...2025.03.07.3)
- - -
## 2025.03.07.2
### Features
- Authentication analytics page ([#2389](https://github.com/juspay/hyperswitch-control-center/pull/2389)) ([`a0365f2`](https://github.com/juspay/hyperswitch-control-center/commit/a0365f268b74e6f0c81d095c35f5b0f6f9ccf223))
**Full Changelog:** [`2025.03.07.1...2025.03.07.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.07.1...2025.03.07.2)
- - -
## 2025.03.07.1
### Features
- Add juspaythreeds connector addition ([#2387](https://github.com/juspay/hyperswitch-control-center/pull/2387)) ([`7b76584`](https://github.com/juspay/hyperswitch-control-center/commit/7b76584a3ce956d800fb9dd4abba1d0e249891b9))
**Full Changelog:** [`2025.03.07.0...2025.03.07.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.07.0...2025.03.07.1)
- - -
## 2025.03.07.0
### Features
- Apm onboarding page ([#2374](https://github.com/juspay/hyperswitch-control-center/pull/2374)) ([`59210cc`](https://github.com/juspay/hyperswitch-control-center/commit/59210ccb650b4af60e663a7223ca42ae7a63e044))
### Bug Fixes
- Frm connector list bug fix ([#2383](https://github.com/juspay/hyperswitch-control-center/pull/2383)) ([`a8ad21d`](https://github.com/juspay/hyperswitch-control-center/commit/a8ad21d00fe3e55d45fb202172f996e1bd09bf9d))
**Full Changelog:** [`2025.03.06.1...2025.03.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.06.1...2025.03.07.0)
- - -
## 2025.03.06.1
### Features
- Add force 3ds challenge ([#2381](https://github.com/juspay/hyperswitch-control-center/pull/2381)) ([`4941adb`](https://github.com/juspay/hyperswitch-control-center/commit/4941adbf70a576eef4e67452ae8f8c0a98c4986e))
### Miscellaneous Tasks
- Authentication analytics revamp ([#2377](https://github.com/juspay/hyperswitch-control-center/pull/2377)) ([`f7253de`](https://github.com/juspay/hyperswitch-control-center/commit/f7253de3332f30a184a8075de16b4cf1394a9f12))
**Full Changelog:** [`2025.03.06.0...2025.03.06.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.06.0...2025.03.06.1)
- - -
## 2025.03.06.0
### Features
- Recon screens v2 ([#2299](https://github.com/juspay/hyperswitch-control-center/pull/2299)) ([`ed8f8a8`](https://github.com/juspay/hyperswitch-control-center/commit/ed8f8a8c77c25d284011073606188a88610c24a4))
- Added new connector Moneris ([#2373](https://github.com/juspay/hyperswitch-control-center/pull/2373)) ([`ef993d4`](https://github.com/juspay/hyperswitch-control-center/commit/ef993d473f9e56aa41c20f1f9890377b01734553))
- Hypersense product ([#2362](https://github.com/juspay/hyperswitch-control-center/pull/2362)) ([`b4a1ebb`](https://github.com/juspay/hyperswitch-control-center/commit/b4a1ebbb55218a0aa959a72fcf68920cc34d8b1d))
### Bug Fixes
- Fraud and risk connector list bug fix ([#2364](https://github.com/juspay/hyperswitch-control-center/pull/2364)) ([`cd62e4f`](https://github.com/juspay/hyperswitch-control-center/commit/cd62e4fcb513ae76d0882f7058b8b55d39f00a5f))
### Refactors
- Moved recon app, screens, container into Recon folder ([#2366](https://github.com/juspay/hyperswitch-control-center/pull/2366)) ([`5da8e94`](https://github.com/juspay/hyperswitch-control-center/commit/5da8e941c297545d018e357d9a5181a333ed7aa3))
### Miscellaneous Tasks
- Update wallet additional details for v2 ([#2356](https://github.com/juspay/hyperswitch-control-center/pull/2356)) ([`651d557`](https://github.com/juspay/hyperswitch-control-center/commit/651d557769225b70a73ebcfc3793101cb7a7be16))
- Connector api integration for vault ([#2369](https://github.com/juspay/hyperswitch-control-center/pull/2369)) ([`1d45e1c`](https://github.com/juspay/hyperswitch-control-center/commit/1d45e1c07120da8f35f3a4499eebaaedf6c571d6))
- Change recon ([`564aa0c`](https://github.com/juspay/hyperswitch-control-center/commit/564aa0c90976e67f24e5edf9d349123e631af587))
- Rename the recon folders ([`4547637`](https://github.com/juspay/hyperswitch-control-center/commit/45476378f1219fd4cd792b2d8cd47e223388cfa8))
**Full Changelog:** [`2025.03.05.0...2025.03.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.05.0...2025.03.06.0)
- - -
## 2025.03.05.0
### Features
- Recovery onboarding flow ([#2329](https://github.com/juspay/hyperswitch-control-center/pull/2329)) ([`6b8b3cd`](https://github.com/juspay/hyperswitch-control-center/commit/6b8b3cd028f5c57d5778451f26e252095f237bd9))
- Added custom metadata fields in payment settings ([#2352](https://github.com/juspay/hyperswitch-control-center/pull/2352)) ([`c2b9973`](https://github.com/juspay/hyperswitch-control-center/commit/c2b9973875c17d6a65241705a5bce6b20658db6b))
### Bug Fixes
- Overflow profile in SDK checkout page ([#2351](https://github.com/juspay/hyperswitch-control-center/pull/2351)) ([`2f0abbb`](https://github.com/juspay/hyperswitch-control-center/commit/2f0abbb3165eadae170b241f8da829a1049ba692))
### Testing
- Update cypress tests ([#2343](https://github.com/juspay/hyperswitch-control-center/pull/2343)) ([`13e0732`](https://github.com/juspay/hyperswitch-control-center/commit/13e0732d94b83879fe93470fc3d974b9295bfbe3))
### Miscellaneous Tasks
- UI changes for vault ([#2353](https://github.com/juspay/hyperswitch-control-center/pull/2353)) ([`0957fa2`](https://github.com/juspay/hyperswitch-control-center/commit/0957fa22d4a4a963d6efe8aa49848637ce2541f4))
- Changed custom headers UI ([#2357](https://github.com/juspay/hyperswitch-control-center/pull/2357)) ([`7eb492d`](https://github.com/juspay/hyperswitch-control-center/commit/7eb492ddc0cdd5c7ae352cfa2d41a31a3b2e74ab))
**Full Changelog:** [`2025.03.04.0...2025.03.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.03.04.0...2025.03.05.0)
- - -
## 2025.03.04.0
### Refactors
- Support for v2 routes ([#2349](https://github.com/juspay/hyperswitch-control-center/pull/2349)) ([`a3d2d36`](https://github.com/juspay/hyperswitch-control-center/commit/a3d2d3655b5b4cb21176791c0b2fbfd7a064c58f))
### Miscellaneous Tasks
- Changes for modularity on product select ([#2276](https://github.com/juspay/hyperswitch-control-center/pull/2276)) ([`a7b510b`](https://github.com/juspay/hyperswitch-control-center/commit/a7b510b40ea8cb816674e3bf72b0a17b4e562fa8))
- Update v2 payment methods ([#2326](https://github.com/juspay/hyperswitch-control-center/pull/2326)) ([`52a7a55`](https://github.com/juspay/hyperswitch-control-center/commit/52a7a55dd993cd4a29455b07dcb149811d1d6fb5))
- Remove ([`157f91e`](https://github.com/juspay/hyperswitch-control-center/commit/157f91e0ebda640d35f1f28d57f59cf2974c3b47))
- Customization for charts and tabs ([#2345](https://github.com/juspay/hyperswitch-control-center/pull/2345)) ([`e5edcc2`](https://github.com/juspay/hyperswitch-control-center/commit/e5edcc24859f0e53070f7f127ee25117b2053ec6))
**Full Changelog:** [`2025.02.28.0...2025.03.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.28.0...2025.03.04.0)
- - -
## 2025.02.28.0
### Features
- Alt payment methods ([#2341](https://github.com/juspay/hyperswitch-control-center/pull/2341)) ([`e7d02fd`](https://github.com/juspay/hyperswitch-control-center/commit/e7d02fdafd36d1d582df29f7e95e74b2f50dd63a))
### Bug Fixes
- Maintaining org sidebar list order ([#2337](https://github.com/juspay/hyperswitch-control-center/pull/2337)) ([`0da43e3`](https://github.com/juspay/hyperswitch-control-center/commit/0da43e3b5e6da28a94cd1f832e462be559d71822))
- Enhancements in advance routing ([#2338](https://github.com/juspay/hyperswitch-control-center/pull/2338)) ([`82947eb`](https://github.com/juspay/hyperswitch-control-center/commit/82947eb149197d6fdff2db9eebee1465d42742db))
### Miscellaneous Tasks
- Routing folder structure revamp ([#2331](https://github.com/juspay/hyperswitch-control-center/pull/2331)) ([`af99476`](https://github.com/juspay/hyperswitch-control-center/commit/af99476d764afad26a0e2a8218ff704c6b47583c))
- Changed vault pmt screen css ([#2303](https://github.com/juspay/hyperswitch-control-center/pull/2303)) ([`dfcb5a7`](https://github.com/juspay/hyperswitch-control-center/commit/dfcb5a7426878c6e01e56c5f6e169af809f0d9d9))
**Full Changelog:** [`2025.02.26.0...2025.02.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.26.0...2025.02.28.0)
- - -
## 2025.02.26.0
### Features
- Added Column Graph, PieGraph, Stacked BarGraph ([#2317](https://github.com/juspay/hyperswitch-control-center/pull/2317)) ([`b3e0fee`](https://github.com/juspay/hyperswitch-control-center/commit/b3e0feeb4fe063c4aa4a7161867ff29d46f9dd14))
### Bug Fixes
- Recon icon display ([#2324](https://github.com/juspay/hyperswitch-control-center/pull/2324)) ([`39693ed`](https://github.com/juspay/hyperswitch-control-center/commit/39693ed6641c57836d0b96324aa8dcd6555ee1ef))
- Responsive merchant and profile dropdowns ([#2334](https://github.com/juspay/hyperswitch-control-center/pull/2334)) ([`6598e2d`](https://github.com/juspay/hyperswitch-control-center/commit/6598e2d68f9103f628eba832d7ec6936500c883f))
### Miscellaneous Tasks
- Changes in Input Fields, Search Box and Buttons ([#2319](https://github.com/juspay/hyperswitch-control-center/pull/2319)) ([`94f0b06`](https://github.com/juspay/hyperswitch-control-center/commit/94f0b06bc176f57764ff10ed932e9c75cd93e81b))
- Merchant search in dropdown ([#2321](https://github.com/juspay/hyperswitch-control-center/pull/2321)) ([`d8d9b86`](https://github.com/juspay/hyperswitch-control-center/commit/d8d9b8672c94eb42f153cc1ed921f84d78a8f61a))
- Recovery new folder structure ([#2314](https://github.com/juspay/hyperswitch-control-center/pull/2314)) ([`f0c9861`](https://github.com/juspay/hyperswitch-control-center/commit/f0c9861e2ffebecdbacbfac7a21587e11d163c69))
- Edit PMTs option for payout processors ([#2327](https://github.com/juspay/hyperswitch-control-center/pull/2327)) ([`412d278`](https://github.com/juspay/hyperswitch-control-center/commit/412d2781bd0d775e7d1b47f8c4c979e2717ed5f1))
**Full Changelog:** [`2025.02.24.0...2025.02.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.24.0...2025.02.26.0)
- - -
## 2025.02.24.0
### Features
- Added attempts table to revenue order details ([#2305](https://github.com/juspay/hyperswitch-control-center/pull/2305)) ([`2a6f34d`](https://github.com/juspay/hyperswitch-control-center/commit/2a6f34db1015dd4bf1d6c34a08e59fcc8b55e7ea))
### Testing
- Fix failing connector test ([#2310](https://github.com/juspay/hyperswitch-control-center/pull/2310)) ([`50e3bfc`](https://github.com/juspay/hyperswitch-control-center/commit/50e3bfc34acaf8cee00e3a193878e79be5fbd66d))
### Miscellaneous Tasks
- Implement v2 connector type ([#2315](https://github.com/juspay/hyperswitch-control-center/pull/2315)) ([`e061d8b`](https://github.com/juspay/hyperswitch-control-center/commit/e061d8ba15a8d4e83145d37377b89e1aec7c36d7))
**Full Changelog:** [`2025.02.20.0...2025.02.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.20.0...2025.02.24.0)
- - -
## 2025.02.20.0
### Features
- Added new connector coingate ([#2290](https://github.com/juspay/hyperswitch-control-center/pull/2290)) ([`db979f7`](https://github.com/juspay/hyperswitch-control-center/commit/db979f759cdcee3a76f42fa0f38bbbaf7c309f64))
- Wasm update for coingate ([#2291](https://github.com/juspay/hyperswitch-control-center/pull/2291)) ([`c867857`](https://github.com/juspay/hyperswitch-control-center/commit/c8678575d918470f7c711269c95db73e0d870cab))
- Recovery payment connector ([#2288](https://github.com/juspay/hyperswitch-control-center/pull/2288)) ([`e099c4f`](https://github.com/juspay/hyperswitch-control-center/commit/e099c4f0053fc2cae7bc0404b03d9c278a1de861))
### Bug Fixes
- Overflowing merchant profile names in dropdowns ([#2294](https://github.com/juspay/hyperswitch-control-center/pull/2294)) ([`98123ff`](https://github.com/juspay/hyperswitch-control-center/commit/98123ff069f3fc8381a091b4e1afc7a9f9bbf2a8))
### Miscellaneous Tasks
- Enable cancel edit pmt ([#2272](https://github.com/juspay/hyperswitch-control-center/pull/2272)) ([`3170e9b`](https://github.com/juspay/hyperswitch-control-center/commit/3170e9b069fcc338303ff6dd76ed922511805465))
- Add pmt in vault onboarding ([#2292](https://github.com/juspay/hyperswitch-control-center/pull/2292)) ([`395c78c`](https://github.com/juspay/hyperswitch-control-center/commit/395c78cfc9e7df8a53061157182797b3f99b820e))
- Addition of card discovery filter in payment ops ([#2297](https://github.com/juspay/hyperswitch-control-center/pull/2297)) ([`ae26068`](https://github.com/juspay/hyperswitch-control-center/commit/ae26068432886bb56ed7d8aa9fcdf19329693188))
**Full Changelog:** [`2025.02.19.1...2025.02.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.19.1...2025.02.20.0)
- - -
## 2025.02.19.1
### Bug Fixes
- Table ui fixes ([#2287](https://github.com/juspay/hyperswitch-control-center/pull/2287)) ([`83d9c47`](https://github.com/juspay/hyperswitch-control-center/commit/83d9c47d051141f63e5bdca000024653d299c910))
**Full Changelog:** [`2025.02.19.0...2025.02.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.19.0...2025.02.19.1)
- - -
## 2025.02.19.0
### Features
- Added recovery details page ([#2258](https://github.com/juspay/hyperswitch-control-center/pull/2258)) ([`55072ef`](https://github.com/juspay/hyperswitch-control-center/commit/55072ef2cb404f954b06d1d12af39c9b759e8cbd))
- Added slack link to network tokenization page ([#2280](https://github.com/juspay/hyperswitch-control-center/pull/2280)) ([`28b1e1e`](https://github.com/juspay/hyperswitch-control-center/commit/28b1e1e4bc9347d2975367d6dca7df32028545a2))
### Bug Fixes
- User role selection width adjustment in manage user modal ([#2281](https://github.com/juspay/hyperswitch-control-center/pull/2281)) ([`ffc82bb`](https://github.com/juspay/hyperswitch-control-center/commit/ffc82bbe1b963e920e415cc933f87b94f75d04a1))
### Miscellaneous Tasks
- Novalnet live ([#2279](https://github.com/juspay/hyperswitch-control-center/pull/2279)) ([`2627d70`](https://github.com/juspay/hyperswitch-control-center/commit/2627d70be409175d8e890849b43e9e6621d2a085))
- Fix empty type value causing error in update ([#2285](https://github.com/juspay/hyperswitch-control-center/pull/2285)) ([`ad74e13`](https://github.com/juspay/hyperswitch-control-center/commit/ad74e13453958446e8280a504c91b92fdf96f34d))
**Full Changelog:** [`2025.02.18.0...2025.02.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.18.0...2025.02.19.0)
- - -
## 2025.02.18.0
### Features
- Billing connector addition ([#2248](https://github.com/juspay/hyperswitch-control-center/pull/2248)) ([`40b6b85`](https://github.com/juspay/hyperswitch-control-center/commit/40b6b85a1c690f51c83abc93ebc63ca582383aa7))
### Bug Fixes
- Global search amount filter special characters fix ([#2266](https://github.com/juspay/hyperswitch-control-center/pull/2266)) ([`d0f57b8`](https://github.com/juspay/hyperswitch-control-center/commit/d0f57b81c8072c6ba27b454b5233faa086092ad1))
- View data gradient button ([#2270](https://github.com/juspay/hyperswitch-control-center/pull/2270)) ([`9f853ec`](https://github.com/juspay/hyperswitch-control-center/commit/9f853eca712cf8a35c2e906b84c83f0031d4a7d7))
- Fixed ui design bugs ([#2273](https://github.com/juspay/hyperswitch-control-center/pull/2273)) ([`04bc569`](https://github.com/juspay/hyperswitch-control-center/commit/04bc56964ab0c3b3b40fbaa946ee7b5a8fa912ff))
- Granularity time conversion fix for smart retry and refunds ([#2260](https://github.com/juspay/hyperswitch-control-center/pull/2260)) ([`a11fdd8`](https://github.com/juspay/hyperswitch-control-center/commit/a11fdd82de258e335510aba1a77d4cc8c54196dd))
- Design bugs ([#2262](https://github.com/juspay/hyperswitch-control-center/pull/2262)) ([`1efe310`](https://github.com/juspay/hyperswitch-control-center/commit/1efe3109df79aef9725581aeb6549bdcf5251571))
### Miscellaneous Tasks
- Sidebar collapse in products ([#2268](https://github.com/juspay/hyperswitch-control-center/pull/2268)) ([`d02c25c`](https://github.com/juspay/hyperswitch-control-center/commit/d02c25c582c1424a4b846c6391e13f6b35731e54))
**Full Changelog:** [`2025.02.17.0...2025.02.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.17.0...2025.02.18.0)
- - -
## 2025.02.17.0
### Features
- Vault customers and tokens ([#2244](https://github.com/juspay/hyperswitch-control-center/pull/2244)) ([`5d0c3ea`](https://github.com/juspay/hyperswitch-control-center/commit/5d0c3eaea48af42dd404b26f5ec44c3dcd046ffd))
- Vault network token ([#2243](https://github.com/juspay/hyperswitch-control-center/pull/2243)) ([`a775fae`](https://github.com/juspay/hyperswitch-control-center/commit/a775faed2e9fc9723bcb27e2849ed7c22421c108))
### Bug Fixes
- Routing bugfixes ([#2263](https://github.com/juspay/hyperswitch-control-center/pull/2263)) ([`6b79577`](https://github.com/juspay/hyperswitch-control-center/commit/6b79577aa2d721f0a74d549d2a3e57969ae59889))
- Added focus-visible on button and used hsl to generate colors ([#2256](https://github.com/juspay/hyperswitch-control-center/pull/2256)) ([`03b22c2`](https://github.com/juspay/hyperswitch-control-center/commit/03b22c241ec55b315181fd52183a95e2eb5dba43))
### Miscellaneous Tasks
- Vault-fixes and enhancements ([#2250](https://github.com/juspay/hyperswitch-control-center/pull/2250)) ([`7d63196`](https://github.com/juspay/hyperswitch-control-center/commit/7d631966539d21e7d218d89aa1d87d8c9ef29e0f))
- Commenting unavailable api ([#2264](https://github.com/juspay/hyperswitch-control-center/pull/2264)) ([`b61461d`](https://github.com/juspay/hyperswitch-control-center/commit/b61461dfe6079134d8ac1058ed3b397d26db003b))
**Full Changelog:** [`2025.02.14.0...2025.02.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.14.0...2025.02.17.0)
- - -
## 2025.02.14.0
### Features
- Addition of new connectors-Inespay ([#2245](https://github.com/juspay/hyperswitch-control-center/pull/2245)) ([`b62c2c8`](https://github.com/juspay/hyperswitch-control-center/commit/b62c2c82e3bebdf47b0a32979b684101aae77ebf))
### Refactors
- Update v2 payment methods ([#2234](https://github.com/juspay/hyperswitch-control-center/pull/2234)) ([`7912de4`](https://github.com/juspay/hyperswitch-control-center/commit/7912de45ba1c530e499a2a62cfc8110e94d68ead))
### Miscellaneous Tasks
- Wasm update for Inespay ([#2246](https://github.com/juspay/hyperswitch-control-center/pull/2246)) ([`da4e58f`](https://github.com/juspay/hyperswitch-control-center/commit/da4e58f08cc0458684be3a8ac446bb616869ea61))
**Full Changelog:** [`2025.02.13.0...2025.02.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.13.0...2025.02.14.0)
- - -
## 2025.02.13.0
### Features
- Added loaded table for revenue recovery payments ([#2206](https://github.com/juspay/hyperswitch-control-center/pull/2206)) ([`f3f3473`](https://github.com/juspay/hyperswitch-control-center/commit/f3f3473222d9e89957574d97152cb881e2928bb6))
- Global search amount filter ([#2231](https://github.com/juspay/hyperswitch-control-center/pull/2231)) ([`c9c0082`](https://github.com/juspay/hyperswitch-control-center/commit/c9c0082d7d38c00abb5ec7c1858c4d2a5e231ad8))
- Added vault connector flow pages ([#2217](https://github.com/juspay/hyperswitch-control-center/pull/2217)) ([`34144aa`](https://github.com/juspay/hyperswitch-control-center/commit/34144aa8cae3a83247714dd670aca9b12ad26d59))
### Bug Fixes
- Payout details page display ([#2242](https://github.com/juspay/hyperswitch-control-center/pull/2242)) ([`550eda6`](https://github.com/juspay/hyperswitch-control-center/commit/550eda6b7c40bd9b247c9828ae7a81edfa1bdbf8))
### Miscellaneous Tasks
- Granularity options for smart retry and refunds tab and minor bug fixes ([#2228](https://github.com/juspay/hyperswitch-control-center/pull/2228)) ([`3ed15dd`](https://github.com/juspay/hyperswitch-control-center/commit/3ed15ddf8fb25f72c7a38c3de68430e41d3017d1))
**Full Changelog:** [`2025.02.12.0...2025.02.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.12.0...2025.02.13.0)
- - -
## 2025.02.12.0
### Features
- Added Pie charts ([#2233](https://github.com/juspay/hyperswitch-control-center/pull/2233)) ([`2c88d3a`](https://github.com/juspay/hyperswitch-control-center/commit/2c88d3a812b009d428d8c474d2414c44e21f8dc0))
- Allow surcharge rule editing ([#2223](https://github.com/juspay/hyperswitch-control-center/pull/2223)) ([`fd45bf0`](https://github.com/juspay/hyperswitch-control-center/commit/fd45bf06f0e576944d3467242c3816286e6c7a04))
### Bug Fixes
- Update privacy policy hyperlink on login page ([#2237](https://github.com/juspay/hyperswitch-control-center/pull/2237)) ([`378c6fa`](https://github.com/juspay/hyperswitch-control-center/commit/378c6faf1e773dbdb61c194704d9fef87a07396c))
### Miscellaneous Tasks
- Sidebar enhancement ([#2225](https://github.com/juspay/hyperswitch-control-center/pull/2225)) ([`6a9de00`](https://github.com/juspay/hyperswitch-control-center/commit/6a9de00bb7f2c2df10eab41cec112975ff272776))
**Full Changelog:** [`2025.02.11.0...2025.02.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.11.0...2025.02.12.0)
- - -
## 2025.02.11.0
### Bug Fixes
- Ensure correct merchant profile ID selection in dropdown ([#2218](https://github.com/juspay/hyperswitch-control-center/pull/2218)) ([`f7ad5f3`](https://github.com/juspay/hyperswitch-control-center/commit/f7ad5f36e1ac806374ac04e08b8c41489bd3a21e))
- Default homepage fixes ([#2220](https://github.com/juspay/hyperswitch-control-center/pull/2220)) ([`72d06d6`](https://github.com/juspay/hyperswitch-control-center/commit/72d06d684e0087750a33c0c0b8b70a465c8311cf))
### Miscellaneous Tasks
- Table ui refactor ([#2208](https://github.com/juspay/hyperswitch-control-center/pull/2208)) ([`01fa5ec`](https://github.com/juspay/hyperswitch-control-center/commit/01fa5ec090f68d4fb9e0709069339e640b37b097))
**Full Changelog:** [`2025.02.07.0...2025.02.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.07.0...2025.02.11.0)
- - -
## 2025.02.07.0
### Features
- Recovery module page routes and side bar changes ([#2211](https://github.com/juspay/hyperswitch-control-center/pull/2211)) ([`7cd9f41`](https://github.com/juspay/hyperswitch-control-center/commit/7cd9f41e3221b7bf2213423b13040f3e6a30a490))
**Full Changelog:** [`2025.02.05.1...2025.02.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.05.1...2025.02.07.0)
- - -
## 2025.02.05.1
### Bug Fixes
- Search text being sent in payload even when search field is cleared ([#2194](https://github.com/juspay/hyperswitch-control-center/pull/2194)) ([`fcc23df`](https://github.com/juspay/hyperswitch-control-center/commit/fcc23dff3d29aad9a788b64cc5a48f4da4e0a71a))
- Button issues fix in payment settings and auth select ([#2204](https://github.com/juspay/hyperswitch-control-center/pull/2204)) ([`06cda2c`](https://github.com/juspay/hyperswitch-control-center/commit/06cda2c5dad551d18b7e51f9efe590eb693a5168))
### Miscellaneous Tasks
- Payment method UI changes wrt to new design ([#2209](https://github.com/juspay/hyperswitch-control-center/pull/2209)) ([`b1312e7`](https://github.com/juspay/hyperswitch-control-center/commit/b1312e7cb8767fe592651699d8600fc6b30cd57c))
**Full Changelog:** [`2025.02.05.0...2025.02.05.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.05.0...2025.02.05.1)
- - -
## 2025.02.05.0
### Features
- Added Onboarding Vertical Step Indicator ([#2195](https://github.com/juspay/hyperswitch-control-center/pull/2195)) ([`5ae18b2`](https://github.com/juspay/hyperswitch-control-center/commit/5ae18b2c861de457e91c3d9b3838331ee8348036))
### Bug Fixes
- User is logged when org and merchant switch occurs in product landing page ([#2192](https://github.com/juspay/hyperswitch-control-center/pull/2192)) ([`cb9d437`](https://github.com/juspay/hyperswitch-control-center/commit/cb9d4371690103308a79b341ef1166992e6607c0))
### Testing
- Fix failing cypress test cases ([#2189](https://github.com/juspay/hyperswitch-control-center/pull/2189)) ([`9fba059`](https://github.com/juspay/hyperswitch-control-center/commit/9fba059e9ce783eb783e72fbb143ebb01dacb9c1))
### Miscellaneous Tasks
- Navbar Redesign and OMP Movement ([#2181](https://github.com/juspay/hyperswitch-control-center/pull/2181)) ([`7979ef9`](https://github.com/juspay/hyperswitch-control-center/commit/7979ef9386bf3817e64926bdd34b31cbb4ad6ac3))
- Modularity Default Home page ([#2187](https://github.com/juspay/hyperswitch-control-center/pull/2187)) ([`123a5ff`](https://github.com/juspay/hyperswitch-control-center/commit/123a5ff1a35102679c96e657feadbc918ae20e7a))
- Connector summary page ([#2199](https://github.com/juspay/hyperswitch-control-center/pull/2199)) ([`c7916e4`](https://github.com/juspay/hyperswitch-control-center/commit/c7916e4e9902908e7bf1b2615d73325cb413a3c5))
- Vault connector integration ([#2203](https://github.com/juspay/hyperswitch-control-center/pull/2203)) ([`9a8510e`](https://github.com/juspay/hyperswitch-control-center/commit/9a8510e4ca3f26dcce128c0e2db302376de6048c))
**Full Changelog:** [`2025.02.03.0...2025.02.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.02.03.0...2025.02.05.0)
- - -
## 2025.02.03.0
### Features
- Vaulting setup ([#2177](https://github.com/juspay/hyperswitch-control-center/pull/2177)) ([`f216107`](https://github.com/juspay/hyperswitch-control-center/commit/f216107c61bed6265fd2a18e9fbe0e28a761db31))
### Bug Fixes
- Dashboard redesign ui issues ([#2176](https://github.com/juspay/hyperswitch-control-center/pull/2176)) ([`12042b8`](https://github.com/juspay/hyperswitch-control-center/commit/12042b898b2bf313004619d3902ada71b059a785))
- Org name update ([#2180](https://github.com/juspay/hyperswitch-control-center/pull/2180)) ([`5c26b10`](https://github.com/juspay/hyperswitch-control-center/commit/5c26b1075932a7f59496a0b83a3b48152eae03ce))
- Org indexes logic fix ([#2184](https://github.com/juspay/hyperswitch-control-center/pull/2184)) ([`4e330dc`](https://github.com/juspay/hyperswitch-control-center/commit/4e330dc917ee125420bbc90b07d4b86c03a63604))
### Miscellaneous Tasks
- Config colors changes ([#2174](https://github.com/juspay/hyperswitch-control-center/pull/2174)) ([`50d6de8`](https://github.com/juspay/hyperswitch-control-center/commit/50d6de88903b904cc8b2769e0459b5a781c6df28))
- Vaulting landing page ([#2182](https://github.com/juspay/hyperswitch-control-center/pull/2182)) ([`e6f9332`](https://github.com/juspay/hyperswitch-control-center/commit/e6f933231117adad95e804e70efe0e7f20b1760e))
**Full Changelog:** [`2025.01.30.1...2025.02.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.30.1...2025.02.03.0)
- - -
## 2025.01.30.1
### Features
- Klarna-checkout added for klarna updated wasm ([#2151](https://github.com/juspay/hyperswitch-control-center/pull/2151)) ([`6ed8259`](https://github.com/juspay/hyperswitch-control-center/commit/6ed8259db0a210e87c3a05f27b526980c1fb2026))
- New UI button ([#2147](https://github.com/juspay/hyperswitch-control-center/pull/2147)) ([`52a7125`](https://github.com/juspay/hyperswitch-control-center/commit/52a7125d6d3da5a5f9acf2fe16a07734049e7808))
- Product sidebar changes ([#2170](https://github.com/juspay/hyperswitch-control-center/pull/2170)) ([`c13ac06`](https://github.com/juspay/hyperswitch-control-center/commit/c13ac066f2c8131856e1dae87f391565293533b5))
### Bug Fixes
- Filter Select Box changes ([#2172](https://github.com/juspay/hyperswitch-control-center/pull/2172)) ([`70ddbf1`](https://github.com/juspay/hyperswitch-control-center/commit/70ddbf108bd9546d49698d9cbf67133528579cc2))
### Miscellaneous Tasks
- Text comp ui update ([#2166](https://github.com/juspay/hyperswitch-control-center/pull/2166)) ([`5a895dc`](https://github.com/juspay/hyperswitch-control-center/commit/5a895dc9fa65b3f7ad4f6327e627fb680c980a02))
- Dashboard White Theme Changes ( Including OMP ) ([#2153](https://github.com/juspay/hyperswitch-control-center/pull/2153)) ([`509126a`](https://github.com/juspay/hyperswitch-control-center/commit/509126ae8a225517ec0dd7431d5a8a4e8f114e81))
**Full Changelog:** [`2025.01.30.0...2025.01.30.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.30.0...2025.01.30.1)
- - -
## 2025.01.30.0
### Features
- Org Sidebar ([#2087](https://github.com/juspay/hyperswitch-control-center/pull/2087)) ([`e42777d`](https://github.com/juspay/hyperswitch-control-center/commit/e42777d725fca85ceafa6da7b03e9185194fddbe))
- Global font change to InterDisplay ([#2149](https://github.com/juspay/hyperswitch-control-center/pull/2149)) ([`f12ef18`](https://github.com/juspay/hyperswitch-control-center/commit/f12ef187279bdfad8ae20d1a0d128deb49b16200))
- Granularity options for refunds tab analytics ([#2107](https://github.com/juspay/hyperswitch-control-center/pull/2107)) ([`e177e9a`](https://github.com/juspay/hyperswitch-control-center/commit/e177e9a3cbda717c6207f56c25b8d1e8091b46f5))
- Granularity options for smart retry tab analytics ([#2106](https://github.com/juspay/hyperswitch-control-center/pull/2106)) ([`5d55571`](https://github.com/juspay/hyperswitch-control-center/commit/5d55571967688f96ab6d04ff8c92ccecf4de8729))
### Miscellaneous Tasks
- Redacted customers details page view ([#2145](https://github.com/juspay/hyperswitch-control-center/pull/2145)) ([`1fbf666`](https://github.com/juspay/hyperswitch-control-center/commit/1fbf666491ebda1b60ac2c7af51c4589f7b3a886))
**Full Changelog:** [`2025.01.29.2...2025.01.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.29.2...2025.01.30.0)
- - -
## 2025.01.29.2
### Miscellaneous Tasks
- Add analytics authentication ([#2158](https://github.com/juspay/hyperswitch-control-center/pull/2158)) ([`0fb9fba`](https://github.com/juspay/hyperswitch-control-center/commit/0fb9fba493a0bc91ee0685efe8a299e8a2830182))
**Full Changelog:** [`2025.01.29.1...2025.01.29.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.29.1...2025.01.29.2)
- - -
## 2025.01.29.1
### Bug Fixes
- Analytics filters init set function modification ([#2156](https://github.com/juspay/hyperswitch-control-center/pull/2156)) ([`64b97a5`](https://github.com/juspay/hyperswitch-control-center/commit/64b97a5fc1bc4699cda8a1b236633e9f6e60f2bf))
**Full Changelog:** [`2025.01.29.0...2025.01.29.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.29.0...2025.01.29.1)
- - -
## 2025.01.29.0
### Bug Fixes
- Surcharge and 3DS Delete permission ([#2148](https://github.com/juspay/hyperswitch-control-center/pull/2148)) ([`0baca0c`](https://github.com/juspay/hyperswitch-control-center/commit/0baca0c32c2b0054d76756242d0043ccf8f95cc0))
- Refactor modal warning icon in Smart and volume based routing ([#2143](https://github.com/juspay/hyperswitch-control-center/pull/2143)) ([`2db22fd`](https://github.com/juspay/hyperswitch-control-center/commit/2db22fd10056826301c67efb34909315ccdc68d8))
### Miscellaneous Tasks
- Added profile name validation ([#2128](https://github.com/juspay/hyperswitch-control-center/pull/2128)) ([`49bb20b`](https://github.com/juspay/hyperswitch-control-center/commit/49bb20bc8b8ad12535c12fccfa9d2f7a66b9fd72))
**Full Changelog:** [`2025.01.28.0...2025.01.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.28.0...2025.01.29.0)
- - -
## 2025.01.28.0
### Features
- Recovery product feature flag and folder structure ([#2141](https://github.com/juspay/hyperswitch-control-center/pull/2141)) ([`746f8b2`](https://github.com/juspay/hyperswitch-control-center/commit/746f8b286bb2a77b521ccc7bebb80eeccb253d2c))
### Bug Fixes
- Sdk checkout overlapping divs ([#2126](https://github.com/juspay/hyperswitch-control-center/pull/2126)) ([`bd240e5`](https://github.com/juspay/hyperswitch-control-center/commit/bd240e5ce65dfb2ebbebef91b271044be494e7ad))
**Full Changelog:** [`2025.01.27.0...2025.01.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.27.0...2025.01.28.0)
- - -
## 2025.01.27.0
### Bug Fixes
- Connector list not updating properly everytime ([#2124](https://github.com/juspay/hyperswitch-control-center/pull/2124)) ([`d2fc840`](https://github.com/juspay/hyperswitch-control-center/commit/d2fc840093ad6e15fc234c50e2a6bee223f3d002))
- Theme logo ([#2130](https://github.com/juspay/hyperswitch-control-center/pull/2130)) ([`64d5e21`](https://github.com/juspay/hyperswitch-control-center/commit/64d5e212098316a73d8610bc9e553bde261caf22))
- Sorted userlist by email ([#2129](https://github.com/juspay/hyperswitch-control-center/pull/2129)) ([`51a1f45`](https://github.com/juspay/hyperswitch-control-center/commit/51a1f45428075d3788b3b9d41bf2a0c6cb96ed2c))
- Surcharge delete button ([#2127](https://github.com/juspay/hyperswitch-control-center/pull/2127)) ([`5acc3fa`](https://github.com/juspay/hyperswitch-control-center/commit/5acc3fa613e8f04c3300b41e5e2d83448e3cf78e))
### Testing
- Cypress tests restructure ([#1928](https://github.com/juspay/hyperswitch-control-center/pull/1928)) ([`e07f609`](https://github.com/juspay/hyperswitch-control-center/commit/e07f6098a21c054259ef25b8e7b97924812c29d0))
### Miscellaneous Tasks
- Granularity time formatting to user time zone ([#2122](https://github.com/juspay/hyperswitch-control-center/pull/2122)) ([`580c93a`](https://github.com/juspay/hyperswitch-control-center/commit/580c93a4db103658a29974a623823e2c0eb761ed))
- Insights single point enhancement ([#2132](https://github.com/juspay/hyperswitch-control-center/pull/2132)) ([`0dded6e`](https://github.com/juspay/hyperswitch-control-center/commit/0dded6eb3fe9e3dbc83d0f169178a23a41ac1bbf))
**Full Changelog:** [`2025.01.24.0...2025.01.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.24.0...2025.01.27.0)
- - -
## 2025.01.24.0
### Features
- Addition of new connectors-Xendit and Jp morgan ([#2112](https://github.com/juspay/hyperswitch-control-center/pull/2112)) ([`324470e`](https://github.com/juspay/hyperswitch-control-center/commit/324470eef97a11fd265b752456b1a05c107bb396))
- Inline Edit Input Component ([#2111](https://github.com/juspay/hyperswitch-control-center/pull/2111)) ([`7e79163`](https://github.com/juspay/hyperswitch-control-center/commit/7e7916317c43665d1d2fc2d7cb7ff288fe1e8de3))
### Bug Fixes
- Merchant View Only Access to APIKeys ([#2099](https://github.com/juspay/hyperswitch-control-center/pull/2099)) ([`812e9ac`](https://github.com/juspay/hyperswitch-control-center/commit/812e9ac846e8bb11707917c84a2400ceb8bf19d8))
- Refactoring append themes css logic ([#2113](https://github.com/juspay/hyperswitch-control-center/pull/2113)) ([`345a005`](https://github.com/juspay/hyperswitch-control-center/commit/345a005e63795e3c38a8f332072fff8431491567))
- Removed System Metrics ([#2117](https://github.com/juspay/hyperswitch-control-center/pull/2117)) ([`b71121d`](https://github.com/juspay/hyperswitch-control-center/commit/b71121d9b2e513977e0766f236701f498f601955))
### Testing
- Cypress clear cookies ([#2119](https://github.com/juspay/hyperswitch-control-center/pull/2119)) ([`9978b2c`](https://github.com/juspay/hyperswitch-control-center/commit/9978b2c43aeaf99d6a1cf7249134585146c2d78b))
### Miscellaneous Tasks
- Customer list limit increased from 10 to 50 ([#2120](https://github.com/juspay/hyperswitch-control-center/pull/2120)) ([`9c0a3ba`](https://github.com/juspay/hyperswitch-control-center/commit/9c0a3ba4b4fb19b1658fb77e5bacd8b7c538de98))
**Full Changelog:** [`2025.01.21.1...2025.01.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.21.1...2025.01.24.0)
- - -
## 2025.01.21.1
### Features
- Granularity new analytics changes ([#2017](https://github.com/juspay/hyperswitch-control-center/pull/2017)) ([`cd30932`](https://github.com/juspay/hyperswitch-control-center/commit/cd3093227d7c4b2014dab5ac634c272f81a85f27))
### Bug Fixes
- Sdk go to payment button redirection fix ([#2102](https://github.com/juspay/hyperswitch-control-center/pull/2102)) ([`8e80124`](https://github.com/juspay/hyperswitch-control-center/commit/8e80124ec95c72751846869900d6f85dac6c1325))
- Add email support ([#2010](https://github.com/juspay/hyperswitch-control-center/pull/2010)) ([`b08179d`](https://github.com/juspay/hyperswitch-control-center/commit/b08179de3254b0ee7c3771e89ecb32c354077595))
### Refactors
- Value formatter moved to LogicUtils ([#2098](https://github.com/juspay/hyperswitch-control-center/pull/2098)) ([`fee2b92`](https://github.com/juspay/hyperswitch-control-center/commit/fee2b9202a30a1b38b10413fc9708bc185284dfc))
### Miscellaneous Tasks
- Enabled paybox connector on prod ([#2101](https://github.com/juspay/hyperswitch-control-center/pull/2101)) ([`adf6c49`](https://github.com/juspay/hyperswitch-control-center/commit/adf6c49588c75a4ab20cb3c6edcec5d98c2d9f62))
**Full Changelog:** [`2025.01.21.0...2025.01.21.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.21.0...2025.01.21.1)
- - -
## 2025.01.21.0
### Features
- Added responsiveness to api keys page ([#2061](https://github.com/juspay/hyperswitch-control-center/pull/2061)) ([`769daa7`](https://github.com/juspay/hyperswitch-control-center/commit/769daa796fc04297b01caf4e65c04d2f22fb965a))
### Bug Fixes
- Fixed multiple connector api calls ([#2060](https://github.com/juspay/hyperswitch-control-center/pull/2060)) ([`a77774a`](https://github.com/juspay/hyperswitch-control-center/commit/a77774a5fbfbda1fc2050a34d43173aa0e1e19e7))
### Refactors
- Changed linegraph and sankeygraph options ([#2089](https://github.com/juspay/hyperswitch-control-center/pull/2089)) ([`4cf2c50`](https://github.com/juspay/hyperswitch-control-center/commit/4cf2c50d5999015d4fb41947e4513f6a413bf14c))
### Miscellaneous Tasks
- Remove unused feature flags and codeblocks ([#1931](https://github.com/juspay/hyperswitch-control-center/pull/1931)) ([`d3d32a6`](https://github.com/juspay/hyperswitch-control-center/commit/d3d32a62684e67da7a5181046521852ba664a2ab))
**Full Changelog:** [`2025.01.20.1...2025.01.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.20.1...2025.01.21.0)
- - -
## 2025.01.20.1
### Features
- New analytics filters feature flag ([#2084](https://github.com/juspay/hyperswitch-control-center/pull/2084)) ([`b60da23`](https://github.com/juspay/hyperswitch-control-center/commit/b60da231df1ad01e073e9f2d6334e7a0724ab739))
**Full Changelog:** [`2025.01.20.0...2025.01.20.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.20.0...2025.01.20.1)
- - -
## 2025.01.20.0
### Features
- Sidebar changes for modularity ([#2063](https://github.com/juspay/hyperswitch-control-center/pull/2063)) ([`5073b70`](https://github.com/juspay/hyperswitch-control-center/commit/5073b70bd0515f5ea0d78411845fd10b0142fee2))
### Bug Fixes
- Invitation error message ([#2076](https://github.com/juspay/hyperswitch-control-center/pull/2076)) ([`08cfdf9`](https://github.com/juspay/hyperswitch-control-center/commit/08cfdf9f5c43e9d6bdf436390e2de18e4fc275a3))
### Refactors
- Moved Graphs folder to components ([#2079](https://github.com/juspay/hyperswitch-control-center/pull/2079)) ([`6dda7ad`](https://github.com/juspay/hyperswitch-control-center/commit/6dda7ad09b17b1c3d2710f9732c485efaa8b3f56))
### Miscellaneous Tasks
- Change Bar graph component ([#2081](https://github.com/juspay/hyperswitch-control-center/pull/2081)) ([`280bb72`](https://github.com/juspay/hyperswitch-control-center/commit/280bb72fc88d2f53c0a90dd8923f877efa25e964))
**Full Changelog:** [`2025.01.17.0...2025.01.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.17.0...2025.01.20.0)
- - -
## 2025.01.17.0
### Features
- Customer table pagination ([#2071](https://github.com/juspay/hyperswitch-control-center/pull/2071)) ([`4c84206`](https://github.com/juspay/hyperswitch-control-center/commit/4c842068bf9820c5ed1d4744163475f891639d1d))
### Bug Fixes
- Success toast in routing ([#2074](https://github.com/juspay/hyperswitch-control-center/pull/2074)) ([`af6bc6b`](https://github.com/juspay/hyperswitch-control-center/commit/af6bc6b0d8f64991677b1d3fad02fe37fd15d21f))
### Refactors
- Connector_type type added ([#2069](https://github.com/juspay/hyperswitch-control-center/pull/2069)) ([`80ba2f5`](https://github.com/juspay/hyperswitch-control-center/commit/80ba2f5bdebcad0171963723ff09267241d82841))
**Full Changelog:** [`2025.01.16.0...2025.01.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.16.0...2025.01.17.0)
- - -
## 2025.01.16.0
### Features
- New analytics filter refunds ([#2056](https://github.com/juspay/hyperswitch-control-center/pull/2056)) ([`db5b503`](https://github.com/juspay/hyperswitch-control-center/commit/db5b503fd5f4160ae78968a48b063a79cd39d7e8))
### Bug Fixes
- Fixed extend date button functionality ([#2064](https://github.com/juspay/hyperswitch-control-center/pull/2064)) ([`aee1f0c`](https://github.com/juspay/hyperswitch-control-center/commit/aee1f0c13f32fa9787fb058885c7c23a4dca6c82))
- Currency filter value fixes ([#2067](https://github.com/juspay/hyperswitch-control-center/pull/2067)) ([`41b7f64`](https://github.com/juspay/hyperswitch-control-center/commit/41b7f645b643288fea6d525934875ba35f3d047e))
### Miscellaneous Tasks
- Filter authentication processor ([#2065](https://github.com/juspay/hyperswitch-control-center/pull/2065)) ([`94c8a45`](https://github.com/juspay/hyperswitch-control-center/commit/94c8a4540c2898c8f64d69b539bcd15624f568ef))
**Full Changelog:** [`2025.01.14.0...2025.01.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.14.0...2025.01.16.0)
- - -
## 2025.01.14.0
### Bug Fixes
- Global search id search fix ([#2054](https://github.com/juspay/hyperswitch-control-center/pull/2054)) ([`6dcaf1f`](https://github.com/juspay/hyperswitch-control-center/commit/6dcaf1f834464dc4fc966719ec6be39d597f7f1a))
### Miscellaneous Tasks
- Conditional enforcement of cookies ([#2050](https://github.com/juspay/hyperswitch-control-center/pull/2050)) ([`7c25c4b`](https://github.com/juspay/hyperswitch-control-center/commit/7c25c4b42be1bc5fe48777fece35cb9c1f2f42dd))
**Full Changelog:** [`2025.01.13.0...2025.01.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.13.0...2025.01.14.0)
- - -
## 2025.01.13.0
### Features
- Recon Setup ([#1981](https://github.com/juspay/hyperswitch-control-center/pull/1981)) ([`1a13c1e`](https://github.com/juspay/hyperswitch-control-center/commit/1a13c1e10909e05f64d83f7b9f9dda6c4af9cbf8))
- Banner for maintenance ([#2022](https://github.com/juspay/hyperswitch-control-center/pull/2022)) ([`0695232`](https://github.com/juspay/hyperswitch-control-center/commit/0695232e3fff0abc3fc6824fcba8fc2693ae8dcc))
### Bug Fixes
- Disable deselecting item ([#2058](https://github.com/juspay/hyperswitch-control-center/pull/2058)) ([`64347ef`](https://github.com/juspay/hyperswitch-control-center/commit/64347ef3a81bf3b0ac48931fd5ff76fe10dd14d6))
### Miscellaneous Tasks
- Limit unusually large width of dropdown ([#2046](https://github.com/juspay/hyperswitch-control-center/pull/2046)) ([`edaf8b4`](https://github.com/juspay/hyperswitch-control-center/commit/edaf8b441f1ede8ed4b1dcb753ff198d3e0464cd))
- Org dropdown for tenant admin ([#2053](https://github.com/juspay/hyperswitch-control-center/pull/2053)) ([`ec27e2c`](https://github.com/juspay/hyperswitch-control-center/commit/ec27e2c5a6bce6842329e13103364f5d58b848f4))
**Full Changelog:** [`2025.01.10.0...2025.01.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.10.0...2025.01.13.0)
- - -
## 2025.01.10.0
### Bug Fixes
- Font color primary ([#2048](https://github.com/juspay/hyperswitch-control-center/pull/2048)) ([`c19764f`](https://github.com/juspay/hyperswitch-control-center/commit/c19764fd71235a579ead51a32b898f16e5db29f1))
### Miscellaneous Tasks
- Show info banner for download api key ([#2041](https://github.com/juspay/hyperswitch-control-center/pull/2041)) ([`a0c429b`](https://github.com/juspay/hyperswitch-control-center/commit/a0c429bfef34eb91ef2a7561c03d2034c6d4f7f8))
- Themes API Frontend Support ([#1982](https://github.com/juspay/hyperswitch-control-center/pull/1982)) ([`01cc69c`](https://github.com/juspay/hyperswitch-control-center/commit/01cc69c026dbc725876c766612b63588c2969fd4))
**Full Changelog:** [`2025.01.09.0...2025.01.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.09.0...2025.01.10.0)
- - -
## 2025.01.09.0
### Features
- Global search mixpanel events ([#2028](https://github.com/juspay/hyperswitch-control-center/pull/2028)) ([`2356530`](https://github.com/juspay/hyperswitch-control-center/commit/2356530d37f23d980c6c2dcd6490f835beb2d9a5))
- New analytics filter payments ([#2019](https://github.com/juspay/hyperswitch-control-center/pull/2019)) ([`90c0be2`](https://github.com/juspay/hyperswitch-control-center/commit/90c0be2f71bcbbd00d9d28df56306f544ccf5b72))
- New analytics currency filter smart retry ([#2037](https://github.com/juspay/hyperswitch-control-center/pull/2037)) ([`951bda8`](https://github.com/juspay/hyperswitch-control-center/commit/951bda85721db84f2eab511fd837da2e3ec70bac))
- Mixpanel x request id on alert events ([#2042](https://github.com/juspay/hyperswitch-control-center/pull/2042)) ([`a3dd8cd`](https://github.com/juspay/hyperswitch-control-center/commit/a3dd8cd8babfff780c8c85f2af77f03f4840ad97))
### Miscellaneous Tasks
- Minor file refactor and table data ordering ([#2031](https://github.com/juspay/hyperswitch-control-center/pull/2031)) ([`88f6af5`](https://github.com/juspay/hyperswitch-control-center/commit/88f6af5e02520e29bb5717539cdf9980c5576a0a))
- Global search free text handling ([#2034](https://github.com/juspay/hyperswitch-control-center/pull/2034)) ([`04b7f20`](https://github.com/juspay/hyperswitch-control-center/commit/04b7f203ea7b2a231a92edecfdd4ada447584655))
- Show merchant switch toast ([#2040](https://github.com/juspay/hyperswitch-control-center/pull/2040)) ([`e540954`](https://github.com/juspay/hyperswitch-control-center/commit/e54095412fb1dfd42b2884ad52b0c76c0026bc81))
**Full Changelog:** [`2025.01.08.0...2025.01.09.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.08.0...2025.01.09.0)
- - -
## 2025.01.08.0
### Features
- Extenddatebutton ([#2001](https://github.com/juspay/hyperswitch-control-center/pull/2001)) ([`7961ba6`](https://github.com/juspay/hyperswitch-control-center/commit/7961ba673d88798b2bd194a538bb01d262d0786e))
### Bug Fixes
- Dropdown buttons ([#2013](https://github.com/juspay/hyperswitch-control-center/pull/2013)) ([`602a787`](https://github.com/juspay/hyperswitch-control-center/commit/602a787c9cc8c50590ac9c93c3f5811222f6f23b))
### Miscellaneous Tasks
- Dropdown ellipses text ([#2025](https://github.com/juspay/hyperswitch-control-center/pull/2025)) ([`f5d246a`](https://github.com/juspay/hyperswitch-control-center/commit/f5d246a3c1a9d1db3f42814089a589a482c78cd4))
- Moved Connector and Business Profile API call to SDK Page ([#2016](https://github.com/juspay/hyperswitch-control-center/pull/2016)) ([`57a8ea4`](https://github.com/juspay/hyperswitch-control-center/commit/57a8ea46ffb9a3d22c6fc9fcfbc4006cd178a806))
- Dropdown options for profile ([#2026](https://github.com/juspay/hyperswitch-control-center/pull/2026)) ([`ea4094e`](https://github.com/juspay/hyperswitch-control-center/commit/ea4094e52b79c808c3b147c955a06329b5d301da))
**Full Changelog:** [`2025.01.07.0...2025.01.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.07.0...2025.01.08.0)
- - -
## 2025.01.07.0
### Features
- New analytics filter utils changes ([#2011](https://github.com/juspay/hyperswitch-control-center/pull/2011)) ([`800d97f`](https://github.com/juspay/hyperswitch-control-center/commit/800d97fe62ad89eaa8c0e90a07860917d3e9e23d))
### Bug Fixes
- Api creds redesign ([#1991](https://github.com/juspay/hyperswitch-control-center/pull/1991)) ([`12b9ca2`](https://github.com/juspay/hyperswitch-control-center/commit/12b9ca224a9c2e173696f59d303413acb753e148))
- Made responsive ([#1994](https://github.com/juspay/hyperswitch-control-center/pull/1994)) ([`59ccd24`](https://github.com/juspay/hyperswitch-control-center/commit/59ccd24db68b2c9c26df6e48b68b3a7ecae49e6c))
### Miscellaneous Tasks
- Event logs ui enhancements ([#1998](https://github.com/juspay/hyperswitch-control-center/pull/1998)) ([`aca60b0`](https://github.com/juspay/hyperswitch-control-center/commit/aca60b07ea51c2a174c953c0868c3139715ba205))
- Switch merchant name fix ([#2020](https://github.com/juspay/hyperswitch-control-center/pull/2020)) ([`cb1cdb4`](https://github.com/juspay/hyperswitch-control-center/commit/cb1cdb455c7499237f13f819047a90cdba33da3c))
**Full Changelog:** [`2025.01.03.2...2025.01.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.03.2...2025.01.07.0)
- - -
## 2025.01.03.2
### Refactors
- Payment settings redesign ([#1996](https://github.com/juspay/hyperswitch-control-center/pull/1996)) ([`c009366`](https://github.com/juspay/hyperswitch-control-center/commit/c009366f5b22b36d06efe5200c7d57a440452c0a))
### Miscellaneous Tasks
- Added required tenant user checks ([#2008](https://github.com/juspay/hyperswitch-control-center/pull/2008)) ([`8144ae1`](https://github.com/juspay/hyperswitch-control-center/commit/8144ae1cc53a312b1b19555d73c486b30acb07db))
**Full Changelog:** [`2025.01.03.1...2025.01.03.2`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.03.1...2025.01.03.2)
- - -
## 2025.01.03.1
### Miscellaneous Tasks
- Support multitenancy domain ([#1979](https://github.com/juspay/hyperswitch-control-center/pull/1979)) ([`93f318c`](https://github.com/juspay/hyperswitch-control-center/commit/93f318cf33254a4fc9363834e727dc8243a0f52d))
**Full Changelog:** [`2025.01.03.0...2025.01.03.1`](https://github.com/juspay/hyperswitch-control-center/compare/2025.01.03.0...2025.01.03.1)
- - -
## 2025.01.03.0
### Features
- New analytics filter component ([#1962](https://github.com/juspay/hyperswitch-control-center/pull/1962)) ([`b754615`](https://github.com/juspay/hyperswitch-control-center/commit/b7546155c0705c04b1468e1985015b0ab24eaf53))
### Bug Fixes
- Get production access component visibility in sandbox ([#2000](https://github.com/juspay/hyperswitch-control-center/pull/2000)) ([`1636ab2`](https://github.com/juspay/hyperswitch-control-center/commit/1636ab21c37402d113a64db8a7794a67fe4655c6))
### Miscellaneous Tasks
- Invite users enhancement ([#1964](https://github.com/juspay/hyperswitch-control-center/pull/1964)) ([`b47d5f5`](https://github.com/juspay/hyperswitch-control-center/commit/b47d5f5626f16a2b42ddca103f6a9024d9a92ef1))
- Banner revamp ([#1990](https://github.com/juspay/hyperswitch-control-center/pull/1990)) ([`6cf5697`](https://github.com/juspay/hyperswitch-control-center/commit/6cf56970079a4354caa4e4dae7c6c14a9883e3f6))
**Full Changelog:** [`2024.12.31.0...2025.01.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.31.0...2025.01.03.0)
- - -
## 2024.12.31.0
### Features
- Enable google pay for airwallex ([#1976](https://github.com/juspay/hyperswitch-control-center/pull/1976)) ([`0138abe`](https://github.com/juspay/hyperswitch-control-center/commit/0138abe72e100d64421f615893645d4f9fbf7a3d))
### Bug Fixes
- Background color default config fix ([#1988](https://github.com/juspay/hyperswitch-control-center/pull/1988)) ([`f768696`](https://github.com/juspay/hyperswitch-control-center/commit/f768696c728627da95b299836f7ac5403c380a72))
### Refactors
- Refunds popup design ([#1983](https://github.com/juspay/hyperswitch-control-center/pull/1983)) ([`9c18971`](https://github.com/juspay/hyperswitch-control-center/commit/9c18971e4f9a5f8b162de393b55e01ded382f8dc))
### Miscellaneous Tasks
- Connector search results fix in routing ([#1984](https://github.com/juspay/hyperswitch-control-center/pull/1984)) ([`f88d360`](https://github.com/juspay/hyperswitch-control-center/commit/f88d360060f2de60fecab722833b6e863e0d2e3b))
- Update merchant name after sbx onbaording ([#1987](https://github.com/juspay/hyperswitch-control-center/pull/1987)) ([`1cc440b`](https://github.com/juspay/hyperswitch-control-center/commit/1cc440b0f5f54e202868680d79f97b5cc6781af0))
**Full Changelog:** [`2024.12.30.0...2024.12.31.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.30.0...2024.12.31.0)
- - -
## 2024.12.30.0
### Features
- Global search filters ux enhancements ([#1977](https://github.com/juspay/hyperswitch-control-center/pull/1977)) ([`cde0b70`](https://github.com/juspay/hyperswitch-control-center/commit/cde0b709b40061dbf0962ac6f087ff10b0c0a52d))
**Full Changelog:** [`2024.12.25.0...2024.12.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.25.0...2024.12.30.0)
- - -
## 2024.12.25.0
### Features
- New Theme Structure and Custom Style Integration ([#1958](https://github.com/juspay/hyperswitch-control-center/pull/1958)) ([`e15d0a1`](https://github.com/juspay/hyperswitch-control-center/commit/e15d0a167372b1784c1706751af0e66b0a881299))
- Recon Landing Page ([#1970](https://github.com/juspay/hyperswitch-control-center/pull/1970)) ([`9c1005b`](https://github.com/juspay/hyperswitch-control-center/commit/9c1005be2230804f94c321597a125190f08ef366))
- Added 3ds connector for click to pay - mastercard ([#1974](https://github.com/juspay/hyperswitch-control-center/pull/1974)) ([`09f68c9`](https://github.com/juspay/hyperswitch-control-center/commit/09f68c92ba108c376c9a5665b48d610ec20dab08))
### Bug Fixes
- Move disabled connectors at bottom ([#1949](https://github.com/juspay/hyperswitch-control-center/pull/1949)) ([`c278fbd`](https://github.com/juspay/hyperswitch-control-center/commit/c278fbdf6a9689966963c950226fabccb0d2d559))
### Refactors
- Separated payout processors files ([#1953](https://github.com/juspay/hyperswitch-control-center/pull/1953)) ([`3baac29`](https://github.com/juspay/hyperswitch-control-center/commit/3baac29e94d3393b31a0865397dbe2a4df2067f9))
### Miscellaneous Tasks
- Setup recon product ([#1966](https://github.com/juspay/hyperswitch-control-center/pull/1966)) ([`31bac54`](https://github.com/juspay/hyperswitch-control-center/commit/31bac5427d0b3f38fd1e6f85cf559ee5faf9a56e))
- Setup recon configuration ([#1972](https://github.com/juspay/hyperswitch-control-center/pull/1972)) ([`1bb4347`](https://github.com/juspay/hyperswitch-control-center/commit/1bb43476e5b24e64c0cf4058c85312b35969b9c7))
**Full Changelog:** [`2024.12.24.0...2024.12.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.24.0...2024.12.25.0)
- - -
## 2024.12.24.0
### Miscellaneous Tasks
- Show switch org input box for tenant admin ([#1925](https://github.com/juspay/hyperswitch-control-center/pull/1925)) ([`4f8af0e`](https://github.com/juspay/hyperswitch-control-center/commit/4f8af0ed3e51e51350b5c169a680856c2de1b177))
**Full Changelog:** [`2024.12.23.0...2024.12.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.23.0...2024.12.24.0)
- - -
## 2024.12.23.0
### Miscellaneous Tasks
- Moving business profile component to helper file ([#1959](https://github.com/juspay/hyperswitch-control-center/pull/1959)) ([`49471d3`](https://github.com/juspay/hyperswitch-control-center/commit/49471d3fb2dcaf43fd9b7dc72b7fdee96b81d0cf))
**Full Changelog:** [`2024.12.20.0...2024.12.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.20.0...2024.12.23.0)
- - -
## 2024.12.20.0
### Miscellaneous Tasks
- Add fiuu to prod ([#1956](https://github.com/juspay/hyperswitch-control-center/pull/1956)) ([`4addc3e`](https://github.com/juspay/hyperswitch-control-center/commit/4addc3e56af1672433a36499d6186ebc0c65000e))
- Omp views redesign changes ([#1894](https://github.com/juspay/hyperswitch-control-center/pull/1894)) ([`2dfb19a`](https://github.com/juspay/hyperswitch-control-center/commit/2dfb19a8e63f5374ebc61d9b9755054e06fc2f73))
- Omp views new analytics ([#1898](https://github.com/juspay/hyperswitch-control-center/pull/1898)) ([`b227695`](https://github.com/juspay/hyperswitch-control-center/commit/b2276953814e5089753bf3363c6c4a55a80217d7))
**Full Changelog:** [`2024.12.19.0...2024.12.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.19.0...2024.12.20.0)
- - -
## 2024.12.19.0
### Features
- Addition of new connector - Elavon ([#1950](https://github.com/juspay/hyperswitch-control-center/pull/1950)) ([`e5ee018`](https://github.com/juspay/hyperswitch-control-center/commit/e5ee018cb2126307b02635e6e0b9497444779c83))
- Add click to pay in payment settings ([#1927](https://github.com/juspay/hyperswitch-control-center/pull/1927)) ([`db89acf`](https://github.com/juspay/hyperswitch-control-center/commit/db89acf233da6960895185630e7c07fb36b7db3d))
### Refactors
- Invite user input ([#1919](https://github.com/juspay/hyperswitch-control-center/pull/1919)) ([`84cf9aa`](https://github.com/juspay/hyperswitch-control-center/commit/84cf9aa35af7a7a8b68b6890f56020ffa5cdd84b))
- Changed folder structure of connectors ([#1952](https://github.com/juspay/hyperswitch-control-center/pull/1952)) ([`e5bae80`](https://github.com/juspay/hyperswitch-control-center/commit/e5bae806282ef90fc8669c73cfb7f1c871a9a734))
**Full Changelog:** [`2024.12.18.0...2024.12.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.18.0...2024.12.19.0)
- - -
## 2024.12.18.0
### Features
- Refunds reasons ([#1941](https://github.com/juspay/hyperswitch-control-center/pull/1941)) ([`e93ba39`](https://github.com/juspay/hyperswitch-control-center/commit/e93ba39eab5f0c4cfee047dcb6fa320ce02f66f6))
- Refunds overview section ([#1932](https://github.com/juspay/hyperswitch-control-center/pull/1932)) ([`8f7bd7d`](https://github.com/juspay/hyperswitch-control-center/commit/8f7bd7d0c9c4b31a8a6fd27bfbc74643719c85a0))
- Refunds success distribution ([#1935](https://github.com/juspay/hyperswitch-control-center/pull/1935)) ([`fdab784`](https://github.com/juspay/hyperswitch-control-center/commit/fdab784075f146b3db70aa0561e850696043072f))
- Refunds failure distribution ([#1937](https://github.com/juspay/hyperswitch-control-center/pull/1937)) ([`bcf649b`](https://github.com/juspay/hyperswitch-control-center/commit/bcf649bb582d2e1bbf717b1b9a78d2249c44b654))
- Refunds failure reasons ([#1938](https://github.com/juspay/hyperswitch-control-center/pull/1938)) ([`971ecca`](https://github.com/juspay/hyperswitch-control-center/commit/971ecca6e97d0994603075bccee429fa36a3bd45))
### Bug Fixes
- Search box issues in "Connectors" pages ([#1942](https://github.com/juspay/hyperswitch-control-center/pull/1942)) ([`3690346`](https://github.com/juspay/hyperswitch-control-center/commit/3690346060b48ac23e4f4b05a4aaa4430276171c))
- List invitation error on logout from recon ([#1944](https://github.com/juspay/hyperswitch-control-center/pull/1944)) ([`939457d`](https://github.com/juspay/hyperswitch-control-center/commit/939457d996c07eea31f4de25858cfe0939af602d))
**Full Changelog:** [`2024.12.17.1...2024.12.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.17.1...2024.12.18.0)
- - -
## 2024.12.17.1
### Miscellaneous Tasks
- Package update ([#1946](https://github.com/juspay/hyperswitch-control-center/pull/1946)) ([`8c8a444`](https://github.com/juspay/hyperswitch-control-center/commit/8c8a4441886bfa47590b3a81de35adbca30d2fb6))
**Full Changelog:** [`2024.12.17.0...2024.12.17.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.17.0...2024.12.17.1)
- - -
## 2024.12.17.0
### Features
- Additional recipients in generate report ([#1911](https://github.com/juspay/hyperswitch-control-center/pull/1911)) ([`73478b5`](https://github.com/juspay/hyperswitch-control-center/commit/73478b58de6b762ee3db76d258d27f7325f706f0))
- Refunds amount count module ([#1915](https://github.com/juspay/hyperswitch-control-center/pull/1915)) ([`3493139`](https://github.com/juspay/hyperswitch-control-center/commit/3493139c91f8a0256983dd2937ed156e62960403))
### Bug Fixes
- Removing unused feature flags ([#1920](https://github.com/juspay/hyperswitch-control-center/pull/1920)) ([`1a55514`](https://github.com/juspay/hyperswitch-control-center/commit/1a555148efe72b01bab729db84d3d8bb17c8803a))
**Full Changelog:** [`2024.12.16.0...2024.12.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.16.0...2024.12.17.0)
- - -
## 2024.12.16.0
### Features
- Refunds success rate ([#1917](https://github.com/juspay/hyperswitch-control-center/pull/1917)) ([`4693520`](https://github.com/juspay/hyperswitch-control-center/commit/4693520ea4ac550d510d2f15fe2d01c5ba5c925b))
### Bug Fixes
- Handle recon-iframe logout in dashboard ([#1914](https://github.com/juspay/hyperswitch-control-center/pull/1914)) ([`dc07d46`](https://github.com/juspay/hyperswitch-control-center/commit/dc07d46a0e0098b3e4162d48d4c7879a3df35aa3))
**Full Changelog:** [`2024.12.13.1...2024.12.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.13.1...2024.12.16.0)
- - -
## 2024.12.13.1
### Bug Fixes
- Separate section custom headers ([#1916](https://github.com/juspay/hyperswitch-control-center/pull/1916)) ([`d86074a`](https://github.com/juspay/hyperswitch-control-center/commit/d86074ab9e3cd85aab2ba79c12b5e2451693cc59))
### Miscellaneous Tasks
- Refunds analytics v2 file refactor ([#1913](https://github.com/juspay/hyperswitch-control-center/pull/1913)) ([`16761f4`](https://github.com/juspay/hyperswitch-control-center/commit/16761f4c510a477f54c2dc49ed0ace391f45eae2))
**Full Changelog:** [`2024.12.13.0...2024.12.13.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.13.0...2024.12.13.1)
- - -
## 2024.12.13.0
### Features
- New analytics refunds tab ([#1889](https://github.com/juspay/hyperswitch-control-center/pull/1889)) ([`fc5392f`](https://github.com/juspay/hyperswitch-control-center/commit/fc5392f0079c0961def238df1cc1ee96c714202e))
### Miscellaneous Tasks
- New analytics text font and color changes ([#1902](https://github.com/juspay/hyperswitch-control-center/pull/1902)) ([`054b6c4`](https://github.com/juspay/hyperswitch-control-center/commit/054b6c47b5c7d2fd09c901e638da9a32d5792c4e))
**Full Changelog:** [`2024.12.12.2...2024.12.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.12.2...2024.12.13.0)
- - -
## 2024.12.12.2
### Features
- New pill input type ([#1901](https://github.com/juspay/hyperswitch-control-center/pull/1901)) ([`9c4c673`](https://github.com/juspay/hyperswitch-control-center/commit/9c4c673eb60454a723ee39219792a160f16a1152))
### Bug Fixes
- Custom http headers ([#1910](https://github.com/juspay/hyperswitch-control-center/pull/1910)) ([`4fcbce6`](https://github.com/juspay/hyperswitch-control-center/commit/4fcbce62ebac9432f68c084a81fa74c99c6f7da5))
**Full Changelog:** [`2024.12.12.1...2024.12.12.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.12.1...2024.12.12.2)
- - -
## 2024.12.12.1
### Features
- Update custom webhook headers ([#1908](https://github.com/juspay/hyperswitch-control-center/pull/1908)) ([`39b0bb0`](https://github.com/juspay/hyperswitch-control-center/commit/39b0bb0ed314957b312541fd3f38651f810251a6))
**Full Changelog:** [`2024.12.12.0...2024.12.12.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.12.0...2024.12.12.1)
- - -
## 2024.12.12.0
### Bug Fixes
- Amount Filter bug ([#1900](https://github.com/juspay/hyperswitch-control-center/pull/1900)) ([`5761c53`](https://github.com/juspay/hyperswitch-control-center/commit/5761c53c5804095b01262b1a19bfe3db03c40fe6))
**Full Changelog:** [`2024.12.10.0...2024.12.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.10.0...2024.12.12.0)
- - -
## 2024.12.10.0
### Bug Fixes
- Analytics minor changes ([#1897](https://github.com/juspay/hyperswitch-control-center/pull/1897)) ([`feae8ba`](https://github.com/juspay/hyperswitch-control-center/commit/feae8baa147b837ec75783445327990593214579))
**Full Changelog:** [`2024.12.09.2...2024.12.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.09.2...2024.12.10.0)
- - -
## 2024.12.09.2
### Features
- Paymants failure reasons ([#1892](https://github.com/juspay/hyperswitch-control-center/pull/1892)) ([`807e047`](https://github.com/juspay/hyperswitch-control-center/commit/807e0478b06f05168bd78365ced8df302f1b13f8))
**Full Changelog:** [`2024.12.09.1...2024.12.09.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.09.1...2024.12.09.2)
- - -
## 2024.12.09.1
### Features
- Merchant Reference ID filter PaymentOps ([#1807](https://github.com/juspay/hyperswitch-control-center/pull/1807)) ([`7164693`](https://github.com/juspay/hyperswitch-control-center/commit/7164693da549cfc34578aafc616c587baaef1e14))
- Smart retry amount analytics ([#1872](https://github.com/juspay/hyperswitch-control-center/pull/1872)) ([`c5c5542`](https://github.com/juspay/hyperswitch-control-center/commit/c5c554284ede550bc527fbf11bd834d0276f7b26))
- Successful smart retry distribution ([#1882](https://github.com/juspay/hyperswitch-control-center/pull/1882)) ([`72602c1`](https://github.com/juspay/hyperswitch-control-center/commit/72602c167daae61d5146c277de2ea2f9a602e1b3))
- New analytics smart retry failure distribution ([#1886](https://github.com/juspay/hyperswitch-control-center/pull/1886)) ([`698e17a`](https://github.com/juspay/hyperswitch-control-center/commit/698e17a6c6a12ac492c82c564a562354fb793466))
- Smart retry analytics modules ([#1890](https://github.com/juspay/hyperswitch-control-center/pull/1890)) ([`5b1b2e9`](https://github.com/juspay/hyperswitch-control-center/commit/5b1b2e99497ba200e634b19d3953453007afe55b))
- Refunds amount filter and UI enhancements ([#1884](https://github.com/juspay/hyperswitch-control-center/pull/1884)) ([`2134cbf`](https://github.com/juspay/hyperswitch-control-center/commit/2134cbf6b41d2f2744909ed4872c2d6323a11ecc))
### Bug Fixes
- Truncate cols of connector transaction ID in Payment ops ([#1855](https://github.com/juspay/hyperswitch-control-center/pull/1855)) ([`b481bd8`](https://github.com/juspay/hyperswitch-control-center/commit/b481bd8cc4883505861c9672eabbd23ab7eb40bb))
- Amount Filter Validations and Changes ([#1869](https://github.com/juspay/hyperswitch-control-center/pull/1869)) ([`e2d1591`](https://github.com/juspay/hyperswitch-control-center/commit/e2d15915f75b26666da50957e9c14be8522cfe64))
### Miscellaneous Tasks
- Updated api endpoints /removed v2 urls ([#1515](https://github.com/juspay/hyperswitch-control-center/pull/1515)) ([`70881b4`](https://github.com/juspay/hyperswitch-control-center/commit/70881b47c871f6d2414f93afb3c1d5814b2fd55f))
- Smart retry tab code ([#1865](https://github.com/juspay/hyperswitch-control-center/pull/1865)) ([`25c9d23`](https://github.com/juspay/hyperswitch-control-center/commit/25c9d2394cdf3aafb5739c169dfc4364259f3f07))
- New analytics bar file refactor ([#1880](https://github.com/juspay/hyperswitch-control-center/pull/1880)) ([`71714a4`](https://github.com/juspay/hyperswitch-control-center/commit/71714a41eea537241dff4630f69ea355f73d8bf2))
**Full Changelog:** [`2024.12.09.0...2024.12.09.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.09.0...2024.12.09.1)
- - -
## 2024.12.09.0
### Bug Fixes
- Update list on accept invite ([#1873](https://github.com/juspay/hyperswitch-control-center/pull/1873)) ([`945ce14`](https://github.com/juspay/hyperswitch-control-center/commit/945ce14bab0c7a95170bf4ad72509b76a102049c))
### Miscellaneous Tasks
- Organize transaction modules ([#1876](https://github.com/juspay/hyperswitch-control-center/pull/1876)) ([`58e3731`](https://github.com/juspay/hyperswitch-control-center/commit/58e37314a3911f235fe619521940660fdeec58df))
**Full Changelog:** [`2024.12.06.1...2024.12.09.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.06.1...2024.12.09.0)
- - -
## 2024.12.06.1
### Miscellaneous Tasks
- Percentage calculation changes ([#1870](https://github.com/juspay/hyperswitch-control-center/pull/1870)) ([`6cddccc`](https://github.com/juspay/hyperswitch-control-center/commit/6cddccc5b19966c0abe0288caddf92b8ecb4af66))
**Full Changelog:** [`2024.12.06.0...2024.12.06.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.06.0...2024.12.06.1)
- - -
## 2024.12.06.0
### Miscellaneous Tasks
- New analytics code refactor ([#1856](https://github.com/juspay/hyperswitch-control-center/pull/1856)) ([`30e223f`](https://github.com/juspay/hyperswitch-control-center/commit/30e223f2d5cc70c0bf200937a3c23c765bac780e))
**Full Changelog:** [`2024.12.05.0...2024.12.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.05.0...2024.12.06.0)
- - -
## 2024.12.05.0
### Features
- Paze additional details ([#1835](https://github.com/juspay/hyperswitch-control-center/pull/1835)) ([`ecdffa2`](https://github.com/juspay/hyperswitch-control-center/commit/ecdffa2dca940099154d15220ce505dfbca27b8f))
### Refactors
- Recon - update recon resources for rendering sidebar values based on permissions ([#1787](https://github.com/juspay/hyperswitch-control-center/pull/1787)) ([`bba3315`](https://github.com/juspay/hyperswitch-control-center/commit/bba33153a46cae32850b44a22655e6dcc864ee9c))
**Full Changelog:** [`2024.12.04.1...2024.12.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.04.1...2024.12.05.0)
- - -
## 2024.12.04.1
### Features
- Multitenancy changes to support tenant entity ([#1641](https://github.com/juspay/hyperswitch-control-center/pull/1641)) ([`84dcdf0`](https://github.com/juspay/hyperswitch-control-center/commit/84dcdf0820f8913c958d4fe5a7e384ba98769961))
### Bug Fixes
- Global search filters feature flag ([#1851](https://github.com/juspay/hyperswitch-control-center/pull/1851)) ([`64c8647`](https://github.com/juspay/hyperswitch-control-center/commit/64c8647452da211f96cd28e1a63c7176c4a30f7d))
- Horizontal scroll in views ([#1830](https://github.com/juspay/hyperswitch-control-center/pull/1830)) ([`b017689`](https://github.com/juspay/hyperswitch-control-center/commit/b01768924e108e6535b7b5f6fbbf9050c9bcf910))
### Miscellaneous Tasks
- Refactoring ops utils file ([#1590](https://github.com/juspay/hyperswitch-control-center/pull/1590)) ([`fa199af`](https://github.com/juspay/hyperswitch-control-center/commit/fa199af6e3b1760ca743b7b7c318d9fcfb4e45f9))
- New analytics minor changes ([#1853](https://github.com/juspay/hyperswitch-control-center/pull/1853)) ([`dcf82b0`](https://github.com/juspay/hyperswitch-control-center/commit/dcf82b004da3de2483edfced5f37c27a1eb2c98a))
**Full Changelog:** [`2024.12.04.0...2024.12.04.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.04.0...2024.12.04.1)
- - -
## 2024.12.04.0
### Miscellaneous Tasks
- Hiding org merchant dropdown for internal user ([#1843](https://github.com/juspay/hyperswitch-control-center/pull/1843)) ([`c411e40`](https://github.com/juspay/hyperswitch-control-center/commit/c411e40d3c792fbba1d760d7c53562a209cf98f4))
- Global search filters list update ([#1847](https://github.com/juspay/hyperswitch-control-center/pull/1847)) ([`b3672d1`](https://github.com/juspay/hyperswitch-control-center/commit/b3672d1ca89952705fc714692d38ce2febba6f4e))
**Full Changelog:** [`2024.12.03.1...2024.12.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.03.1...2024.12.04.0)
- - -
## 2024.12.03.1
### Bug Fixes
- Refunds amount overview fix ([#1838](https://github.com/juspay/hyperswitch-control-center/pull/1838)) ([`2224f61`](https://github.com/juspay/hyperswitch-control-center/commit/2224f6169a4b59c7c6fd872597f06fc56902511d))
- Global search on key press fix ([#1840](https://github.com/juspay/hyperswitch-control-center/pull/1840)) ([`de5304c`](https://github.com/juspay/hyperswitch-control-center/commit/de5304cb7a037d054b5b1e0ef26d6539343c977a))
**Full Changelog:** [`2024.12.03.0...2024.12.03.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.12.03.0...2024.12.03.1)
- - -
## 2024.12.03.0
### Bug Fixes
- Global search fixes ([#1832](https://github.com/juspay/hyperswitch-control-center/pull/1832)) ([`b670e71`](https://github.com/juspay/hyperswitch-control-center/commit/b670e718d424f5d7cf19e5ad6d94b5a436aa7878))
**Full Changelog:** [`2024.11.29.3...2024.12.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.29.3...2024.12.03.0)
- - -
## 2024.11.29.3
### Bug Fixes
- Amount filter validation ([#1834](https://github.com/juspay/hyperswitch-control-center/pull/1834)) ([`8be6040`](https://github.com/juspay/hyperswitch-control-center/commit/8be6040a9af511e48ad7abd78f8475ea6f7940da))
**Full Changelog:** [`2024.11.29.2...2024.11.29.3`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.29.2...2024.11.29.3)
- - -
## 2024.11.29.2
### Bug Fixes
- Tooltip fix for date range component ([#1821](https://github.com/juspay/hyperswitch-control-center/pull/1821)) ([`b797a6a`](https://github.com/juspay/hyperswitch-control-center/commit/b797a6a98c3a5a531701823f9a87345a251480cd))
- Date range compare component end time fix 00:00 to 59.59 ([#1824](https://github.com/juspay/hyperswitch-control-center/pull/1824)) ([`dfdcd9c`](https://github.com/juspay/hyperswitch-control-center/commit/dfdcd9c9017d792954f92178451e83fba41feebe))
### Miscellaneous Tasks
- Omp remove copy icon ([#1826](https://github.com/juspay/hyperswitch-control-center/pull/1826)) ([`0216973`](https://github.com/juspay/hyperswitch-control-center/commit/021697341a08ebb66ce2eef63fa678fa4599ddc3))
**Full Changelog:** [`2024.11.29.1...2024.11.29.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.29.1...2024.11.29.2)
- - -
## 2024.11.29.1
### Features
- Payment Operations Amount Filter ([#1796](https://github.com/juspay/hyperswitch-control-center/pull/1796)) ([`8102096`](https://github.com/juspay/hyperswitch-control-center/commit/8102096df30e078d93fe7645ac9595ea838ae84b))
### Bug Fixes
- Sidebar-active-selection-resolution ([#1813](https://github.com/juspay/hyperswitch-control-center/pull/1813)) ([`41972e3`](https://github.com/juspay/hyperswitch-control-center/commit/41972e310ca90cf0b6bcfa6cde27b5dd7c5a0e59))
### Miscellaneous Tasks
- Redesign omp dropdowns ([#1785](https://github.com/juspay/hyperswitch-control-center/pull/1785)) ([`e2789d9`](https://github.com/juspay/hyperswitch-control-center/commit/e2789d9680f7ed9bd2e23393ab3ceb2a4d491c8e))
**Full Changelog:** [`2024.11.29.0...2024.11.29.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.29.0...2024.11.29.1)
- - -
## 2024.11.29.0
### Miscellaneous Tasks
- Minor modification for enhancement and bugfix ([#1815](https://github.com/juspay/hyperswitch-control-center/pull/1815)) ([`491271f`](https://github.com/juspay/hyperswitch-control-center/commit/491271f20334455a497c6c5267548c9969f0236d))
**Full Changelog:** [`2024.11.28.1...2024.11.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.28.1...2024.11.29.0)
- - -
## 2024.11.28.1
### Bug Fixes
- Sanky flow chart change and tooltip ui advancements ([#1820](https://github.com/juspay/hyperswitch-control-center/pull/1820)) ([`868d15b`](https://github.com/juspay/hyperswitch-control-center/commit/868d15beaf5c01462c03d856124f72492be2c1e4))
**Full Changelog:** [`2024.11.28.0...2024.11.28.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.28.0...2024.11.28.1)
- - -
## 2024.11.28.0
### Bug Fixes
- Move columns in payment operations ([#1819](https://github.com/juspay/hyperswitch-control-center/pull/1819)) ([`aeeb226`](https://github.com/juspay/hyperswitch-control-center/commit/aeeb226394600757d87db8b32d7d5f1b7bd44dbc))
- Global search filters access check ([#1816](https://github.com/juspay/hyperswitch-control-center/pull/1816)) ([`5705b5d`](https://github.com/juspay/hyperswitch-control-center/commit/5705b5d50343b0f63da4a6a7bbe312c92865fdde))
- Horizontal Scrollbar to Tables ([#1811](https://github.com/juspay/hyperswitch-control-center/pull/1811)) ([`3299a22`](https://github.com/juspay/hyperswitch-control-center/commit/3299a221f19383ade404a144acc7972e9e82e6c7))
### Miscellaneous Tasks
- Fix admin permission to create new omp ([#1747](https://github.com/juspay/hyperswitch-control-center/pull/1747)) ([`12843a5`](https://github.com/juspay/hyperswitch-control-center/commit/12843a5e659ca2653273301ef6562e5e482d8da6))
- Added ref for user-info to get updated data ([#1804](https://github.com/juspay/hyperswitch-control-center/pull/1804)) ([`1bd5f44`](https://github.com/juspay/hyperswitch-control-center/commit/1bd5f44ce6e7c75cabee62846d68462e96aa76ba))
**Full Changelog:** [`2024.11.27.1...2024.11.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.27.1...2024.11.28.0)
- - -
## 2024.11.27.1
### Features
- **authn:** Enable cookies ([#1810](https://github.com/juspay/hyperswitch-control-center/pull/1810)) ([`e88a857`](https://github.com/juspay/hyperswitch-control-center/commit/e88a8570ba00c40bcb24832ba1bc05d8cb6b2273))
**Full Changelog:** [`2024.11.27.0...2024.11.27.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.27.0...2024.11.27.1)
- - -
## 2024.11.27.0
### Bug Fixes
- Changed global search date range fix ([#1803](https://github.com/juspay/hyperswitch-control-center/pull/1803)) ([`70dc324`](https://github.com/juspay/hyperswitch-control-center/commit/70dc324e7724a2c980b9eee00ca98049c0cf76f3))
### Miscellaneous Tasks
- Disabled access to test payment not having operation manage ([#1794](https://github.com/juspay/hyperswitch-control-center/pull/1794)) ([`82d2e40`](https://github.com/juspay/hyperswitch-control-center/commit/82d2e40a0fb7c7a0c84a4e65e4c5cee979854e5e))
**Full Changelog:** [`2024.11.25.2...2024.11.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.25.2...2024.11.27.0)
- - -
## 2024.11.25.2
### Features
- Frontend invite limit ([#1689](https://github.com/juspay/hyperswitch-control-center/pull/1689)) ([`022b229`](https://github.com/juspay/hyperswitch-control-center/commit/022b2291c0ca098e310c896e9b4b1c696c019255))
### Bug Fixes
- Sdk fix pr ([#1788](https://github.com/juspay/hyperswitch-control-center/pull/1788)) ([`f5b49d8`](https://github.com/juspay/hyperswitch-control-center/commit/f5b49d8cc750d70ae65ec8d2edabbce693513314))
- Analytics table data display changes and distribution cols order change ([#1773](https://github.com/juspay/hyperswitch-control-center/pull/1773)) ([`aa0fb1d`](https://github.com/juspay/hyperswitch-control-center/commit/aa0fb1d7e0b4584341bed402eafb28748eace7cb))
- Error on sdk page when no payment connector connected ([#1776](https://github.com/juspay/hyperswitch-control-center/pull/1776)) ([`9bb9284`](https://github.com/juspay/hyperswitch-control-center/commit/9bb9284fcca79a59564a8edf4830bba6b20ced51))
- Global search enter listener ([#1797](https://github.com/juspay/hyperswitch-control-center/pull/1797)) ([`ec03f6d`](https://github.com/juspay/hyperswitch-control-center/commit/ec03f6d693fb08e9a89e2448937c8a343e787070))
### Miscellaneous Tasks
- Design feedback changes ([#1768](https://github.com/juspay/hyperswitch-control-center/pull/1768)) ([`331c4cc`](https://github.com/juspay/hyperswitch-control-center/commit/331c4cc29646c785875dfdfb2744a992301f1ece))
- Analytic amount metrics ([#1791](https://github.com/juspay/hyperswitch-control-center/pull/1791)) ([`bb0674b`](https://github.com/juspay/hyperswitch-control-center/commit/bb0674b85e2a13d0dcb33cc473bf5fe3b50e57cd))
- Url path after OMP switch ([#1770](https://github.com/juspay/hyperswitch-control-center/pull/1770)) ([`db22304`](https://github.com/juspay/hyperswitch-control-center/commit/db22304eff24d29171aaabc17d5bf5c14b871739))
- Enable we domain for fiuu apple pay ([#1793](https://github.com/juspay/hyperswitch-control-center/pull/1793)) ([`6af0622`](https://github.com/juspay/hyperswitch-control-center/commit/6af0622502a957f2bfe8dffb83bc090f5682e02b))
**Full Changelog:** [`2024.11.25.1...2024.11.25.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.25.1...2024.11.25.2)
- - -
## 2024.11.25.1
### Features
- Fiuu connector added note part ([#1777](https://github.com/juspay/hyperswitch-control-center/pull/1777)) ([`a8ce191`](https://github.com/juspay/hyperswitch-control-center/commit/a8ce1914a172f6f003440454137253b808e058ff))
- Global search categories suggestions ([#1734](https://github.com/juspay/hyperswitch-control-center/pull/1734)) ([`735c74a`](https://github.com/juspay/hyperswitch-control-center/commit/735c74a996f79bd1c868f4b888818bdbc40e86de))
### Bug Fixes
- Analytics refunds amount usd conversion fix ([#1778](https://github.com/juspay/hyperswitch-control-center/pull/1778)) ([`c598653`](https://github.com/juspay/hyperswitch-control-center/commit/c59865324499d619979844876e996d62cd1194da))
**Full Changelog:** [`2024.11.25.0...2024.11.25.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.25.0...2024.11.25.1)
- - -
## 2024.11.25.0
### Miscellaneous Tasks
- Reverting routing filtering connector list changes ([#1781](https://github.com/juspay/hyperswitch-control-center/pull/1781)) ([`c5126a0`](https://github.com/juspay/hyperswitch-control-center/commit/c5126a07e202a1395e237c5dd3d5a08b1ec6bc15))
**Full Changelog:** [`2024.11.21.0...2024.11.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.21.0...2024.11.25.0)
- - -
## 2024.11.21.0
### Bug Fixes
- Customer ID remove key ([#1769](https://github.com/juspay/hyperswitch-control-center/pull/1769)) ([`1e7105c`](https://github.com/juspay/hyperswitch-control-center/commit/1e7105c6075b00f70c98530056699b6fccaa89a4))
**Full Changelog:** [`2024.11.20.0...2024.11.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.20.0...2024.11.21.0)
- - -
## 2024.11.20.0
### Features
- **assets:** Add welcome email assets ([#1763](https://github.com/juspay/hyperswitch-control-center/pull/1763)) ([`f27529a`](https://github.com/juspay/hyperswitch-control-center/commit/f27529a52d97a445be621e29bf3892ea5387561a))
- Customer ID filter ([#1746](https://github.com/juspay/hyperswitch-control-center/pull/1746)) ([`d409b01`](https://github.com/juspay/hyperswitch-control-center/commit/d409b017a2f64f2a103530a2a685c5a43ec4b38d))
### Bug Fixes
- Default routing connector list extraction changes ([#1765](https://github.com/juspay/hyperswitch-control-center/pull/1765)) ([`0c4fc5d`](https://github.com/juspay/hyperswitch-control-center/commit/0c4fc5dbad9c6c38988a9f12bac7263ebe18b513))
**Full Changelog:** [`2024.11.19.1...2024.11.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.19.1...2024.11.20.0)
- - -
## 2024.11.19.1
### Features
- Dispute count analytics for new analytics overview section ([#1759](https://github.com/juspay/hyperswitch-control-center/pull/1759)) ([`0ca639a`](https://github.com/juspay/hyperswitch-control-center/commit/0ca639aacdb8d395b3cffd1af6da95b36f241365))
### Bug Fixes
- Docker build ([`4b027be`](https://github.com/juspay/hyperswitch-control-center/commit/4b027bef47e90e27444bf206a17dae50c39415c2))
- Totp error toast ([#1756](https://github.com/juspay/hyperswitch-control-center/pull/1756)) ([`1ad7cae`](https://github.com/juspay/hyperswitch-control-center/commit/1ad7caeca3aff13266c7a3ab97b242560c7fc698))
- Filter sessionized metrics ([#1761](https://github.com/juspay/hyperswitch-control-center/pull/1761)) ([`8ab03a6`](https://github.com/juspay/hyperswitch-control-center/commit/8ab03a699a2e3749d19b65b42a1f99ba6d4d2f12))
**Full Changelog:** [`2024.11.19.0...2024.11.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.19.0...2024.11.19.1)
- - -
## 2024.11.19.0
### Bug Fixes
- Email case insensitive ([#1727](https://github.com/juspay/hyperswitch-control-center/pull/1727)) ([`e9d5b2f`](https://github.com/juspay/hyperswitch-control-center/commit/e9d5b2f370b127fa9e7eb391bca327773a258759))
- Payment prosecces count fix ([#1745](https://github.com/juspay/hyperswitch-control-center/pull/1745)) ([`87f090a`](https://github.com/juspay/hyperswitch-control-center/commit/87f090a180e512b122622c85d74caa5634ecec1c))
### Miscellaneous Tasks
- Removing api call not required on sdk page ([#1753](https://github.com/juspay/hyperswitch-control-center/pull/1753)) ([`c2cb225`](https://github.com/juspay/hyperswitch-control-center/commit/c2cb225cb9cd3a32eb04fbd5e76faf502915498a))
**Full Changelog:** [`2024.11.18.0...2024.11.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.18.0...2024.11.19.0)
- - -
## 2024.11.18.0
### Bug Fixes
- Filter routing connector list ([#1717](https://github.com/juspay/hyperswitch-control-center/pull/1717)) ([`5362c68`](https://github.com/juspay/hyperswitch-control-center/commit/5362c6817e8bc45bdc51e832c49397fcf741c333))
- List profile api ([#1748](https://github.com/juspay/hyperswitch-control-center/pull/1748)) ([`ee8eee2`](https://github.com/juspay/hyperswitch-control-center/commit/ee8eee2c37c84b332a8e9eeda0a5546a3a62221a))
- Login cancel link fix ([#1749](https://github.com/juspay/hyperswitch-control-center/pull/1749)) ([`06093d6`](https://github.com/juspay/hyperswitch-control-center/commit/06093d62e878613e6e5d1b0da934056d2d49003d))
### Miscellaneous Tasks
- Remove duplicate api calls ([#1687](https://github.com/juspay/hyperswitch-control-center/pull/1687)) ([`0fb965e`](https://github.com/juspay/hyperswitch-control-center/commit/0fb965e84b67e7768c141063b6faf22d5d85f56e))
**Full Changelog:** [`2024.11.15.0...2024.11.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.15.0...2024.11.18.0)
- - -
## 2024.11.15.0
### Bug Fixes
- Metric value change ([#1740](https://github.com/juspay/hyperswitch-control-center/pull/1740)) ([`341a3c4`](https://github.com/juspay/hyperswitch-control-center/commit/341a3c46de62d4869e59d37fcdbe6d215013eb32))
**Full Changelog:** [`2024.11.14.1...2024.11.15.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.14.1...2024.11.15.0)
- - -
## 2024.11.14.1
### Miscellaneous Tasks
- Sankey single value fix ([#1736](https://github.com/juspay/hyperswitch-control-center/pull/1736)) ([`fcf906d`](https://github.com/juspay/hyperswitch-control-center/commit/fcf906d434250577bc2da2eaaa437497ab9e4379))
**Full Changelog:** [`2024.11.14.0...2024.11.14.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.14.0...2024.11.14.1)
- - -
## 2024.11.14.0
### Features
- Profile id search ([#1719](https://github.com/juspay/hyperswitch-control-center/pull/1719)) ([`85344dd`](https://github.com/juspay/hyperswitch-control-center/commit/85344dd6a5e475d30d903bd1d5cfa7e3142f6583))
- Update org name ([#1669](https://github.com/juspay/hyperswitch-control-center/pull/1669)) ([`8b53637`](https://github.com/juspay/hyperswitch-control-center/commit/8b53637061fd954eae9ed93f9ede9051e9265fc2))
### Bug Fixes
- Bug fixes for two-fa restriction ([#1708](https://github.com/juspay/hyperswitch-control-center/pull/1708)) ([`e19f167`](https://github.com/juspay/hyperswitch-control-center/commit/e19f167b46219f23a28d6578f4efd179cebd199d))
- Analytics minor bugs ([#1732](https://github.com/juspay/hyperswitch-control-center/pull/1732)) ([`f981ccb`](https://github.com/juspay/hyperswitch-control-center/commit/f981ccbebcc2d2c12ef78b26b4c34af5c00430d4))
**Full Changelog:** [`2024.11.13.0...2024.11.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.13.0...2024.11.14.0)
- - -
## 2024.11.13.0
### Bug Fixes
- Read write ordering consistency ([#1685](https://github.com/juspay/hyperswitch-control-center/pull/1685)) ([`dfb7e02`](https://github.com/juspay/hyperswitch-control-center/commit/dfb7e02fff0c9db55b9143c04e98d176b007461a))
- Show role name for custom roles ([#1701](https://github.com/juspay/hyperswitch-control-center/pull/1701)) ([`8bfc04b`](https://github.com/juspay/hyperswitch-control-center/commit/8bfc04b1c9a5921875d2318d57a3c8065d3f730a))
- Sankey ui fixes ([#1722](https://github.com/juspay/hyperswitch-control-center/pull/1722)) ([`38fd02a`](https://github.com/juspay/hyperswitch-control-center/commit/38fd02aef24851e31bf6747924402722683bfdaa))
- Payment processed USD string fix ([#1725](https://github.com/juspay/hyperswitch-control-center/pull/1725)) ([`509e7ad`](https://github.com/juspay/hyperswitch-control-center/commit/509e7ad3e8e5c61194057c05e8e430bef75d8705))
**Full Changelog:** [`2024.11.12.0...2024.11.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.12.0...2024.11.13.0)
- - -
## 2024.11.12.0
### Bug Fixes
- Compare date range component minor fixes ([#1716](https://github.com/juspay/hyperswitch-control-center/pull/1716)) ([`5bb44e3`](https://github.com/juspay/hyperswitch-control-center/commit/5bb44e3c5a03bca60030411e92fa1513e6c732fb))
- Sankey flow chart count fix ([#1711](https://github.com/juspay/hyperswitch-control-center/pull/1711)) ([`abddad9`](https://github.com/juspay/hyperswitch-control-center/commit/abddad9370d2ba847ee3f4cc38053d80cedcbc6c))
- Handle logout ([#1710](https://github.com/juspay/hyperswitch-control-center/pull/1710)) ([`469e272`](https://github.com/juspay/hyperswitch-control-center/commit/469e272d56b4deecd18653f0abb0bbac38ccdfe7))
**Full Changelog:** [`2024.11.11.1...2024.11.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.11.1...2024.11.12.0)
- - -
## 2024.11.11.1
### Features
- Sanky flow chart change ([#1695](https://github.com/juspay/hyperswitch-control-center/pull/1695)) ([`f8d4aae`](https://github.com/juspay/hyperswitch-control-center/commit/f8d4aae9ea0fc9ff932a0d93909b9de182d14fd9))
- Add functionality to force two-fa ([#1697](https://github.com/juspay/hyperswitch-control-center/pull/1697)) ([`d478424`](https://github.com/juspay/hyperswitch-control-center/commit/d4784242112bc51b8d921e10c09a0f78a2143b62))
- Change password feature ([#1700](https://github.com/juspay/hyperswitch-control-center/pull/1700)) ([`b51680c`](https://github.com/juspay/hyperswitch-control-center/commit/b51680cd0f0ba2e6622c3090f80636e6a418bb0c))
### Bug Fixes
- Analytics revamp bug fixes ([#1703](https://github.com/juspay/hyperswitch-control-center/pull/1703)) ([`d78dee1`](https://github.com/juspay/hyperswitch-control-center/commit/d78dee1415221de04043f3871f100a0c54700cb6))
### Miscellaneous Tasks
- Bar graph tooltip enhancement ([#1704](https://github.com/juspay/hyperswitch-control-center/pull/1704)) ([`eb37c2f`](https://github.com/juspay/hyperswitch-control-center/commit/eb37c2f3fb28c11ad8eda66ec456cb3bd375db69))
- Update mixpanel details ([#1684](https://github.com/juspay/hyperswitch-control-center/pull/1684)) ([`aad2309`](https://github.com/juspay/hyperswitch-control-center/commit/aad2309f8bd0c752f5a4343bf211bb71af731a02))
**Full Changelog:** [`2024.11.11.0...2024.11.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.11.0...2024.11.11.1)
- - -
## 2024.11.11.0
### Refactors
- Cluttered package json refactor ([#1649](https://github.com/juspay/hyperswitch-control-center/pull/1649)) ([`214c806`](https://github.com/juspay/hyperswitch-control-center/commit/214c806d9860ecf16b390d9db1f22a03fe8ed0c0))
**Full Changelog:** [`2024.11.08.0...2024.11.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.08.0...2024.11.11.0)
- - -
## 2024.11.08.0
### Features
- Analytics payment processed currency conversion ([#1691](https://github.com/juspay/hyperswitch-control-center/pull/1691)) ([`19d2c70`](https://github.com/juspay/hyperswitch-control-center/commit/19d2c702bcdea931c2de5d937989b6d8639c8c49))
**Full Changelog:** [`2024.11.07.1...2024.11.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.07.1...2024.11.08.0)
- - -
## 2024.11.07.1
### Bug Fixes
- Compare filter date display fix to ISO format ([#1692](https://github.com/juspay/hyperswitch-control-center/pull/1692)) ([`eb2ea9c`](https://github.com/juspay/hyperswitch-control-center/commit/eb2ea9cbe471dc3e45b9bec6ea48b0a73e62540e))
### Miscellaneous Tasks
- Disable cookies from frontend ([#1657](https://github.com/juspay/hyperswitch-control-center/pull/1657)) ([`f3f4416`](https://github.com/juspay/hyperswitch-control-center/commit/f3f441638bcd0e261a29dcccbdf3cfb1bf0cdc17))
**Full Changelog:** [`2024.11.07.0...2024.11.07.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.07.0...2024.11.07.1)
- - -
## 2024.11.07.0
### Testing
- Verification of search in payment operations page using cypress ([#1677](https://github.com/juspay/hyperswitch-control-center/pull/1677)) ([`bdc5c99`](https://github.com/juspay/hyperswitch-control-center/commit/bdc5c990f2537874823121c7cbb8acdb54e60bd3))
### Miscellaneous Tasks
- TwoFa restriction after multiple failed attempts after logging in ([#1651](https://github.com/juspay/hyperswitch-control-center/pull/1651)) ([`65bec34`](https://github.com/juspay/hyperswitch-control-center/commit/65bec340eabcabcb4b0ac52d364390a951f6835b))
**Full Changelog:** [`2024.11.04.1...2024.11.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.04.1...2024.11.07.0)
- - -
## 2024.11.04.1
### Miscellaneous Tasks
- Update new analytics ([`6572b00`](https://github.com/juspay/hyperswitch-control-center/commit/6572b00fc8c49db187d0ecdd268ae6804876d53d))
**Full Changelog:** [`2024.11.04.0...2024.11.04.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.11.04.0...2024.11.04.1)
- - -
## 2024.11.04.0
### Features
- Create compare date filter ([#1678](https://github.com/juspay/hyperswitch-control-center/pull/1678)) ([`86264d0`](https://github.com/juspay/hyperswitch-control-center/commit/86264d00d9f4f3bf18707b9f3806cdf528d9ff25))
- Enable comparison filter in new analytics ([#1679](https://github.com/juspay/hyperswitch-control-center/pull/1679)) ([`03bf0ba`](https://github.com/juspay/hyperswitch-control-center/commit/03bf0bae2535b9ea5c7e3bfe3b4952ffb12fbcc5))
### Bug Fixes
- Remove dispute stage col ([#1676](https://github.com/juspay/hyperswitch-control-center/pull/1676)) ([`1e94fad`](https://github.com/juspay/hyperswitch-control-center/commit/1e94fad454a2c1c37ef27945c48022a481ddb87f))
- Analytics sessionizer bugs ([#1671](https://github.com/juspay/hyperswitch-control-center/pull/1671)) ([`f73a5b7`](https://github.com/juspay/hyperswitch-control-center/commit/f73a5b7798522e1ca6233be0d6daeed5d8314a4d))
### Refactors
- Resource-access-added ([#1635](https://github.com/juspay/hyperswitch-control-center/pull/1635)) ([`e6cd819`](https://github.com/juspay/hyperswitch-control-center/commit/e6cd819b97fe3b876aed757fe4c36ae9b0478d76))
- Invite user api restructure v2 ([#1681](https://github.com/juspay/hyperswitch-control-center/pull/1681)) ([`47d26b3`](https://github.com/juspay/hyperswitch-control-center/commit/47d26b3005759a09bbb75140391bd0433bb6f7ab))
**Full Changelog:** [`2024.10.31.0...2024.11.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.31.0...2024.11.04.0)
- - -
## 2024.10.31.0
### Miscellaneous Tasks
- Pop-up modal extra prop addition ([#1660](https://github.com/juspay/hyperswitch-control-center/pull/1660)) ([`6421c4f`](https://github.com/juspay/hyperswitch-control-center/commit/6421c4f1a9ebba6b0cbecb1925ead5cb8cdf99a9))
**Full Changelog:** [`2024.10.30.0...2024.10.31.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.30.0...2024.10.31.0)
- - -
## 2024.10.30.0
### Bug Fixes
- Analytics sessionizer bugs ([#1665](https://github.com/juspay/hyperswitch-control-center/pull/1665)) ([`af79394`](https://github.com/juspay/hyperswitch-control-center/commit/af7939491179c4b2d58338f94d060e4d21c90e79))
### Testing
- Verification of time range filters in payment operations page using cypress ([#1658](https://github.com/juspay/hyperswitch-control-center/pull/1658)) ([`8acfd0e`](https://github.com/juspay/hyperswitch-control-center/commit/8acfd0e7ecbf8a7ee6c98a68029c028b7ffc2f3e))
- Verify Columns in Payment operations page ([#1667](https://github.com/juspay/hyperswitch-control-center/pull/1667)) ([`6c4338d`](https://github.com/juspay/hyperswitch-control-center/commit/6c4338d5eaa188ee9c9a4ef2db8cf4297fa13374))
**Full Changelog:** [`2024.10.29.0...2024.10.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.29.0...2024.10.30.0)
- - -
## 2024.10.29.0
### Features
- Smart retry analytics ([#1642](https://github.com/juspay/hyperswitch-control-center/pull/1642)) ([`e166495`](https://github.com/juspay/hyperswitch-control-center/commit/e166495d24fd6088423b4e9e8062d2524bd3202c))
- Add samsung pay payment method support for cybersource ([#1650](https://github.com/juspay/hyperswitch-control-center/pull/1650)) ([`02d66da`](https://github.com/juspay/hyperswitch-control-center/commit/02d66da7495fa52c470261d0dba97e770a6c1ffe))
### Bug Fixes
- Changes to enable card-network ([#1655](https://github.com/juspay/hyperswitch-control-center/pull/1655)) ([`d910c1e`](https://github.com/juspay/hyperswitch-control-center/commit/d910c1e649ac7ae78f5d7cf02a20769abb5e17eb))
**Full Changelog:** [`2024.10.25.0...2024.10.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.25.0...2024.10.29.0)
- - -
## 2024.10.25.0
### Bug Fixes
- Auto retry bug ([#1639](https://github.com/juspay/hyperswitch-control-center/pull/1639)) ([`46f4de6`](https://github.com/juspay/hyperswitch-control-center/commit/46f4de64f0c68e587a62c876b56e94a5e25ec26d))
- Merchant account credentials not shown in profile view ([#1626](https://github.com/juspay/hyperswitch-control-center/pull/1626)) ([`9108801`](https://github.com/juspay/hyperswitch-control-center/commit/9108801555d2e3e03908dbe33f4a52ce9c0503a3))
### Miscellaneous Tasks
- TwoFa restriction after multiple failed attempts before login ([#1594](https://github.com/juspay/hyperswitch-control-center/pull/1594)) ([`9ff488b`](https://github.com/juspay/hyperswitch-control-center/commit/9ff488b8edc99af45fc8f77ab1f56e6cef34a838))
- Add merchant specific config ([#1643](https://github.com/juspay/hyperswitch-control-center/pull/1643)) ([`aac4ada`](https://github.com/juspay/hyperswitch-control-center/commit/aac4adabf17e96ef7d02fe91048fca8b668030a8))
**Full Changelog:** [`2024.10.24.0...2024.10.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.24.0...2024.10.25.0)
- - -
## 2024.10.24.0
### Testing
- Creation of test payment using sdk cypress ([#1555](https://github.com/juspay/hyperswitch-control-center/pull/1555)) ([`1bd1e56`](https://github.com/juspay/hyperswitch-control-center/commit/1bd1e563f993ec483ef43651996b9c836e33de0d))
**Full Changelog:** [`2024.10.22.2...2024.10.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.22.2...2024.10.24.0)
- - -
## 2024.10.22.2
### Bug Fixes
- Card-network issue fix and removed calendly link ([#1637](https://github.com/juspay/hyperswitch-control-center/pull/1637)) ([`ed43df1`](https://github.com/juspay/hyperswitch-control-center/commit/ed43df1cb02b1d407934bf54eb035b1c207daf20))
**Full Changelog:** [`2024.10.22.1...2024.10.22.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.22.1...2024.10.22.2)
- - -
## 2024.10.22.1
### Bug Fixes
- Single status view setting to all ([#1634](https://github.com/juspay/hyperswitch-control-center/pull/1634)) ([`20a1a38`](https://github.com/juspay/hyperswitch-control-center/commit/20a1a38e9282c729843081b880ff7fa2f7b010a5))
**Full Changelog:** [`2024.10.22.0...2024.10.22.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.22.0...2024.10.22.1)
- - -
## 2024.10.22.0
### Features
- Card-network in payment filters ([#1447](https://github.com/juspay/hyperswitch-control-center/pull/1447)) ([`7dbb073`](https://github.com/juspay/hyperswitch-control-center/commit/7dbb07389af96f416118ad7d06aee60205da5793))
### Bug Fixes
- New analytics metric name fixes ([#1636](https://github.com/juspay/hyperswitch-control-center/pull/1636)) ([`542dd72`](https://github.com/juspay/hyperswitch-control-center/commit/542dd7248f94ddf50124eeeb8ca143954fde6098))
- Make auto retry value field mandatory ([#1632](https://github.com/juspay/hyperswitch-control-center/pull/1632)) ([`e80706e`](https://github.com/juspay/hyperswitch-control-center/commit/e80706e3fbdaf66a5bb62b25b16c55f879516785))
### Miscellaneous Tasks
- Profile name validations on edit profile ([#1633](https://github.com/juspay/hyperswitch-control-center/pull/1633)) ([`2c5ffb5`](https://github.com/juspay/hyperswitch-control-center/commit/2c5ffb591c3fe269bd60cc4138836ac964e31a4f))
- Create separate webpack ([#1592](https://github.com/juspay/hyperswitch-control-center/pull/1592)) ([`a22f5a6`](https://github.com/juspay/hyperswitch-control-center/commit/a22f5a6f4112846f280b64e1cd26b648b2a7f8a0))
**Full Changelog:** [`2024.10.18.0...2024.10.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.18.0...2024.10.22.0)
- - -
## 2024.10.18.0
### Features
- Added search func (profile) and id in OMP dropdowns (scroll and sort fixed) ([#1584](https://github.com/juspay/hyperswitch-control-center/pull/1584)) ([`f40413c`](https://github.com/juspay/hyperswitch-control-center/commit/f40413cae89cd4124e6252d65eba95f33fa05e6f))
### Bug Fixes
- Disable edit for profile level user (Business section) ([#1613](https://github.com/juspay/hyperswitch-control-center/pull/1613)) ([`ac2b906`](https://github.com/juspay/hyperswitch-control-center/commit/ac2b906a4eddc81b43531725139748a771ba46f3))
### Miscellaneous Tasks
- Enhance transaction views ([#1562](https://github.com/juspay/hyperswitch-control-center/pull/1562)) ([`4bca186`](https://github.com/juspay/hyperswitch-control-center/commit/4bca186ae28a4cdf5a7c8870c5d649e35b3bc5a9))
**Full Changelog:** [`2024.10.16.0...2024.10.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.16.0...2024.10.18.0)
- - -
## 2024.10.16.0
### Features
- Dispute views ([#1563](https://github.com/juspay/hyperswitch-control-center/pull/1563)) ([`75bb251`](https://github.com/juspay/hyperswitch-control-center/commit/75bb251b60b503dadb9a1cd167a85761d0adaf62))
### Bug Fixes
- Profile name validations ([#1564](https://github.com/juspay/hyperswitch-control-center/pull/1564)) ([`487012e`](https://github.com/juspay/hyperswitch-control-center/commit/487012e72eb7a0413c207653d9efc28873a9e356))
- Connected list on top in 3DS connectors , tax processors and PM authentication processors ([#1605](https://github.com/juspay/hyperswitch-control-center/pull/1605)) ([`f772fb9`](https://github.com/juspay/hyperswitch-control-center/commit/f772fb98d1170003eaa53c47a689bd57ec476f87))
### Miscellaneous Tasks
- Sankey response structure ([#1579](https://github.com/juspay/hyperswitch-control-center/pull/1579)) ([`a0710f2`](https://github.com/juspay/hyperswitch-control-center/commit/a0710f2583318f0752ec0484219d649b4476998b))
- Overview section spacing fix and payments metrics changes ([#1600](https://github.com/juspay/hyperswitch-control-center/pull/1600)) ([`37ea150`](https://github.com/juspay/hyperswitch-control-center/commit/37ea150dc86de15b215252d323b3f19ddb8b7a47))
**Full Changelog:** [`2024.10.14.1...2024.10.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.14.1...2024.10.16.0)
- - -
## 2024.10.14.1
### Features
- Fiuu google pay gateway name ([#1597](https://github.com/juspay/hyperswitch-control-center/pull/1597)) ([`721cd4a`](https://github.com/juspay/hyperswitch-control-center/commit/721cd4a6cabc72e77850b2b8a8b0996cb91cd72d))
**Full Changelog:** [`2024.10.14.0...2024.10.14.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.14.0...2024.10.14.1)
- - -
## 2024.10.14.0
### Bug Fixes
- Unauthorised page issue ([#1588](https://github.com/juspay/hyperswitch-control-center/pull/1588)) ([`8241854`](https://github.com/juspay/hyperswitch-control-center/commit/824185436c979389fb1bf87567ce9956abb748f2))
**Full Changelog:** [`2024.10.11.0...2024.10.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.11.0...2024.10.14.0)
- - -
## 2024.10.11.0
### Bug Fixes
- Fix: added command to run the project in windows env ([#828](https://github.com/juspay/hyperswitch-control-center/pull/828)) ([`b3d009e`](https://github.com/juspay/hyperswitch-control-center/commit/b3d009e5c257bf96d9d87ab7e873598bc301e484))
- Url name issue in create custom role page ([#1586](https://github.com/juspay/hyperswitch-control-center/pull/1586)) ([`b40f6d0`](https://github.com/juspay/hyperswitch-control-center/commit/b40f6d04f485e96f0d59f29c60ad1077941d83e7))
**Full Changelog:** [`2024.10.10.1...2024.10.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.10.1...2024.10.11.0)
- - -
## 2024.10.10.1
### Features
- Org changes for invite ([#1543](https://github.com/juspay/hyperswitch-control-center/pull/1543)) ([`c70d32c`](https://github.com/juspay/hyperswitch-control-center/commit/c70d32c1a52490b588036f4c8071abdd108c7db6))
### Miscellaneous Tasks
- File movement for two fa attempts inside dashboard ([#1556](https://github.com/juspay/hyperswitch-control-center/pull/1556)) ([`4c720da`](https://github.com/juspay/hyperswitch-control-center/commit/4c720da95e5b95fa813c57c41aa232c2162463c4))
**Full Changelog:** [`2024.10.10.0...2024.10.10.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.10.0...2024.10.10.1)
- - -
## 2024.10.10.0
### Miscellaneous Tasks
- User-permission type change ([#1577](https://github.com/juspay/hyperswitch-control-center/pull/1577)) ([`ebc0a33`](https://github.com/juspay/hyperswitch-control-center/commit/ebc0a33b21dc9ecfb50cc812161f05b1debeead7))
**Full Changelog:** [`2024.10.08.2...2024.10.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.08.2...2024.10.10.0)
- - -
## 2024.10.08.2
### Features
- Addition of new connector "NEXIXPAY" ([#1569](https://github.com/juspay/hyperswitch-control-center/pull/1569)) ([`8437983`](https://github.com/juspay/hyperswitch-control-center/commit/8437983269d3554d4abd0ab3a6649ddf88da373e))
**Full Changelog:** [`2024.10.08.1...2024.10.08.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.08.1...2024.10.08.2)
- - -
## 2024.10.08.1
### Features
- Tooltip fix and enhancement ([#1571](https://github.com/juspay/hyperswitch-control-center/pull/1571)) ([`0cda40b`](https://github.com/juspay/hyperswitch-control-center/commit/0cda40b243acab3bbbcfa0f8488389c642e67785))
- Failed payment distribution graph ([#1528](https://github.com/juspay/hyperswitch-control-center/pull/1528)) ([`470b582`](https://github.com/juspay/hyperswitch-control-center/commit/470b582b5da77abb9a00a42948451d00942be62c))
- Graphs legends display ([#1574](https://github.com/juspay/hyperswitch-control-center/pull/1574)) ([`233b192`](https://github.com/juspay/hyperswitch-control-center/commit/233b1922ada5018ee92847fc5b859d63d5246d03))
### Bug Fixes
- Selected item displays on top of list ([#1560](https://github.com/juspay/hyperswitch-control-center/pull/1560)) ([`5e36d6f`](https://github.com/juspay/hyperswitch-control-center/commit/5e36d6fac432d33e57313d4f058925a8b414665e))
- UI connector preview ([#1538](https://github.com/juspay/hyperswitch-control-center/pull/1538)) ([`d32e536`](https://github.com/juspay/hyperswitch-control-center/commit/d32e5366d751505afb1264ea4ad3724cf9ffd808))
- Update status of connector ( Disable / Enable ) ([#1575](https://github.com/juspay/hyperswitch-control-center/pull/1575)) ([`b5c14dd`](https://github.com/juspay/hyperswitch-control-center/commit/b5c14ddc588b2fa1939591b7bcccc43f7ff883a2))
**Full Changelog:** [`2024.10.08.0...2024.10.08.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.08.0...2024.10.08.1)
- - -
## 2024.10.08.0
### Features
- Add auto retries in payment settings ([#1551](https://github.com/juspay/hyperswitch-control-center/pull/1551)) ([`78479fa`](https://github.com/juspay/hyperswitch-control-center/commit/78479fade99cc04b115a8c40924ade9c9ae38606))
### Miscellaneous Tasks
- Ran prettier command to format unformatted file ([#1566](https://github.com/juspay/hyperswitch-control-center/pull/1566)) ([`66e2063`](https://github.com/juspay/hyperswitch-control-center/commit/66e206350e60989068206c29ffd63d30fad7f094))
**Full Changelog:** [`2024.10.07.1...2024.10.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.07.1...2024.10.08.0)
- - -
## 2024.10.07.1
### Features
- Payments overview section ([#1552](https://github.com/juspay/hyperswitch-control-center/pull/1552)) ([`06dae63`](https://github.com/juspay/hyperswitch-control-center/commit/06dae6364e3cb481a1321bb302f29f4052b8c338))
### Bug Fixes
- Prod x feature deployment ([#127](https://github.com/juspay/hyperswitch-control-center/pull/127)) ([`6a9e9ab`](https://github.com/juspay/hyperswitch-control-center/commit/6a9e9abd0c492e59eebe5c4ad4c0b1e47a736513))
- Api not getting called due to user permission data not updated ([#1565](https://github.com/juspay/hyperswitch-control-center/pull/1565)) ([`ad7d230`](https://github.com/juspay/hyperswitch-control-center/commit/ad7d23080039e77758fd52330bad664590d6d4f3))
### Refactors
- Code changes ([#1550](https://github.com/juspay/hyperswitch-control-center/pull/1550)) ([`ba9ead3`](https://github.com/juspay/hyperswitch-control-center/commit/ba9ead301fc0d2d2a01c2e2410fb8dd88a4e3551))
**Full Changelog:** [`2024.10.07.0...2024.10.07.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.07.0...2024.10.07.1)
- - -
## 2024.10.07.0
### Features
- Compare function ([#1542](https://github.com/juspay/hyperswitch-control-center/pull/1542)) ([`938ccc7`](https://github.com/juspay/hyperswitch-control-center/commit/938ccc7bc2e83cf149b6c9660d28dd3275b6a128))
- Added graphs header ([#1539](https://github.com/juspay/hyperswitch-control-center/pull/1539)) ([`583ddf2`](https://github.com/juspay/hyperswitch-control-center/commit/583ddf2f3672d2bc04cabd9e6b6eb848e1e5dfca))
- Add scroll for merchant, org, and profile dropdowns ([#1537](https://github.com/juspay/hyperswitch-control-center/pull/1537)) ([`3bee31c`](https://github.com/juspay/hyperswitch-control-center/commit/3bee31cbb86952b4ece81902f7f9ff0d6cd6670c))
### Testing
- Creation of dummy connector using cypress ([#1497](https://github.com/juspay/hyperswitch-control-center/pull/1497)) ([`f040964`](https://github.com/juspay/hyperswitch-control-center/commit/f040964457cdd557bf5c8a414d72ce265a51e741))
**Full Changelog:** [`2024.10.04.0...2024.10.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.04.0...2024.10.07.0)
- - -
## 2024.10.04.0
### Miscellaneous Tasks
- Modify new analytics utils ([#1531](https://github.com/juspay/hyperswitch-control-center/pull/1531)) ([`4760207`](https://github.com/juspay/hyperswitch-control-center/commit/476020779802fee0f3d7b3ac30f25366ba0c7050))
- Sanky mapper function ([#1524](https://github.com/juspay/hyperswitch-control-center/pull/1524)) ([`1a90976`](https://github.com/juspay/hyperswitch-control-center/commit/1a90976631ab10b977b9ccc5bfd3721bdd465d44))
- Remove agreement screen and prod onboarding ([#1493](https://github.com/juspay/hyperswitch-control-center/pull/1493)) ([`f5c9f40`](https://github.com/juspay/hyperswitch-control-center/commit/f5c9f4007095221e5d5f6d521887d463cbb6e35c))
**Full Changelog:** [`2024.10.02.0...2024.10.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.02.0...2024.10.04.0)
- - -
## 2024.10.02.0
### Features
- New analytics filter ([#1518](https://github.com/juspay/hyperswitch-control-center/pull/1518)) ([`f580f3d`](https://github.com/juspay/hyperswitch-control-center/commit/f580f3d103b9552dd9bcc30773b4d32b21add91d))
- Api integration new analytics ([#1521](https://github.com/juspay/hyperswitch-control-center/pull/1521)) ([`8f71786`](https://github.com/juspay/hyperswitch-control-center/commit/8f71786fb5bfb0fce7be4a93145aabb756693044))
### Bug Fixes
- Table text-wrap removed ([#1517](https://github.com/juspay/hyperswitch-control-center/pull/1517)) ([`966426c`](https://github.com/juspay/hyperswitch-control-center/commit/966426cc004b4cb46e98efcd59ff7809f043c0e3))
- Error due to unautorised url ([#1526](https://github.com/juspay/hyperswitch-control-center/pull/1526)) ([`de08357`](https://github.com/juspay/hyperswitch-control-center/commit/de08357c89d01232e1b3912423bc2f32c7194f78))
**Full Changelog:** [`2024.10.01.0...2024.10.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.10.01.0...2024.10.02.0)
- - -
## 2024.10.01.0
### Features
- Dispute filters ([#1474](https://github.com/juspay/hyperswitch-control-center/pull/1474)) ([`d8c8974`](https://github.com/juspay/hyperswitch-control-center/commit/d8c8974539d321d5241638112f92b9207e1427bc))
### Bug Fixes
- Check for disabled pm auth connector ([#1506](https://github.com/juspay/hyperswitch-control-center/pull/1506)) ([`9105eb1`](https://github.com/juspay/hyperswitch-control-center/commit/9105eb1c534b972acc8a0dd21258215cf566e3d2))
- Removed unused api from app ([#1500](https://github.com/juspay/hyperswitch-control-center/pull/1500)) ([`5b9635e`](https://github.com/juspay/hyperswitch-control-center/commit/5b9635e8db8462bfff5059d6ef0c78dbecb8c651))
- Transaction views ([#1498](https://github.com/juspay/hyperswitch-control-center/pull/1498)) ([`80efd6c`](https://github.com/juspay/hyperswitch-control-center/commit/80efd6cd449dc1561049f5b666dc09f01ac4a789))
### Miscellaneous Tasks
- Omp views ui changes ([#1486](https://github.com/juspay/hyperswitch-control-center/pull/1486)) ([`677015c`](https://github.com/juspay/hyperswitch-control-center/commit/677015c0456d555a368f4663b55a3ec7e59e3cd2))
- Fix testing bug - displaying Processor in table ([#1507](https://github.com/juspay/hyperswitch-control-center/pull/1507)) ([`5c61535`](https://github.com/juspay/hyperswitch-control-center/commit/5c61535901d063995a860f8d4cda4dbcc475a970))
- Changes in connector addition template ([#1496](https://github.com/juspay/hyperswitch-control-center/pull/1496)) ([`1fcb0b5`](https://github.com/juspay/hyperswitch-control-center/commit/1fcb0b5bbc61acea6dc5f772682c1e177bb3da63))
- Updated file names and variables names for successful payment … ([#1519](https://github.com/juspay/hyperswitch-control-center/pull/1519)) ([`6bb53ca`](https://github.com/juspay/hyperswitch-control-center/commit/6bb53ca66f7ef51de9977f81c86b7e272d54a9f9))
**Full Changelog:** [`2024.09.30.0...2024.10.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.30.0...2024.10.01.0)
- - -
## 2024.09.30.0
### Features
- Custom tool-tip analytics ([#1445](https://github.com/juspay/hyperswitch-control-center/pull/1445)) ([`91b5abe`](https://github.com/juspay/hyperswitch-control-center/commit/91b5abecce4399ae6fcc104bfaa435cab6ba778e))
- Metric selector and tabs for new analytics module ([#1485](https://github.com/juspay/hyperswitch-control-center/pull/1485)) ([`511ee1e`](https://github.com/juspay/hyperswitch-control-center/commit/511ee1ee6642d74a45c2ab0e69cfc8699d4559be))
- Refund view changes ([#1315](https://github.com/juspay/hyperswitch-control-center/pull/1315)) ([`4ba9162`](https://github.com/juspay/hyperswitch-control-center/commit/4ba91621ca8221625a2cfffb62903e1123350ee7))
### Bug Fixes
- Fix resend invite api url ([#1491](https://github.com/juspay/hyperswitch-control-center/pull/1491)) ([`ea36663`](https://github.com/juspay/hyperswitch-control-center/commit/ea3666350d7ab85761ab934a0d7ee75712652b87))
### Miscellaneous Tasks
- Remove mixpanel sdk ([#1483](https://github.com/juspay/hyperswitch-control-center/pull/1483)) ([`7a2c0b0`](https://github.com/juspay/hyperswitch-control-center/commit/7a2c0b0673dcbdfc499705bcea7e50dd2d9189b8))
**Full Changelog:** [`2024.09.26.1...2024.09.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.26.1...2024.09.30.0)
- - -
## 2024.09.26.1
### Miscellaneous Tasks
- Github template added ([#1458](https://github.com/juspay/hyperswitch-control-center/pull/1458)) ([`c6c1455`](https://github.com/juspay/hyperswitch-control-center/commit/c6c1455fc55b1ea2cdc47de2d608386e51649e7c))
- Removed compiler warning and threeds comp change ([#1478](https://github.com/juspay/hyperswitch-control-center/pull/1478)) ([`2999335`](https://github.com/juspay/hyperswitch-control-center/commit/2999335de1a167a7f199169abb9bfb36ec5603d9))
- Modified table customise columns, warning remove ([#1477](https://github.com/juspay/hyperswitch-control-center/pull/1477)) ([`59b390a`](https://github.com/juspay/hyperswitch-control-center/commit/59b390aa5c2c49a5bb6c046e09c550ae80dca05e))
- Internal entity removal ([#1467](https://github.com/juspay/hyperswitch-control-center/pull/1467)) ([`4c94b8d`](https://github.com/juspay/hyperswitch-control-center/commit/4c94b8d1dc53f888ba4703fe5c0da3326ae6ca0f))
**Full Changelog:** [`2024.09.26.0...2024.09.26.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.26.0...2024.09.26.1)
- - -
## 2024.09.26.0
### Bug Fixes
- Table customise column bugfix ([#1469](https://github.com/juspay/hyperswitch-control-center/pull/1469)) ([`abc1852`](https://github.com/juspay/hyperswitch-control-center/commit/abc18523def610b41c653bddb0745318a18e77bb))
- Update connector url on preview ([#1471](https://github.com/juspay/hyperswitch-control-center/pull/1471)) ([`de870b5`](https://github.com/juspay/hyperswitch-control-center/commit/de870b577f7c3222c7ca059e91c09f50de2d0dfa))
### Miscellaneous Tasks
- Empty points generator function for graphs ([#1460](https://github.com/juspay/hyperswitch-control-center/pull/1460)) ([`0d3433e`](https://github.com/juspay/hyperswitch-control-center/commit/0d3433e4524b4f90cd09737ea5acc495f999af55))
- Transaction view feature flag ([#1472](https://github.com/juspay/hyperswitch-control-center/pull/1472)) ([`8b48ef4`](https://github.com/juspay/hyperswitch-control-center/commit/8b48ef43278255c50d2c3437f7c8045024f2c45f))
- Payments distribution graph ([#1459](https://github.com/juspay/hyperswitch-control-center/pull/1459)) ([`e15f598`](https://github.com/juspay/hyperswitch-control-center/commit/e15f598507b6a45b403c44321dcf415e3d421b96))
**Full Changelog:** [`2024.09.25.0...2024.09.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.25.0...2024.09.26.0)
- - -
## 2024.09.25.0
### Bug Fixes
- List users views in users page ([#1453](https://github.com/juspay/hyperswitch-control-center/pull/1453)) ([`bad2df8`](https://github.com/juspay/hyperswitch-control-center/commit/bad2df84baedc00e30751355c009b0bd7da11654))
**Full Changelog:** [`2024.09.24.1...2024.09.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.24.1...2024.09.25.0)
- - -
## 2024.09.24.1
### Features
- Bar graph entity ([#1457](https://github.com/juspay/hyperswitch-control-center/pull/1457)) ([`2f12b56`](https://github.com/juspay/hyperswitch-control-center/commit/2f12b5698d51777782af06022bf35ca07e8c02a2))
### Bug Fixes
- Omp views changes in analytics & ops ([#1452](https://github.com/juspay/hyperswitch-control-center/pull/1452)) ([`b089409`](https://github.com/juspay/hyperswitch-control-center/commit/b089409c1455ecc7b84c866a960ac8460f855e8c))
### Miscellaneous Tasks
- Payments success rate graph ([#1439](https://github.com/juspay/hyperswitch-control-center/pull/1439)) ([`46277b1`](https://github.com/juspay/hyperswitch-control-center/commit/46277b12c9ceda6d2a31f17247292bbb380900ca))
**Full Changelog:** [`2024.09.24.0...2024.09.24.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.24.0...2024.09.24.1)
- - -
## 2024.09.24.0
### Features
- New tabs ui ([#1440](https://github.com/juspay/hyperswitch-control-center/pull/1440)) ([`955cd2c`](https://github.com/juspay/hyperswitch-control-center/commit/955cd2c38a574a77b780b898a518cb70d4c9788e))
**Full Changelog:** [`2024.09.23.0...2024.09.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.23.0...2024.09.24.0)
- - -
## 2024.09.23.0
### Miscellaneous Tasks
- Update profile dropdown ([#1434](https://github.com/juspay/hyperswitch-control-center/pull/1434)) ([`e6fe7bc`](https://github.com/juspay/hyperswitch-control-center/commit/e6fe7bcbd3afe6eb62fe85333c78312d782a547f))
**Full Changelog:** [`2024.09.20.0...2024.09.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.20.0...2024.09.23.0)
- - -
## 2024.09.20.0
### Features
- Overview file cleanup and files restructuring ([#1436](https://github.com/juspay/hyperswitch-control-center/pull/1436)) ([`c063e64`](https://github.com/juspay/hyperswitch-control-center/commit/c063e645e3698477f3bea565d0c0e12c1c5442f1))
**Full Changelog:** [`2024.09.19.1...2024.09.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.19.1...2024.09.20.0)
- - -
## 2024.09.19.1
### Bug Fixes
- User management name changes ([#1432](https://github.com/juspay/hyperswitch-control-center/pull/1432)) ([`ff64997`](https://github.com/juspay/hyperswitch-control-center/commit/ff6499771645c096d04e26acbec3efa2b137cf2c))
**Full Changelog:** [`2024.09.19.0...2024.09.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.19.0...2024.09.19.1)
- - -
## 2024.09.19.0
### Features
- New connector deutsche bank ([#1408](https://github.com/juspay/hyperswitch-control-center/pull/1408)) ([`fb7847b`](https://github.com/juspay/hyperswitch-control-center/commit/fb7847bf840e7aa33148f2593558ed533bebad95))
### Testing
- Cypress update ([#1420](https://github.com/juspay/hyperswitch-control-center/pull/1420)) ([`6f59156`](https://github.com/juspay/hyperswitch-control-center/commit/6f59156bae44fe3d80d236c50b6562445bd5e0ee))
### Miscellaneous Tasks
- Merchant name validation added ([#1416](https://github.com/juspay/hyperswitch-control-center/pull/1416)) ([`e143725`](https://github.com/juspay/hyperswitch-control-center/commit/e14372523fc323aaf2c90bc630d73e4bcee9d57b))
- Update wasm for deutsche ([#1429](https://github.com/juspay/hyperswitch-control-center/pull/1429)) ([`6fc9d63`](https://github.com/juspay/hyperswitch-control-center/commit/6fc9d63757df8ba9fb4e5df1d448de5189903c27))
- Post login questions page related files removal ([#1427](https://github.com/juspay/hyperswitch-control-center/pull/1427)) ([`93382db`](https://github.com/juspay/hyperswitch-control-center/commit/93382db3ff28d9f0e99af08407c7f9593930466a))
- UI changes for update connector creds ([#1438](https://github.com/juspay/hyperswitch-control-center/pull/1438)) ([`3101b29`](https://github.com/juspay/hyperswitch-control-center/commit/3101b298e0e4dff45cef5afa23f0f32da1166e92))
**Full Changelog:** [`2024.09.18.0...2024.09.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.18.0...2024.09.19.0)
- - -
## 2024.09.18.0
### Features
- Remove user-management revamp feature flag ([#1394](https://github.com/juspay/hyperswitch-control-center/pull/1394)) ([`6d7123b`](https://github.com/juspay/hyperswitch-control-center/commit/6d7123bd4302193c11291d44fe381e2fcab112e4))
### Bug Fixes
- Bug fixes ui ([#1396](https://github.com/juspay/hyperswitch-control-center/pull/1396)) ([`8e4d2d8`](https://github.com/juspay/hyperswitch-control-center/commit/8e4d2d8cc35b348d43371364c05bed157d8d6062))
### Miscellaneous Tasks
- Home page changes for profile level users ([#1409](https://github.com/juspay/hyperswitch-control-center/pull/1409)) ([`877de7f`](https://github.com/juspay/hyperswitch-control-center/commit/877de7fd8e52c1d46e43653525b77aa26d08dbf9))
**Full Changelog:** [`2024.09.17.2...2024.09.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.17.2...2024.09.18.0)
- - -
## 2024.09.17.2
### Features
- Handle masked api keys ([#1400](https://github.com/juspay/hyperswitch-control-center/pull/1400)) ([`2cc832c`](https://github.com/juspay/hyperswitch-control-center/commit/2cc832ca2d1c8b7689d175e5b0d5d01cc7304d0d))
### Miscellaneous Tasks
- Handle masked api keys ([`91358cb`](https://github.com/juspay/hyperswitch-control-center/commit/91358cb6dcca083e5669b57be4141119ada5635e))
**Full Changelog:** [`2024.09.17.1...2024.09.17.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.17.1...2024.09.17.2)
- - -
## 2024.09.17.1
### Features
- Tax processor addition and taxjar addition ([#1379](https://github.com/juspay/hyperswitch-control-center/pull/1379)) ([`0b4dad9`](https://github.com/juspay/hyperswitch-control-center/commit/0b4dad9a496d315ac43b26d829f55f6f281050f6))
- Table view switch to the graph component ([#1381](https://github.com/juspay/hyperswitch-control-center/pull/1381)) ([`70b7a61`](https://github.com/juspay/hyperswitch-control-center/commit/70b7a615fb5c99e409a213102a2987bbca03b855))
### Miscellaneous Tasks
- Analytics entity refactor ([#1377](https://github.com/juspay/hyperswitch-control-center/pull/1377)) ([`52fecda`](https://github.com/juspay/hyperswitch-control-center/commit/52fecdabeb832e938c1f07bd66465f5654aea171))
- Taxjar icon ([#1403](https://github.com/juspay/hyperswitch-control-center/pull/1403)) ([`af175be`](https://github.com/juspay/hyperswitch-control-center/commit/af175be31897efc133b8ffe8fe020afe55a80216))
- Tax processor ([#1405](https://github.com/juspay/hyperswitch-control-center/pull/1405)) ([`6fc6374`](https://github.com/juspay/hyperswitch-control-center/commit/6fc6374ad4ed30ee613c13f7bfed5b5f6b666f6a))
**Full Changelog:** [`2024.09.17.0...2024.09.17.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.17.0...2024.09.17.1)
- - -
## 2024.09.17.0
### Features
- Core file changes for tax processor addition ([#1378](https://github.com/juspay/hyperswitch-control-center/pull/1378)) ([`9aba852`](https://github.com/juspay/hyperswitch-control-center/commit/9aba85242e62c5d723d74992fa389265148ad99d))
- Payment operation revamp ([#1203](https://github.com/juspay/hyperswitch-control-center/pull/1203)) ([`2fee0ee`](https://github.com/juspay/hyperswitch-control-center/commit/2fee0ee3cc087496604cd65376745cd8c9bd8740))
- Novalnet connector addition ([#1373](https://github.com/juspay/hyperswitch-control-center/pull/1373)) ([`989b1f6`](https://github.com/juspay/hyperswitch-control-center/commit/989b1f69a1c7cb0fd5e03f3bc10ff6a1cb53950f))
### Miscellaneous Tasks
- Moved user management files from old modules ([#1389](https://github.com/juspay/hyperswitch-control-center/pull/1389)) ([`188a136`](https://github.com/juspay/hyperswitch-control-center/commit/188a13685f6017d32c597b53febf0d0a5b6d2d62))
- Update wasm for tax processor ([#1391](https://github.com/juspay/hyperswitch-control-center/pull/1391)) ([`7a40f4a`](https://github.com/juspay/hyperswitch-control-center/commit/7a40f4a3ea155e99e4f24009ded9a572f9966866))
- Unused vars removed ([#1383](https://github.com/juspay/hyperswitch-control-center/pull/1383)) ([`790040d`](https://github.com/juspay/hyperswitch-control-center/commit/790040d4e9c1c3fec1dfab2cc41eb47f3c8a05e8))
**Full Changelog:** [`2024.09.16.0...2024.09.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.16.0...2024.09.17.0)
- - -
## 2024.09.16.0
### Miscellaneous Tasks
- Line graph utils ([#1349](https://github.com/juspay/hyperswitch-control-center/pull/1349)) ([`ba4e885`](https://github.com/juspay/hyperswitch-control-center/commit/ba4e88565818551f1a82bc6c76da6dff1ceb4273))
**Full Changelog:** [`2024.09.13.0...2024.09.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.13.0...2024.09.16.0)
- - -
## 2024.09.13.0
### Bug Fixes
- Volume based routing fix ([#1365](https://github.com/juspay/hyperswitch-control-center/pull/1365)) ([`8bc98e4`](https://github.com/juspay/hyperswitch-control-center/commit/8bc98e4ae0b61001d3ac23a3ddaac16e26dee2c0))
- Global search fixes ([#1366](https://github.com/juspay/hyperswitch-control-center/pull/1366)) ([`7274021`](https://github.com/juspay/hyperswitch-control-center/commit/727402161be194f636f91f5cb1e416ec6e256596))
### Miscellaneous Tasks
- Add a sankey utils graph ([#1371](https://github.com/juspay/hyperswitch-control-center/pull/1371)) ([`74f5d0c`](https://github.com/juspay/hyperswitch-control-center/commit/74f5d0cc60fa2fd6667f7f0dbbb552d6bd238b1e))
**Full Changelog:** [`2024.09.11.1...2024.09.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.11.1...2024.09.13.0)
- - -
## 2024.09.11.1
### Bug Fixes
- User management revamp bugs ([#1355](https://github.com/juspay/hyperswitch-control-center/pull/1355)) ([`22f7958`](https://github.com/juspay/hyperswitch-control-center/commit/22f7958a30e0e68b1cb93eb29e09383816805f0a))
**Full Changelog:** [`2024.09.11.0...2024.09.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.11.0...2024.09.11.1)
- - -
## 2024.09.11.0
### Bug Fixes
- Ui bugs homepage ([#1350](https://github.com/juspay/hyperswitch-control-center/pull/1350)) ([`6f25b23`](https://github.com/juspay/hyperswitch-control-center/commit/6f25b23abec7a63a40aaa447ac8cc5022162d67c))
- User management bugs ([#1343](https://github.com/juspay/hyperswitch-control-center/pull/1343)) ([`36d234d`](https://github.com/juspay/hyperswitch-control-center/commit/36d234d9508cc593a9b989957c5cc4beb5e723cd))
### Miscellaneous Tasks
- Add down time feature flag ([#1342](https://github.com/juspay/hyperswitch-control-center/pull/1342)) ([`a51a91f`](https://github.com/juspay/hyperswitch-control-center/commit/a51a91f225e18625855bcd0cea66add64e01dc92))
**Full Changelog:** [`2024.09.10.0...2024.09.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.10.0...2024.09.11.0)
- - -
## 2024.09.10.0
### Features
- Mixpanel 5xx error ([#1313](https://github.com/juspay/hyperswitch-control-center/pull/1313)) ([`6fba4b3`](https://github.com/juspay/hyperswitch-control-center/commit/6fba4b3ea91a58eadfc341cb66dd01af538cf52d))
- New analytics file structure ([#1310](https://github.com/juspay/hyperswitch-control-center/pull/1310)) ([`6bb8fae`](https://github.com/juspay/hyperswitch-control-center/commit/6bb8faef4a6d77ffaeaee38879580c1db25c45d0))
- Table remote sorting feature ([#1198](https://github.com/juspay/hyperswitch-control-center/pull/1198)) ([`c9b6691`](https://github.com/juspay/hyperswitch-control-center/commit/c9b6691d5b27c0e00c4a451a37ade2b11ddbfb7d))
- New analytics tabs ([#1338](https://github.com/juspay/hyperswitch-control-center/pull/1338)) ([`646b752`](https://github.com/juspay/hyperswitch-control-center/commit/646b75280d622fd7f2c27274fda61b4f3082a3f6))
- Add disable option for pm auth processor ([#1332](https://github.com/juspay/hyperswitch-control-center/pull/1332)) ([`0a491d1`](https://github.com/juspay/hyperswitch-control-center/commit/0a491d1f36b01b530565918c30802e9e299a5bc1))
### Bug Fixes
- Bug fix width issue ([#1326](https://github.com/juspay/hyperswitch-control-center/pull/1326)) ([`266ebc2`](https://github.com/juspay/hyperswitch-control-center/commit/266ebc20d5d47586702cfa994bd5d5cc611c34ca))
### Miscellaneous Tasks
- Pending invitations in home page ([#1330](https://github.com/juspay/hyperswitch-control-center/pull/1330)) ([`ba13558`](https://github.com/juspay/hyperswitch-control-center/commit/ba135588b915be2339082ec0b65da403253f161b))
**Full Changelog:** [`2024.09.06.4...2024.09.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.06.4...2024.09.10.0)
- - -
## 2024.09.06.4
### Bug Fixes
- User permission change for audit trail ([#1322](https://github.com/juspay/hyperswitch-control-center/pull/1322)) ([`26f2dcf`](https://github.com/juspay/hyperswitch-control-center/commit/26f2dcf529e49dca17c78c51f22357905643f01c))
- Merchant id from user-info ([#1324](https://github.com/juspay/hyperswitch-control-center/pull/1324)) ([`12b0d16`](https://github.com/juspay/hyperswitch-control-center/commit/12b0d168a012220dd475884546910485bc1edffb))
**Full Changelog:** [`2024.09.06.3...2024.09.06.4`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.06.3...2024.09.06.4)
- - -
## 2024.09.06.3
### Bug Fixes
- Internal user changes ([#1320](https://github.com/juspay/hyperswitch-control-center/pull/1320)) ([`1ef01dd`](https://github.com/juspay/hyperswitch-control-center/commit/1ef01dd0ed25f34381a4edf7b838245e750111e4))
**Full Changelog:** [`2024.09.06.2...2024.09.06.3`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.06.2...2024.09.06.3)
- - -
## 2024.09.06.2
### Bug Fixes
- Fixed all profiles issue in teams ([#1318](https://github.com/juspay/hyperswitch-control-center/pull/1318)) ([`5dcf9a1`](https://github.com/juspay/hyperswitch-control-center/commit/5dcf9a1e8b745e5bfea0b49e672942861de0ef52))
### Miscellaneous Tasks
- Chore: pin functionality removed ([#1297](https://github.com/juspay/hyperswitch-control-center/pull/1297)) ([`0aafec4`](https://github.com/juspay/hyperswitch-control-center/commit/0aafec4579aa3655807696ac23d570c301567f0f))
**Full Changelog:** [`2024.09.06.1...2024.09.06.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.06.1...2024.09.06.2)
- - -
## 2024.09.06.1
### Bug Fixes
- User-revamp fixes ([#1317](https://github.com/juspay/hyperswitch-control-center/pull/1317)) ([`0317fb1`](https://github.com/juspay/hyperswitch-control-center/commit/0317fb10398f091b10e579532347228ab00a16c2))
**Full Changelog:** [`2024.09.06.0...2024.09.06.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.06.0...2024.09.06.1)
- - -
## 2024.09.06.0
### Bug Fixes
- Fix: bug fixes user restructuring ([#1311](https://github.com/juspay/hyperswitch-control-center/pull/1311)) ([`7fd1bc7`](https://github.com/juspay/hyperswitch-control-center/commit/7fd1bc7de5886e68c6508cac1de2c5d873437b95))
- Dialog on org , merchant and profile switch & bug-fixes ([#1299](https://github.com/juspay/hyperswitch-control-center/pull/1299)) ([`007ea04`](https://github.com/juspay/hyperswitch-control-center/commit/007ea042f8e9510ce4b6a2481bb201b4ff440f7a))
**Full Changelog:** [`2024.09.05.2...2024.09.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.05.2...2024.09.06.0)
- - -
## 2024.09.05.2
### Features
- Enabled wellsfargo connector ([#1300](https://github.com/juspay/hyperswitch-control-center/pull/1300)) ([`2b45cfa`](https://github.com/juspay/hyperswitch-control-center/commit/2b45cfa968cd6af4e4f5b180d93d37b4ac0faf81))
- Fiuu connector added ([#1308](https://github.com/juspay/hyperswitch-control-center/pull/1308)) ([`5ac5d5f`](https://github.com/juspay/hyperswitch-control-center/commit/5ac5d5fae3ef885d3c809775f054ed96bb23541c))
### Miscellaneous Tasks
- Analytics org merchant profile level api ([#1302](https://github.com/juspay/hyperswitch-control-center/pull/1302)) ([`70707b4`](https://github.com/juspay/hyperswitch-control-center/commit/70707b45356b7d4297e496cf1c489d6e2f0663be))
- Show user details page ([#1208](https://github.com/juspay/hyperswitch-control-center/pull/1208)) ([`964812d`](https://github.com/juspay/hyperswitch-control-center/commit/964812dbdae3b5bd999bebf1575a6897e2dd34c6))
- Org merchant profile level views analytics ([#1303](https://github.com/juspay/hyperswitch-control-center/pull/1303)) ([`93fd685`](https://github.com/juspay/hyperswitch-control-center/commit/93fd685364fe23a604c752dad44706ffed2c5e61))
- Pending invites screen changes ([#1307](https://github.com/juspay/hyperswitch-control-center/pull/1307)) ([`f4f2779`](https://github.com/juspay/hyperswitch-control-center/commit/f4f2779958ca0ebed7210df351b7981d1df9653c))
**Full Changelog:** [`2024.09.05.1...2024.09.05.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.05.1...2024.09.05.2)
- - -
## 2024.09.05.1
### Miscellaneous Tasks
- Disable customers for profile level users ([#1304](https://github.com/juspay/hyperswitch-control-center/pull/1304)) ([`d5c72ef`](https://github.com/juspay/hyperswitch-control-center/commit/d5c72ef3ab0fcc9c933dbc940e911cd2a0cbbfa3))
**Full Changelog:** [`2024.09.05.0...2024.09.05.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.05.0...2024.09.05.1)
- - -
## 2024.09.05.0
### Features
- Added Fiserv IPG connector ([#1289](https://github.com/juspay/hyperswitch-control-center/pull/1289)) ([`009605e`](https://github.com/juspay/hyperswitch-control-center/commit/009605edaa70469c548f976b768b5bba5279617c))
### Miscellaneous Tasks
- New user invitation page ([#1199](https://github.com/juspay/hyperswitch-control-center/pull/1199)) ([`968478a`](https://github.com/juspay/hyperswitch-control-center/commit/968478abab002a38568d917cafe6fa33a3ef5c3b))
- Add profile level views in payment page ([#1290](https://github.com/juspay/hyperswitch-control-center/pull/1290)) ([`ff5d897`](https://github.com/juspay/hyperswitch-control-center/commit/ff5d897d8dac67ff5c17eee9e56da5797097c2cb))
**Full Changelog:** [`2024.09.04.1...2024.09.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.04.1...2024.09.05.0)
- - -
## 2024.09.04.1
### Bug Fixes
- Entity scaffold url path ([#1293](https://github.com/juspay/hyperswitch-control-center/pull/1293)) ([`791f91d`](https://github.com/juspay/hyperswitch-control-center/commit/791f91d6e7f6bac5d40cee177e6e62d636cd3264))
### Miscellaneous Tasks
- Update user info hook ([#1287](https://github.com/juspay/hyperswitch-control-center/pull/1287)) ([`1500415`](https://github.com/juspay/hyperswitch-control-center/commit/1500415edf33477fb4485d801549fb419f787fcb))
- Profile level api integration ([#1285](https://github.com/juspay/hyperswitch-control-center/pull/1285)) ([`b4d546d`](https://github.com/juspay/hyperswitch-control-center/commit/b4d546d50314513733da314e30a3cec1304a4983))
**Full Changelog:** [`2024.09.04.0...2024.09.04.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.04.0...2024.09.04.1)
- - -
## 2024.09.04.0
### Features
- Payment views core ([#1277](https://github.com/juspay/hyperswitch-control-center/pull/1277)) ([`bc46dd5`](https://github.com/juspay/hyperswitch-control-center/commit/bc46dd5a8ec999bd8f9a50d261737a6099a1f46f))
### Miscellaneous Tasks
- New user invitation independent files ([#1275](https://github.com/juspay/hyperswitch-control-center/pull/1275)) ([`af3f17a`](https://github.com/juspay/hyperswitch-control-center/commit/af3f17a53c8b290a8656f2ab8539377b1d7dbb33))
- Call switch api in core modules ([#1265](https://github.com/juspay/hyperswitch-control-center/pull/1265)) ([`fc4df39`](https://github.com/juspay/hyperswitch-control-center/commit/fc4df39123763bd473e04c6fae5579458f21d9f9))
- Update user info context with extra parameter ([#1283](https://github.com/juspay/hyperswitch-control-center/pull/1283)) ([`2d0b962`](https://github.com/juspay/hyperswitch-control-center/commit/2d0b962a01986178863e2bcf8fa2f3ae5bceab65))
**Full Changelog:** [`2024.09.02.0...2024.09.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.02.0...2024.09.04.0)
- - -
## 2024.09.02.0
### Features
- Square connector added ([#1217](https://github.com/juspay/hyperswitch-control-center/pull/1217)) ([`d3305df`](https://github.com/juspay/hyperswitch-control-center/commit/d3305df5625397932e9108296ff3e584cb3ca728))
- Profile settings changes ([#1227](https://github.com/juspay/hyperswitch-control-center/pull/1227)) ([`46f457e`](https://github.com/juspay/hyperswitch-control-center/commit/46f457e04db9fdb5fe543433f06e7632dc8e2297))
- Connector additional merchant data fields ([#1216](https://github.com/juspay/hyperswitch-control-center/pull/1216)) ([`977be5a`](https://github.com/juspay/hyperswitch-control-center/commit/977be5a5bc3c03ad63fecae5e58931045399fec0))
### Bug Fixes
- Recon issue fixed ([#1271](https://github.com/juspay/hyperswitch-control-center/pull/1271)) ([`fc954b6`](https://github.com/juspay/hyperswitch-control-center/commit/fc954b6883e1278a20ec9b4059ce8a158bcfbae9))
- Routing gateway same name fix ([#1248](https://github.com/juspay/hyperswitch-control-center/pull/1248)) ([`39b2a53`](https://github.com/juspay/hyperswitch-control-center/commit/39b2a539e661514a0c5ca90bd80a87a9360a0664))
### Miscellaneous Tasks
- Switch org merch profile logic ([#1226](https://github.com/juspay/hyperswitch-control-center/pull/1226)) ([`38580cb`](https://github.com/juspay/hyperswitch-control-center/commit/38580cb3989cb1bb2550bf76e748536e991f190c))
- Integrate core profile level apis ([#1261](https://github.com/juspay/hyperswitch-control-center/pull/1261)) ([`7fd008f`](https://github.com/juspay/hyperswitch-control-center/commit/7fd008f4c49c6bf1d877479bd742fe0adac0f3c0))
- Switch org , merchant , profile implementation ([#1257](https://github.com/juspay/hyperswitch-control-center/pull/1257)) ([`92e6b86`](https://github.com/juspay/hyperswitch-control-center/commit/92e6b86b0ae1e47f153ea0ede55f5dc47b1e70db))
- Removed duplicated file and updated imports ([#1269](https://github.com/juspay/hyperswitch-control-center/pull/1269)) ([`b767afc`](https://github.com/juspay/hyperswitch-control-center/commit/b767afc376bc28ac70b0dabdaff726906267fbfa))
- Remove basic auth ([#1255](https://github.com/juspay/hyperswitch-control-center/pull/1255)) ([`d8b105c`](https://github.com/juspay/hyperswitch-control-center/commit/d8b105cd51f04e671a1c9aa6873dbd7d016478f0))
- List roles table api changes ([#1258](https://github.com/juspay/hyperswitch-control-center/pull/1258)) ([`1651d2b`](https://github.com/juspay/hyperswitch-control-center/commit/1651d2b863246bd82a6ff137f10f6f2b3efc6b71))
**Full Changelog:** [`2024.09.01.0...2024.09.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.09.01.0...2024.09.02.0)
- - -
## 2024.09.01.0
### Features
- Core changes omp list ([#1249](https://github.com/juspay/hyperswitch-control-center/pull/1249)) ([`400d437`](https://github.com/juspay/hyperswitch-control-center/commit/400d437e2280248107ea084b8b70934b01b60f5a))
- Switch component for OMP ([#1221](https://github.com/juspay/hyperswitch-control-center/pull/1221)) ([`83cdcef`](https://github.com/juspay/hyperswitch-control-center/commit/83cdcef0ab24794dc2056790703c6651430a13b1))
### Bug Fixes
- Pagination rows per page selector fix ([#1246](https://github.com/juspay/hyperswitch-control-center/pull/1246)) ([`e8d319e`](https://github.com/juspay/hyperswitch-control-center/commit/e8d319ea2659ae38800ead60974bc648449cb10c))
### Miscellaneous Tasks
- Add profile id in the user info context ([#1247](https://github.com/juspay/hyperswitch-control-center/pull/1247)) ([`a4fab61`](https://github.com/juspay/hyperswitch-control-center/commit/a4fab61f267ed0c7c9685c583883873f578e4982))
- Home payments ops copy changes ([#1235](https://github.com/juspay/hyperswitch-control-center/pull/1235)) ([`f52185a`](https://github.com/juspay/hyperswitch-control-center/commit/f52185a5fdfe2953d213c8576c883128c9270c03))
- List users with api changes ([#1232](https://github.com/juspay/hyperswitch-control-center/pull/1232)) ([`6f227c8`](https://github.com/juspay/hyperswitch-control-center/commit/6f227c8e8a0e14716919b3d724ec8d8738f6e970))
- Org, merch ,profile list atom ([#1253](https://github.com/juspay/hyperswitch-control-center/pull/1253)) ([`2d4e63c`](https://github.com/juspay/hyperswitch-control-center/commit/2d4e63c583ecd999f654ed28e1086e4146ef67dd))
**Full Changelog:** [`2024.08.29.0...2024.09.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.29.0...2024.09.01.0)
- - -
## 2024.08.29.0
### Bug Fixes
- Smart retries tooltip bug fix ([#1228](https://github.com/juspay/hyperswitch-control-center/pull/1228)) ([`7edbf15`](https://github.com/juspay/hyperswitch-control-center/commit/7edbf1573c37fa3a3c72a7e7d32147e5eb445905))
- Disputes table col ordering ([#1234](https://github.com/juspay/hyperswitch-control-center/pull/1234)) ([`1974f75`](https://github.com/juspay/hyperswitch-control-center/commit/1974f756041c9fd72f6a9da054822d504530aaec))
- Payouts pagination order fix ([#1230](https://github.com/juspay/hyperswitch-control-center/pull/1230)) ([`5160e1e`](https://github.com/juspay/hyperswitch-control-center/commit/5160e1ec220b192f78eb3581b26d703dbb095515))
- Prod intent website regex change ([#1229](https://github.com/juspay/hyperswitch-control-center/pull/1229)) ([`82007f1`](https://github.com/juspay/hyperswitch-control-center/commit/82007f1decd1a03684d5391303e6850b1860d8de))
- Hyperlinks fix at login page ([#1236](https://github.com/juspay/hyperswitch-control-center/pull/1236)) ([`14fd311`](https://github.com/juspay/hyperswitch-control-center/commit/14fd311f9e64f82d9f19dccff3d1ce6a75dcc7c6))
**Full Changelog:** [`2024.08.28.0...2024.08.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.28.0...2024.08.29.0)
- - -
## 2024.08.28.0
### Miscellaneous Tasks
- User info provider changes ([#1224](https://github.com/juspay/hyperswitch-control-center/pull/1224)) ([`f86b8d5`](https://github.com/juspay/hyperswitch-control-center/commit/f86b8d5858c86faf086293e104c4ea84b47c2440))
- Auth hooks change ([#1222](https://github.com/juspay/hyperswitch-control-center/pull/1222)) ([`c830aab`](https://github.com/juspay/hyperswitch-control-center/commit/c830aabe4ea0deaf0c2dae2d0cf774cc102bdaf5))
**Full Changelog:** [`2024.08.27.0...2024.08.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.27.0...2024.08.28.0)
- - -
## 2024.08.27.0
### Features
- Paybox wellsfargo connector added ([#1202](https://github.com/juspay/hyperswitch-control-center/pull/1202)) ([`0678545`](https://github.com/juspay/hyperswitch-control-center/commit/06785458fc5fa40a25b59643178e849f6482c152))
- Pagination support for payouts table ([#1220](https://github.com/juspay/hyperswitch-control-center/pull/1220)) ([`af1aafa`](https://github.com/juspay/hyperswitch-control-center/commit/af1aafa03a1fae638b92731d67a0a10d690e2882))
- Netcetera to prod ([#1211](https://github.com/juspay/hyperswitch-control-center/pull/1211)) ([`1ee1e6f`](https://github.com/juspay/hyperswitch-control-center/commit/1ee1e6fb15d5d5b668d6e3fae7484f52497661bd))
### Miscellaneous Tasks
- Rearrange connector folders ([#1213](https://github.com/juspay/hyperswitch-control-center/pull/1213)) ([`34f0890`](https://github.com/juspay/hyperswitch-control-center/commit/34f08908fcad06bf96e3059f879eb84534b25e48))
**Full Changelog:** [`2024.08.26.0...2024.08.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.26.0...2024.08.27.0)
- - -
## 2024.08.26.0
### Bug Fixes
- Redirect on new tab fix ([#1082](https://github.com/juspay/hyperswitch-control-center/pull/1082)) ([`05aa61b`](https://github.com/juspay/hyperswitch-control-center/commit/05aa61b41949ca4b6aa08f68cbec9d019222b480))
### Miscellaneous Tasks
- Pmt billing address name fields ([#1193](https://github.com/juspay/hyperswitch-control-center/pull/1193)) ([`27a2bcb`](https://github.com/juspay/hyperswitch-control-center/commit/27a2bcbf58edab3a9269173013be0724ebdfd917))
- Graphs color code update ([#1207](https://github.com/juspay/hyperswitch-control-center/pull/1207)) ([`cbad264`](https://github.com/juspay/hyperswitch-control-center/commit/cbad264d9e249103493f9b004a12481a5f136339))
- Refactor initial pageload ([#1176](https://github.com/juspay/hyperswitch-control-center/pull/1176)) ([`3d942fb`](https://github.com/juspay/hyperswitch-control-center/commit/3d942fbcb43a500ef7ba62cf1ba2d4d8ae017963))
**Full Changelog:** [`2024.08.25.0...2024.08.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.25.0...2024.08.26.0)
- - -
## 2024.08.25.0
### Miscellaneous Tasks
- List users UI changes ([#1113](https://github.com/juspay/hyperswitch-control-center/pull/1113)) ([`939d109`](https://github.com/juspay/hyperswitch-control-center/commit/939d109986c1bfd9a9fbae2408f2b951c9a42cb3))
- Plaid minor enhancements ([#1175](https://github.com/juspay/hyperswitch-control-center/pull/1175)) ([`08b5942`](https://github.com/juspay/hyperswitch-control-center/commit/08b5942d8ff9e5bab3cd6b42052eaa6128fc79ce))
**Full Changelog:** [`2024.08.22.0...2024.08.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.22.0...2024.08.25.0)
- - -
## 2024.08.22.0
### Bug Fixes
- Loading page height before login screen ([#1195](https://github.com/juspay/hyperswitch-control-center/pull/1195)) ([`0f6de89`](https://github.com/juspay/hyperswitch-control-center/commit/0f6de8993b3c8540d7d56b06b5bb4635f939a648))
- Performance monitor bugs ([#1190](https://github.com/juspay/hyperswitch-control-center/pull/1190)) ([`047438f`](https://github.com/juspay/hyperswitch-control-center/commit/047438f2290936d50cc846f7cdf28fe7497955b6))
### Miscellaneous Tasks
- Update github workflow ([`a94f218`](https://github.com/juspay/hyperswitch-control-center/commit/a94f218c43f383990b4deac68caf8e46c0d9ef4c))
**Full Changelog:** [`2024.08.21.0...2024.08.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.21.0...2024.08.22.0)
- - -
## 2024.08.21.0
### Features
- Performance monitor exclude filter value ([#1178](https://github.com/juspay/hyperswitch-control-center/pull/1178)) ([`273afaa`](https://github.com/juspay/hyperswitch-control-center/commit/273afaa9bba08597f88bdbcc0f6ed609a183eca7))
### Bug Fixes
- Totp extra settings not visible in profile page ([#1183](https://github.com/juspay/hyperswitch-control-center/pull/1183)) ([`02faa3e`](https://github.com/juspay/hyperswitch-control-center/commit/02faa3e4cfdbbe4759200463f294ac02497ba43f))
### Miscellaneous Tasks
- Bug fix audit trail ([#1186](https://github.com/juspay/hyperswitch-control-center/pull/1186)) ([`c7b3ef2`](https://github.com/juspay/hyperswitch-control-center/commit/c7b3ef2dd647ee536e76f6e5d586491d8085e153))
- Make email with password login ([#1110](https://github.com/juspay/hyperswitch-control-center/pull/1110)) ([`8c3360c`](https://github.com/juspay/hyperswitch-control-center/commit/8c3360cad4b4f9db4223a6d55a297651ac20417b))
**Full Changelog:** [`2024.08.20.1...2024.08.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.20.1...2024.08.21.0)
- - -
## 2024.08.20.1
### Miscellaneous Tasks
- Updated wasm ([#1171](https://github.com/juspay/hyperswitch-control-center/pull/1171)) ([`33ae887`](https://github.com/juspay/hyperswitch-control-center/commit/33ae88775bb2f3de98275ef9e4e2d69402eef41c))
- Updating the user profile in mixpanel after user login ([#1065](https://github.com/juspay/hyperswitch-control-center/pull/1065)) ([`1454dd5`](https://github.com/juspay/hyperswitch-control-center/commit/1454dd53dda265bdce78d514457b508319d7fb0b))
- Connector api dependency on orders removed ([#1167](https://github.com/juspay/hyperswitch-control-center/pull/1167)) ([`3bd054b`](https://github.com/juspay/hyperswitch-control-center/commit/3bd054b153cccd88fd7964a65802e6efb46463a6))
- User revamp independent files ([#1169](https://github.com/juspay/hyperswitch-control-center/pull/1169)) ([`2a8499e`](https://github.com/juspay/hyperswitch-control-center/commit/2a8499e7ce42850683242642bcfe6666d27201d6))
**Full Changelog:** [`2024.08.20.0...2024.08.20.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.20.0...2024.08.20.1)
- - -
## 2024.08.20.0
### Bug Fixes
- Failure rate formula fix ([#1170](https://github.com/juspay/hyperswitch-control-center/pull/1170)) ([`86bcb16`](https://github.com/juspay/hyperswitch-control-center/commit/86bcb167bf6ab8c6e4b8f7c12479ab62bafcf5a3))
### Refactors
- Removed unused packages ([#1141](https://github.com/juspay/hyperswitch-control-center/pull/1141)) ([`caa9113`](https://github.com/juspay/hyperswitch-control-center/commit/caa91136bb5eed97c5dcf12591b53d655fca9b4d))
### Miscellaneous Tasks
- Refactor gauge chart entity ([#1161](https://github.com/juspay/hyperswitch-control-center/pull/1161)) ([`e9454b8`](https://github.com/juspay/hyperswitch-control-center/commit/e9454b89d3218fbb950e6b35fb2fb5a99c100ff2))
- Refund type removed from refunds api ([#1165](https://github.com/juspay/hyperswitch-control-center/pull/1165)) ([`178dc64`](https://github.com/juspay/hyperswitch-control-center/commit/178dc642f1404e6185d237c7913844d90852c9b1))
- Frm api changes ([#782](https://github.com/juspay/hyperswitch-control-center/pull/782)) ([`e0f2911`](https://github.com/juspay/hyperswitch-control-center/commit/e0f2911a899a946d9983d6af97722767a56fbf99))
**Full Changelog:** [`2024.08.14.0...2024.08.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.14.0...2024.08.20.0)
- - -
## 2024.08.14.0
### Features
- Added sr rate graphs ([#1155](https://github.com/juspay/hyperswitch-control-center/pull/1155)) ([`f8e4c13`](https://github.com/juspay/hyperswitch-control-center/commit/f8e4c1375f977b68f67badc23afe23b63a6de4d1))
### Bug Fixes
- Bug fix ([#1153](https://github.com/juspay/hyperswitch-control-center/pull/1153)) ([`88b5e8b`](https://github.com/juspay/hyperswitch-control-center/commit/88b5e8b75c945179de4dce4058fb4e4d5874dc70))
- Feature flag sidebar ([#1152](https://github.com/juspay/hyperswitch-control-center/pull/1152)) ([`2361077`](https://github.com/juspay/hyperswitch-control-center/commit/2361077afdc0f7f0c768913f0345bdeae1839886))
### Miscellaneous Tasks
- Added mca id in 3ds and pm auth table ([#1157](https://github.com/juspay/hyperswitch-control-center/pull/1157)) ([`ec3529f`](https://github.com/juspay/hyperswitch-control-center/commit/ec3529fc911955fd939d43a07a728916a3987aff))
**Full Changelog:** [`2024.08.13.1...2024.08.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.13.1...2024.08.14.0)
- - -
## 2024.08.13.1
### Features
- Added table performance ([#1149](https://github.com/juspay/hyperswitch-control-center/pull/1149)) ([`1199a23`](https://github.com/juspay/hyperswitch-control-center/commit/1199a2337c0e1f5440d86954f58351272a54f65e))
### Miscellaneous Tasks
- Update wasm ([#1151](https://github.com/juspay/hyperswitch-control-center/pull/1151)) ([`1873d89`](https://github.com/juspay/hyperswitch-control-center/commit/1873d89d8bd56075ae2be3d272c27ae9ad132c3f))
**Full Changelog:** [`2024.08.13.0...2024.08.13.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.13.0...2024.08.13.1)
- - -
## 2024.08.13.0
### Features
- Integrating pm authenticator processor in connector flow ([#1126](https://github.com/juspay/hyperswitch-control-center/pull/1126)) ([`123324a`](https://github.com/juspay/hyperswitch-control-center/commit/123324adfc3e68cbd9ded9dcf5ad21a74c7b1608))
### Bug Fixes
- Commented apex charts and pinned mixpanel version ([#1136](https://github.com/juspay/hyperswitch-control-center/pull/1136)) ([`59e6b12`](https://github.com/juspay/hyperswitch-control-center/commit/59e6b12c4384c5e127a750b794efc29474fcb85f))
- Frm api payload update ([#1143](https://github.com/juspay/hyperswitch-control-center/pull/1143)) ([`a145ef3`](https://github.com/juspay/hyperswitch-control-center/commit/a145ef3dcbf5c40372f067505273b26fd3aea33a))
### Refactors
- Using joinWith instead of joinWithUnsafe ([#1135](https://github.com/juspay/hyperswitch-control-center/pull/1135)) ([`da65d02`](https://github.com/juspay/hyperswitch-control-center/commit/da65d0291aa38c17cba2c3fef6596a10d158283b))
### Miscellaneous Tasks
- Make global search result table consistent ([#1147](https://github.com/juspay/hyperswitch-control-center/pull/1147)) ([`da9b669`](https://github.com/juspay/hyperswitch-control-center/commit/da9b6697d6f85d848e8a24e6cdf3b18ab22951bc))
- Added merchant connector id ([#1140](https://github.com/juspay/hyperswitch-control-center/pull/1140)) ([`0a5d210`](https://github.com/juspay/hyperswitch-control-center/commit/0a5d210bd194f56e9b0c77da4f6afda14640e485))
**Full Changelog:** [`2024.08.12.0...2024.08.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.12.0...2024.08.13.0)
- - -
## 2024.08.12.0
### Miscellaneous Tasks
- Changes for tabs & table customization ([#1118](https://github.com/juspay/hyperswitch-control-center/pull/1118)) ([`7f126c2`](https://github.com/juspay/hyperswitch-control-center/commit/7f126c28754fb75246bacee82a6b76736bedd5a6))
- Performance monitor ([#1102](https://github.com/juspay/hyperswitch-control-center/pull/1102)) ([`143397b`](https://github.com/juspay/hyperswitch-control-center/commit/143397b7ae74ae1b47a83382efd82deb77ad5517))
**Full Changelog:** [`2024.08.11.0...2024.08.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.11.0...2024.08.12.0)
- - -
## 2024.08.11.0
### Features
- Addition of pm authentication processor new flow ([#1125](https://github.com/juspay/hyperswitch-control-center/pull/1125)) ([`d18b4d1`](https://github.com/juspay/hyperswitch-control-center/commit/d18b4d15a63860a8729fccf48a0ba7217ca7b87d))
### Bug Fixes
- Frictionless success metric fix ([#1133](https://github.com/juspay/hyperswitch-control-center/pull/1133)) ([`d5afd14`](https://github.com/juspay/hyperswitch-control-center/commit/d5afd14131749d2405325c11ed1e842dcf50b775))
**Full Changelog:** [`2024.08.08.0...2024.08.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.08.0...2024.08.11.0)
- - -
## 2024.08.08.0
### Features
- Enable pm_auth_processor ([#1124](https://github.com/juspay/hyperswitch-control-center/pull/1124)) ([`5702f1e`](https://github.com/juspay/hyperswitch-control-center/commit/5702f1e776ea5ce4b7481e5f49f1e818227899df))
### Miscellaneous Tasks
- Refactor user info context ([#1103](https://github.com/juspay/hyperswitch-control-center/pull/1103)) ([`919201a`](https://github.com/juspay/hyperswitch-control-center/commit/919201a10c690e556cef8d5158f8fe9d176c9973))
**Full Changelog:** [`2024.08.06.0...2024.08.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.06.0...2024.08.08.0)
- - -
## 2024.08.06.0
### Refactors
- V(11) rescript - unit functions not required, file name change form bucklescript to res.js & react dom style ([#1100](https://github.com/juspay/hyperswitch-control-center/pull/1100)) ([`798bfb5`](https://github.com/juspay/hyperswitch-control-center/commit/798bfb56d37c593e73bf02f593b43cf35c9bd71f))
### Miscellaneous Tasks
- Extra param for row level customization with select box ([#1116](https://github.com/juspay/hyperswitch-control-center/pull/1116)) ([`d201eac`](https://github.com/juspay/hyperswitch-control-center/commit/d201eac7e38723fdf45cd9def5f41aeac07cf054))
- Plaid connector addition ([#1096](https://github.com/juspay/hyperswitch-control-center/pull/1096)) ([`e20fae4`](https://github.com/juspay/hyperswitch-control-center/commit/e20fae4cc68ee97cd560adeaeeec6b7e2ef39fec))
**Full Changelog:** [`2024.08.02.1...2024.08.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.02.1...2024.08.06.0)
- - -
## 2024.08.02.1
### Bug Fixes
- Added datatrans connector icon ([#1104](https://github.com/juspay/hyperswitch-control-center/pull/1104)) ([`ea5a995`](https://github.com/juspay/hyperswitch-control-center/commit/ea5a995f5a912f7a19884b728dc2060964b74067))
- Signin password check removed ([#1106](https://github.com/juspay/hyperswitch-control-center/pull/1106)) ([`1858350`](https://github.com/juspay/hyperswitch-control-center/commit/18583501ff744af89e36886c31de6d08a2e35aa4))
**Full Changelog:** [`2024.08.02.0...2024.08.02.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.08.02.0...2024.08.02.1)
- - -
## 2024.08.02.0
### Bug Fixes
- Apple pay extra step for stripe ([#1098](https://github.com/juspay/hyperswitch-control-center/pull/1098)) ([`b9d2ce7`](https://github.com/juspay/hyperswitch-control-center/commit/b9d2ce72589ee8359c8090f928e2f05c66d2a1d8))
**Full Changelog:** [`2024.07.30.0...2024.08.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.30.0...2024.08.02.0)
- - -
## 2024.07.30.0
### Miscellaneous Tasks
- Update pull request template ([`d17044b`](https://github.com/juspay/hyperswitch-control-center/commit/d17044b9d8214f9c6e00b00661852f78f634fdda))
**Full Changelog:** [`2024.07.29.0...2024.07.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.29.0...2024.07.30.0)
- - -
## 2024.07.29.0
### Features
- Datatrans new connector addition ([#1091](https://github.com/juspay/hyperswitch-control-center/pull/1091)) ([`257b929`](https://github.com/juspay/hyperswitch-control-center/commit/257b9295d670591d4a22680ccdce4070eeded1e6))
### Bug Fixes
- Remove name from address fields ([#1089](https://github.com/juspay/hyperswitch-control-center/pull/1089)) ([`b4e1c1a`](https://github.com/juspay/hyperswitch-control-center/commit/b4e1c1a6f1c68b1a0b1924fe594e77f8b80c1972))
### Miscellaneous Tasks
- Improve lighthouse performance ([#1088](https://github.com/juspay/hyperswitch-control-center/pull/1088)) ([`ca411a5`](https://github.com/juspay/hyperswitch-control-center/commit/ca411a5f206f5c6b012defcabf3e6c6d568f27c5))
**Full Changelog:** [`2024.07.28.0...2024.07.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.28.0...2024.07.29.0)
- - -
## 2024.07.28.0
### Bug Fixes
- Rename single stat titles and tooltip texts ([#1081](https://github.com/juspay/hyperswitch-control-center/pull/1081)) ([`503f922`](https://github.com/juspay/hyperswitch-control-center/commit/503f92257c43dc471cc4add96e42650ffcbb5110))
**Full Changelog:** [`2024.07.26.0...2024.07.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.26.0...2024.07.28.0)
- - -
## 2024.07.26.0
### Miscellaneous Tasks
- Added frm_metadata in payments api sdk ([#1075](https://github.com/juspay/hyperswitch-control-center/pull/1075)) ([`267722c`](https://github.com/juspay/hyperswitch-control-center/commit/267722c659b491f934552f1d822a473d9a6a401e))
**Full Changelog:** [`2024.07.25.0...2024.07.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.25.0...2024.07.26.0)
- - -
## 2024.07.25.0
### Bug Fixes
- Enhance filters ui ([#1038](https://github.com/juspay/hyperswitch-control-center/pull/1038)) ([`7343036`](https://github.com/juspay/hyperswitch-control-center/commit/7343036f22ad713d6e50744ecfc4e0d51a385a53))
- Order customer email fix ([#1071](https://github.com/juspay/hyperswitch-control-center/pull/1071)) ([`a0862fd`](https://github.com/juspay/hyperswitch-control-center/commit/a0862fd25a780363e4247680dc082107ca1b37a3))
### Miscellaneous Tasks
- Apple pay extra step addition ([#1047](https://github.com/juspay/hyperswitch-control-center/pull/1047)) ([`5896b0c`](https://github.com/juspay/hyperswitch-control-center/commit/5896b0cd53eefadfbd4c449a52bf2cc5ad401ceb))
**Full Changelog:** [`2024.07.24.1...2024.07.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.24.1...2024.07.25.0)
- - -
## 2024.07.24.1
### Features
- PCI certificate addition under compliance section ([#1027](https://github.com/juspay/hyperswitch-control-center/pull/1027)) ([`a84d8d8`](https://github.com/juspay/hyperswitch-control-center/commit/a84d8d8540155c703bae7552e51df4711d2c1e9a))
### Bug Fixes
- Redirect url from payout connector enable/disable ([#1026](https://github.com/juspay/hyperswitch-control-center/pull/1026)) ([`d8a6c32`](https://github.com/juspay/hyperswitch-control-center/commit/d8a6c32398198ee30f9f217cf7702dd02bf6e5e5))
- Global search back button fix ([#1053](https://github.com/juspay/hyperswitch-control-center/pull/1053)) ([`f52c4c3`](https://github.com/juspay/hyperswitch-control-center/commit/f52c4c3664aa1e5b926d4e0108e45d28fda877b8))
- SimplifiedHelper optional ([#1063](https://github.com/juspay/hyperswitch-control-center/pull/1063)) ([`69f10fe`](https://github.com/juspay/hyperswitch-control-center/commit/69f10fefd2c45fa44198e0e9075a494e8eb9ee2a))
### Miscellaneous Tasks
- Removing recon_v2 feature flag ([#1057](https://github.com/juspay/hyperswitch-control-center/pull/1057)) ([`4ef9c9b`](https://github.com/juspay/hyperswitch-control-center/commit/4ef9c9b80d510bf1e90119f7886b9ee7affee7f3))
- Core api changes for regex ([#1048](https://github.com/juspay/hyperswitch-control-center/pull/1048)) ([`1450c32`](https://github.com/juspay/hyperswitch-control-center/commit/1450c323fa727d1ae4488005440a70fbfa595a3b))
**Full Changelog:** [`2024.07.24.0...2024.07.24.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.24.0...2024.07.24.1)
- - -
## 2024.07.24.0
### Bug Fixes
- Sign up button not working for sbx ([#1059](https://github.com/juspay/hyperswitch-control-center/pull/1059)) ([`f56a2cd`](https://github.com/juspay/hyperswitch-control-center/commit/f56a2cdb0a5abc5d36ec9807e00b7ebdc525ac3e))
**Full Changelog:** [`2024.07.23.1...2024.07.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.23.1...2024.07.24.0)
- - -
## 2024.07.23.1
### Bug Fixes
- Webhook custom headers ([#1056](https://github.com/juspay/hyperswitch-control-center/pull/1056)) ([`f9f670a`](https://github.com/juspay/hyperswitch-control-center/commit/f9f670a1349287acaa1bac8868c49ff443d3fdb5))
**Full Changelog:** [`2024.07.23.0...2024.07.23.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.23.0...2024.07.23.1)
- - -
## 2024.07.23.0
### Miscellaneous Tasks
- Itaubank icon update ([#1045](https://github.com/juspay/hyperswitch-control-center/pull/1045)) ([`beb72b7`](https://github.com/juspay/hyperswitch-control-center/commit/beb72b7627edc807a45faf5b4608479d341ef2b5))
**Full Changelog:** [`2024.07.22.1...2024.07.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.22.1...2024.07.23.0)
- - -
## 2024.07.22.1
### Bug Fixes
- Password validation ([#817](https://github.com/juspay/hyperswitch-control-center/pull/817)) ([`de53095`](https://github.com/juspay/hyperswitch-control-center/commit/de53095b646b17f452cadeaba455d08b7095f16a))
- Webhook custom headers ([#1044](https://github.com/juspay/hyperswitch-control-center/pull/1044)) ([`27be1d9`](https://github.com/juspay/hyperswitch-control-center/commit/27be1d9575ddf0e3ba18837a1671953f57d8a009))
**Full Changelog:** [`2024.07.22.0...2024.07.22.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.22.0...2024.07.22.1)
- - -
## 2024.07.22.0
### Features
- Itaubank connector addition ([#1042](https://github.com/juspay/hyperswitch-control-center/pull/1042)) ([`2880ab1`](https://github.com/juspay/hyperswitch-control-center/commit/2880ab1dc482ce9904f23959870e2e49d94d0150))
### Bug Fixes
- Global search empty table fix ([#1030](https://github.com/juspay/hyperswitch-control-center/pull/1030)) ([`fb29fb4`](https://github.com/juspay/hyperswitch-control-center/commit/fb29fb499f89111e6d9998b355a6b46f9fa5e2cb))
- Custom webhook headers ([#1036](https://github.com/juspay/hyperswitch-control-center/pull/1036)) ([`66e8885`](https://github.com/juspay/hyperswitch-control-center/commit/66e8885593286dcfaeca472a5af7660562dca5c8))
- Moved delete all sample data from account settings ([#1034](https://github.com/juspay/hyperswitch-control-center/pull/1034)) ([`be4b048`](https://github.com/juspay/hyperswitch-control-center/commit/be4b04817ce107aec49c873a67ec9f2fa0ac2dfb))
- Global search minor bugs ([#1040](https://github.com/juspay/hyperswitch-control-center/pull/1040)) ([`f74cdfc`](https://github.com/juspay/hyperswitch-control-center/commit/f74cdfc70aeaaa500a894cc39b692bfb5f457e50))
### Refactors
- Uiutils unnecessary component and module can be removed ([#1032](https://github.com/juspay/hyperswitch-control-center/pull/1032)) ([`c40b0d5`](https://github.com/juspay/hyperswitch-control-center/commit/c40b0d5bb21ddd0b14c9aac493590d3a968c1f4d))
### Miscellaneous Tasks
- Payment attempt table sorting ([#1031](https://github.com/juspay/hyperswitch-control-center/pull/1031)) ([`b32d712`](https://github.com/juspay/hyperswitch-control-center/commit/b32d71226f3102f639723ff978e059e556585257))
**Full Changelog:** [`2024.07.21.0...2024.07.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.21.0...2024.07.22.0)
- - -
## 2024.07.21.0
### Bug Fixes
- Add icon fix for safari ([#1028](https://github.com/juspay/hyperswitch-control-center/pull/1028)) ([`75a778b`](https://github.com/juspay/hyperswitch-control-center/commit/75a778bcc3ad1d507e7a97a8c4e0e77a62136d49))
**Full Changelog:** [`2024.07.18.1...2024.07.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.18.1...2024.07.21.0)
- - -
## 2024.07.18.1
### Features
- Add mifinity to prod ([#1013](https://github.com/juspay/hyperswitch-control-center/pull/1013)) ([`d2b5645`](https://github.com/juspay/hyperswitch-control-center/commit/d2b56459bb63492226c556ff1288ae958ae0cb2f))
- Customer more details ([#1005](https://github.com/juspay/hyperswitch-control-center/pull/1005)) ([`b00e07a`](https://github.com/juspay/hyperswitch-control-center/commit/b00e07af28764c14d61ed4c0b97b14b8f3840dc2))
### Bug Fixes
- Active payments counter changes ([#998](https://github.com/juspay/hyperswitch-control-center/pull/998)) ([`741641f`](https://github.com/juspay/hyperswitch-control-center/commit/741641f29cceb22689b60fcccdc53699bf668159))
- Payout routing rule list ([#1020](https://github.com/juspay/hyperswitch-control-center/pull/1020)) ([`55dd2e1`](https://github.com/juspay/hyperswitch-control-center/commit/55dd2e1337f635070629730ac35c14304b351d87))
- Dropdown scroll issue & redundant css removed ([#1022](https://github.com/juspay/hyperswitch-control-center/pull/1022)) ([`349456c`](https://github.com/juspay/hyperswitch-control-center/commit/349456cc0e08bd6114a329c2b7caceff536f450d))
- Global search email fix ([#1018](https://github.com/juspay/hyperswitch-control-center/pull/1018)) ([`60b6155`](https://github.com/juspay/hyperswitch-control-center/commit/60b6155b30767f04d2442b4c036f20628c716b35))
- Table local sort fix ([#1006](https://github.com/juspay/hyperswitch-control-center/pull/1006)) ([`7b361b7`](https://github.com/juspay/hyperswitch-control-center/commit/7b361b7e0910720c1188e90736e719f073aff2d6))
### Refactors
- Useeffect 0-7 to single useeffect ([#1011](https://github.com/juspay/hyperswitch-control-center/pull/1011)) ([`0cbd716`](https://github.com/juspay/hyperswitch-control-center/commit/0cbd716c7760c0db5f9d6fb41673769fecb96b52))
### Miscellaneous Tasks
- Usecallback & usememo removal ([#1014](https://github.com/juspay/hyperswitch-control-center/pull/1014)) ([`7efb82c`](https://github.com/juspay/hyperswitch-control-center/commit/7efb82c3151208f1c906d0262ca8d3318477ecd2))
- Replaced deprecated function in webpack ([#999](https://github.com/juspay/hyperswitch-control-center/pull/999)) ([`07d31cd`](https://github.com/juspay/hyperswitch-control-center/commit/07d31cd8f2eed3716061a5cb3d5ad993d53b1ab4))
- Enable mifinity prod ([#1009](https://github.com/juspay/hyperswitch-control-center/pull/1009)) ([`2adfacd`](https://github.com/juspay/hyperswitch-control-center/commit/2adfacd205443271bffc519b05c1571a6f506344))
**Full Changelog:** [`2024.07.18.0...2024.07.18.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.18.0...2024.07.18.1)
- - -
## 2024.07.18.0
### Features
- Add support for outgoing webhook custom http headers ([#1001](https://github.com/juspay/hyperswitch-control-center/pull/1001)) ([`f693f41`](https://github.com/juspay/hyperswitch-control-center/commit/f693f410b855fa0eeb039b69cd5674503482d6c0))
### Bug Fixes
- Added attempts count column in payment list table ([#1002](https://github.com/juspay/hyperswitch-control-center/pull/1002)) ([`8ab36fa`](https://github.com/juspay/hyperswitch-control-center/commit/8ab36fa39e6c52ab0cfd06d7aaa8c240857f9cee))
**Full Changelog:** [`2024.07.17.0...2024.07.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.17.0...2024.07.18.0)
- - -
## 2024.07.17.0
### Bug Fixes
- Removed agreement screen ([#991](https://github.com/juspay/hyperswitch-control-center/pull/991)) ([`ac658fd`](https://github.com/juspay/hyperswitch-control-center/commit/ac658fdfe75243761fb74b88a6409d4c29282f1c))
**Full Changelog:** [`2024.07.16.0...2024.07.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.16.0...2024.07.17.0)
- - -
## 2024.07.16.0
### Features
- Feat: load time metric - user journey analytics ([#931](https://github.com/juspay/hyperswitch-control-center/pull/931)) ([`0df6ad4`](https://github.com/juspay/hyperswitch-control-center/commit/0df6ad455678b83a4d018508de06e70cf990a123))
### Bug Fixes
- Audit trail empty log details on load ([#988](https://github.com/juspay/hyperswitch-control-center/pull/988)) ([`1f5428b`](https://github.com/juspay/hyperswitch-control-center/commit/1f5428b4d0384209c41233bc40d778f8624cca99))
### Miscellaneous Tasks
- Mixpanel changes ([#946](https://github.com/juspay/hyperswitch-control-center/pull/946)) ([`9dca413`](https://github.com/juspay/hyperswitch-control-center/commit/9dca4139c3546467bbc908fce7bceed45836d7b0))
- Inform users about currency denomination in rule based routing ([#997](https://github.com/juspay/hyperswitch-control-center/pull/997)) ([`66c90b6`](https://github.com/juspay/hyperswitch-control-center/commit/66c90b694ec9997c483897b25bde03d288014876))
- Removed open source tile from Home ([#979](https://github.com/juspay/hyperswitch-control-center/pull/979)) ([`5f6e7ed`](https://github.com/juspay/hyperswitch-control-center/commit/5f6e7ed68a006323b8a4c8d841def3ae5a1f904e))
**Full Changelog:** [`2024.07.15.0...2024.07.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.15.0...2024.07.16.0)
- - -
## 2024.07.15.0
### Bug Fixes
- Generate reports access change ([#980](https://github.com/juspay/hyperswitch-control-center/pull/980)) ([`d5bc21f`](https://github.com/juspay/hyperswitch-control-center/commit/d5bc21f9bc777349e2a3428300f1d080643192c2))
**Full Changelog:** [`2024.07.12.0...2024.07.15.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.12.0...2024.07.15.0)
- - -
## 2024.07.12.0
### Bug Fixes
- Dynamic charts and filter ui fix ([#982](https://github.com/juspay/hyperswitch-control-center/pull/982)) ([`31e5637`](https://github.com/juspay/hyperswitch-control-center/commit/31e563754d875b9ef906e59b59eb79136ff6a545))
### Miscellaneous Tasks
- Removed console logs for testing ([#976](https://github.com/juspay/hyperswitch-control-center/pull/976)) ([`a0c323a`](https://github.com/juspay/hyperswitch-control-center/commit/a0c323a365c69514563651d84958d0ececaa482f))
- Refactor connector metadata ([#854](https://github.com/juspay/hyperswitch-control-center/pull/854)) ([`604b028`](https://github.com/juspay/hyperswitch-control-center/commit/604b02849dda2e9caa9f403823715dd2a96a4f7c))
- Update latest wasm ([#985](https://github.com/juspay/hyperswitch-control-center/pull/985)) ([`a4e216c`](https://github.com/juspay/hyperswitch-control-center/commit/a4e216c94c774f7e6f6d4d3b9f26e418337cb115))
**Full Changelog:** [`2024.07.11.3...2024.07.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.11.3...2024.07.12.0)
- - -
## 2024.07.11.3
### Bug Fixes
- User analytics granularity fix ([#975](https://github.com/juspay/hyperswitch-control-center/pull/975)) ([`e06709b`](https://github.com/juspay/hyperswitch-control-center/commit/e06709bb11f63030b762addd4839c97ccb026b22))
### Miscellaneous Tasks
- Common filter for payment analytics page ([#963](https://github.com/juspay/hyperswitch-control-center/pull/963)) ([`3808822`](https://github.com/juspay/hyperswitch-control-center/commit/3808822c20553f6d334fde55e542c4d1bd0aaee9))
**Full Changelog:** [`2024.07.11.2...2024.07.11.3`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.11.2...2024.07.11.3)
- - -
## 2024.07.11.2
### Features
- Global search customer email search support ([#964](https://github.com/juspay/hyperswitch-control-center/pull/964)) ([`ba411d1`](https://github.com/juspay/hyperswitch-control-center/commit/ba411d179aa89891fbf60e42dd07c5b9a43766b1))
### Miscellaneous Tasks
- Orders and refunds more table items ([#970](https://github.com/juspay/hyperswitch-control-center/pull/970)) ([`088f0d1`](https://github.com/juspay/hyperswitch-control-center/commit/088f0d1339ce2a2c7b4b19572c016eeae7ea8667))
- New connector added bambora apac ([#973](https://github.com/juspay/hyperswitch-control-center/pull/973)) ([`2658d8a`](https://github.com/juspay/hyperswitch-control-center/commit/2658d8a960405c0a5a5ecb185121062f021a4b0d))
**Full Changelog:** [`2024.07.11.1...2024.07.11.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.11.1...2024.07.11.2)
- - -
## 2024.07.11.1
### Bug Fixes
- Recon not showing fixes ([#971](https://github.com/juspay/hyperswitch-control-center/pull/971)) ([`76c084a`](https://github.com/juspay/hyperswitch-control-center/commit/76c084ab813517fcdcde02576a8a04cd14e7df90))
**Full Changelog:** [`2024.07.11.0...2024.07.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.11.0...2024.07.11.1)
- - -
## 2024.07.11.0
### Features
- Recon module changes ([#926](https://github.com/juspay/hyperswitch-control-center/pull/926)) ([`f5669fa`](https://github.com/juspay/hyperswitch-control-center/commit/f5669fa4877c87d8478b3f481973e65e48470da7))
**Full Changelog:** [`2024.07.10.1...2024.07.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.10.1...2024.07.11.0)
- - -
## 2024.07.10.1
### Features
- Added feature flag for the granularity ([#961](https://github.com/juspay/hyperswitch-control-center/pull/961)) ([`6e52d4e`](https://github.com/juspay/hyperswitch-control-center/commit/6e52d4e71d2a52c6fd43f33cacd140ada2426b55))
### Bug Fixes
- Heading for new table column merchant ref id ([#959](https://github.com/juspay/hyperswitch-control-center/pull/959)) ([`6fff367`](https://github.com/juspay/hyperswitch-control-center/commit/6fff367c6423e1ac387f8d1bb5931c48369d4898))
### Miscellaneous Tasks
- Url refactoring ([#957](https://github.com/juspay/hyperswitch-control-center/pull/957)) ([`cca1cb9`](https://github.com/juspay/hyperswitch-control-center/commit/cca1cb9fea4d47e2b9b3bf5d8dfbb367a7d758db))
- File restructure and rearrangement ([#944](https://github.com/juspay/hyperswitch-control-center/pull/944)) ([`8ac8f7a`](https://github.com/juspay/hyperswitch-control-center/commit/8ac8f7a823e17d3b4d6a2d3d13e4e483f2af4df3))
**Full Changelog:** [`2024.07.10.0...2024.07.10.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.10.0...2024.07.10.1)
- - -
## 2024.07.10.0
### Miscellaneous Tasks
- Added razorpay in payment connectors ([#951](https://github.com/juspay/hyperswitch-control-center/pull/951)) ([`e426c95`](https://github.com/juspay/hyperswitch-control-center/commit/e426c95f9e052cb05770ee7f82c6fa7fae1e4942))
**Full Changelog:** [`2024.07.09.1...2024.07.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.09.1...2024.07.10.0)
- - -
## 2024.07.09.1
### Features
- Mixpanel page view ([#933](https://github.com/juspay/hyperswitch-control-center/pull/933)) ([`eeffd40`](https://github.com/juspay/hyperswitch-control-center/commit/eeffd403f510a570dd1d6bdfda693ead3b083293))
### Miscellaneous Tasks
- Added merchant order reference id field in "more payment details" ([#942](https://github.com/juspay/hyperswitch-control-center/pull/942)) ([`2a9ce62`](https://github.com/juspay/hyperswitch-control-center/commit/2a9ce622f72008c3eda91123ea25577cd3e5fd20))
- Api utils refactoring ([#936](https://github.com/juspay/hyperswitch-control-center/pull/936)) ([`c11a098`](https://github.com/juspay/hyperswitch-control-center/commit/c11a0983af34b75cba3492bf12148b6ba9eb0568))
**Full Changelog:** [`2024.07.09.0...2024.07.09.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.09.0...2024.07.09.1)
- - -
## 2024.07.09.0
### Bug Fixes
- Return url validation ([#934](https://github.com/juspay/hyperswitch-control-center/pull/934)) ([`8db4272`](https://github.com/juspay/hyperswitch-control-center/commit/8db4272bea32c5ae2a3d6fe0d1713a9f85831018))
**Full Changelog:** [`2024.07.05.2...2024.07.09.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.05.2...2024.07.09.0)
- - -
## 2024.07.05.2
### Miscellaneous Tasks
- Add package apex ([#928](https://github.com/juspay/hyperswitch-control-center/pull/928)) ([`5f3ac2d`](https://github.com/juspay/hyperswitch-control-center/commit/5f3ac2dbe381d243fc2d1a5c975c781fec6f7841))
**Full Changelog:** [`2024.07.05.1...2024.07.05.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.05.1...2024.07.05.2)
- - -
## 2024.07.05.1
### Features
- Analytics more granularity to the graphs ([#924](https://github.com/juspay/hyperswitch-control-center/pull/924)) ([`58fbd32`](https://github.com/juspay/hyperswitch-control-center/commit/58fbd3226a6f063232f7f4a5ac730faf8ff73316))
### Bug Fixes
- Analytics warnings ([#925](https://github.com/juspay/hyperswitch-control-center/pull/925)) ([`67d85a8`](https://github.com/juspay/hyperswitch-control-center/commit/67d85a8f1f906a1712afd385b23831032f276f97))
### Miscellaneous Tasks
- Analytics filters separation ([#863](https://github.com/juspay/hyperswitch-control-center/pull/863)) ([`dfa33ef`](https://github.com/juspay/hyperswitch-control-center/commit/dfa33ef6ab50786ca61e18b8597a10b486b03430))
**Full Changelog:** [`2024.07.05.0...2024.07.05.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.05.0...2024.07.05.1)
- - -
## 2024.07.05.0
### Bug Fixes
- Accept invite flow breaking for non-auth users ([#919](https://github.com/juspay/hyperswitch-control-center/pull/919)) ([`03cc8c9`](https://github.com/juspay/hyperswitch-control-center/commit/03cc8c90009560628f590032abf0813c9717c14b))
**Full Changelog:** [`2024.07.04.0...2024.07.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.04.0...2024.07.05.0)
- - -
## 2024.07.04.0
### Bug Fixes
- Domain addition in logout url ([#904](https://github.com/juspay/hyperswitch-control-center/pull/904)) ([`ea317c4`](https://github.com/juspay/hyperswitch-control-center/commit/ea317c485115b57f9a69a02f77aa2007c43d558f))
- Routing stack bug fix ([#917](https://github.com/juspay/hyperswitch-control-center/pull/917)) ([`89a5894`](https://github.com/juspay/hyperswitch-control-center/commit/89a58949f0d6d9025d1ebc5ead4231c09396f368))
### Miscellaneous Tasks
- Sidebar scrollbar individual component css ([#908](https://github.com/juspay/hyperswitch-control-center/pull/908)) ([`4e723f8`](https://github.com/juspay/hyperswitch-control-center/commit/4e723f802259259a935728ef83a82db788df8397))
- Orders card network column change and orders and refunds more … ([#895](https://github.com/juspay/hyperswitch-control-center/pull/895)) ([`89882b4`](https://github.com/juspay/hyperswitch-control-center/commit/89882b41292e329686e89065ce2416b6a088580d))
**Full Changelog:** [`2024.07.03.0...2024.07.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.03.0...2024.07.04.0)
- - -
## 2024.07.03.0
### Miscellaneous Tasks
- More date filter options ([#896](https://github.com/juspay/hyperswitch-control-center/pull/896)) ([`f6df0c3`](https://github.com/juspay/hyperswitch-control-center/commit/f6df0c370207ff1e77b11cf184043e4c6761d104))
- Upgrade to latest rescript version ([#847](https://github.com/juspay/hyperswitch-control-center/pull/847)) ([`8ca1fe4`](https://github.com/juspay/hyperswitch-control-center/commit/8ca1fe4c5f1caf32fb388b6bb1c56bc696683a0e))
- Refactor theme ([#912](https://github.com/juspay/hyperswitch-control-center/pull/912)) ([`f757d00`](https://github.com/juspay/hyperswitch-control-center/commit/f757d0064066b3ff857fcae559f9ac6125b2534c))
**Full Changelog:** [`2024.07.02.0...2024.07.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.02.0...2024.07.03.0)
- - -
## 2024.07.02.0
### Miscellaneous Tasks
- Removed avg ticket size and refunds propcessed amount ([#892](https://github.com/juspay/hyperswitch-control-center/pull/892)) ([`e0ac19e`](https://github.com/juspay/hyperswitch-control-center/commit/e0ac19e0af32388ee5b4789e033cef25f149560a))
- Webhooks multi request support ([#890](https://github.com/juspay/hyperswitch-control-center/pull/890)) ([`ca489e5`](https://github.com/juspay/hyperswitch-control-center/commit/ca489e5f625ca1b987c731abda5bdb2fb0ec7bcb))
**Full Changelog:** [`2024.07.01.2...2024.07.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.01.2...2024.07.02.0)
- - -
## 2024.07.01.2
### Features
- Feat: realtime user analytics ([#872](https://github.com/juspay/hyperswitch-control-center/pull/872)) ([`b6d6036`](https://github.com/juspay/hyperswitch-control-center/commit/b6d603621541fa46fbe53f5e43c4bac4a33e58ab))
### Bug Fixes
- Signup auth methods ([#887](https://github.com/juspay/hyperswitch-control-center/pull/887)) ([`6e6f469`](https://github.com/juspay/hyperswitch-control-center/commit/6e6f4697f1c0da63463693341f5a29079d494155))
**Full Changelog:** [`2024.07.01.1...2024.07.01.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.01.1...2024.07.01.2)
- - -
## 2024.07.01.1
### Miscellaneous Tasks
- Singout api call falling using spt ([#885](https://github.com/juspay/hyperswitch-control-center/pull/885)) ([`0e28321`](https://github.com/juspay/hyperswitch-control-center/commit/0e283213d660f9d4994a074c62b5c306fda4eec4))
- Payment logs ui changes ([#883](https://github.com/juspay/hyperswitch-control-center/pull/883)) ([`e977daf`](https://github.com/juspay/hyperswitch-control-center/commit/e977dafd85c15745279fc378e669c3c293531852))
**Full Changelog:** [`2024.07.01.0...2024.07.01.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.07.01.0...2024.07.01.1)
- - -
## 2024.07.01.0
### Refactors
- Handle logout hook changes ([#881](https://github.com/juspay/hyperswitch-control-center/pull/881)) ([`e2a81ba`](https://github.com/juspay/hyperswitch-control-center/commit/e2a81ba700f081d030d5521e44e5345a0d8f8569))
**Full Changelog:** [`2024.06.28.0...2024.07.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.28.0...2024.07.01.0)
- - -
## 2024.06.28.0
### Miscellaneous Tasks
- Allow singup based on auth methods ([#878](https://github.com/juspay/hyperswitch-control-center/pull/878)) ([`48904da`](https://github.com/juspay/hyperswitch-control-center/commit/48904da42b0839209a47be59db651a4f102f84ff))
- Add field domain name as optional field ([#880](https://github.com/juspay/hyperswitch-control-center/pull/880)) ([`ee6d0bd`](https://github.com/juspay/hyperswitch-control-center/commit/ee6d0bdc8700f4c4af9bd2e035c75b957fdfe5dd))
**Full Changelog:** [`2024.06.27.0...2024.06.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.27.0...2024.06.28.0)
- - -
## 2024.06.27.0
### Features
- SSO integration in dashboard ([#870](https://github.com/juspay/hyperswitch-control-center/pull/870)) ([`3c348e1`](https://github.com/juspay/hyperswitch-control-center/commit/3c348e147a6e7b428c4be4ff91adb491c6469d00))
**Full Changelog:** [`2024.06.26.0...2024.06.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.26.0...2024.06.27.0)
- - -
## 2024.06.26.0
### Miscellaneous Tasks
- Filters ui in newline ([#869](https://github.com/juspay/hyperswitch-control-center/pull/869)) ([`014b800`](https://github.com/juspay/hyperswitch-control-center/commit/014b80052193465928deaec9fd3f23c2d1ae4b5a))
- Add zsl in prod ([#873](https://github.com/juspay/hyperswitch-control-center/pull/873)) ([`41fb23e`](https://github.com/juspay/hyperswitch-control-center/commit/41fb23e83ed2b64770da907576c4289bedf4267b))
**Full Changelog:** [`2024.06.25.0...2024.06.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.25.0...2024.06.26.0)
- - -
## 2024.06.25.0
### Bug Fixes
- Disputes accept dispute button condition change ([#868](https://github.com/juspay/hyperswitch-control-center/pull/868)) ([`48cd4b8`](https://github.com/juspay/hyperswitch-control-center/commit/48cd4b8ebb664ab060862734866c4a96d5cfb3bd))
### Refactors
- Local storage key name change ([#858](https://github.com/juspay/hyperswitch-control-center/pull/858)) ([`3309371`](https://github.com/juspay/hyperswitch-control-center/commit/3309371dcc2eeb2f9ab9d342b8341a91b0adaded))
### Miscellaneous Tasks
- Auth list API integration ([#849](https://github.com/juspay/hyperswitch-control-center/pull/849)) ([`b31a58c`](https://github.com/juspay/hyperswitch-control-center/commit/b31a58c60ef22ac412c246d0db71a5ddd2d5f581))
- Store authid in sessionstorage ([#862](https://github.com/juspay/hyperswitch-control-center/pull/862)) ([`7dfbf1f`](https://github.com/juspay/hyperswitch-control-center/commit/7dfbf1fd9901317e1a80bb9b3fab59f51db43dd0))
- Move prod agreement url env ([#866](https://github.com/juspay/hyperswitch-control-center/pull/866)) ([`ce3d682`](https://github.com/juspay/hyperswitch-control-center/commit/ce3d682f1b3bb33146c26b2a5cc2a8f38fc34448))
- Update sessiontoken ([`a7c8390`](https://github.com/juspay/hyperswitch-control-center/commit/a7c8390b1fd17259bd06b0e475d2080322ca0706))
**Full Changelog:** [`2024.06.24.0...2024.06.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.24.0...2024.06.25.0)
- - -
## 2024.06.24.0
### Miscellaneous Tasks
- Showing all payment method types in filters ([#841](https://github.com/juspay/hyperswitch-control-center/pull/841)) ([`d5a93aa`](https://github.com/juspay/hyperswitch-control-center/commit/d5a93aacd0c52f0237f9a0a2a3aafe9d1c5992ba))
**Full Changelog:** [`2024.06.21.0...2024.06.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.21.0...2024.06.24.0)
- - -
## 2024.06.21.0
### Bug Fixes
- Verify email flow ([#855](https://github.com/juspay/hyperswitch-control-center/pull/855)) ([`1fbfbd3`](https://github.com/juspay/hyperswitch-control-center/commit/1fbfbd3ed4a9ca550d231f22d5e3ef3273e3066b))
**Full Changelog:** [`2024.06.20.1...2024.06.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.20.1...2024.06.21.0)
- - -
## 2024.06.20.1
### Miscellaneous Tasks
- Map the display name to label ([#853](https://github.com/juspay/hyperswitch-control-center/pull/853)) ([`72e6927`](https://github.com/juspay/hyperswitch-control-center/commit/72e69271f7e3847bbc37466d755f636333718266))
**Full Changelog:** [`2024.06.20.0...2024.06.20.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.20.0...2024.06.20.1)
- - -
## 2024.06.20.0
### Features
- Add boolean field to collect shipping details ([#783](https://github.com/juspay/hyperswitch-control-center/pull/783)) ([`5e7c3c7`](https://github.com/juspay/hyperswitch-control-center/commit/5e7c3c792700c41bbb0b1cec207c300aae6b85d6))
### Miscellaneous Tasks
- Card network changes and customer details card ([#837](https://github.com/juspay/hyperswitch-control-center/pull/837)) ([`4df01b5`](https://github.com/juspay/hyperswitch-control-center/commit/4df01b524fe67ee5a6e5244e5669cc8dec644bfe))
- Sso decision screen addition ([#836](https://github.com/juspay/hyperswitch-control-center/pull/836)) ([`cdd769c`](https://github.com/juspay/hyperswitch-control-center/commit/cdd769c46fb1b856930a2b184a5a1df400b2f5d2))
- Allow user to enter apple pay label ([#852](https://github.com/juspay/hyperswitch-control-center/pull/852)) ([`282c746`](https://github.com/juspay/hyperswitch-control-center/commit/282c7466b0e54d233722c6ab7676ce9edebe99d6))
**Full Changelog:** [`2024.06.19.2...2024.06.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.19.2...2024.06.20.0)
- - -
## 2024.06.19.2
### Miscellaneous Tasks
- Quick fix merchant ([#846](https://github.com/juspay/hyperswitch-control-center/pull/846)) ([`94e6dfe`](https://github.com/juspay/hyperswitch-control-center/commit/94e6dfe0c7d664d9868d2f3abd0209aa140ff64d))
**Full Changelog:** [`2024.06.19.1...2024.06.19.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.19.1...2024.06.19.2)
- - -
## 2024.06.19.1
### Miscellaneous Tasks
- Switch merchant quick fix ([#845](https://github.com/juspay/hyperswitch-control-center/pull/845)) ([`22093f6`](https://github.com/juspay/hyperswitch-control-center/commit/22093f6fe6f5281d519559df8e4a4473b8d0f958))
**Full Changelog:** [`2024.06.19.0...2024.06.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.19.0...2024.06.19.1)
- - -
## 2024.06.19.0
### Bug Fixes
- Payments table description column fix ([#834](https://github.com/juspay/hyperswitch-control-center/pull/834)) ([`5e8290e`](https://github.com/juspay/hyperswitch-control-center/commit/5e8290e9b8c8956f5d6e4c5a78adc772ae999fae))
- Switch merchant dialog box ui issue ([#839](https://github.com/juspay/hyperswitch-control-center/pull/839)) ([`51baf8e`](https://github.com/juspay/hyperswitch-control-center/commit/51baf8ee05421736986337776e995c2a7803f4e0))
### Refactors
- Auth module folder restructuring ([#831](https://github.com/juspay/hyperswitch-control-center/pull/831)) ([`f37237d`](https://github.com/juspay/hyperswitch-control-center/commit/f37237dcb756cc5f5b7be86e2154a555e6b08996))
**Full Changelog:** [`2024.06.18.0...2024.06.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.18.0...2024.06.19.0)
- - -
## 2024.06.18.0
### Miscellaneous Tasks
- Dynamic tabs ([#769](https://github.com/juspay/hyperswitch-control-center/pull/769)) ([`d6e16ad`](https://github.com/juspay/hyperswitch-control-center/commit/d6e16adb4dc87656eee1484f9f05b834f6131ad1))
- Showing error message on payment failure ([#806](https://github.com/juspay/hyperswitch-control-center/pull/806)) ([`99db9c1`](https://github.com/juspay/hyperswitch-control-center/commit/99db9c182617047d90534754a5b1e8e353ca3744))
**Full Changelog:** [`2024.06.16.0...2024.06.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.16.0...2024.06.18.0)
- - -
## 2024.06.16.0
### Miscellaneous Tasks
- Sso new enum addition ([#825](https://github.com/juspay/hyperswitch-control-center/pull/825)) ([`6390602`](https://github.com/juspay/hyperswitch-control-center/commit/6390602c9da68c2b830e882f7e36ef9f5a57fc8d))
**Full Changelog:** [`2024.06.13.0...2024.06.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.13.0...2024.06.16.0)
- - -
## 2024.06.13.0
### Bug Fixes
- Recovery code button state fix ([#813](https://github.com/juspay/hyperswitch-control-center/pull/813)) ([`9bf73d6`](https://github.com/juspay/hyperswitch-control-center/commit/9bf73d68a68b36b5169f8a843bbe26efe37ee426))
### Refactors
- Totp flow file rename ([#822](https://github.com/juspay/hyperswitch-control-center/pull/822)) ([`a762c91`](https://github.com/juspay/hyperswitch-control-center/commit/a762c918698f7d26d68158d3744cc90444c64e65))
### Miscellaneous Tasks
- Pmt type changes ([#819](https://github.com/juspay/hyperswitch-control-center/pull/819)) ([`b2f520d`](https://github.com/juspay/hyperswitch-control-center/commit/b2f520d620bda3de490fea7e7f60fee54a91546b))
**Full Changelog:** [`2024.06.12.0...2024.06.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.12.0...2024.06.13.0)
- - -
## 2024.06.12.0
### Miscellaneous Tasks
- Add multiline inputbox for accepting private key ([#818](https://github.com/juspay/hyperswitch-control-center/pull/818)) ([`a567dd5`](https://github.com/juspay/hyperswitch-control-center/commit/a567dd53d66f6abe429452dab8f92bbd1343100e))
**Full Changelog:** [`2024.06.11.1...2024.06.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.11.1...2024.06.12.0)
- - -
## 2024.06.11.1
### Miscellaneous Tasks
- Add three more fields in apple pay ios certificate flow ([#811](https://github.com/juspay/hyperswitch-control-center/pull/811)) ([`724200b`](https://github.com/juspay/hyperswitch-control-center/commit/724200b46c60c2b5a92eb7eb6f3ee8413dc50277))
**Full Changelog:** [`2024.06.11.0...2024.06.11.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.11.0...2024.06.11.1)
- - -
## 2024.06.11.0
### Refactors
- Auth header as a separate component ([#810](https://github.com/juspay/hyperswitch-control-center/pull/810)) ([`fe123c0`](https://github.com/juspay/hyperswitch-control-center/commit/fe123c0816d0c26af86da81b796fa779093f10c9))
**Full Changelog:** [`2024.06.10.1...2024.06.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.10.1...2024.06.11.0)
- - -
## 2024.06.10.1
### Miscellaneous Tasks
- Chore: Metadata ui change in payment ops table ([#807](https://github.com/juspay/hyperswitch-control-center/pull/807)) ([`9ba0a27`](https://github.com/juspay/hyperswitch-control-center/commit/9ba0a278770dff437fe8430eaa2cf3550a838ff4))
**Full Changelog:** [`2024.06.10.0...2024.06.10.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.10.0...2024.06.10.1)
- - -
## 2024.06.10.0
### Miscellaneous Tasks
- Add processed amount ([#809](https://github.com/juspay/hyperswitch-control-center/pull/809)) ([`d75d4b1`](https://github.com/juspay/hyperswitch-control-center/commit/d75d4b17b65e398b24fb87f6e4b37095eb427b55))
**Full Changelog:** [`2024.06.09.0...2024.06.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.09.0...2024.06.10.0)
- - -
## 2024.06.09.0
### Miscellaneous Tasks
- Payment ops changes ([#795](https://github.com/juspay/hyperswitch-control-center/pull/795)) ([`f3f3a1c`](https://github.com/juspay/hyperswitch-control-center/commit/f3f3a1c0198c29dab01a7839c741799ff762b9c4))
**Full Changelog:** [`2024.06.07.1...2024.06.09.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.07.1...2024.06.09.0)
- - -
## 2024.06.07.1
### Bug Fixes
- Removed required fields for metadata cybersource ([#803](https://github.com/juspay/hyperswitch-control-center/pull/803)) ([`7a145c9`](https://github.com/juspay/hyperswitch-control-center/commit/7a145c9a3808543e976a499c019b64ca27971b48))
### Refactors
- Auth refactor ([#791](https://github.com/juspay/hyperswitch-control-center/pull/791)) ([`931d8f0`](https://github.com/juspay/hyperswitch-control-center/commit/931d8f0018db963c7c93902d37151f339cf62653))
### Miscellaneous Tasks
- Date range change ([#796](https://github.com/juspay/hyperswitch-control-center/pull/796)) ([`b738629`](https://github.com/juspay/hyperswitch-control-center/commit/b7386297d2bbebcc1417aa4ede1591247bc54d43))
**Full Changelog:** [`2024.06.07.0...2024.06.07.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.07.0...2024.06.07.1)
- - -
## 2024.06.07.0
### Features
- Mifinity connector addition ([#798](https://github.com/juspay/hyperswitch-control-center/pull/798)) ([`230f2a1`](https://github.com/juspay/hyperswitch-control-center/commit/230f2a16d55d2b378d6d45358e5f82313d532eeb))
**Full Changelog:** [`2024.06.06.2...2024.06.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.06.2...2024.06.07.0)
- - -
## 2024.06.06.2
### Bug Fixes
- Apple pay map type ([#801](https://github.com/juspay/hyperswitch-control-center/pull/801)) ([`7da9f5b`](https://github.com/juspay/hyperswitch-control-center/commit/7da9f5b0fd8ac248f32ba105d9d729c1db004ac8))
**Full Changelog:** [`2024.06.06.1...2024.06.06.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.06.1...2024.06.06.2)
- - -
## 2024.06.06.1
### Bug Fixes
- Apple pay metadata ([#800](https://github.com/juspay/hyperswitch-control-center/pull/800)) ([`f093c61`](https://github.com/juspay/hyperswitch-control-center/commit/f093c6196e5d45519a5856d857b1eba24b142242))
**Full Changelog:** [`2024.06.06.0...2024.06.06.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.06.0...2024.06.06.1)
- - -
## 2024.06.06.0
### Features
- Adyenplatform integ ([#787](https://github.com/juspay/hyperswitch-control-center/pull/787)) ([`336be2e`](https://github.com/juspay/hyperswitch-control-center/commit/336be2e824835a7341610e2c29b51b1b672d85cd))
**Full Changelog:** [`2024.06.05.2...2024.06.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.05.2...2024.06.06.0)
- - -
## 2024.06.05.2
### Miscellaneous Tasks
- Chore: enable klarna for live ([#719](https://github.com/juspay/hyperswitch-control-center/pull/719)) ([`b3b2e08`](https://github.com/juspay/hyperswitch-control-center/commit/b3b2e0875a904bcc8d5ace892a5b7bdf571af03f))
**Full Changelog:** [`2024.06.05.1...2024.06.05.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.05.1...2024.06.05.2)
- - -
## 2024.06.05.1
### Bug Fixes
- Totp bug fixes with accept invite in home ([#788](https://github.com/juspay/hyperswitch-control-center/pull/788)) ([`8add1ee`](https://github.com/juspay/hyperswitch-control-center/commit/8add1eec77c47712b3823317b2a01dd1ddf3f835))
### Miscellaneous Tasks
- Fix refund filters ([#790](https://github.com/juspay/hyperswitch-control-center/pull/790)) ([`1ad6650`](https://github.com/juspay/hyperswitch-control-center/commit/1ad6650b54edb09844dc84596476988ca064c3ac))
**Full Changelog:** [`2024.06.05.0...2024.06.05.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.05.0...2024.06.05.1)
- - -
## 2024.06.05.0
### Miscellaneous Tasks
- Allow metchant to select different paypal paymentmenthod typ ([#785](https://github.com/juspay/hyperswitch-control-center/pull/785)) ([`4aaad80`](https://github.com/juspay/hyperswitch-control-center/commit/4aaad80234f46bba46a5b6c02b9964675d4d3da8))
**Full Changelog:** [`2024.06.04.2...2024.06.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.04.2...2024.06.05.0)
- - -
## 2024.06.04.2
### Features
- Payouts ([#774](https://github.com/juspay/hyperswitch-control-center/pull/774)) ([`f47a0b6`](https://github.com/juspay/hyperswitch-control-center/commit/f47a0b68126be2a7f60606ad4658af3e7d7fbc1f))
**Full Changelog:** [`2024.06.04.1...2024.06.04.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.04.1...2024.06.04.2)
- - -
## 2024.06.04.1
### Features
- Regenerate recovery codes ([#776](https://github.com/juspay/hyperswitch-control-center/pull/776)) ([`d34f858`](https://github.com/juspay/hyperswitch-control-center/commit/d34f858a4f69bdcd1bee199e732aa87a2540d8f0))
### Bug Fixes
- Refunds filters url fix ([#779](https://github.com/juspay/hyperswitch-control-center/pull/779)) ([`7e06ef7`](https://github.com/juspay/hyperswitch-control-center/commit/7e06ef789963d03762ae77a9cf53f89cfd2c1f12))
- Pageloader wrapper error case logout button addition ([#780](https://github.com/juspay/hyperswitch-control-center/pull/780)) ([`4347f8d`](https://github.com/juspay/hyperswitch-control-center/commit/4347f8d5e7f9bd8a19860a576a5998f03b894845))
**Full Changelog:** [`2024.06.04.0...2024.06.04.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.04.0...2024.06.04.1)
- - -
## 2024.06.04.0
### Features
- Reset-totp inside control-center ([#759](https://github.com/juspay/hyperswitch-control-center/pull/759)) ([`b3280ef`](https://github.com/juspay/hyperswitch-control-center/commit/b3280ef69b59fa48866306cf9c8587052c929f64))
### Bug Fixes
- Disable sdk show preview ([#768](https://github.com/juspay/hyperswitch-control-center/pull/768)) ([`639ca09`](https://github.com/juspay/hyperswitch-control-center/commit/639ca09a9e59e630414cb4bcd716314df467e4d5))
- Github workflows ([#773](https://github.com/juspay/hyperswitch-control-center/pull/773)) ([`e24fa1e`](https://github.com/juspay/hyperswitch-control-center/commit/e24fa1eec06aefc756687f0effccccee3a8de17c))
### Miscellaneous Tasks
- Update paypal metadata ([#770](https://github.com/juspay/hyperswitch-control-center/pull/770)) ([`98b0b00`](https://github.com/juspay/hyperswitch-control-center/commit/98b0b003679e4309bf0291fac345e0e5fbcaf14a))
**Full Changelog:** [`2024.06.02.0...2024.06.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.06.02.0...2024.06.04.0)
- - -
## 2024.06.02.0
### Bug Fixes
- Pay now button validations ([#754](https://github.com/juspay/hyperswitch-control-center/pull/754)) ([`bf32df5`](https://github.com/juspay/hyperswitch-control-center/commit/bf32df5494eb84bdfea63728cf4b3f7879f099d9))
**Full Changelog:** [`2024.05.30.1...2024.06.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.30.1...2024.06.02.0)
- - -
## 2024.05.30.1
### Miscellaneous Tasks
- Update placeholder klarna ([#765](https://github.com/juspay/hyperswitch-control-center/pull/765)) ([`6afc98d`](https://github.com/juspay/hyperswitch-control-center/commit/6afc98d206ef90c125758ea9d789dba3916a10ba))
**Full Changelog:** [`2024.05.30.0...2024.05.30.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.30.0...2024.05.30.1)
- - -
## 2024.05.30.0
### Miscellaneous Tasks
- Update klaran metadata ([#762](https://github.com/juspay/hyperswitch-control-center/pull/762)) ([`41622fc`](https://github.com/juspay/hyperswitch-control-center/commit/41622fc20526d1cd81e0f9726a4ccfc2d0c2237d))
- Remove currency metrics ([#761](https://github.com/juspay/hyperswitch-control-center/pull/761)) ([`6f251e1`](https://github.com/juspay/hyperswitch-control-center/commit/6f251e1b28f96f9912613e7dbea7f811c616f816))
**Full Changelog:** [`2024.05.29.4...2024.05.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.29.4...2024.05.30.0)
- - -
## 2024.05.29.4
### Miscellaneous Tasks
- UI fix audit ([#753](https://github.com/juspay/hyperswitch-control-center/pull/753)) ([`778839a`](https://github.com/juspay/hyperswitch-control-center/commit/778839a6de1a53fccd71fcc94b5c38288d7d91cf))
**Full Changelog:** [`2024.05.29.3...2024.05.29.4`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.29.3...2024.05.29.4)
- - -
## 2024.05.29.3
### Bug Fixes
- Configure pmts redirect url fix ([#752](https://github.com/juspay/hyperswitch-control-center/pull/752)) ([`6f6d735`](https://github.com/juspay/hyperswitch-control-center/commit/6f6d735c4745f7d3fea23bb5d1afb92f201004e3))
**Full Changelog:** [`2024.05.29.2...2024.05.29.3`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.29.2...2024.05.29.3)
- - -
## 2024.05.29.2
### Miscellaneous Tasks
- Eventlog UI shown in expanded state ([#750](https://github.com/juspay/hyperswitch-control-center/pull/750)) ([`f243ce0`](https://github.com/juspay/hyperswitch-control-center/commit/f243ce05a27047783ff7cb494e948e113f387b4d))
**Full Changelog:** [`2024.05.29.1...2024.05.29.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.29.1...2024.05.29.2)
- - -
## 2024.05.29.1
### Bug Fixes
- Amount to capture ([#738](https://github.com/juspay/hyperswitch-control-center/pull/738)) ([`e3599d3`](https://github.com/juspay/hyperswitch-control-center/commit/e3599d314e3493e23d47ad855a34802b26f14bb0))
- Filter end time ([#744](https://github.com/juspay/hyperswitch-control-center/pull/744)) ([`6e8a665`](https://github.com/juspay/hyperswitch-control-center/commit/6e8a665cab3edd4264ae6b2bc5fb9a68d76af588))
- Totp phase2 bugfixes ([#747](https://github.com/juspay/hyperswitch-control-center/pull/747)) ([`627547e`](https://github.com/juspay/hyperswitch-control-center/commit/627547ef9c283fcc163b4dfa2a940891f6ca0417))
### Miscellaneous Tasks
- Move info to Tooltip ([#736](https://github.com/juspay/hyperswitch-control-center/pull/736)) ([`2accc9e`](https://github.com/juspay/hyperswitch-control-center/commit/2accc9ec0b4121bba7fb81ef1d2f5f5949aad65b))
- Events and logs ui changes ([#735](https://github.com/juspay/hyperswitch-control-center/pull/735)) ([`5879c37`](https://github.com/juspay/hyperswitch-control-center/commit/5879c37af886e71fd072af70581fd03fac853a80))
- Update paypal payment experience ([#748](https://github.com/juspay/hyperswitch-control-center/pull/748)) ([`a27353f`](https://github.com/juspay/hyperswitch-control-center/commit/a27353f9c013f5f403c3b0ba65e6b3068c4109f6))
**Full Changelog:** [`2024.05.29.0...2024.05.29.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.29.0...2024.05.29.1)
- - -
## 2024.05.29.0
### Bug Fixes
- Production access form fields addition ([#731](https://github.com/juspay/hyperswitch-control-center/pull/731)) ([`7ec5828`](https://github.com/juspay/hyperswitch-control-center/commit/7ec5828b4a501ed16935d9a6ab5d65add171954b))
- Dummy connector warnings ([#734](https://github.com/juspay/hyperswitch-control-center/pull/734)) ([`69bf502`](https://github.com/juspay/hyperswitch-control-center/commit/69bf5025742805135fc54e23319c23132f2cd564))
**Full Changelog:** [`2024.05.28.0...2024.05.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.28.0...2024.05.29.0)
- - -
## 2024.05.28.0
### Features
- Api enhancement for totp flow and recovery code input ([#713](https://github.com/juspay/hyperswitch-control-center/pull/713)) ([`7268044`](https://github.com/juspay/hyperswitch-control-center/commit/726804470e37b886646342f2040133c62697c3ae))
### Bug Fixes
- Authentication analytics funnel ([#726](https://github.com/juspay/hyperswitch-control-center/pull/726)) ([`e0e0314`](https://github.com/juspay/hyperswitch-control-center/commit/e0e0314e0e174bbd76525d3a7cf23290409fc4a9))
- Intermittent black screen while switching merchant ([#725](https://github.com/juspay/hyperswitch-control-center/pull/725)) ([`3458b53`](https://github.com/juspay/hyperswitch-control-center/commit/3458b535778ebd56523b2fef12714ed5535146d1))
### Miscellaneous Tasks
- Profile page component addition for 2fa ([#722](https://github.com/juspay/hyperswitch-control-center/pull/722)) ([`81eee64`](https://github.com/juspay/hyperswitch-control-center/commit/81eee64b3f4e3d2329d584e694fd7746c79dabd3))
- Page title changes ([#729](https://github.com/juspay/hyperswitch-control-center/pull/729)) ([`e286d1f`](https://github.com/juspay/hyperswitch-control-center/commit/e286d1f058b7d0e7e190c8ce5c34e598e199a16d))
**Full Changelog:** [`2024.05.27.0...2024.05.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.27.0...2024.05.28.0)
- - -
## 2024.05.27.0
### Features
- Added client cols in payment analytics and payment attempt entity ([#710](https://github.com/juspay/hyperswitch-control-center/pull/710)) ([`2e471cc`](https://github.com/juspay/hyperswitch-control-center/commit/2e471ccfdc6898a60fcafb7dd634e53623baa647))
### Miscellaneous Tasks
- Recovery code component ([#715](https://github.com/juspay/hyperswitch-control-center/pull/715)) ([`a3093b0`](https://github.com/juspay/hyperswitch-control-center/commit/a3093b06eafbadef6b06322d1f1f21c7da0f7ad4))
**Full Changelog:** [`2024.05.26.0...2024.05.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.26.0...2024.05.27.0)
- - -
## 2024.05.26.0
### Bug Fixes
- User analytics fix ([#709](https://github.com/juspay/hyperswitch-control-center/pull/709)) ([`2e03162`](https://github.com/juspay/hyperswitch-control-center/commit/2e03162dd914d7e161b39e6d127040525804bf0b))
### Miscellaneous Tasks
- Download access code component ([#707](https://github.com/juspay/hyperswitch-control-center/pull/707)) ([`82f145c`](https://github.com/juspay/hyperswitch-control-center/commit/82f145cf0307a56afb546354f1d0146d51266792))
**Full Changelog:** [`2024.05.24.0...2024.05.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.24.0...2024.05.26.0)
- - -
## 2024.05.24.0
### Features
- Added authentication details block in payment details ([#703](https://github.com/juspay/hyperswitch-control-center/pull/703)) ([`89c7108`](https://github.com/juspay/hyperswitch-control-center/commit/89c7108c309a3273529f97c96f8f42604009751f))
### Bug Fixes
- Sdk country currency issue ([#704](https://github.com/juspay/hyperswitch-control-center/pull/704)) ([`f7a9250`](https://github.com/juspay/hyperswitch-control-center/commit/f7a925004b1033eff1a4f0887120159c8f8578a0))
### Miscellaneous Tasks
- Fix console warning ([#702](https://github.com/juspay/hyperswitch-control-center/pull/702)) ([`ae03248`](https://github.com/juspay/hyperswitch-control-center/commit/ae032488b0322fdca0ef6667d0c70c55de755bcf))
**Full Changelog:** [`2024.05.23.1...2024.05.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.23.1...2024.05.24.0)
- - -
## 2024.05.23.1
### Bug Fixes
- Global search in firefox ([#692](https://github.com/juspay/hyperswitch-control-center/pull/692)) ([`866c899`](https://github.com/juspay/hyperswitch-control-center/commit/866c8996f420f7655199cf94108ef974e7983607))
- Apple pay connector integration ([#701](https://github.com/juspay/hyperswitch-control-center/pull/701)) ([`3adc1e9`](https://github.com/juspay/hyperswitch-control-center/commit/3adc1e97643168c0c09da488d439c94656796976))
- Payment refunds api optimization ([#697](https://github.com/juspay/hyperswitch-control-center/pull/697)) ([`22268ef`](https://github.com/juspay/hyperswitch-control-center/commit/22268ef59b491283ea9d4e182aef9dc2af7cb1d1))
### Refactors
- Totp elements separation ([#696](https://github.com/juspay/hyperswitch-control-center/pull/696)) ([`41b9d0d`](https://github.com/juspay/hyperswitch-control-center/commit/41b9d0d79b4d4dd969ff727b0ffe1d9f8e5b2e6b))
### Miscellaneous Tasks
- Change label for add filters menu ([#690](https://github.com/juspay/hyperswitch-control-center/pull/690)) ([`928ccf6`](https://github.com/juspay/hyperswitch-control-center/commit/928ccf6e1d577aad7d41b1d7b1debaa2d2c741d2))
- Minor ui fixes in filters ([#699](https://github.com/juspay/hyperswitch-control-center/pull/699)) ([`f4ba4fc`](https://github.com/juspay/hyperswitch-control-center/commit/f4ba4fc29ce104e9f8bbe4e476176bfd1c473693))
**Full Changelog:** [`2024.05.23.0...2024.05.23.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.23.0...2024.05.23.1)
- - -
## 2024.05.23.0
### Miscellaneous Tasks
- Filter & list api for payment & refunds ([#620](https://github.com/juspay/hyperswitch-control-center/pull/620)) ([`5900070`](https://github.com/juspay/hyperswitch-control-center/commit/5900070eff25b78ad9c3cdf2d46b14c77b627285))
**Full Changelog:** [`2024.05.22.1...2024.05.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.22.1...2024.05.23.0)
- - -
## 2024.05.22.1
### Features
- Authentication analytics ([#678](https://github.com/juspay/hyperswitch-control-center/pull/678)) ([`09f5eb7`](https://github.com/juspay/hyperswitch-control-center/commit/09f5eb75c8a25729cd2894c4d6dcde00285d28b8))
### Miscellaneous Tasks
- Payment filter modification ([#683](https://github.com/juspay/hyperswitch-control-center/pull/683)) ([`5ff2aef`](https://github.com/juspay/hyperswitch-control-center/commit/5ff2aef82a4582dd4b55b031702d80b7517a23f2))
- Refunds table and force sync button for refunds view ([#654](https://github.com/juspay/hyperswitch-control-center/pull/654)) ([`c008487`](https://github.com/juspay/hyperswitch-control-center/commit/c008487eee028f9b82c076de0e8c7779dc989fdd))
**Full Changelog:** [`2024.05.22.0...2024.05.22.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.22.0...2024.05.22.1)
- - -
## 2024.05.22.0
### Bug Fixes
- Added dummy connector image ([#680](https://github.com/juspay/hyperswitch-control-center/pull/680)) ([`50bbf60`](https://github.com/juspay/hyperswitch-control-center/commit/50bbf608de2dfaddc299195637bf0495ef3c137c))
- Checkbox click & text click select custom role ([#666](https://github.com/juspay/hyperswitch-control-center/pull/666)) ([`c9147ec`](https://github.com/juspay/hyperswitch-control-center/commit/c9147ec8bdf87cc1452198492bf7f20402c358b3))
- Sdk return url ([#684](https://github.com/juspay/hyperswitch-control-center/pull/684)) ([`1103381`](https://github.com/juspay/hyperswitch-control-center/commit/110338180f941c5bfcd503b38922d6cba3c96993))
- Input box issue fix ([#686](https://github.com/juspay/hyperswitch-control-center/pull/686)) ([`5e229c9`](https://github.com/juspay/hyperswitch-control-center/commit/5e229c9986c65a3130d468bcff054f74f8bffb2f))
### Miscellaneous Tasks
- Frm type changes ([#679](https://github.com/juspay/hyperswitch-control-center/pull/679)) ([`8a5bf2c`](https://github.com/juspay/hyperswitch-control-center/commit/8a5bf2cdf3841b7ed1c618719c9dca38e14b514d))
**Full Changelog:** [`2024.05.21.0...2024.05.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.21.0...2024.05.22.0)
- - -
## 2024.05.21.0
### Bug Fixes
- TOTP setup access-code changes ([#668](https://github.com/juspay/hyperswitch-control-center/pull/668)) ([`6784a85`](https://github.com/juspay/hyperswitch-control-center/commit/6784a859a1b55b6a7edf40b12857881d7c02fd46))
- Switch merchant business name modal fix ([#670](https://github.com/juspay/hyperswitch-control-center/pull/670)) ([`c5689d1`](https://github.com/juspay/hyperswitch-control-center/commit/c5689d17ea1bc2fa45b434c3b7b095bfab0c59cb))
- Icons are not working on firefox ([#673](https://github.com/juspay/hyperswitch-control-center/pull/673)) ([`0e46add`](https://github.com/juspay/hyperswitch-control-center/commit/0e46add797727e1244df4aacf6f4edabbc6979a4))
- Global search not working in Firefox ([#677](https://github.com/juspay/hyperswitch-control-center/pull/677)) ([`40a0380`](https://github.com/juspay/hyperswitch-control-center/commit/40a0380f16b604e71ac8f937a21c69a23dc5348d))
- Favicon missing in firebox ([#675](https://github.com/juspay/hyperswitch-control-center/pull/675)) ([`3f628cb`](https://github.com/juspay/hyperswitch-control-center/commit/3f628cbfff366028d1387e2a01c8d030e7b12cab))
**Full Changelog:** [`2024.05.20.0...2024.05.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.20.0...2024.05.21.0)
- - -
## 2024.05.20.0
### Bug Fixes
- Redirect to be send inside confirm params ([#664](https://github.com/juspay/hyperswitch-control-center/pull/664)) ([`db770dc`](https://github.com/juspay/hyperswitch-control-center/commit/db770dcd63dbb4a141758d9fd9117208d99b10f5))
**Full Changelog:** [`2024.05.19.0...2024.05.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.19.0...2024.05.20.0)
- - -
## 2024.05.19.0
### Miscellaneous Tasks
- Refactor payment hooks ([#661](https://github.com/juspay/hyperswitch-control-center/pull/661)) ([`9688b41`](https://github.com/juspay/hyperswitch-control-center/commit/9688b41a3543e5846e85f5ff068a3046a65a60b7))
- Payment method table filters ([#659](https://github.com/juspay/hyperswitch-control-center/pull/659)) ([`e1e25da`](https://github.com/juspay/hyperswitch-control-center/commit/e1e25da9dc58173b5bb41965f34e4a3fc638a122))
**Full Changelog:** [`2024.05.17.0...2024.05.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.17.0...2024.05.19.0)
- - -
## 2024.05.17.0
### Bug Fixes
- Totp switch merchant bug fix ([#655](https://github.com/juspay/hyperswitch-control-center/pull/655)) ([`d1830c5`](https://github.com/juspay/hyperswitch-control-center/commit/d1830c5da34e11cec8eaca62ed61c3f5726eb921))
### Miscellaneous Tasks
- Chore: added riskifyd ([#643](https://github.com/juspay/hyperswitch-control-center/pull/643)) ([`5ee1616`](https://github.com/juspay/hyperswitch-control-center/commit/5ee16164dc9ec89136f766703e2c94d95373d68f))
**Full Changelog:** [`2024.05.16.0...2024.05.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.16.0...2024.05.17.0)
- - -
## 2024.05.16.0
### Miscellaneous Tasks
- Add workflow to check linked issue ([#650](https://github.com/juspay/hyperswitch-control-center/pull/650)) ([`840ef97`](https://github.com/juspay/hyperswitch-control-center/commit/840ef97e6edda6f8f972f5b965312f3a613f1775))
- Update cypress workflow ([#652](https://github.com/juspay/hyperswitch-control-center/pull/652)) ([`69a1031`](https://github.com/juspay/hyperswitch-control-center/commit/69a1031196d6487117da456934eca4c5c23e10f6))
- Update makefile ([`ad380c3`](https://github.com/juspay/hyperswitch-control-center/commit/ad380c3274fb028cde804d5e6176b2f2a0833442))
**Full Changelog:** [`2024.05.15.1...2024.05.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.15.1...2024.05.16.0)
- - -
## 2024.05.15.1
### Features
- Feat: integrate totp auth ([#640](https://github.com/juspay/hyperswitch-control-center/pull/640)) ([`2da7d26`](https://github.com/juspay/hyperswitch-control-center/commit/2da7d26f894853917921da17e3dc14f718b9effb))
### Miscellaneous Tasks
- Analytics modification ([#634](https://github.com/juspay/hyperswitch-control-center/pull/634)) ([`511fe09`](https://github.com/juspay/hyperswitch-control-center/commit/511fe09c07bcd04944812c10e27c8966c58f6dab))
**Full Changelog:** [`2024.05.15.0...2024.05.15.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.15.0...2024.05.15.1)
- - -
## 2024.05.15.0
### Miscellaneous Tasks
- Filter refactor ([#627](https://github.com/juspay/hyperswitch-control-center/pull/627)) ([`a9f138a`](https://github.com/juspay/hyperswitch-control-center/commit/a9f138af231f6480b209065bea12e3537e25b0d4))
**Full Changelog:** [`2024.05.14.0...2024.05.15.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.14.0...2024.05.15.0)
- - -
## 2024.05.14.0
### Miscellaneous Tasks
- Convert get url to hook ([#635](https://github.com/juspay/hyperswitch-control-center/pull/635)) ([`75bfdd8`](https://github.com/juspay/hyperswitch-control-center/commit/75bfdd87c5c76c637b63ec8c4cb5bb7d1b4bda05))
**Full Changelog:** [`2024.05.12.0...2024.05.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.12.0...2024.05.14.0)
- - -
## 2024.05.12.0
### Features
- Changes for new auth flow ([#630](https://github.com/juspay/hyperswitch-control-center/pull/630)) ([`aab2dd2`](https://github.com/juspay/hyperswitch-control-center/commit/aab2dd273cd7044a4efb634e7a296eba3831bda7))
**Full Changelog:** [`2024.05.10.0...2024.05.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.10.0...2024.05.12.0)
- - -
## 2024.05.10.0
### Features
- Bambora to prod ([#629](https://github.com/juspay/hyperswitch-control-center/pull/629)) ([`822d7aa`](https://github.com/juspay/hyperswitch-control-center/commit/822d7aabdcfccc83031360df722ec5dba74e246e))
### Miscellaneous Tasks
- Disable agreement and onboarding survey when branding is enabled ([`a851334`](https://github.com/juspay/hyperswitch-control-center/commit/a8513341ec9ff331c9c1841ef386d52293a4fd68))
**Full Changelog:** [`2024.05.08.0...2024.05.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.08.0...2024.05.10.0)
- - -
## 2024.05.08.0
### Miscellaneous Tasks
- Auth provider changes ([#625](https://github.com/juspay/hyperswitch-control-center/pull/625)) ([`4db2372`](https://github.com/juspay/hyperswitch-control-center/commit/4db23721e2573673b1a70363141d237171c2c26e))
**Full Changelog:** [`2024.05.07.0...2024.05.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.07.0...2024.05.08.0)
- - -
## 2024.05.07.0
### Miscellaneous Tasks
- Added new payout connectors ([#623](https://github.com/juspay/hyperswitch-control-center/pull/623)) ([`4c1a399`](https://github.com/juspay/hyperswitch-control-center/commit/4c1a399f506c77a3ada70cfa3a9bbc8732486107))
- React QR code library addition ([#617](https://github.com/juspay/hyperswitch-control-center/pull/617)) ([`c28c302`](https://github.com/juspay/hyperswitch-control-center/commit/c28c302241847aa75516dfa3d0deaae9a5ca94b2))
**Full Changelog:** [`2024.05.06.0...2024.05.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.06.0...2024.05.07.0)
- - -
## 2024.05.06.0
### Miscellaneous Tasks
- Update wasm ([#621](https://github.com/juspay/hyperswitch-control-center/pull/621)) ([`2dc1c0a`](https://github.com/juspay/hyperswitch-control-center/commit/2dc1c0ad70e419486b8d993756dde0af11b00666))
**Full Changelog:** [`2024.05.03.0...2024.05.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.05.03.0...2024.05.06.0)
- - -
## 2024.05.03.0
### Bug Fixes
- Filter fix ([#618](https://github.com/juspay/hyperswitch-control-center/pull/618)) ([`562195e`](https://github.com/juspay/hyperswitch-control-center/commit/562195ed649851486c7f698ddc68ac2045966f75))
- Updated calendly link ([#615](https://github.com/juspay/hyperswitch-control-center/pull/615)) ([`28592bd`](https://github.com/juspay/hyperswitch-control-center/commit/28592bde6e1facb72baeedad892958844b9331ed))
- Accept invite in home fix ([#619](https://github.com/juspay/hyperswitch-control-center/pull/619)) ([`d127cba`](https://github.com/juspay/hyperswitch-control-center/commit/d127cbaac21c0aa2afe645c9460eaee9dc516d1b))
**Full Changelog:** [`2024.04.29.0...2024.05.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.29.0...2024.05.03.0)
- - -
## 2024.04.29.0
### Bug Fixes
- Prod onboarding url issue ([#614](https://github.com/juspay/hyperswitch-control-center/pull/614)) ([`c915e58`](https://github.com/juspay/hyperswitch-control-center/commit/c915e581357366a32868f5efd3ab04a12cba0930))
### Miscellaneous Tasks
- Config feature flags on run time ([#588](https://github.com/juspay/hyperswitch-control-center/pull/588)) ([`946c06a`](https://github.com/juspay/hyperswitch-control-center/commit/946c06a128cc39466df2cef96fcd6cea7fffcc20))
**Full Changelog:** [`2024.04.28.0...2024.04.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.28.0...2024.04.29.0)
- - -
## 2024.04.28.0
### Features
- Profile name update ([#610](https://github.com/juspay/hyperswitch-control-center/pull/610)) ([`4b73368`](https://github.com/juspay/hyperswitch-control-center/commit/4b7336816f5fc0c562248bb75028c8bc7554734d))
### Bug Fixes
- Onboarding survey api call fix ([#609](https://github.com/juspay/hyperswitch-control-center/pull/609)) ([`405dd1a`](https://github.com/juspay/hyperswitch-control-center/commit/405dd1a90f1e156d63ccb554f52f3394c5952574))
**Full Changelog:** [`2024.04.25.0...2024.04.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.25.0...2024.04.28.0)
- - -
## 2024.04.25.0
### Features
- Onboarding survey fe changes ([#593](https://github.com/juspay/hyperswitch-control-center/pull/593)) ([`7f891c9`](https://github.com/juspay/hyperswitch-control-center/commit/7f891c947b857aaa051c51ef0446df1b6e6f35a9))
### Bug Fixes
- Fix: global search ux ([#601](https://github.com/juspay/hyperswitch-control-center/pull/601)) ([`4f5155c`](https://github.com/juspay/hyperswitch-control-center/commit/4f5155c7833a13ded76105f5534e4cb39303c0f4))
**Full Changelog:** [`2024.04.24.2...2024.04.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.24.2...2024.04.25.0)
- - -
## 2024.04.24.2
### Bug Fixes
- Empty box in connector fix ([#608](https://github.com/juspay/hyperswitch-control-center/pull/608)) ([`202e340`](https://github.com/juspay/hyperswitch-control-center/commit/202e34041abbcbfe8ccf0ab7596b9d72f15279c3))
**Full Changelog:** [`2024.04.24.1...2024.04.24.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.24.1...2024.04.24.2)
- - -
## 2024.04.24.1
### Features
- Added netcetera threeds authenticator ([#605](https://github.com/juspay/hyperswitch-control-center/pull/605)) ([`3527e00`](https://github.com/juspay/hyperswitch-control-center/commit/3527e00c96957c6ea437d14dc374836556abb2aa))
### Bug Fixes
- Netcetera icon added ([#607](https://github.com/juspay/hyperswitch-control-center/pull/607)) ([`b4501ca`](https://github.com/juspay/hyperswitch-control-center/commit/b4501cab70b6fa172317e15e04991be1cf8d89c6))
**Full Changelog:** [`2024.04.24.0...2024.04.24.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.24.0...2024.04.24.1)
- - -
## 2024.04.24.0
### Features
- Authorize.net in prod ([#606](https://github.com/juspay/hyperswitch-control-center/pull/606)) ([`6de72a6`](https://github.com/juspay/hyperswitch-control-center/commit/6de72a6a432baa818741cfd77202238da617b4c7))
**Full Changelog:** [`2024.04.23.2...2024.04.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.23.2...2024.04.24.0)
- - -
## 2024.04.23.2
### Bug Fixes
- Base url show payments fix ([#603](https://github.com/juspay/hyperswitch-control-center/pull/603)) ([`f774020`](https://github.com/juspay/hyperswitch-control-center/commit/f774020650198a6adb8848c3203ed2f5193d2225))
**Full Changelog:** [`2024.04.23.1...2024.04.23.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.23.1...2024.04.23.2)
- - -
## 2024.04.23.1
### Bug Fixes
- Agreement version change ([#600](https://github.com/juspay/hyperswitch-control-center/pull/600)) ([`f819f26`](https://github.com/juspay/hyperswitch-control-center/commit/f819f26f30e8084f4c5c0bbe21937987114ae322))
### Miscellaneous Tasks
- Update connector metadata for nmi and 3ds ([#602](https://github.com/juspay/hyperswitch-control-center/pull/602)) ([`b9f8499`](https://github.com/juspay/hyperswitch-control-center/commit/b9f8499c6c72f51e00c488bf9474757eb027635e))
**Full Changelog:** [`2024.04.23.0...2024.04.23.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.23.0...2024.04.23.1)
- - -
## 2024.04.23.0
### Features
- Base url change ([#595](https://github.com/juspay/hyperswitch-control-center/pull/595)) ([`7c3bf0c`](https://github.com/juspay/hyperswitch-control-center/commit/7c3bf0c7bb79d71a49c2e2031a32b7c190a4bf7c))
### Miscellaneous Tasks
- Profile page changes ([#566](https://github.com/juspay/hyperswitch-control-center/pull/566)) ([`6f2dbb4`](https://github.com/juspay/hyperswitch-control-center/commit/6f2dbb46e88a8bc7b7d5e4ceb304491a71b71159))
**Full Changelog:** [`2024.04.18.0...2024.04.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.18.0...2024.04.23.0)
- - -
## 2024.04.18.0
### Features
- Support merchant business country ([`d365865`](https://github.com/juspay/hyperswitch-control-center/commit/d3658651e911e632c604419df9951c1bd5d15f39))
### Bug Fixes
- Make applepay merchant business country required fields ([#592](https://github.com/juspay/hyperswitch-control-center/pull/592)) ([`b50cf5a`](https://github.com/juspay/hyperswitch-control-center/commit/b50cf5a1fd7402274f2a6b4b20952ad4d6280c9a))
- Added dummy connector image ([#591](https://github.com/juspay/hyperswitch-control-center/pull/591)) ([`63d30d6`](https://github.com/juspay/hyperswitch-control-center/commit/63d30d69c65d9e9f8944cc9bcc92720126bfc62f))
**Full Changelog:** [`2024.04.17.0...2024.04.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.17.0...2024.04.18.0)
- - -
## 2024.04.17.0
### Features
- Signout api call ([#583](https://github.com/juspay/hyperswitch-control-center/pull/583)) ([`f03f33f`](https://github.com/juspay/hyperswitch-control-center/commit/f03f33f6795ebad0db0cfb283e9b1dd6d56eb0c7))
### Bug Fixes
- Ui button css changes ([#584](https://github.com/juspay/hyperswitch-control-center/pull/584)) ([`627c8f4`](https://github.com/juspay/hyperswitch-control-center/commit/627c8f4a3a35ef6524e9ade0be6952b523c38647))
- Css changes ([#586](https://github.com/juspay/hyperswitch-control-center/pull/586)) ([`0522921`](https://github.com/juspay/hyperswitch-control-center/commit/05229216a28cb3c8f551a294852147873a24a081))
### Miscellaneous Tasks
- Support merchant business country apple pay ([#587](https://github.com/juspay/hyperswitch-control-center/pull/587)) ([`0c4c6ad`](https://github.com/juspay/hyperswitch-control-center/commit/0c4c6adffea7ca0ba80e4e4e66810c8ce647c932))
**Full Changelog:** [`2024.04.16.0...2024.04.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.16.0...2024.04.17.0)
- - -
## 2024.04.16.0
### Miscellaneous Tasks
- Dummy processor flow ([#527](https://github.com/juspay/hyperswitch-control-center/pull/527)) ([`321e080`](https://github.com/juspay/hyperswitch-control-center/commit/321e08013df672280c0f53d4b30479da46581d6b))
**Full Changelog:** [`2024.04.15.0...2024.04.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.15.0...2024.04.16.0)
- - -
## 2024.04.15.0
### Features
- Zsl processor addition ([#578](https://github.com/juspay/hyperswitch-control-center/pull/578)) ([`f2403b0`](https://github.com/juspay/hyperswitch-control-center/commit/f2403b01fca06a2318ba062b6479ee1c2314d2d6))
### Miscellaneous Tasks
- Tailwind mutlitenancy config ([#577](https://github.com/juspay/hyperswitch-control-center/pull/577)) ([`0935d74`](https://github.com/juspay/hyperswitch-control-center/commit/0935d7451ab4dfd33fe8dd6595a1c631c28e00b1))
- Audit log ui fixes ([#582](https://github.com/juspay/hyperswitch-control-center/pull/582)) ([`bedbcb2`](https://github.com/juspay/hyperswitch-control-center/commit/bedbcb216793409d7082b8b926c10d9c8f57c37b))
**Full Changelog:** [`2024.04.10.0...2024.04.15.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.10.0...2024.04.15.0)
- - -
## 2024.04.10.0
### Bug Fixes
- Webhook url and return url regex change ([#572](https://github.com/juspay/hyperswitch-control-center/pull/572)) ([`09e1ca3`](https://github.com/juspay/hyperswitch-control-center/commit/09e1ca30c3814c0b6ebba4dee27d4a5bb93e6038))
### Miscellaneous Tasks
- Checkbox input type added ([#567](https://github.com/juspay/hyperswitch-control-center/pull/567)) ([`d5a22c0`](https://github.com/juspay/hyperswitch-control-center/commit/d5a22c0446567b6b3086ae5478d37ac4e6fdfe1e))
**Full Changelog:** [`2024.04.08.0...2024.04.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.08.0...2024.04.10.0)
- - -
## 2024.04.08.0
### Bug Fixes
- Return url and webhook url regex change ([#569](https://github.com/juspay/hyperswitch-control-center/pull/569)) ([`57a2f11`](https://github.com/juspay/hyperswitch-control-center/commit/57a2f11a61bc1f46811b220c11e4a5a116a63ced))
**Full Changelog:** [`2024.04.04.0...2024.04.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.04.0...2024.04.08.0)
- - -
## 2024.04.04.0
### Bug Fixes
- Billwerk-icon change ([#563](https://github.com/juspay/hyperswitch-control-center/pull/563)) ([`e047482`](https://github.com/juspay/hyperswitch-control-center/commit/e047482f72d3b6e51ba5092d84d9b6aa35fe87e9))
- Configure pmts page issue fix ([#564](https://github.com/juspay/hyperswitch-control-center/pull/564)) ([`0e61f85`](https://github.com/juspay/hyperswitch-control-center/commit/0e61f8588628913b3820f8fcb37ff1f4da22e5ca))
**Full Changelog:** [`2024.04.03.1...2024.04.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.03.1...2024.04.04.0)
- - -
## 2024.04.03.1
### Bug Fixes
- Billwerk icon addition ([#562](https://github.com/juspay/hyperswitch-control-center/pull/562)) ([`930a7ec`](https://github.com/juspay/hyperswitch-control-center/commit/930a7ecc11c30dc8e830cfb89fde99d5b83a43e6))
**Full Changelog:** [`2024.04.03.0...2024.04.03.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.03.0...2024.04.03.1)
- - -
## 2024.04.03.0
### Features
- Feat: payout routing changes ([#551](https://github.com/juspay/hyperswitch-control-center/pull/551)) ([`66d98cb`](https://github.com/juspay/hyperswitch-control-center/commit/66d98cb0b5da0feed856b6c8737ba942b1194dc0))
- Feat: accept country and currency while configuring a connector ([#495](https://github.com/juspay/hyperswitch-control-center/pull/495)) ([`9c1b389`](https://github.com/juspay/hyperswitch-control-center/commit/9c1b389d6c2661147a146b9bee7ca79cdf38f7d9))
### Bug Fixes
- Billwerk connector addition ([#561](https://github.com/juspay/hyperswitch-control-center/pull/561)) ([`c577c6c`](https://github.com/juspay/hyperswitch-control-center/commit/c577c6ce5bcac2a6e1a8bdcc21a34ee8b6011f43))
**Full Changelog:** [`2024.04.02.0...2024.04.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.02.0...2024.04.03.0)
- - -
## 2024.04.02.0
### Bug Fixes
- Days to respond in show disputes issue ([#553](https://github.com/juspay/hyperswitch-control-center/pull/553)) ([`ac356c5`](https://github.com/juspay/hyperswitch-control-center/commit/ac356c502fa7e87bb40a93708fca6f064c61133d))
### Miscellaneous Tasks
- Payout wasm changes ([#552](https://github.com/juspay/hyperswitch-control-center/pull/552)) ([`a110ba0`](https://github.com/juspay/hyperswitch-control-center/commit/a110ba0d74286ace2f3819f5a02cc9dfd48db297))
- Added feature flag for disputes ([#557](https://github.com/juspay/hyperswitch-control-center/pull/557)) ([`1afc1e0`](https://github.com/juspay/hyperswitch-control-center/commit/1afc1e045ae11c1f5bb89b41d44d08ab830f7403))
**Full Changelog:** [`2024.04.01.0...2024.04.02.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.04.01.0...2024.04.02.0)
- - -
## 2024.04.01.0
### Bug Fixes
- Audit log scroll fix ([#542](https://github.com/juspay/hyperswitch-control-center/pull/542)) ([`6670bee`](https://github.com/juspay/hyperswitch-control-center/commit/6670beee0fb96ecf10b871452d5e420074293c26))
- Fix: removed unused file, sdk source mapper fix - audit trail, integr… ([#526](https://github.com/juspay/hyperswitch-control-center/pull/526)) ([`f9234a2`](https://github.com/juspay/hyperswitch-control-center/commit/f9234a2a590a0a2f415b50a2f366f366ef216825))
### Miscellaneous Tasks
- Js.Array2 core changes for sorted function ([#540](https://github.com/juspay/hyperswitch-control-center/pull/540)) ([`4f78c80`](https://github.com/juspay/hyperswitch-control-center/commit/4f78c8011945f3ce25175bdb8cb47635ce45e2d8))
- Remove unused feature flags ([#547](https://github.com/juspay/hyperswitch-control-center/pull/547)) ([`2035945`](https://github.com/juspay/hyperswitch-control-center/commit/2035945f3cb014c2bd3d5df925b0cfef127a1814))
- Global search feature flag ([#550](https://github.com/juspay/hyperswitch-control-center/pull/550)) ([`1911539`](https://github.com/juspay/hyperswitch-control-center/commit/1911539d5f3c9eedfeaced49fdfb32bd45631d9f))
- Sorting processor list ([#493](https://github.com/juspay/hyperswitch-control-center/pull/493)) ([`13ee22f`](https://github.com/juspay/hyperswitch-control-center/commit/13ee22ffd443fe52f0ead8337b8e768d3789fee4))
**Full Changelog:** [`2024.03.28.0...2024.04.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.28.0...2024.04.01.0)
- - -
## 2024.03.28.0
### Features
- Global search ([#523](https://github.com/juspay/hyperswitch-control-center/pull/523)) ([`0108cc5`](https://github.com/juspay/hyperswitch-control-center/commit/0108cc5bb4118b7f63cb420048428672a68801de))
### Miscellaneous Tasks
- Js.changes ([#544](https://github.com/juspay/hyperswitch-control-center/pull/544)) ([`76c6d87`](https://github.com/juspay/hyperswitch-control-center/commit/76c6d87779c5cc29b63972c9086fdcefe58bd9a9))
- Custom testId for buttons ([#545](https://github.com/juspay/hyperswitch-control-center/pull/545)) ([`a53c4f9`](https://github.com/juspay/hyperswitch-control-center/commit/a53c4f9e6637bbdd3d9a3a94db85e7b6e5e0e2a2))
**Full Changelog:** [`2024.03.27.2...2024.03.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.27.2...2024.03.28.0)
- - -
## 2024.03.27.2
### Miscellaneous Tasks
- Core changes ([#541](https://github.com/juspay/hyperswitch-control-center/pull/541)) ([`ac07f2e`](https://github.com/juspay/hyperswitch-control-center/commit/ac07f2e842cd42cc7ee693b06b4d50076b8525d1))
**Full Changelog:** [`2024.03.27.1...2024.03.27.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.27.1...2024.03.27.2)
- - -
## 2024.03.27.1
### Miscellaneous Tasks
- Feature flag removal of accept-invite ([#518](https://github.com/juspay/hyperswitch-control-center/pull/518)) ([`fe91351`](https://github.com/juspay/hyperswitch-control-center/commit/fe913518e5c60585b21b6b04ae18bb5773fe839e))
**Full Changelog:** [`2024.03.27.0...2024.03.27.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.27.0...2024.03.27.1)
- - -
## 2024.03.27.0
### Miscellaneous Tasks
- Enabled audit log for all connectors ([#538](https://github.com/juspay/hyperswitch-control-center/pull/538)) ([`52544b3`](https://github.com/juspay/hyperswitch-control-center/commit/52544b3694548e4e7ac7a9a0b0a0b9a851f7f00d))
- Core changes ([#539](https://github.com/juspay/hyperswitch-control-center/pull/539)) ([`a7a3060`](https://github.com/juspay/hyperswitch-control-center/commit/a7a306071290424428b24cf338ef166a6e611a28))
**Full Changelog:** [`2024.03.26.0...2024.03.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.26.0...2024.03.27.0)
- - -
## 2024.03.26.0
### Bug Fixes
- Added delete 3ds rule ([#534](https://github.com/juspay/hyperswitch-control-center/pull/534)) ([`6951b43`](https://github.com/juspay/hyperswitch-control-center/commit/6951b438c203a61f2a206e935e48e94baa43f838))
- Rule based routing on click of ruleno warning fix ([#531](https://github.com/juspay/hyperswitch-control-center/pull/531)) ([`d9bc3c8`](https://github.com/juspay/hyperswitch-control-center/commit/d9bc3c83dfb7169c2d98ad23383af287d00c56fb))
### Miscellaneous Tasks
- Invite-multiple feature flag removal ([#516](https://github.com/juspay/hyperswitch-control-center/pull/516)) ([`161c20f`](https://github.com/juspay/hyperswitch-control-center/commit/161c20faaf17f3239eaf40db6b6f6837cd4f90f5))
- Clean tailwind config ([#533](https://github.com/juspay/hyperswitch-control-center/pull/533)) ([`beaf529`](https://github.com/juspay/hyperswitch-control-center/commit/beaf52919124d129f4308bfa3b68b784a76269d8))
**Full Changelog:** [`2024.03.21.0...2024.03.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.21.0...2024.03.26.0)
- - -
## 2024.03.21.0
### Bug Fixes
- Upload evidence modal fix ([#525](https://github.com/juspay/hyperswitch-control-center/pull/525)) ([`59cd028`](https://github.com/juspay/hyperswitch-control-center/commit/59cd028fca25e7858ea40ede40cd88f9d2eba165))
### Miscellaneous Tasks
- Wasm cache issue ([#529](https://github.com/juspay/hyperswitch-control-center/pull/529)) ([`1444555`](https://github.com/juspay/hyperswitch-control-center/commit/14445551e65491282994714c808313fc63a4050d))
- Update checkout optional fields ([#530](https://github.com/juspay/hyperswitch-control-center/pull/530)) ([`5ff2544`](https://github.com/juspay/hyperswitch-control-center/commit/5ff25441027f9610e9c346b51dc1fd3e6dc6bd1c))
**Full Changelog:** [`2024.03.19.1...2024.03.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.19.1...2024.03.21.0)
- - -
## 2024.03.19.1
### Features
- Dispute analytics ([#470](https://github.com/juspay/hyperswitch-control-center/pull/470)) ([`090eb00`](https://github.com/juspay/hyperswitch-control-center/commit/090eb00d7186fd0d4449c3a23ba33e073ed5487e))
### Miscellaneous Tasks
- Added mixpanel events for connector flow ([#521](https://github.com/juspay/hyperswitch-control-center/pull/521)) ([`4ecac71`](https://github.com/juspay/hyperswitch-control-center/commit/4ecac71bc93703426619488323d529bddbcbd20f))
**Full Changelog:** [`2024.03.19.0...2024.03.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.19.0...2024.03.19.1)
- - -
## 2024.03.19.0
### Bug Fixes
- Disputes show counter button condition change ([#522](https://github.com/juspay/hyperswitch-control-center/pull/522)) ([`aec0a47`](https://github.com/juspay/hyperswitch-control-center/commit/aec0a476c2fd025c11c6d6266d2bdd87a908b2e4))
**Full Changelog:** [`2024.03.18.0...2024.03.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.18.0...2024.03.19.0)
- - -
## 2024.03.18.0
### Bug Fixes
- 3ds-url-fix ([#514](https://github.com/juspay/hyperswitch-control-center/pull/514)) ([`5cba46b`](https://github.com/juspay/hyperswitch-control-center/commit/5cba46b61251f30527a7c6cb79d6bac20a3618ce))
- Prod onboarding screen fix ([#520](https://github.com/juspay/hyperswitch-control-center/pull/520)) ([`11d355c`](https://github.com/juspay/hyperswitch-control-center/commit/11d355c668602250834a5fb9e7faba10d5dcc8d8))
**Full Changelog:** [`2024.03.17.0...2024.03.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.17.0...2024.03.18.0)
- - -
## 2024.03.17.0
### Bug Fixes
- Prod onboarding form and switch merchant dropdown changes ([#500](https://github.com/juspay/hyperswitch-control-center/pull/500)) ([`6afccf6`](https://github.com/juspay/hyperswitch-control-center/commit/6afccf66d35497a515bf393baa6fc62cb0a5fe17))
### Miscellaneous Tasks
- Filter enhancement ([#504](https://github.com/juspay/hyperswitch-control-center/pull/504)) ([`fb5b9b2`](https://github.com/juspay/hyperswitch-control-center/commit/fb5b9b228d49d18bd5d3d5d40cfb9b2535233822))
- Added feature flag for threeds authenticator ([#507](https://github.com/juspay/hyperswitch-control-center/pull/507)) ([`c2876ab`](https://github.com/juspay/hyperswitch-control-center/commit/c2876ab2c5189cc4b996f4f9a328ff81ce656875))
- Update readme ([#511](https://github.com/juspay/hyperswitch-control-center/pull/511)) ([`ceadf7a`](https://github.com/juspay/hyperswitch-control-center/commit/ceadf7a085f9af0a7914dad2ca258828c10f7f5b))
**Full Changelog:** [`2024.03.14.0...2024.03.17.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.14.0...2024.03.17.0)
- - -
## 2024.03.14.0
### Testing
- Test cases for sandbox quickstart ([#497](https://github.com/juspay/hyperswitch-control-center/pull/497)) ([`b19780c`](https://github.com/juspay/hyperswitch-control-center/commit/b19780c444bd640dd0d30d5b01e8b85add15b3ec))
**Full Changelog:** [`2024.03.13.0...2024.03.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.13.0...2024.03.14.0)
- - -
## 2024.03.13.0
### Features
- Added 3ds authenticator ([#444](https://github.com/juspay/hyperswitch-control-center/pull/444)) ([`c8cacc2`](https://github.com/juspay/hyperswitch-control-center/commit/c8cacc26901bd47d4aa5bfe5176bb7cdd6e8963c))
### Bug Fixes
- Wasm changes for 3ds ([#499](https://github.com/juspay/hyperswitch-control-center/pull/499)) ([`8021225`](https://github.com/juspay/hyperswitch-control-center/commit/80212254480a94a0ec600a9d85a204af2e4b3186))
- Threeds fields addition in payment settings ([#491](https://github.com/juspay/hyperswitch-control-center/pull/491)) ([`0a627e3`](https://github.com/juspay/hyperswitch-control-center/commit/0a627e3eb16b61b590c6446f8cf8d0a2b9c85a06))
### Miscellaneous Tasks
- Add sidebar mixpanel events ([#494](https://github.com/juspay/hyperswitch-control-center/pull/494)) ([`20f0967`](https://github.com/juspay/hyperswitch-control-center/commit/20f0967373044b2b353613e1b5f71441f89b0131))
- Back button test case ([#488](https://github.com/juspay/hyperswitch-control-center/pull/488)) ([`1ad98f6`](https://github.com/juspay/hyperswitch-control-center/commit/1ad98f6f0e83624dcd98060f0a3a5bce0ad4035c))
**Full Changelog:** [`2024.03.11.0...2024.03.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.11.0...2024.03.13.0)
- - -
## 2024.03.11.0
### Refactors
- Removed permissions ([#484](https://github.com/juspay/hyperswitch-control-center/pull/484)) ([`fa93405`](https://github.com/juspay/hyperswitch-control-center/commit/fa93405825890b944ea65a788faa94e8fe0f1a17))
**Full Changelog:** [`2024.03.10.0...2024.03.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.10.0...2024.03.11.0)
- - -
## 2024.03.10.0
### Miscellaneous Tasks
- Connector list type mapping ([#465](https://github.com/juspay/hyperswitch-control-center/pull/465)) ([`5887682`](https://github.com/juspay/hyperswitch-control-center/commit/5887682d661a43d53023f2c67ff4405bfe056efd))
**Full Changelog:** [`2024.03.07.0...2024.03.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.07.0...2024.03.10.0)
- - -
## 2024.03.07.0
### Bug Fixes
- Quick start connector selection bug and connector list bug fixes ([#482](https://github.com/juspay/hyperswitch-control-center/pull/482)) ([`2dfb70f`](https://github.com/juspay/hyperswitch-control-center/commit/2dfb70f82d86e240a7d00f57f42e710528e186c3))
- Cypress test ([#486](https://github.com/juspay/hyperswitch-control-center/pull/486)) ([`15c286f`](https://github.com/juspay/hyperswitch-control-center/commit/15c286f1913fdec55b75f5f115c4271856695403))
- Fix: Back button function ([#475](https://github.com/juspay/hyperswitch-control-center/pull/475)) ([`345c618`](https://github.com/juspay/hyperswitch-control-center/commit/345c618dda30d4ba9e74b0d13a2fb64c60366f26))
### Miscellaneous Tasks
- Sidebar UI ([#481](https://github.com/juspay/hyperswitch-control-center/pull/481)) ([`180a40a`](https://github.com/juspay/hyperswitch-control-center/commit/180a40a65321ecbdbc7a0392f80dd302718da12d))
**Full Changelog:** [`2024.03.06.0...2024.03.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.06.0...2024.03.07.0)
- - -
## 2024.03.07.0
### Bug Fixes
- Quick start connector selection bug and connector list bug fixes ([#482](https://github.com/juspay/hyperswitch-control-center/pull/482)) ([`2dfb70f`](https://github.com/juspay/hyperswitch-control-center/commit/2dfb70f82d86e240a7d00f57f42e710528e186c3))
- Cypress test ([#486](https://github.com/juspay/hyperswitch-control-center/pull/486)) ([`15c286f`](https://github.com/juspay/hyperswitch-control-center/commit/15c286f1913fdec55b75f5f115c4271856695403))
### Miscellaneous Tasks
- Sidebar UI ([#481](https://github.com/juspay/hyperswitch-control-center/pull/481)) ([`180a40a`](https://github.com/juspay/hyperswitch-control-center/commit/180a40a65321ecbdbc7a0392f80dd302718da12d))
**Full Changelog:** [`2024.03.06.0...2024.03.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.06.0...2024.03.07.0)
- - -
## 2024.03.06.0
### Features
- Added new connector ([#480](https://github.com/juspay/hyperswitch-control-center/pull/480)) ([`d5238fb`](https://github.com/juspay/hyperswitch-control-center/commit/d5238fbabc928e2241fd5ecf0c92b98ffa347512))
### Miscellaneous Tasks
- Remove feature banner ([#479](https://github.com/juspay/hyperswitch-control-center/pull/479)) ([`a6668b7`](https://github.com/juspay/hyperswitch-control-center/commit/a6668b70ccbaff3fcd798db20e6c5258fd5b4ffc))
**Full Changelog:** [`2024.03.05.2...2024.03.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.05.2...2024.03.06.0)
- - -
## 2024.03.05.2
### Bug Fixes
- Connector type frm ([#478](https://github.com/juspay/hyperswitch-control-center/pull/478)) ([`3bb3706`](https://github.com/juspay/hyperswitch-control-center/commit/3bb3706a2801397287dab8efef77e353809a9f5f))
**Full Changelog:** [`2024.03.05.1...2024.03.05.2`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.05.1...2024.03.05.2)
- - -
## 2024.03.05.1
### Miscellaneous Tasks
- Update wasm ([#477](https://github.com/juspay/hyperswitch-control-center/pull/477)) ([`fc1cddd`](https://github.com/juspay/hyperswitch-control-center/commit/fc1cddd5eac251e6b2a8a61bb92e251289ddf16f))
**Full Changelog:** [`2024.03.05.0...2024.03.05.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.05.0...2024.03.05.1)
- - -
## 2024.03.05.0
### Features
- Feat: Create custom role ([#473](https://github.com/juspay/hyperswitch-control-center/pull/473)) ([`d5739ad`](https://github.com/juspay/hyperswitch-control-center/commit/d5739ad8c9c17be479cadd72049c7f561218be5a))
### Style
- Sidebar ui enhancement ([#457](https://github.com/juspay/hyperswitch-control-center/pull/457)) ([`0cdf96d`](https://github.com/juspay/hyperswitch-control-center/commit/0cdf96da2b071ead12665890ee24b45376face80))
**Full Changelog:** [`2024.03.04.0...2024.03.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.04.0...2024.03.05.0)
- - -
## 2024.03.04.0
### Bug Fixes
- Add a mapper to change role names from `snake_case` to `Title Case` ([#468](https://github.com/juspay/hyperswitch-control-center/pull/468)) ([`6593fa2`](https://github.com/juspay/hyperswitch-control-center/commit/6593fa28fea74a28be44f438830ee5a2c3357026))
- User management api to groups ([#471](https://github.com/juspay/hyperswitch-control-center/pull/471)) ([`452e2c3`](https://github.com/juspay/hyperswitch-control-center/commit/452e2c3c099c74c0c8a32db7ff1f53570ca5ce52))
### Miscellaneous Tasks
- Audit refactor component ([#440](https://github.com/juspay/hyperswitch-control-center/pull/440)) ([`b5513bf`](https://github.com/juspay/hyperswitch-control-center/commit/b5513bf8a5b093c061adacfebe7110f5e809b613))
### Style
- Home page ui ([#463](https://github.com/juspay/hyperswitch-control-center/pull/463)) ([`b48bd5a`](https://github.com/juspay/hyperswitch-control-center/commit/b48bd5af5eb36198aec049ad3f2d1e89aab4c627))
**Full Changelog:** [`2024.03.03.0...2024.03.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.03.03.0...2024.03.04.0)
- - -
## 2024.03.03.0
### Bug Fixes
- Cursor changes for clickable label ([#464](https://github.com/juspay/hyperswitch-control-center/pull/464)) ([`4f62325`](https://github.com/juspay/hyperswitch-control-center/commit/4f62325e97c89819f1cb69ef7e444d208b9fa867))
**Full Changelog:** [`2024.02.29.1...2024.03.03.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.29.1...2024.03.03.0)
- - -
## 2024.02.29.1
### Bug Fixes
- Connector type ([`8037fa5`](https://github.com/juspay/hyperswitch-control-center/commit/8037fa57feeb78740a64809c28c5478f938ddbde))
**Full Changelog:** [`2024.02.29.0...2024.02.29.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.29.0...2024.02.29.1)
- - -
## 2024.02.29.0
### Bug Fixes
- Clear recoil ([#461](https://github.com/juspay/hyperswitch-control-center/pull/461)) ([`8865a76`](https://github.com/juspay/hyperswitch-control-center/commit/8865a76b8ef9fb83ce63ff02bc557e4b56e6f0d1))
- Connector type change ([#462](https://github.com/juspay/hyperswitch-control-center/pull/462)) ([`c31de0f`](https://github.com/juspay/hyperswitch-control-center/commit/c31de0f25840e0e930eb80b658f89c564246c424))
### Refactors
- Business recoil value from string to typed ([#458](https://github.com/juspay/hyperswitch-control-center/pull/458)) ([`16655fb`](https://github.com/juspay/hyperswitch-control-center/commit/16655fbcd59fdf27f3e6c07c2cc49c9b3c99b8f1))
**Full Changelog:** [`2024.02.28.0...2024.02.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.28.0...2024.02.29.0)
- - -
## 2024.02.28.0
### Features
- Email from billing 448 ([#454](https://github.com/juspay/hyperswitch-control-center/pull/454)) ([`322220c`](https://github.com/juspay/hyperswitch-control-center/commit/322220c772ad7dcda4d78e09a40703ef8ad63ad1))
### Refactors
- MerchantDetails recoil value from string to typed ([#455](https://github.com/juspay/hyperswitch-control-center/pull/455)) ([`2e461f8`](https://github.com/juspay/hyperswitch-control-center/commit/2e461f823bc84f9f599c2a45558ec999829b73e4))
**Full Changelog:** [`2024.02.27.0...2024.02.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.27.0...2024.02.28.0)
- - -
## 2024.02.27.0
### Features
- Enable label clickling ([#437](https://github.com/juspay/hyperswitch-control-center/pull/437)) ([`bc517e2`](https://github.com/juspay/hyperswitch-control-center/commit/bc517e2391918387cd8c832eba5300381a5c1385))
### Bug Fixes
- Live onboarding webhook url update fix ([#452](https://github.com/juspay/hyperswitch-control-center/pull/452)) ([`ebbe843`](https://github.com/juspay/hyperswitch-control-center/commit/ebbe843dc49a6ae8a2a1715c83a92242ecf43702))
### Miscellaneous Tasks
- Add cypress coverage ([#443](https://github.com/juspay/hyperswitch-control-center/pull/443)) ([`e3b5f1d`](https://github.com/juspay/hyperswitch-control-center/commit/e3b5f1d918c8733cf3bd351d386d6265ebf3b940))
**Full Changelog:** [`2024.02.26.0...2024.02.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.26.0...2024.02.27.0)
- - -
## 2024.02.26.0
### Features
- Update Role & Delete user added ([#403](https://github.com/juspay/hyperswitch-control-center/pull/403)) ([`e79e5ea`](https://github.com/juspay/hyperswitch-control-center/commit/e79e5eab681b6c29a248886eb5b57b22ad2caa0f))
### Bug Fixes
- Email_trim_fix ([#435](https://github.com/juspay/hyperswitch-control-center/pull/435)) ([`f14a257`](https://github.com/juspay/hyperswitch-control-center/commit/f14a257ffbe649e8e670d1db18a28804ad4fedc1))
- Clear recoil state on logout ([#445](https://github.com/juspay/hyperswitch-control-center/pull/445)) ([`35c48f9`](https://github.com/juspay/hyperswitch-control-center/commit/35c48f9d6651be814386de6e8854bf8c0c5e2c90))
- Dashboard default permission and signout fix ([#451](https://github.com/juspay/hyperswitch-control-center/pull/451)) ([`75b6c42`](https://github.com/juspay/hyperswitch-control-center/commit/75b6c427dedd040c2c9a17eaad417e7f23721258))
### Refactors
- Moved all the atoms to one folder ([#447](https://github.com/juspay/hyperswitch-control-center/pull/447)) ([`91b5290`](https://github.com/juspay/hyperswitch-control-center/commit/91b529023b30a6c0cf6c0186c49f0778cb97b612))
**Full Changelog:** [`2024.02.22.1...2024.02.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.22.1...2024.02.26.0)
- - -
## 2024.02.22.1
### Bug Fixes
- Homev2 accept invite ([#442](https://github.com/juspay/hyperswitch-control-center/pull/442)) ([`9209d2b`](https://github.com/juspay/hyperswitch-control-center/commit/9209d2b07a686af1986bce7492513b59143c87cd))
- Stepper UI fix on Home page ([#432](https://github.com/juspay/hyperswitch-control-center/pull/432)) ([`84adad4`](https://github.com/juspay/hyperswitch-control-center/commit/84adad4eaa32f50c01aaa23d033043c4e8ec9296))
**Full Changelog:** [`2024.02.22.0...2024.02.22.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.22.0...2024.02.22.1)
- - -
## 2024.02.22.0
### Features
- Accept from email intermediate screen ([#422](https://github.com/juspay/hyperswitch-control-center/pull/422)) ([`e13c6ca`](https://github.com/juspay/hyperswitch-control-center/commit/e13c6ca1d45aabb38b967c6fa51ebe57ff38cc30))
### Refactors
- Added connector types and renamed the connector util functions ([#433](https://github.com/juspay/hyperswitch-control-center/pull/433)) ([`8cdf723`](https://github.com/juspay/hyperswitch-control-center/commit/8cdf72333e0d3d52f5156835a96214a1846a3b86))
**Full Changelog:** [`2024.02.21.0...2024.02.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.21.0...2024.02.22.0)
- - -
## 2024.02.21.0
### Bug Fixes
- Accept invite accept button issue ([#429](https://github.com/juspay/hyperswitch-control-center/pull/429)) ([`b77897a`](https://github.com/juspay/hyperswitch-control-center/commit/b77897a6340e1f9b7a678f3fad4481de040ff9c5))
- Accept invite issue ([#430](https://github.com/juspay/hyperswitch-control-center/pull/430)) ([`ee9120f`](https://github.com/juspay/hyperswitch-control-center/commit/ee9120f3652d93cf3ed180af5ab40d696afa4dc5))
### Refactors
- Connector show processor card code refactor for usability ([#415](https://github.com/juspay/hyperswitch-control-center/pull/415)) ([`bbba268`](https://github.com/juspay/hyperswitch-control-center/commit/bbba268f77b05c28a26768af131ce05e68d58d7d))
- Refactor: frm - update info for FRM flows ([#421](https://github.com/juspay/hyperswitch-control-center/pull/421)) ([`0892d58`](https://github.com/juspay/hyperswitch-control-center/commit/0892d581ff6a5f9ddcb9443498149cfcba1c6ac9))
### Miscellaneous Tasks
- Add cypress test for prod onboarding ([#424](https://github.com/juspay/hyperswitch-control-center/pull/424)) ([`1a659a3`](https://github.com/juspay/hyperswitch-control-center/commit/1a659a35404db66372dad322282931558f5ead0d))
- Hyperswitch git ignore file changes ([#420](https://github.com/juspay/hyperswitch-control-center/pull/420)) ([`7eca110`](https://github.com/juspay/hyperswitch-control-center/commit/7eca1108c97d7d31e32b728795f07328c428cdfe))
- Minor text changes ([#428](https://github.com/juspay/hyperswitch-control-center/pull/428)) ([`a046c8c`](https://github.com/juspay/hyperswitch-control-center/commit/a046c8c393aa98ab89a4927947fca9e99e799ff4))
**Full Changelog:** [`2024.02.20.0...2024.02.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.20.0...2024.02.21.0)
- - -
## 2024.02.20.0
### Features
- Accept Invite Home Page Changes ([#419](https://github.com/juspay/hyperswitch-control-center/pull/419)) ([`38e4cb3`](https://github.com/juspay/hyperswitch-control-center/commit/38e4cb38d99a1cd6e6df16f9fd98785066a78632))
### Miscellaneous Tasks
- Sidebar Connector Hierarchy changes ([#426](https://github.com/juspay/hyperswitch-control-center/pull/426)) ([`c2d505c`](https://github.com/juspay/hyperswitch-control-center/commit/c2d505c2baa1ed6ca6b24ecee95a6f9d4d7a9a73))
**Full Changelog:** [`2024.02.19.0...2024.02.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.19.0...2024.02.20.0)
- - -
## 2024.02.19.0
### Features
- Switch merchant API Recoil Addition ([#417](https://github.com/juspay/hyperswitch-control-center/pull/417)) ([`4207423`](https://github.com/juspay/hyperswitch-control-center/commit/4207423f6f28bb6e89581c0a8481b77bac3c6fe3))
### Miscellaneous Tasks
- Code changes Int.ToString added ([#407](https://github.com/juspay/hyperswitch-control-center/pull/407)) ([`ad6c0e8`](https://github.com/juspay/hyperswitch-control-center/commit/ad6c0e82f1c6660447a8e62e14aa42377f8e1b2d))
**Full Changelog:** [`2024.02.18.0...2024.02.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.18.0...2024.02.19.0)
- - -
## 2024.02.18.0
### Bug Fixes
- Prod start command ([#414](https://github.com/juspay/hyperswitch-control-center/pull/414)) ([`4bdebb0`](https://github.com/juspay/hyperswitch-control-center/commit/4bdebb012b1bc9277723826cb6f27e51aa1a266c))
**Full Changelog:** [`2024.02.16.0...2024.02.18.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.16.0...2024.02.18.0)
- - -
## 2024.02.16.0
### Bug Fixes
- Fix accept invite re-render issue ([#411](https://github.com/juspay/hyperswitch-control-center/pull/411)) ([`d990e18`](https://github.com/juspay/hyperswitch-control-center/commit/d990e1831d9b151d24f5b86731904986f175629d))
**Full Changelog:** [`2024.02.15.0...2024.02.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.15.0...2024.02.16.0)
- - -
## 2024.02.15.0
### Bug Fixes
- Page forwarding issue for access forbidden in quick start ([#405](https://github.com/juspay/hyperswitch-control-center/pull/405)) ([`4b9c219`](https://github.com/juspay/hyperswitch-control-center/commit/4b9c219642d41082bfb2bf31c277590cbb13fdc1))
**Full Changelog:** [`2024.02.14.0...2024.02.15.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.14.0...2024.02.15.0)
- - -
## 2024.02.14.0
### Features
- Accept invite flow ([#353](https://github.com/juspay/hyperswitch-control-center/pull/353)) ([`657487f`](https://github.com/juspay/hyperswitch-control-center/commit/657487f214cb837a17345f40f58c33d744252d55))
- React Debounce Package removal & adding own functionality ([#391](https://github.com/juspay/hyperswitch-control-center/pull/391)) ([`82fb611`](https://github.com/juspay/hyperswitch-control-center/commit/82fb6114e01709ae3507a94fac72d1233dbc2a53))
- Added new graph library ([#394](https://github.com/juspay/hyperswitch-control-center/pull/394)) ([`98213a6`](https://github.com/juspay/hyperswitch-control-center/commit/98213a6bd9867819aa0f0504272e2d25c313d7f7))
- Feature flag accept invite ([#396](https://github.com/juspay/hyperswitch-control-center/pull/396)) ([`5803fe1`](https://github.com/juspay/hyperswitch-control-center/commit/5803fe155d69515349aae0d8645c484acef7b88f))
- Feature flag addition for Invite Multiple ([#397](https://github.com/juspay/hyperswitch-control-center/pull/397)) ([`087226e`](https://github.com/juspay/hyperswitch-control-center/commit/087226e73777024a00b1f281dc02719515b92380))
- Audit log enhancement ([#379](https://github.com/juspay/hyperswitch-control-center/pull/379)) ([`ced590c`](https://github.com/juspay/hyperswitch-control-center/commit/ced590c3b186664e2ac3a78cebde359f2afb2367))
- Added Counter disputes ([#347](https://github.com/juspay/hyperswitch-control-center/pull/347)) ([`d080614`](https://github.com/juspay/hyperswitch-control-center/commit/d080614356df05119e747897088d76a0e4753fd1))
### Bug Fixes
- Connector label update ([#279](https://github.com/juspay/hyperswitch-control-center/pull/279)) ([`4442ae4`](https://github.com/juspay/hyperswitch-control-center/commit/4442ae4c5dfd580c5e049e96ad1b9534bb61b0f6))
- Reset password local storage issue ([#401](https://github.com/juspay/hyperswitch-control-center/pull/401)) ([`534e3a9`](https://github.com/juspay/hyperswitch-control-center/commit/534e3a903e404a5c2ffb03d0bc33983821f970b4))
### Miscellaneous Tasks
- Empty & Non empty string logic_utils ([#378](https://github.com/juspay/hyperswitch-control-center/pull/378)) ([`c567b72`](https://github.com/juspay/hyperswitch-control-center/commit/c567b72f01120334d248c2f11abe7f4a897e87ab))
**Full Changelog:** [`2024.02.13.0...2024.02.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.13.0...2024.02.14.0)
- - -
## 2024.02.13.0
### Bug Fixes
- Minor Ui changes ([#392](https://github.com/juspay/hyperswitch-control-center/pull/392)) ([`66dc8ee`](https://github.com/juspay/hyperswitch-control-center/commit/66dc8ee5cc0ccec2cd11a19a9c206aaa188a95f2))
### Miscellaneous Tasks
- Chore: ui changes dashboard ([#380](https://github.com/juspay/hyperswitch-control-center/pull/380)) ([`090ff59`](https://github.com/juspay/hyperswitch-control-center/commit/090ff5943f3edc3de7e6e0e7c085ff80c976cf95))
**Full Changelog:** [`2024.02.12.1...2024.02.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.12.1...2024.02.13.0)
- - -
## 2024.02.12.1
### Miscellaneous Tasks
- Add signup cypress test ([#381](https://github.com/juspay/hyperswitch-control-center/pull/381)) ([`d39a5e2`](https://github.com/juspay/hyperswitch-control-center/commit/d39a5e28ac76268c41f2ccea78dc766b8f950928))
**Full Changelog:** [`2024.02.12.0...2024.02.12.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.12.0...2024.02.12.1)
- - -
## 2024.02.12.0
### Features
- Invite_multiple API Support added ([#376](https://github.com/juspay/hyperswitch-control-center/pull/376)) ([`26a502e`](https://github.com/juspay/hyperswitch-control-center/commit/26a502e840c592eac14d430f438fed88defa59f9))
- Enable VOLT in Live ([#384](https://github.com/juspay/hyperswitch-control-center/pull/384)) ([`4a7274b`](https://github.com/juspay/hyperswitch-control-center/commit/4a7274ba4628c02b2fc2dc0e5b6985f0478706ca))
### Miscellaneous Tasks
- Add health readiness endpoint ([#375](https://github.com/juspay/hyperswitch-control-center/pull/375)) ([`3e31ae1`](https://github.com/juspay/hyperswitch-control-center/commit/3e31ae174b4ae5a8a4c758b7022148e4c123508d))
**Full Changelog:** [`2024.02.11.0...2024.02.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.11.0...2024.02.12.0)
- - -
## 2024.02.11.0
### Features
- User_id remove from URL & feature flag removal of user management ([#371](https://github.com/juspay/hyperswitch-control-center/pull/371)) ([`08baca8`](https://github.com/juspay/hyperswitch-control-center/commit/08baca8df8a85df6985eb0cd47c675cecdfa8711))
**Full Changelog:** [`2024.02.08.0...2024.02.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.08.0...2024.02.11.0)
- - -
## 2024.02.08.0
### Features
- Change switch merchant response - filter is_active ([#362](https://github.com/juspay/hyperswitch-control-center/pull/362)) ([`2fd7c3d`](https://github.com/juspay/hyperswitch-control-center/commit/2fd7c3d650317dce003355df7baf4b949ec1f789))
- Add company name ([#359](https://github.com/juspay/hyperswitch-control-center/pull/359)) ([`9024dcd`](https://github.com/juspay/hyperswitch-control-center/commit/9024dcda6c7c1eaa8b0a7e1a03b42aa605c7ad45))
### Bug Fixes
- Payments header button alignment ([#366](https://github.com/juspay/hyperswitch-control-center/pull/366)) ([`f9f545b`](https://github.com/juspay/hyperswitch-control-center/commit/f9f545bc8457c0a01cf0d35637bd6853660f7ea0))
- Readme updated for new modules ([#367](https://github.com/juspay/hyperswitch-control-center/pull/367)) ([`8d91475`](https://github.com/juspay/hyperswitch-control-center/commit/8d91475ef2d1917de45b235b69300c43959921f1))
- Permsision API Changes ([#373](https://github.com/juspay/hyperswitch-control-center/pull/373)) ([`cf7b8e5`](https://github.com/juspay/hyperswitch-control-center/commit/cf7b8e5026167e7bb7770dd5d00ba7e3e5b5dd92))
**Full Changelog:** [`2024.02.07.0...2024.02.08.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.07.0...2024.02.08.0)
- - -
## 2024.02.07.0
### Bug Fixes
- Added support for other content-type ([#337](https://github.com/juspay/hyperswitch-control-center/pull/337)) ([`06002c6`](https://github.com/juspay/hyperswitch-control-center/commit/06002c6eafb2160a381c7d7fe8bef27bdb6da627))
- Headers object issue ([#350](https://github.com/juspay/hyperswitch-control-center/pull/350)) ([`f9dd029`](https://github.com/juspay/hyperswitch-control-center/commit/f9dd02998d1669a72c72689290e0412454a35f1a))
### Miscellaneous Tasks
- Update test ([`bde52da`](https://github.com/juspay/hyperswitch-control-center/commit/bde52da31270b8a9eb16ac3b50f2f044bbec88e1))
- Payout Enabled ([#357](https://github.com/juspay/hyperswitch-control-center/pull/357)) ([`6095b05`](https://github.com/juspay/hyperswitch-control-center/commit/6095b05fb4008a1c484ae139cbd61aeb57fc7e6d))
**Full Changelog:** [`2024.02.06.1...2024.02.07.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.06.1...2024.02.07.0)
- - -
## 2024.02.06.1
### Bug Fixes
- UI connector icon ([#348](https://github.com/juspay/hyperswitch-control-center/pull/348)) ([`b66af59`](https://github.com/juspay/hyperswitch-control-center/commit/b66af594a230e33c5e0eb6642ed4b8c5649e1d70))
**Full Changelog:** [`2024.02.06.0...2024.02.06.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.06.0...2024.02.06.1)
- - -
## 2024.02.06.0
### Features
- Add access control all over codebase ([#281](https://github.com/juspay/hyperswitch-control-center/pull/281)) ([`7c6beec`](https://github.com/juspay/hyperswitch-control-center/commit/7c6beecdcbcfdda9c93aaffd85d7a526ab4a137d))
### Bug Fixes
- Global search bar no-data found page fix ([#346](https://github.com/juspay/hyperswitch-control-center/pull/346)) ([`c52318e`](https://github.com/juspay/hyperswitch-control-center/commit/c52318e80d00b2f1b020b64a908f0b74089f7205))
### Refactors
- Font css function refactor ([#342](https://github.com/juspay/hyperswitch-control-center/pull/342)) ([`1c8109a`](https://github.com/juspay/hyperswitch-control-center/commit/1c8109a8e5e12b610e0e46eaadd42f71bff37c2b))
### Miscellaneous Tasks
- Add health endpoint ([#341](https://github.com/juspay/hyperswitch-control-center/pull/341)) ([`e194250`](https://github.com/juspay/hyperswitch-control-center/commit/e19425092b2019f5623f3b09a2772182a2ed5f51))
**Full Changelog:** [`2024.02.05.0...2024.02.06.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.05.0...2024.02.06.0)
- - -
## 2024.02.05.0
### Bug Fixes
- Added connector display name ([#329](https://github.com/juspay/hyperswitch-control-center/pull/329)) ([`f3ea262`](https://github.com/juspay/hyperswitch-control-center/commit/f3ea262e1b6995dcbf8023fbd3e7e392b9cd481d))
### Miscellaneous Tasks
- Refactor code ([#331](https://github.com/juspay/hyperswitch-control-center/pull/331)) ([`e9de547`](https://github.com/juspay/hyperswitch-control-center/commit/e9de5473855e12f22d18ba9fa137fb94f05b6f0f))
- Remove Customers Module Feature flag ([#336](https://github.com/juspay/hyperswitch-control-center/pull/336)) ([`da9a7fa`](https://github.com/juspay/hyperswitch-control-center/commit/da9a7fa5ce03ded823a5cd45d5eea2871704b5f4))
- Date core api changes ([#334](https://github.com/juspay/hyperswitch-control-center/pull/334)) ([`85c784f`](https://github.com/juspay/hyperswitch-control-center/commit/85c784fcdd906bc96dc42fbbfab289923044e907))
**Full Changelog:** [`2024.02.04.0...2024.02.05.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.04.0...2024.02.05.0)
- - -
## 2024.02.04.0
### Bug Fixes
- Glitch in homepage ([#325](https://github.com/juspay/hyperswitch-control-center/pull/325)) ([`a3116ed`](https://github.com/juspay/hyperswitch-control-center/commit/a3116ed23cd226cd4257b8df7e27531c4150aa84))
**Full Changelog:** [`2024.02.01.1...2024.02.04.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.01.1...2024.02.04.0)
- - -
## 2024.02.01.1
### Features
- Table access block ([#323](https://github.com/juspay/hyperswitch-control-center/pull/323)) ([`4950084`](https://github.com/juspay/hyperswitch-control-center/commit/4950084b4bce57eac9fb183f65e773ee86cfd567))
### Bug Fixes
- UI css fixes ([#320](https://github.com/juspay/hyperswitch-control-center/pull/320)) ([`07ff876`](https://github.com/juspay/hyperswitch-control-center/commit/07ff876051a9bd86b1ab4c4f5423dcf0d5c54015))
- Switch Merchant Issue ([#324](https://github.com/juspay/hyperswitch-control-center/pull/324)) ([`780c93b`](https://github.com/juspay/hyperswitch-control-center/commit/780c93b57d14b400dd3be2ab064e544844a04c3d))
### Miscellaneous Tasks
- Exn & Math Core API use ([#319](https://github.com/juspay/hyperswitch-control-center/pull/319)) ([`b063a78`](https://github.com/juspay/hyperswitch-control-center/commit/b063a78a8d9a2eeafc58b416ff987d801e328f6c))
**Full Changelog:** [`2024.02.01.0...2024.02.01.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.02.01.0...2024.02.01.1)
- - -
## 2024.02.01.0
### Features
- Acl button access block ([#314](https://github.com/juspay/hyperswitch-control-center/pull/314)) ([`2fd2436`](https://github.com/juspay/hyperswitch-control-center/commit/2fd2436febf71f0a3bc4b6413fa6b4ce06375fa5))
### Bug Fixes
- Profile access control ([#317](https://github.com/juspay/hyperswitch-control-center/pull/317)) ([`50db59f`](https://github.com/juspay/hyperswitch-control-center/commit/50db59f25b564edb2826a2b1130b0dd8ec04e1c9))
### Miscellaneous Tasks
- Add workflow dispatch for cypress ([`f65ca5a`](https://github.com/juspay/hyperswitch-control-center/commit/f65ca5aab56ffc3876902787f3d526363a68f062))
- Add workflow dispatch for cypress ([`8349f61`](https://github.com/juspay/hyperswitch-control-center/commit/8349f614a931767001e259e9b27d3148938f40e8))
- Add workflow dispatch for cypress ([`c01bbc5`](https://github.com/juspay/hyperswitch-control-center/commit/c01bbc591b72e7b8498b4f4cc67444bab9f27382))
- Add workflow dispatch for cypress ([`0c94ac8`](https://github.com/juspay/hyperswitch-control-center/commit/0c94ac8b02c3978ba75fa8c5a5422e4ca4adc46b))
- Add workflow dispatch for cypress ([`de87a7b`](https://github.com/juspay/hyperswitch-control-center/commit/de87a7bfe57eeda2391c5205028fc0cd55691cc5))
**Full Changelog:** [`2024.01.31.1...2024.02.01.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.31.1...2024.02.01.0)
- - -
## 2024.01.31.1
### Miscellaneous Tasks
- Add e2e testcase ([#262](https://github.com/juspay/hyperswitch-control-center/pull/262)) ([`be32a53`](https://github.com/juspay/hyperswitch-control-center/commit/be32a53b73bb12c617716d9f2bc1499e0d84c9f5))
- Chore: feature flag addition for paypal automatic flow ([#316](https://github.com/juspay/hyperswitch-control-center/pull/316)) ([`4764a34`](https://github.com/juspay/hyperswitch-control-center/commit/4764a341fb23d650051f2650bdf1a3718c72f0b9))
**Full Changelog:** [`2024.01.31.0...2024.01.31.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.31.0...2024.01.31.1)
- - -
## 2024.01.31.0
### Features
- Feat: paypal changes ([#285](https://github.com/juspay/hyperswitch-control-center/pull/285)) ([`2ecef9f`](https://github.com/juspay/hyperswitch-control-center/commit/2ecef9fc776ed27ae06c17c900ecf0126bfd799b))
### Miscellaneous Tasks
- Js.Json API removed - JSON Core API Used. ([#311](https://github.com/juspay/hyperswitch-control-center/pull/311)) ([`1ff05f8`](https://github.com/juspay/hyperswitch-control-center/commit/1ff05f803229ddc10178c4257b7cfd9a17609d95))
- Nullable Core API Added.. ([#315](https://github.com/juspay/hyperswitch-control-center/pull/315)) ([`c8ae50b`](https://github.com/juspay/hyperswitch-control-center/commit/c8ae50b0f680c93e2ead174f328df4ab82d8e41d))
**Full Changelog:** [`2024.01.30.0...2024.01.31.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.30.0...2024.01.31.0)
- - -
## 2024.01.30.0
### Features
- Made the customize columns to appear in Portal for same line ([#308](https://github.com/juspay/hyperswitch-control-center/pull/308)) ([`ea21b97`](https://github.com/juspay/hyperswitch-control-center/commit/ea21b97c5964d34ce335a8c69e43142a65eb25bf))
### Refactors
- Proper identification of reactHyperJs from hyperswitch ([#299](https://github.com/juspay/hyperswitch-control-center/pull/299)) ([`4038dff`](https://github.com/juspay/hyperswitch-control-center/commit/4038dff12c539382490752979b917f7790b08ca6))
### Miscellaneous Tasks
- Remove Belt API from codebase ([#310](https://github.com/juspay/hyperswitch-control-center/pull/310)) ([`089c051`](https://github.com/juspay/hyperswitch-control-center/commit/089c05142ad9591adac3ef94f66c48321fe6ec65))
**Full Changelog:** [`2024.01.29.0...2024.01.30.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.29.0...2024.01.30.0)
- - -
## 2024.01.29.0
### Features
- Accept dispute ([#214](https://github.com/juspay/hyperswitch-control-center/pull/214)) ([`4c0d56b`](https://github.com/juspay/hyperswitch-control-center/commit/4c0d56b134276787cfbc3b48d53c591f8dcc7ae1))
### Bug Fixes
- Audit log fix ([#305](https://github.com/juspay/hyperswitch-control-center/pull/305)) ([`6bffa75`](https://github.com/juspay/hyperswitch-control-center/commit/6bffa75d580896bb86122da823e94814516bdb41))
- Enabling nmi in prod ([#309](https://github.com/juspay/hyperswitch-control-center/pull/309)) ([`30ebc24`](https://github.com/juspay/hyperswitch-control-center/commit/30ebc24a558969fbc2789700c93247d5dd586120))
### Miscellaneous Tasks
- Rescript core version upgrade ([#293](https://github.com/juspay/hyperswitch-control-center/pull/293)) ([`2d03f43`](https://github.com/juspay/hyperswitch-control-center/commit/2d03f43092cc8a7ed030a2f2ad8df663f081c15b))
**Full Changelog:** [`2024.01.25.1...2024.01.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.25.1...2024.01.29.0)
- - -
## 2024.01.25.1
### Miscellaneous Tasks
- Update release-stable-version.yml ([#306](https://github.com/juspay/hyperswitch-control-center/pull/306)) ([`a4f9dfa`](https://github.com/juspay/hyperswitch-control-center/commit/a4f9dfa4d0a327feb629621e4b270c19fa87a1df))
- Remove old workflow ([#307](https://github.com/juspay/hyperswitch-control-center/pull/307)) ([`4b01c99`](https://github.com/juspay/hyperswitch-control-center/commit/4b01c99656ba7fc1bc93a8b76a786bdcf318f949))
**Full Changelog:** [`2024.01.25.0...2024.01.25.1`](https://github.com/juspay/hyperswitch-control-center/compare/2024.01.25.0...2024.01.25.1)
- - -
## 2024.01.25.0
### Bug Fixes
- Close connector drop down bydefault ([#303](https://github.com/juspay/hyperswitch-control-center/pull/303)) ([`7006d91`](https://github.com/juspay/hyperswitch-control-center/commit/7006d915dec69b2db96cf36a5399accd86f173c2))
### Miscellaneous Tasks
- Change tag creation ([#297](https://github.com/juspay/hyperswitch-control-center/pull/297)) ([`1466e6a`](https://github.com/juspay/hyperswitch-control-center/commit/1466e6adf9dac3d746c5105b5ccfb9b1a51f9c4c))
- - -
## 1.29.0 (2024-01-24)
### Features
- Added webhooks events ([#272](https://github.com/juspay/hyperswitch-control-center/pull/272)) ([`17efd52`](https://github.com/juspay/hyperswitch-control-center/commit/17efd52ad93f9b4350b68931d2dd43bf8dadb841))
- Syntax highlighter ([#300](https://github.com/juspay/hyperswitch-control-center/pull/300)) ([`d4b800f`](https://github.com/juspay/hyperswitch-control-center/commit/d4b800f32927a6e28a991e574cf312124add26bc))
### Bug Fixes
- Headers issue ([#295](https://github.com/juspay/hyperswitch-control-center/pull/295)) ([`91f98c4`](https://github.com/juspay/hyperswitch-control-center/commit/91f98c4aedb7b744043e63405ed9189b14103fb9))
- Quick start default selection issue ([#287](https://github.com/juspay/hyperswitch-control-center/pull/287)) ([`0ce1d05`](https://github.com/juspay/hyperswitch-control-center/commit/0ce1d055066453338b98b725fef5dcb5c8a402b6))
- Content type fix ([#302](https://github.com/juspay/hyperswitch-control-center/pull/302)) ([`ad2ffb9`](https://github.com/juspay/hyperswitch-control-center/commit/ad2ffb9df736e6617a6ebfd3fb6e7cd1803458af))
### Miscellaneous Tasks
- Utils refactor ([#282](https://github.com/juspay/hyperswitch-control-center/pull/282)) ([`40954d2`](https://github.com/juspay/hyperswitch-control-center/commit/40954d25e225520d41bd2585f2b0fbfc4d9ee965))
- Remove redundant code ([#298](https://github.com/juspay/hyperswitch-control-center/pull/298)) ([`d047ae7`](https://github.com/juspay/hyperswitch-control-center/commit/d047ae7905b3df6fc19679519ed29ad17c164e29))
**Full Changelog:** [`v1.28.1...v1.29.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.28.1...v1.29.0)
- - -
## 1.28.1 (2024-01-23)
### Bug Fixes
- Use apifetcher function update ([#283](https://github.com/juspay/hyperswitch-control-center/pull/283)) ([`d587598`](https://github.com/juspay/hyperswitch-control-center/commit/d587598a1f13a234b68b5bc204780fda3c773e0e))
- Changes for supporting form data type in api ([#257](https://github.com/juspay/hyperswitch-control-center/pull/257)) ([`84c283b`](https://github.com/juspay/hyperswitch-control-center/commit/84c283b8092e3296dc97c87725966d540f490d5b))
- Access Control Issue ([#284](https://github.com/juspay/hyperswitch-control-center/pull/284)) ([`f35bcc5`](https://github.com/juspay/hyperswitch-control-center/commit/f35bcc524184c0c1bcc84a41198e81424bef7cc4))
**Full Changelog:** [`v1.28.0...v1.28.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.28.0...v1.28.1)
- - -
## 1.28.0 (2024-01-22)
### Features
- Permission based sidebar navigation ([#265](https://github.com/juspay/hyperswitch-control-center/pull/265)) ([`d545a56`](https://github.com/juspay/hyperswitch-control-center/commit/d545a56ceed84777fac27c7b8ca0ce92042bddaf))
- ACLButton Added ([#277](https://github.com/juspay/hyperswitch-control-center/pull/277)) ([`1032650`](https://github.com/juspay/hyperswitch-control-center/commit/1032650defeec0ef25eeb31735db116421b2bdfe))
**Full Changelog:** [`v1.27.0...v1.28.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.27.0...v1.28.0)
- - -
## 1.27.0 (2024-01-21)
### Features
- Update pr label on merge to closed ([#207](https://github.com/juspay/hyperswitch-control-center/pull/207)) ([`f8994ff`](https://github.com/juspay/hyperswitch-control-center/commit/f8994ff8faadc73bf89c67048d2c798024701963))
### Bug Fixes
- Make basic details form to accept form input without Save button ([#271](https://github.com/juspay/hyperswitch-control-center/pull/271)) ([`3784090`](https://github.com/juspay/hyperswitch-control-center/commit/3784090a99cf67c4dee69b914b66fe7979a39620))
### Miscellaneous Tasks
- Option Core changes ([#268](https://github.com/juspay/hyperswitch-control-center/pull/268)) ([`94e70d3`](https://github.com/juspay/hyperswitch-control-center/commit/94e70d37fb3fc36104ea3ad412f03afc7d115369))
**Full Changelog:** [`v1.26.0...v1.27.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.26.0...v1.27.0)
- - -
## 1.26.0 (2024-01-18)
### Features
- Add new user ([#237](https://github.com/juspay/hyperswitch-control-center/pull/237)) ([`3749e32`](https://github.com/juspay/hyperswitch-control-center/commit/3749e3278602c2ad514079db3d6d78226cfa9391))
- Access added for Button ([#274](https://github.com/juspay/hyperswitch-control-center/pull/274)) ([`d5ecee6`](https://github.com/juspay/hyperswitch-control-center/commit/d5ecee626d3da87f6bda8495b7539ba8660a7618))
### Bug Fixes
- Floating point value fix for test payment ([#270](https://github.com/juspay/hyperswitch-control-center/pull/270)) ([`038a714`](https://github.com/juspay/hyperswitch-control-center/commit/038a71492de22f1a1a51b6de9f68f010bf872268))
### Refactors
- Routing types and utils ([#254](https://github.com/juspay/hyperswitch-control-center/pull/254)) ([`b8b5034`](https://github.com/juspay/hyperswitch-control-center/commit/b8b5034fbae6974e34c799e6f9333e3663247f7f))
### Miscellaneous Tasks
- Added Access Type & Remove the Read & ReadWrite Type ([#267](https://github.com/juspay/hyperswitch-control-center/pull/267)) ([`49e3eae`](https://github.com/juspay/hyperswitch-control-center/commit/49e3eaeb9bd14a3c788649b81cf561386a5ce006))
- Refactor invite users ([#273](https://github.com/juspay/hyperswitch-control-center/pull/273)) ([`85b07d0`](https://github.com/juspay/hyperswitch-control-center/commit/85b07d0cf058dd0842b11acb7714cd85f8d9d6c6))
**Full Changelog:** [`v1.25.1...v1.26.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.25.1...v1.26.0)
- - -
## 1.25.1 (2024-01-17)
### Miscellaneous Tasks
- Sidebar refactoring & permissions added ([#264](https://github.com/juspay/hyperswitch-control-center/pull/264)) ([`f428679`](https://github.com/juspay/hyperswitch-control-center/commit/f428679fa9b98e002e8bb1f670af65595ae64845))
- Access Control Module added ([#266](https://github.com/juspay/hyperswitch-control-center/pull/266)) ([`59d0b53`](https://github.com/juspay/hyperswitch-control-center/commit/59d0b5387476536ed3a7f6a9f3468a3bd115232f))
**Full Changelog:** [`v1.25.0...v1.25.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.25.0...v1.25.1)
- - -
## 1.25.0 (2024-01-16)
### Features
- Cybersource enabled in Prod ([#256](https://github.com/juspay/hyperswitch-control-center/pull/256)) ([`93f202e`](https://github.com/juspay/hyperswitch-control-center/commit/93f202e4c0b76e29de7e515e3b405692a09e3e40))
### Bug Fixes
- Make tax_on_surcharge optional and add description ([#259](https://github.com/juspay/hyperswitch-control-center/pull/259)) ([`498437b`](https://github.com/juspay/hyperswitch-control-center/commit/498437b94fe6f69c42708baca19ba9132714f467))
**Full Changelog:** [`v1.24.2...v1.25.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.24.2...v1.25.0)
- - -
## 1.24.2 (2024-01-12)
### Bug Fixes
- Currency change ([#249](https://github.com/juspay/hyperswitch-control-center/pull/249)) ([`f72f290`](https://github.com/juspay/hyperswitch-control-center/commit/f72f290468125c6763e89047b162642ab3bf27e6))
- Currency change ([#250](https://github.com/juspay/hyperswitch-control-center/pull/250)) ([`89f4874`](https://github.com/juspay/hyperswitch-control-center/commit/89f487488a008dafd1e704f4e796048eda631429))
**Full Changelog:** [`v1.24.1...v1.24.2`](https://github.com/juspay/hyperswitch-control-center/compare/v1.24.1...v1.24.2)
- - -
## 1.24.1 (2024-01-12)
### Bug Fixes
- Curruncy fix ([#248](https://github.com/juspay/hyperswitch-control-center/pull/248)) ([`12c72a7`](https://github.com/juspay/hyperswitch-control-center/commit/12c72a7cb95fd408737564111e324c44c0001626))
**Full Changelog:** [`v1.24.0...v1.24.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.24.0...v1.24.1)
- - -
## 1.24.0 (2024-01-12)
### Features
- Zero payment added ([#246](https://github.com/juspay/hyperswitch-control-center/pull/246)) ([`90dbf28`](https://github.com/juspay/hyperswitch-control-center/commit/90dbf287265bf51920edc2666ead6b8bdd49f337))
**Full Changelog:** [`v1.23.3...v1.24.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.23.3...v1.24.0)
- - -
## 1.23.3 (2024-01-11)
### Bug Fixes
- revert customer module flag removal ([#244](https://github.com/juspay/hyperswitch-control-center/pull/244)) ([`15d2e6e`](https://github.com/juspay/hyperswitch-control-center/commit/15d2e6e341f9336f69cb3d23fbaf0c90c8acce3e))
- Business & Shipping Details Updated ([#245](https://github.com/juspay/hyperswitch-control-center/pull/245)) ([`8a91072`](https://github.com/juspay/hyperswitch-control-center/commit/8a91072733bc865a4078daa4c1d4034858629de1))
**Full Changelog:** [`v1.23.2...v1.23.3`](https://github.com/juspay/hyperswitch-control-center/compare/v1.23.2...v1.23.3)
- - -
## 1.23.2 (2024-01-11)
### Bug Fixes
- Customer module flag removal ([#242](https://github.com/juspay/hyperswitch-control-center/pull/242)) ([`5b06a76`](https://github.com/juspay/hyperswitch-control-center/commit/5b06a7657e4605fe6b35fe506913ea429d97a204))
**Full Changelog:** [`v1.23.1...v1.23.2`](https://github.com/juspay/hyperswitch-control-center/compare/v1.23.1...v1.23.2)
- - -
## 1.23.1 (2024-01-11)
### Bug Fixes
- Show billing and shipping address ([#233](https://github.com/juspay/hyperswitch-control-center/pull/233)) ([`f19eca8`](https://github.com/juspay/hyperswitch-control-center/commit/f19eca827599002dbdb694856d383daf8a995713))
- Profile changes in Routing ([#236](https://github.com/juspay/hyperswitch-control-center/pull/236)) ([`623599a`](https://github.com/juspay/hyperswitch-control-center/commit/623599a5221502d6c390ab79be68f9d282e45538))
- Surcharge value type ([#238](https://github.com/juspay/hyperswitch-control-center/pull/238)) ([`995c3bb`](https://github.com/juspay/hyperswitch-control-center/commit/995c3bbfd709616965e350f67f971e524fff6a2f))
**Full Changelog:** [`v1.23.0...v1.23.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.23.0...v1.23.1)
- - -
## 1.23.0 (2024-01-10)
### Features
- Duplicate and edit configuration in volume based routing ([#146](https://github.com/juspay/hyperswitch-control-center/pull/146)) ([`5520ba8`](https://github.com/juspay/hyperswitch-control-center/commit/5520ba8a04fb709bde4a6197c6ee4c6f07ce3a6a))
- Customers Module feature flag ([#218](https://github.com/juspay/hyperswitch-control-center/pull/218)) ([`1e0b297`](https://github.com/juspay/hyperswitch-control-center/commit/1e0b29775127cbbfaf1f21a82b786c324e3fa7d7))
- Connector Label added in Show Payments ([#216](https://github.com/juspay/hyperswitch-control-center/pull/216)) ([`73e0b3d`](https://github.com/juspay/hyperswitch-control-center/commit/73e0b3d7b59b588807771cb5fd9fdd68996b1252))
- Mixpanel added for quick start flow ([#222](https://github.com/juspay/hyperswitch-control-center/pull/222)) ([`611594f`](https://github.com/juspay/hyperswitch-control-center/commit/611594f3baeb2d7579679ede49b0d0e91fde7983))
- Change data type response for switch merchant ([#212](https://github.com/juspay/hyperswitch-control-center/pull/212)) ([`bb1ce83`](https://github.com/juspay/hyperswitch-control-center/commit/bb1ce83b209f8cbee3fb3f4d29c28ca0640a0b80))
### Bug Fixes
- Moved HyperLoader script ([#110](https://github.com/juspay/hyperswitch-control-center/pull/110)) ([`e94a1b4`](https://github.com/juspay/hyperswitch-control-center/commit/e94a1b4ac8ec77bf943b70f481496db3636ad53e))
- Make self-serve sidebar responsive ([#226](https://github.com/juspay/hyperswitch-control-center/pull/226)) ([`a0305d2`](https://github.com/juspay/hyperswitch-control-center/commit/a0305d254beec02de40e6098273bad2ef140904b))
### Refactors
- Remove dead code ([#138](https://github.com/juspay/hyperswitch-control-center/pull/138)) ([`6c7ac5c`](https://github.com/juspay/hyperswitch-control-center/commit/6c7ac5cc9637c3c8ed3cf0072b346e2e99db3053))
**Full Changelog:** [`v1.22.0...v1.23.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.22.0...v1.23.0)
- - -
## 1.22.0 (2024-01-09)
### Features
- Modal added for Switch merchant switch. ([#213](https://github.com/juspay/hyperswitch-control-center/pull/213)) ([`660c706`](https://github.com/juspay/hyperswitch-control-center/commit/660c706b26c6a7177b36dd416483e4435e686fd4))
**Full Changelog:** [`v1.21.0...v1.22.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.21.0...v1.22.0)
- - -
## 1.21.0 (2024-01-09)
### Features
- Customers module ([#198](https://github.com/juspay/hyperswitch-control-center/pull/198)) ([`c307fd7`](https://github.com/juspay/hyperswitch-control-center/commit/c307fd7bde4b3d43d54022b67f6be2265fc70eca))
### Bug Fixes
- Eslint issue ([#205](https://github.com/juspay/hyperswitch-control-center/pull/205)) ([`011edf1`](https://github.com/juspay/hyperswitch-control-center/commit/011edf188a610b7dd6977d32006cda3c5b029965))
- Filters enhance ([#160](https://github.com/juspay/hyperswitch-control-center/pull/160)) ([`77cebce`](https://github.com/juspay/hyperswitch-control-center/commit/77cebced9bfd9621f7c15b40c92b82f9c8be8c4f))
**Full Changelog:** [`v1.20.0...v1.21.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.20.0...v1.21.0)
- - -
## 1.20.0 (2024-01-08)
### Features
- Added new filters for payments ([#172](https://github.com/juspay/hyperswitch-control-center/pull/172)) ([`fd648de`](https://github.com/juspay/hyperswitch-control-center/commit/fd648de4e7cc0fde72b7316f9679abc248e0118f))
### Bug Fixes
- Connector integration status and disabled ui change ([#192](https://github.com/juspay/hyperswitch-control-center/pull/192)) ([`f784ef2`](https://github.com/juspay/hyperswitch-control-center/commit/f784ef27762098645886396e5043c219e566fa91))
- Revert useField in TextInput ([#199](https://github.com/juspay/hyperswitch-control-center/pull/199)) ([`47cc5ed`](https://github.com/juspay/hyperswitch-control-center/commit/47cc5ede71736e1c6ecd5045b6f3b4c4b829436b))
### Miscellaneous Tasks
- Analytics files Js.Dict -> Dict migration ([#194](https://github.com/juspay/hyperswitch-control-center/pull/194)) ([`71934b5`](https://github.com/juspay/hyperswitch-control-center/commit/71934b58d459ca979d7d150c41478e05b205ebcc))
**Full Changelog:** [`v1.19.5...v1.20.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.5...v1.20.0)
- - -
## 1.19.5 (2024-01-08)
### Bug Fixes
- Add merchant fix ([#184](https://github.com/juspay/hyperswitch-control-center/pull/184)) ([`7bc7226`](https://github.com/juspay/hyperswitch-control-center/commit/7bc7226cf2ee0c70b8dc49c73de91020c2f9b8e7))
### Miscellaneous Tasks
- Add eslint hook ([#166](https://github.com/juspay/hyperswitch-control-center/pull/166)) ([`4a10a94`](https://github.com/juspay/hyperswitch-control-center/commit/4a10a94728ec6d62897e3299c2c924301ad86f0f))
**Full Changelog:** [`v1.19.4...v1.19.5`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.4...v1.19.5)
- - -
## 1.19.4 (2024-01-05)
### Bug Fixes
- Switch merchant enabled for Live Env ([#176](https://github.com/juspay/hyperswitch-control-center/pull/176)) ([`035ab3e`](https://github.com/juspay/hyperswitch-control-center/commit/035ab3e55609b0cb2d8c5c026229fd0e1fb6d780))
### Miscellaneous Tasks
- Add issue template ([`0f112ed`](https://github.com/juspay/hyperswitch-control-center/commit/0f112edc291e34635cf89ad88a37be83c22de67f))
- Mixpanel country added ([#171](https://github.com/juspay/hyperswitch-control-center/pull/171)) ([`4ee8937`](https://github.com/juspay/hyperswitch-control-center/commit/4ee89375bf14b55bd9b68d8d64f5d628abe0469e))
- Array changes ([#174](https://github.com/juspay/hyperswitch-control-center/pull/174)) ([`1571bc2`](https://github.com/juspay/hyperswitch-control-center/commit/1571bc29d7c6a74eb02894789b172ecc14f8e592))
- String clean changes ([#175](https://github.com/juspay/hyperswitch-control-center/pull/175)) ([`d2ce5be`](https://github.com/juspay/hyperswitch-control-center/commit/d2ce5be1d23f5a19161305e71f4373f9fe49c205))
**Full Changelog:** [`v1.19.3...v1.19.4`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.3...v1.19.4)
- - -
## 1.19.3 (2024-01-04)
### Documentation
- Added security policy, code of conduct and contributing md files ([#167](https://github.com/juspay/hyperswitch-control-center/pull/167)) ([`4056ba9`](https://github.com/juspay/hyperswitch-control-center/commit/4056ba9ee8eeebb32b125e10c6a31eac28f3b8c4))
- Added license file and contributing guidelines ([#168](https://github.com/juspay/hyperswitch-control-center/pull/168)) ([`bc102ba`](https://github.com/juspay/hyperswitch-control-center/commit/bc102ba6237be4c8a17e2e6c999b6cf2ad80f6af))
**Full Changelog:** [`v1.19.2...v1.19.3`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.2...v1.19.3)
- - -
## 1.19.2 (2024-01-04)
### Bug Fixes
- Disputes api change ([#162](https://github.com/juspay/hyperswitch-control-center/pull/162)) ([`17e4c8a`](https://github.com/juspay/hyperswitch-control-center/commit/17e4c8a013c3934c192f8ae7303db501d1e2c19f))
- Connector list fix for search live ([#164](https://github.com/juspay/hyperswitch-control-center/pull/164)) ([`24e1cef`](https://github.com/juspay/hyperswitch-control-center/commit/24e1cef2010c77cf69e80bfb54fd34acbc00fafd))
- Email issue in mixpanel capture ([#163](https://github.com/juspay/hyperswitch-control-center/pull/163)) ([`c2ff8a9`](https://github.com/juspay/hyperswitch-control-center/commit/c2ff8a9f610b0a1874435e977f3f3a48a5a1b0e1))
- Cashtocode update flow ([#148](https://github.com/juspay/hyperswitch-control-center/pull/148)) ([`c17b466`](https://github.com/juspay/hyperswitch-control-center/commit/c17b46692e7f723a8680b5b1cecd7bf383e536c8))
**Full Changelog:** [`v1.19.1...v1.19.2`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.1...v1.19.2)
- - -
## 1.19.1 (2024-01-03)
### Bug Fixes
- Enabled braintree in prod ([#161](https://github.com/juspay/hyperswitch-control-center/pull/161)) ([`bcffb62`](https://github.com/juspay/hyperswitch-control-center/commit/bcffb627f8a25af19352d4740e879dbc8772e06a))
### Miscellaneous Tasks
- Move from Js Library to Core Array/Dict components ([#145](https://github.com/juspay/hyperswitch-control-center/pull/145)) ([`6a68efd`](https://github.com/juspay/hyperswitch-control-center/commit/6a68efd851515f8a4af17077a9145483364a7cb5))
**Full Changelog:** [`v1.19.0...v1.19.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.19.0...v1.19.1)
- - -
## 1.19.0 (2024-01-03)
### Features
- Surcharge ([#123](https://github.com/juspay/hyperswitch-control-center/pull/123)) ([`95a1d81`](https://github.com/juspay/hyperswitch-control-center/commit/95a1d8146057a8262b824d0784e32c268118af73))
- Added mixpanel events ([#158](https://github.com/juspay/hyperswitch-control-center/pull/158)) ([`543e074`](https://github.com/juspay/hyperswitch-control-center/commit/543e0749dfcc2b0a426eecd554c4890396793f38))
- Multi filters support ([#79](https://github.com/juspay/hyperswitch-control-center/pull/79)) ([`fd1aa3d`](https://github.com/juspay/hyperswitch-control-center/commit/fd1aa3d0b108f14375d50cc50833395fb6f19867))
- Prod enum changes ([#128](https://github.com/juspay/hyperswitch-control-center/pull/128)) ([`b67b95a`](https://github.com/juspay/hyperswitch-control-center/commit/b67b95a5555b5d7d46ee0e1ccd808821e6505336))
**Full Changelog:** [`v1.18.3...v1.19.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.18.3...v1.19.0)
- - -
## 1.18.3 (2024-01-02)
### Bug Fixes
- Scrollbar revert ([#153](https://github.com/juspay/hyperswitch-control-center/pull/153)) ([`731ac50`](https://github.com/juspay/hyperswitch-control-center/commit/731ac503e93d051cf3dc1b34593e91b896105897))
- Business profile addition modal bugfix ([#152](https://github.com/juspay/hyperswitch-control-center/pull/152)) ([`7075812`](https://github.com/juspay/hyperswitch-control-center/commit/707581209d18e19c9247a551544a317035cd2039))
- Unnecessary API List count of connectors stop ([#154](https://github.com/juspay/hyperswitch-control-center/pull/154)) ([`40ae278`](https://github.com/juspay/hyperswitch-control-center/commit/40ae2788172c19f05206df59131e6a35e1b70f8e))
### Miscellaneous Tasks
- Mixpanel clearing ([#155](https://github.com/juspay/hyperswitch-control-center/pull/155)) ([`c3a6eaf`](https://github.com/juspay/hyperswitch-control-center/commit/c3a6eaff6f42abc977e8121e1730f2372fc1b5de))
**Full Changelog:** [`v1.18.2...v1.18.3`](https://github.com/juspay/hyperswitch-control-center/compare/v1.18.2...v1.18.3)
- - -
## 1.16.0 (2023-12-26)
### Features
- README.md PR title changes ([#134](https://github.com/juspay/hyperswitch-control-center/pull/134)) ([`66ef342`](https://github.com/juspay/hyperswitch-control-center/commit/66ef342d46095bac4a2901daac198b60d647d2c6))
### Bug Fixes
- FixedPageWidth Changes ([#132](https://github.com/juspay/hyperswitch-control-center/pull/132)) ([`921eab4`](https://github.com/juspay/hyperswitch-control-center/commit/921eab4629e0a921b6f29bc286a9009173180570))
- APIUtils changes ([#135](https://github.com/juspay/hyperswitch-control-center/pull/135)) ([`9ec16e8`](https://github.com/juspay/hyperswitch-control-center/commit/9ec16e87f32e7564d363f6bbc9d0c323e816aa4f))
- API fix and radio icon changes ([#136](https://github.com/juspay/hyperswitch-control-center/pull/136)) ([`2ee3bf2`](https://github.com/juspay/hyperswitch-control-center/commit/2ee3bf2f7fb10491ffe036a30c009da853e62366))
### Refactors
- ApiUtils file to use the apiPrefix once only ([#122](https://github.com/juspay/hyperswitch-control-center/pull/122)) ([`dc4e644`](https://github.com/juspay/hyperswitch-control-center/commit/dc4e644a9a7825bf74d47c5d225c71efb5b31369))
**Full Changelog:** [`v1.15.1...v1.16.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.15.1...v1.16.0)
- - -
## 1.14.0 (2023-12-24)
### Features
- Sidebar expansion close ([#126](https://github.com/juspay/hyperswitch-control-center/pull/126)) ([`ea91fba`](https://github.com/juspay/hyperswitch-control-center/commit/ea91fba4505fc8b64e0bc161ca41d1395fb83af2))
**Full Changelog:** [`v1.13.1...v1.14.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.13.1...v1.14.0)
- - -
## 1.13.1 (2023-12-21)
### Bug Fixes
- Disable-user-invite-button ([#124](https://github.com/juspay/hyperswitch-control-center/pull/124)) ([`36177c7`](https://github.com/juspay/hyperswitch-control-center/commit/36177c71ae369b1b82c16b6ed59d298a646efc3a))
**Full Changelog:** [`v1.13.0...v1.13.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.13.0...v1.13.1)
- - -
## 1.13.0 (2023-12-20)
### Features
- New wasm changes ([#114](https://github.com/juspay/hyperswitch-control-center/pull/114)) ([`758f80d`](https://github.com/juspay/hyperswitch-control-center/commit/758f80d945bd558f7059b8ec40b2b373aaa2e77a))
- Dropdown grouping added in routing ([#102](https://github.com/juspay/hyperswitch-control-center/pull/102)) ([`52933b4`](https://github.com/juspay/hyperswitch-control-center/commit/52933b434dd6920e821a465b51c5bbb46ced68cd))
- Resend Invite Removal ([#121](https://github.com/juspay/hyperswitch-control-center/pull/121)) ([`3551622`](https://github.com/juspay/hyperswitch-control-center/commit/35516226ad3e784626812e4a3be09dcb165a867d))
### Bug Fixes
- Connector UI Issue. ([#113](https://github.com/juspay/hyperswitch-control-center/pull/113)) ([`ad28e1c`](https://github.com/juspay/hyperswitch-control-center/commit/ad28e1ca72f3d57407cb679a451e43ccd94ae2de))
- Signout API removed. ([#116](https://github.com/juspay/hyperswitch-control-center/pull/116)) ([`af13892`](https://github.com/juspay/hyperswitch-control-center/commit/af13892017a5ca1e4bac8dcbe26d837a87467634))
- Connector files changes for paypal onboarding ([#115](https://github.com/juspay/hyperswitch-control-center/pull/115)) ([`74f327c`](https://github.com/juspay/hyperswitch-control-center/commit/74f327c5067a17d44313492e0032422a70d8aa9d))
- Metadata field issue fix ([#117](https://github.com/juspay/hyperswitch-control-center/pull/117)) ([`585674a`](https://github.com/juspay/hyperswitch-control-center/commit/585674a5fe324492c290c1e6ec32fd8b71822402))
- Typos in readme - fix typos in Readme.md ([#105](https://github.com/juspay/hyperswitch-control-center/pull/105)) ([`c88dcd2`](https://github.com/juspay/hyperswitch-control-center/commit/c88dcd23a8c291fd538ba6c4631a15cdf28c502d))
- Refunds reports end point change ([#119](https://github.com/juspay/hyperswitch-control-center/pull/119)) ([`ffc819e`](https://github.com/juspay/hyperswitch-control-center/commit/ffc819ef39c33f7a58e560cd3d1a1e7184ef4eba))
**Full Changelog:** [`v1.12.0...v1.13.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.12.0...v1.13.0)
- - -
## 1.12.0 (2023-12-19)
### Features
- Group-drop-down-component-changes ([#97](https://github.com/juspay/hyperswitch-control-center/pull/97)) ([`adcd89e`](https://github.com/juspay/hyperswitch-control-center/commit/adcd89e58542a7b0e0a7941e8dd4bb8abbd620eb))
- Add scrollbar and white space scrollable ([#111](https://github.com/juspay/hyperswitch-control-center/pull/111)) ([`a3bb4fe`](https://github.com/juspay/hyperswitch-control-center/commit/a3bb4feedb12fc6d3dcbc2cf845e90bb26fef7dd))
- Added path and api method in audit logs ([#112](https://github.com/juspay/hyperswitch-control-center/pull/112)) ([`1005cc7`](https://github.com/juspay/hyperswitch-control-center/commit/1005cc7099bf4ed6d6fdadd9f843c1937b733fe2))
### Bug Fixes
- Oss build url change ([#87](https://github.com/juspay/hyperswitch-control-center/pull/87)) ([`82f5272`](https://github.com/juspay/hyperswitch-control-center/commit/82f5272aff3453afbbc5fcf7b0e3aee4eed32cb2))
**Full Changelog:** [`v1.11.0...v1.12.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.11.0...v1.12.0)
- - -
## 1.11.0 (2023-12-18)
### Features
- Enable apple pay cybersource ([#109](https://github.com/juspay/hyperswitch-control-center/pull/109)) ([`c800865`](https://github.com/juspay/hyperswitch-control-center/commit/c8008650f7b4b426523f6ac30a83afac922cbe1a))
### Refactors
- Dead Code Removal ([#107](https://github.com/juspay/hyperswitch-control-center/pull/107)) ([`5859497`](https://github.com/juspay/hyperswitch-control-center/commit/585949773178633ad022abb443b69c50e884ef86))
**Full Changelog:** [`v1.10.0...v1.11.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.10.0...v1.11.0)
- - -
## 1.10.0 (2023-12-15)
### Features
- Show Details Paymentb Enhancement ([#104](https://github.com/juspay/hyperswitch-control-center/pull/104)) ([`134d470`](https://github.com/juspay/hyperswitch-control-center/commit/134d470ceadef14e02c5ca6b31d1475b25212d0d))
**Full Changelog:** [`v1.9.0...v1.10.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.9.0...v1.10.0)
- - -
## 1.9.0 (2023-12-15)
### Features
- Show Orders Enhancements & sidebar value changes ([#103](https://github.com/juspay/hyperswitch-control-center/pull/103)) ([`a1631f3`](https://github.com/juspay/hyperswitch-control-center/commit/a1631f3b1f3e6021053cae934146ca09368ab333))
### Refactors
- Refactoring key errors ([#98](https://github.com/juspay/hyperswitch-control-center/pull/98)) ([`50b86b9`](https://github.com/juspay/hyperswitch-control-center/commit/50b86b9670ecec63ddc6ed8221e55b9ae593e20a))
- Refactoring key errors ([#100](https://github.com/juspay/hyperswitch-control-center/pull/100)) ([`1ddbe68`](https://github.com/juspay/hyperswitch-control-center/commit/1ddbe6874c93dccee2cfc1d73281ba6ce9008323))
**Full Changelog:** [`v1.8.0...v1.9.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.8.0...v1.9.0)
- - -
## 1.8.0 (2023-12-14)
### Features
- GetDescriptionCategory function added. ([#96](https://github.com/juspay/hyperswitch-control-center/pull/96)) ([`5c32afb`](https://github.com/juspay/hyperswitch-control-center/commit/5c32afbb0257abd44d9937ac7604e972a882ff35))
- Cypress integration ([#39](https://github.com/juspay/hyperswitch-control-center/pull/39)) ([`ca6cacd`](https://github.com/juspay/hyperswitch-control-center/commit/ca6cacdcbd6d2c57898a6bdf21b29d1d36abe374))
**Full Changelog:** [`v1.7.0...v1.8.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.7.0...v1.8.0)
- - -
## 1.7.0 (2023-12-13)
### Features
- Refund enable for Partially Captured Payments ([#94](https://github.com/juspay/hyperswitch-control-center/pull/94)) ([`5634990`](https://github.com/juspay/hyperswitch-control-center/commit/5634990a6c0e5952f65e6c435f546314347acaac))
### Bug Fixes
- Connector label and profile id default value fix ([#95](https://github.com/juspay/hyperswitch-control-center/pull/95)) ([`9822972`](https://github.com/juspay/hyperswitch-control-center/commit/9822972f9ed6724f365ee36d5d27f14458e1f960))
**Full Changelog:** [`v1.6.0...v1.7.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.6.0...v1.7.0)
- - -
## 1.6.0 (2023-12-12)
### Features
- Identity file changes ([#91](https://github.com/juspay/hyperswitch-control-center/pull/91)) ([`706a414`](https://github.com/juspay/hyperswitch-control-center/commit/706a414e4e3f455ebdc9a0cbf792b240e6f1b384))
- Routing back to Integration Fields if Connector Label already exist. ([#93](https://github.com/juspay/hyperswitch-control-center/pull/93)) ([`ff1b90b`](https://github.com/juspay/hyperswitch-control-center/commit/ff1b90b87f0188d7fca96cf9288465226317df9f))
- Sub steps ([#56](https://github.com/juspay/hyperswitch-control-center/pull/56)) ([`16a3e18`](https://github.com/juspay/hyperswitch-control-center/commit/16a3e1850a658e397dc8f924f1bc07443e73ace5))
- Default id for connector label ([#84](https://github.com/juspay/hyperswitch-control-center/pull/84)) ([`cc09ab5`](https://github.com/juspay/hyperswitch-control-center/commit/cc09ab534f8bc87ae71a117b965a5f1201cc5a35))
### Refactors
- Dead code removal. ([#92](https://github.com/juspay/hyperswitch-control-center/pull/92)) ([`6c3f3cf`](https://github.com/juspay/hyperswitch-control-center/commit/6c3f3cf326c31b3bd2aa8931c169c86238d9ad88))
**Full Changelog:** [`v1.5.0...v1.6.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.5.0...v1.6.0)
- - -
## 1.5.0 (2023-12-11)
### Features
- Refunds search based on refunds id ([#83](https://github.com/juspay/hyperswitch-control-center/pull/83)) ([`f5363b4`](https://github.com/juspay/hyperswitch-control-center/commit/f5363b4ac3547232bd637884bd8a9fad85056608))
- Identity file changes in Codebase. ([#89](https://github.com/juspay/hyperswitch-control-center/pull/89)) ([`9e3aec7`](https://github.com/juspay/hyperswitch-control-center/commit/9e3aec7f7434cf4610db50a716653e73693aec94))
- Webhook Section Update - In Connector Preview ([#90](https://github.com/juspay/hyperswitch-control-center/pull/90)) ([`07a2cf1`](https://github.com/juspay/hyperswitch-control-center/commit/07a2cf1d5f36541e69dcf701c38fce33697f0df0))
### Bug Fixes
- Recoil value for feature flag updated ([#85](https://github.com/juspay/hyperswitch-control-center/pull/85)) ([`d7bb46e`](https://github.com/juspay/hyperswitch-control-center/commit/d7bb46e26c766ab8b43488ff42c6a0ad4eb21864))
- Added configure return url after business profile ([#82](https://github.com/juspay/hyperswitch-control-center/pull/82)) ([`ade63aa`](https://github.com/juspay/hyperswitch-control-center/commit/ade63aa8177d6269e02ac0db4f6e63867511b661))
- SDK Processing - Go to payments not working fix ([#88](https://github.com/juspay/hyperswitch-control-center/pull/88)) ([`f45d8dd`](https://github.com/juspay/hyperswitch-control-center/commit/f45d8dd6016f859b76013364c83c0758e5a42114))
### Refactors
- Common file for all identity functions ([#86](https://github.com/juspay/hyperswitch-control-center/pull/86)) ([`6ad715f`](https://github.com/juspay/hyperswitch-control-center/commit/6ad715fb11da557f4f07ff35e8f616b69684ff0c))
**Full Changelog:** [`v1.4.0...v1.5.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.4.0...v1.5.0)
- - -
## 1.4.0 (2023-12-08)
### Features
- New connector addition Helcim ([#80](https://github.com/juspay/hyperswitch-control-center/pull/80)) ([`0e59c4a`](https://github.com/juspay/hyperswitch-control-center/commit/0e59c4a6e80fe9d03c8f289810f7796e3da23cb1))
### Bug Fixes
- Hide connector sr ([#81](https://github.com/juspay/hyperswitch-control-center/pull/81)) ([`0880fd8`](https://github.com/juspay/hyperswitch-control-center/commit/0880fd8757f46236caff8783eb3154ec88b286c2))
**Full Changelog:** [`v1.3.1...v1.4.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.3.1...v1.4.0)
- - -
## 1.3.1 (2023-12-07)
### Bug Fixes
- Euclid wasm minimum amount ([#78](https://github.com/juspay/hyperswitch-control-center/pull/78)) ([`2f730e0`](https://github.com/juspay/hyperswitch-control-center/commit/2f730e0602e49dd11a8e0790df91941b91e1577b))
- Update wasm file to fix minimum amount ([`ea1b8fe`](https://github.com/juspay/hyperswitch-control-center/commit/ea1b8fefdf83a583d115467e78e10c68b4a1145e))
**Full Changelog:** [`v1.3.0...v1.3.1`](https://github.com/juspay/hyperswitch-control-center/compare/v1.3.0...v1.3.1)
- - -
## 1.3.0 (2023-12-07)
### Features
- Profile id and profile name concat ([#73](https://github.com/juspay/hyperswitch-control-center/pull/73)) ([`8266a95`](https://github.com/juspay/hyperswitch-control-center/commit/8266a95ede73e2b66677d7d1046c4271c8fbd526))
- New connector Icons and Searchbar for connector ([#46](https://github.com/juspay/hyperswitch-control-center/pull/46)) ([`2717c0d`](https://github.com/juspay/hyperswitch-control-center/commit/2717c0d3f09807022f53929ddd244aed3c28034d))
### Bug Fixes
- Default card layout ([#70](https://github.com/juspay/hyperswitch-control-center/pull/70)) ([`b7690bc`](https://github.com/juspay/hyperswitch-control-center/commit/b7690bc569895ce0d92425314bcfc783f8d3365f))
- Top 5 errors fix ([#60](https://github.com/juspay/hyperswitch-control-center/pull/60)) ([`d5b19d6`](https://github.com/juspay/hyperswitch-control-center/commit/d5b19d67ea6cc7e07153b0bfb58ca4beedf1a594))
- SDK code refactoring and return URL addition ([#72](https://github.com/juspay/hyperswitch-control-center/pull/72)) ([`d77b875`](https://github.com/juspay/hyperswitch-control-center/commit/d77b875b9e1c872985678975d4651f6cc90ac364))
- SDK Go to payment fix in Success Status ([#74](https://github.com/juspay/hyperswitch-control-center/pull/74)) ([`66ea60b`](https://github.com/juspay/hyperswitch-control-center/commit/66ea60b321bdd3efd7980a99e007135f29998951))
- Payment settings added under developers ([#77](https://github.com/juspay/hyperswitch-control-center/pull/77)) ([`592ce41`](https://github.com/juspay/hyperswitch-control-center/commit/592ce413fb529847c1428197f18420e6f2a28d66))
### Miscellaneous Tasks
- Response warnings removed ([#68](https://github.com/juspay/hyperswitch-control-center/pull/68)) ([`7427f10`](https://github.com/juspay/hyperswitch-control-center/commit/7427f1051dc6e88258699a90cef3453f66fe5f98))
- User Management File Changes ([#76](https://github.com/juspay/hyperswitch-control-center/pull/76)) ([`8807933`](https://github.com/juspay/hyperswitch-control-center/commit/8807933a676f8041eab5cbc5b833ed06e17a76eb))
**Full Changelog:** [`v1.2.0...v1.3.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.2.0...v1.3.0)
- - -
## 1.2.0 (2023-12-06)
### Features
- Bankofamerica addition in prod ([#69](https://github.com/juspay/hyperswitch-control-center/pull/69)) ([`bf6bde8`](https://github.com/juspay/hyperswitch-control-center/commit/bf6bde89eaaf3c443e07c191b42d2a9293377130))
- Support oss auth flow ([#64](https://github.com/juspay/hyperswitch-control-center/pull/64)) ([`59601ec`](https://github.com/juspay/hyperswitch-control-center/commit/59601ec4449505ff4fcd1e048d6ced78997062a9))
### Bug Fixes
- 3ds code refactor and bugfixes ([#61](https://github.com/juspay/hyperswitch-control-center/pull/61)) ([`9d4f503`](https://github.com/juspay/hyperswitch-control-center/commit/9d4f5036b458b671f4f1899619d891f74e936b8f))
- Commit-msg file changes & README.md file updated. ([#65](https://github.com/juspay/hyperswitch-control-center/pull/65)) ([`96a81e0`](https://github.com/juspay/hyperswitch-control-center/commit/96a81e0363ade432fb288cc59a5dfb64ad029e48))
- Update README.md ([#66](https://github.com/juspay/hyperswitch-control-center/pull/66)) ([`1930bd2`](https://github.com/juspay/hyperswitch-control-center/commit/1930bd294de22a962304c4389426b741429fd1dc))
- Live Mode SDK Fixes. ([#67](https://github.com/juspay/hyperswitch-control-center/pull/67)) ([`844920b`](https://github.com/juspay/hyperswitch-control-center/commit/844920b6fd09aa07edbf33ba83ff2aaa394c7a78))
**Full Changelog:** [`v1.1.0...v1.2.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.1.0...v1.2.0)
- - -
## 1.1.0 (2023-12-05)
### Features
- Business profile UI changes ([#51](https://github.com/juspay/hyperswitch-control-center/pull/51)) ([`7d2a443`](https://github.com/juspay/hyperswitch-control-center/commit/7d2a4430980539977a8e8ddfd9d959547549258a))
### Bug Fixes
- Warning icon added ([#59](https://github.com/juspay/hyperswitch-control-center/pull/59)) ([`4fbaee4`](https://github.com/juspay/hyperswitch-control-center/commit/4fbaee4bf0b1b65b08513bd9208e49f154911ae0))
- Optional test live mode removal & typo fix ([#63](https://github.com/juspay/hyperswitch-control-center/pull/63)) ([`9466057`](https://github.com/juspay/hyperswitch-control-center/commit/94660575566729f1b6a8013e9d09e1a4bc8cff20))
### Miscellaneous Tasks
- Signed commit added. ([#62](https://github.com/juspay/hyperswitch-control-center/pull/62)) ([`4f69afe`](https://github.com/juspay/hyperswitch-control-center/commit/4f69afe1946bd431fb6e8a31ee621358ff28ad12))
- Cleanup Configs ([#48](https://github.com/juspay/hyperswitch-control-center/pull/48)) ([`5bfae97`](https://github.com/juspay/hyperswitch-control-center/commit/5bfae972ac4cd2f367d26317c203b2c9d425535d))
- Dead code removal ([#55](https://github.com/juspay/hyperswitch-control-center/pull/55)) ([`b220415`](https://github.com/juspay/hyperswitch-control-center/commit/b220415bc390a5129e82e1b59dc6115a35cb6f84))
**Full Changelog:** [`v1.0.5...v1.1.0`](https://github.com/juspay/hyperswitch-control-center/compare/v1.0.5...v1.1.0)
- - -
Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
| 161,274 | 9,044 |
hyperswitch-control-center | cypress.config.js | .js | const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
baseUrl: "http://localhost:9000",
setupNodeEvents(on, config) {
require("@cypress/code-coverage/task")(on, config);
// include any other plugin code...
// It's IMPORTANT to return the config object
// with any changed environment variables
return config;
},
chromeWebSecurity: false,
},
env: {
CYPRESS_USERNAME: process.env.CYPRESS_USERNAME,
CYPRESS_PASSWORD: process.env.CYPRESS_PASSWORD,
MAIL_URL: process.env.MAIL_URL || "http://localhost:8025",
RBAC: "", //"profile,admin"
},
viewportWidth: 1440,
viewportHeight: 1005,
});
| 184 | 9,045 |
hyperswitch-control-center | LICENSE | none |
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. | 2,273 | 9,046 |
hyperswitch-control-center | rescript.json | .json | {
"$schema": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json",
"name": "editor-ui",
"uncurried": true,
"jsx": {
"version": 4,
"mode": "classic"
},
"bsc-flags": ["-bs-super-errors", "-open RescriptCore"],
"sources": {
"dir": "src",
"subdirs": true
},
"suffix": ".res.js",
"namespace": false,
"ppx-flags": [],
"package-specs": {
"module": "esmodule",
"in-source": true
},
"bs-dependencies": [
"@rescript/react",
"rescript-webapi",
"bs-fetch",
"@rescript/core"
]
}
| 184 | 9,047 |
hyperswitch-control-center | webpack.dev.js | .js | const path = require("path");
const webpack = require("webpack");
const { merge } = require("webpack-merge");
const common = require("./webpack.common.js");
const config = import("./src/server/config.mjs");
let port = 9000;
// proxy is setup to make frontend and backend url same for local testing
let proxy = {
"/api": {
target: "http://localhost:8080",
pathRewrite: { "^/api": "" },
changeOrigin: true,
},
"/themes": {
target: "",
changeOrigin: true,
},
"/test-data/recon": {
target: "",
changeOrigin: true,
},
};
let configMiddleware = (req, res, next) => {
if (req.path.includes("/config/feature") && req.method == "GET") {
let { domain = "default" } = req.query;
config
.then((result) => {
result.configHandler(req, res, false, domain);
})
.catch((error) => {
console.log(error, "error");
res.writeHead(500, { "Content-Type": "text/plain" });
res.end("Internal Server Error");
});
return;
}
if (req.path.includes("/config/merchant") && req.method == "POST") {
let { domain = "default" } = req.query;
config
.then((result) => {
result.merchantConfigHandler(req, res, false, domain);
})
.catch((error) => {
console.log(error, "error");
res.writeHead(500, { "Content-Type": "text/plain" });
res.end("Internal Server Error");
});
return;
}
next();
};
let devServer = {
static: {
directory: path.resolve(__dirname, "dist", "hyperswitch"),
},
compress: true,
hot: true,
port: port,
historyApiFallback: {
rewrites: [{ from: /^\/dashboard/, to: "/index.html" }],
},
proxy: proxy,
setupMiddlewares: (middlewares, devServer) => {
devServer.app.use(configMiddleware);
return middlewares;
},
};
console.log(devServer);
module.exports = merge([
common("hyperswitch"),
{
mode: "development",
devServer: devServer,
},
]);
| 517 | 9,048 |
hyperswitch-control-center | webpack.common.js | .js | const path = require("path");
const webpack = require("webpack");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const ReactRefreshWebpackPlugin = require("@pmmmwh/react-refresh-webpack-plugin");
const tailwindcss = require("tailwindcss");
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
module.exports = () => {
const isDevelopment = process.env.NODE_ENV !== "production";
let entryObj = {
app: `./src/entryPoints/HyperSwitchEntry.res.js`,
};
return {
entry: entryObj,
output: {
path: path.resolve(__dirname, "dist", "hyperswitch"),
clean: true,
publicPath: "/",
},
module: {
rules: [
{
test: /\.css$/i,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [[tailwindcss("./tailwind.config.js")]],
},
},
},
],
},
{
test: /\.ttf$/,
use: ["file-loader"],
},
{
test: /\.js$/,
use: {
loader: "@jsdevtools/coverage-istanbul-loader",
options: { esModules: true },
},
enforce: "post",
exclude: /node_modules|\.spec\.js$/,
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/, // Fonts
use: [
{
loader: "file-loader",
options: {
name: "fonts/[name].[ext]",
outputPath: "assets/fonts/",
},
},
],
},
],
},
plugins: [
new MiniCssExtractPlugin(),
new CopyPlugin({
patterns: [
{ from: "public/common" },
{ from: `public/hyperswitch` },
].filter(Boolean),
}),
new MonacoWebpackPlugin(),
new webpack.DefinePlugin({
dashboardAppEnv: JSON.stringify(process.env.APP_ENV || "sandbox"),
GIT_COMMIT_HASH: JSON.stringify(process.env.GIT_COMMIT_HASH || ""),
appVersion: JSON.stringify(process.env.APP_VERSION || ""),
}),
isDevelopment && new ReactRefreshWebpackPlugin(),
].filter(Boolean),
};
};
| 505 | 9,049 |
hyperswitch-control-center | webpack.custom.js | .js | const ReactRefreshWebpackPlugin = require("@pmmmwh/react-refresh-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const tailwindcss = require("tailwindcss");
const webpack = require("webpack");
const path = require("path");
const serverConfig = require("./webpack.server");
let customBuild = () => {
const isDevelopment = process.env.NODE_ENV !== "production";
let entryObj = {
app: `./src/entryPoints/HyperSwitchEntry.res.js`,
};
return {
mode: "production",
entry: entryObj,
output: {
path: path.resolve(__dirname, "dist", "hyperswitch"),
clean: true,
publicPath: "/",
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: true,
},
},
}),
],
},
module: {
rules: [
{
test: /\.css$/i,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [[tailwindcss("./tailwind.config.js")]],
},
},
},
],
},
{
test: /\.ttf$/,
use: ["file-loader"],
},
{
test: /\.js$/,
use: {
loader: "@jsdevtools/coverage-istanbul-loader",
options: { esModules: true },
},
enforce: "post",
exclude: /node_modules|\.spec\.js$/,
},
],
},
plugins: [
new MiniCssExtractPlugin(),
new CopyPlugin({
patterns: [
{ from: `public/hyperswitch/index.html` },
{ from: `public/hyperswitch/module.js` },
].filter(Boolean),
}),
new webpack.DefinePlugin({
dashboardAppEnv: JSON.stringify(process.env.APP_ENV || "sandbox"),
GIT_COMMIT_HASH: JSON.stringify(process.env.GIT_COMMIT_HASH || ""),
appVersion: JSON.stringify(process.env.APP_VERSION || ""),
}),
isDevelopment && new ReactRefreshWebpackPlugin(),
].filter(Boolean),
};
};
module.exports = (env, _argv) => {
var webpackConfigs = [serverConfig];
webpackConfigs.push(customBuild("hyperswitch", env));
console.log("webpackConfigs", webpackConfigs);
return webpackConfigs;
};
| 554 | 9,050 |
hyperswitch-control-center | webpack.prod.js | .js | const { merge } = require("webpack-merge");
const common = require("./webpack.common.js");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const serverConfig = require("./webpack.server");
const { execSync } = require("child_process");
process.env["NODE_ENV"] = "production";
var currentBranch = "hyperswitch";
const mergeProd = () => {
console.log("Building hyperswitch");
const publicPath = "auto";
let isProduction = process.env["APP_ENV"] === "production";
return merge([
common(),
{
mode: "production",
output: {
publicPath,
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: true,
},
},
}),
// For webpack@5 you can use the `...` syntax to extend existing minimizers (i.e. `terser-webpack-plugin`), uncomment the next line
// `...`,
// new CssMinimizerPlugin(),
],
},
},
]);
};
module.exports = (env, _argv) => {
var webpackConfigs = [serverConfig];
console.log("currentBranch", currentBranch);
if (currentBranch.search(/hyperswitch/) != -1) {
webpackConfigs.push(mergeProd("hyperswitch", env));
}
console.log("webpackConfigs", webpackConfigs);
return webpackConfigs;
};
| 327 | 9,051 |
hyperswitch-control-center | webpack.server.js | .js | const path = require("path");
const webpack = require("webpack");
const { execSync } = require("child_process");
const CopyWebpackPlugin = require("copy-webpack-plugin");
var currentCommitHash = execSync("git rev-parse HEAD", {
encoding: "utf-8",
}).trim();
module.exports = {
mode: "development",
entry: {
server: "./src/server/Server.res.js",
},
output: {
filename: `server.js`,
path: path.resolve(__dirname, "dist/server"),
clean: true,
publicPath: "/",
},
target: "node",
plugins: [
new webpack.DefinePlugin({
GIT_COMMIT_HASH: JSON.stringify(currentCommitHash),
IS_SCOPING_MODULE_ACTIVE: JSON.stringify(
process.env.IS_SCOPING_MODULE_ACTIVE || "true",
),
}),
new CopyWebpackPlugin({
patterns: [{ from: "config", to: "config" }],
}),
],
};
| 204 | 9,052 |
hyperswitch-control-center | jest.config.js | .js | module.exports = {
testEnvironment: "jsdom",
moduleFileExtensions: ["js", "mjs"],
testMatch: ["**/tests/**/*Test.res.js"],
};
| 39 | 9,053 |
hyperswitch-control-center | tailwind.config.js | .js | ///////////////////////////////////////////////////////////////////////////////
/// ***Reference*** ///
/// https://github.com/fbrill/dynamic-colors-in-tailwind/blob/main/utils/index.js///
///////////////////////////////////////////////////////////////////////////////
function withOpacity(variableName) {
return ({ opacityValue }) => {
if (opacityValue !== undefined) {
return `rgba(var(${variableName}), ${opacityValue})`;
}
return `rgb(var(${variableName}))`;
};
}
const plugin = require("tailwindcss/plugin");
module.exports = {
darkMode: "class",
content: ["./src/**/*.js"],
theme: {
fontFamily: {
"inter-style": '"InterDisplay"',
"jetbrain-mono": '"JetBrains Mono"',
},
extend: {
screens: {
mobile: "28.125rem",
tablet: "93.75rem",
laptop: "67.5rem",
desktop: "118.75rem",
},
scale: {
400: "4",
},
height: {
"1.1-rem": "1.125rem",
"5-rem": "5rem",
"6-rem": "6rem",
"7-rem": "7rem",
"8-rem": "8rem",
"9.5-rem": "9.5rem",
"12.5-rem": "12.5rem",
"25-rem": "25rem",
"30-rem": "30rem",
"35-rem": "35rem",
"40-rem": "40rem",
"45-rem": "45rem",
"48-rem": "48rem",
"50-rem": "50rem",
"93-per": "93%",
"80-vh": "80vh",
"85-vh": "85vh",
"30-vh": "30vh",
"40-vh": "40vh",
"75-vh": "75vh",
"32-px": "32px",
"36-px": "36px",
"40-px": "40px",
"68-px": "68px",
"120-px": "120px",
"130-px": "130px",
"195-px": "195px",
"774-px": "774px",
"12.5-rem": "12.5rem",
onBordingSupplier: "calc(100vh - 300px)",
},
padding: {
"10-px": "10px",
},
maxHeight: {
"25-rem": "25rem",
},
inset: {
"76-px": "76px",
},
width: {
"90-px": "90px",
100: "25rem",
133: "35rem",
200: "58rem",
150: "9.375rem",
"1.1-rem": "1.125rem",
"13.5-rem": "13.5rem",
"18-rem": "18rem",
"22-rem": "22rem",
"77-rem": "77rem",
"30-rem": "30rem",
"10.25-rem": "10.25rem",
"89.5-per": "89.5%",
"104-px": "104px",
"137-px": "137px",
"145-px": "145px",
"147-px": "147px",
"298-px": "298px",
"334-px": "334px",
"499-px": "499px",
"540-px": "540px",
"500-px": "500px",
"1034-px": "1034px",
"306-px": "306px",
modalOverlay: "calc(100vw + 7rem)",
pageWidth11: "75rem",
fixedPageWidth: "75.5rem",
standardPageWidth: "67.5rem",
},
gap: {
"0.5-rem": "0.5rem",
"72-px": "72px",
},
maxWidth: {
fixedPageWidth: "82.75rem",
860: "860px",
600: "600px",
700: "700px",
800: "800px",
},
lineHeight: {
17: "17px",
18: "18px",
20: "20px",
21: "21px",
24: "24px",
38: "38px",
60: "60px",
},
blur: {
xs: "0.2px",
},
borderWidth: {
1.5: "1.5px",
"20-px": "20px",
},
boxShadow: {
generic_shadow: "0 2px 5px 0 rgba(0, 0, 0, 0.12)",
generic_shadow_dark: "0px 2px 5px 0 rgba(0, 0, 0, 0.78)",
side_shadow: "0 4px 4px rgba(0, 0, 0, 0.25)",
hyperswitch_box_shadow: "0 2px 8px 0px rgba(0,0,0,0.08)",
checklistShadow: "-2px -4px 12px 0px rgba(0,0,0,0.11)",
sidebarShadow: "0 -2px 12px 0 rgba(0, 0, 0, 0.06)",
connectorTagShadow: "0px 1px 4px 2px rgba(0, 0, 0, 0.06)",
boxShadowMultiple:
"2px -2px 24px 0px rgba(0, 0, 0, 0.04), -2px 2px 24px 0px rgba(0, 0, 0, 0.02)",
homePageBoxShadow: "0px 2px 16px 2px rgba(51, 51, 51, 0.16)",
focusBoxShadow:
"0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 0px 0px 4px rgba(232, 243, 255, 1)",
cardShadow: "0px 2px 2px 0px rgba(0, 0, 0, 0.04)",
},
fontSize: {
base: "var(--base-font-size)",
heading: "var(--base-heading-font-size)",
"fs-10": "10px",
"fs-11": "11px",
"fs-13": "13px",
"fs-14": "14px",
"fs-15": "15px",
"fs-16": "16px",
"fs-18": "18px",
"fs-20": "20px",
"fs-24": "24px",
"fs-28": "28px",
"fs-32": "32px",
"fs-48": "48px",
},
colors: {
primary: {
DEFAULT: withOpacity("--colors-primary"),
custom: "#006DF9",
},
secondary: {
DEFAULT: withOpacity("--colors-secondary"),
hover: withOpacity("--btn-secondary-hover-background-color"),
},
sidebar: {
DEFAULT: withOpacity("--sidebar-primary"),
primary: withOpacity("--sidebar-primary"),
secondary: withOpacity("--sidebar-secondary"),
hoverColor: withOpacity("--sidebar-hover-color"),
primaryTextColor: withOpacity("--sidebar-primary-text-color"),
secondaryTextColor: withOpacity("--sidebar-secondary-text-color"),
borderColor: withOpacity("--sidebar-border-color"),
},
background: {
DEFAULT: withOpacity("--colors-background"),
},
typography: {
DEFAULT: withOpacity("--base-text-color"),
link: withOpacity("--base-link-color"),
link_hover: withOpacity("--base-link-hover-color"),
},
button: {
primary: {
bg: withOpacity("--btn-primary-background-color"),
text: withOpacity("--btn-primary-text-color"),
hoverbg: withOpacity("--btn-primary-hover-background-color"),
},
secondary: {
bg: withOpacity("--btn-secondary-background-color"),
text: withOpacity("--btn-secondary-text-color"),
hoverbg: withOpacity("--btn-secondary-hover-background-color"),
},
},
outline: withOpacity("--borders-border-color"),
blue: {
100: "#F1F2F4",
150: "#E6F7FF",
200: "#DAECFF",
300: "#BED4F0",
400: "#006DF9CC",
500: "#006DF9",
600: "#005ED6",
700: "#66A9FF",
800: "#F5F9FF",
810: "#B9D3F8",
811: "#0069FD",
812: "#1B85FF",
820: "#37476C",
830: "#465B8B",
840: "#303E5F",
background_blue: "#EAEEF9",
info_blue_background: "#F6F8FA",
},
grey: {
0: "#FEFEFE",
100: "#666666",
200: "#B9BABC",
300: "#CCCCCC",
400: "#D1D5DB",
700: "#151A1F",
800: "#383838",
900: "#333333",
dark: "#1E1E1E",
light: "#F6F6F6",
medium: "#A0A0A0",
outline: "#E5E5E5",
text: "#474D59",
},
green: {
50: "#EFF4EF",
100: "#F6FFED",
200: "#E7F8F0",
500: "#108548",
600: "#B8D1B4",
700: "#6CB851",
800: "#0E9255",
950: "#79A779",
960: "#3A833A",
success_page_bg: "#E8FDF2",
accepted_green_800: "#39934F",
dark: "#12B76A",
light: "#0E92551A",
status: "#2DA160",
},
orange: {
100: "#FFFBE6",
400: "#C17D10",
500: "#E07E41",
600: "#FDD4B6",
950: "#D88B54",
960: "#E89519",
border_orange: "#eea23640",
warning_background_orange: "#eea2361a",
warning_text_orange: "#EEA236",
status: "#D99530",
},
red: {
DEFAULT: "#FF0000",
100: "#FFF1F0",
200: "#FEECEB",
700: "#C0362D",
800: "#C04141",
900: "#DA0E0F",
950: "#F04849",
960: "#EF6969",
980: "#FC5454",
failed_page_bg: "#FDEDE8",
dark: "#F04E42",
light: "#FEEDEC",
status: "#DD2B0E",
},
"yellow-bg": "#F7D59B4D",
"profile-sidebar-blue": "#16488F",
"status-green": "#36AF47",
"popover-background": "#334264",
"popover-background-hover": "#2E3B58",
"status-text-orange": "#E9AA0A",
"status-blue": "#0585DD",
"border-light-grey": "#E6E6E6",
light_blue_bg: "#F8FAFF",
"light-grey": "#DFDFDF",
"extra-light-grey": "#F0F2F4",
"jp-gray": {
50: "#FAFBFD",
100: "#F7F8FA",
200: "#F1F5FA",
250: "#FDFEFF",
300: "#E7EAF1",
400: "#D1D4D8",
500: "#D8DDE9",
600: "#CCCFD4",
700: "#666666",
800: "#67707D",
850: "#31333A",
900: "#333333",
950: "#202124",
960: "#2C2D2F",
970: "#1B1B1D",
930: "#989AA5",
940: "#CCD2E2",
980: "#ACADB8",
dark_table_border_color: "#2e2f39",
tabset_gray: "#f6f8f9",
disabled_border: "#262626",
table_hover: "#F9FBFF",
darkgray_background: "#151A1F",
lightgray_background: "#151A1F",
text_darktheme: "#F6F8F9",
lightmode_steelgray: "#CCD2E2",
tooltip_bg_dark: "#F7F7FA",
tooltip_bg_light: "#23211D",
dark_disable_border_color: "#8d8f9a",
light_table_border_color: "#CDD4EB",
no_data_border: "#6E727A",
border_gray: "#354052", // need to check this
sankey_labels: "#7e828f",
dark_black: "#0E0E0E",
banner_black: "#333333",
light_gray_bg: "#FAFAFA",
button_gray: "#F7F7F7",
border_gray: "#E8E8E8", // need to check this
secondary_hover: "#EEEEEE",
test_credentials_bg: "#D9D9D959",
},
hyperswitch_dark_bg: "#212E46",
light_blue: "#006DF966",
light_grey: "#454545",
hyperswitch_green: "#71B44B",
light_green: "#32AA52",
hyperswitch_green_trans: "#71B44B20",
hyperswitch_red: "#D7625B",
hyperswitch_background: "#FFFFFF",
pdf_background: "#F5F5F5",
offset_white: "#FEFEFE",
light_white: "#FFFFFF0D",
unselected_white: "#9197A3",
/* NEW DESIGN COLORS */
nd_gray: {
25: "#FCFCFD",
50: "#F5F7FA",
100: "FBFBFB",
150: "#ECEFF3",
200: "#E1E4EA",
300: "#CACFD8",
500: "#606B85",
400: "#99A0AE",
600: "#525866",
700: "#2B303B",
800: "#222530",
},
nd_primary_blue: {
50: "#E4F1FD",
100: "#BCD7FA",
200: "#93BCF6",
300: "#6AA1F2",
400: "#4287EF",
500: "#1C6DEA",
600: "#0561E2",
},
//borders gray
nd_br_gray: {
150: "#ECEFF3",
200: "#E1E4EA",
400: "#E1E1E1",
500: "#E1E3EA",
},
nd_br_red: {
subtle: "#FCDAD7",
},
nd_green: {
50: "#ECF4EE",
100: "#E8F8F5",
200: "#52B87A",
400: "#2DA160",
500: "#11927E",
600: "#217645",
},
nd_red: {
50: "#FCF1EF",
600: "#C91C00",
400: "#EC5941",
},
nd_orange: {
50: "#FDF1DD",
600: "#9E5400",
},
nd_yellow: {
100: "#FFFBEE",
800: "#998335",
},
},
borderRadius: {
DEFAULT: "var(--borders-default-radius)",
"10-px": "10px",
},
spacing: {
DEFAULT: "var(--spacing-padding)",
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
const newUtilities = {
"*::-webkit-scrollbar": {
display: "none", // chrome and other
},
"*": {
scrollbarWidth: "none", // firefox
},
".show-scrollbar::-webkit-scrollbar": {
display: "block",
overflow: "scroll",
height: "4px",
width: "8px",
},
".show-scrollbar::-webkit-scrollbar-thumb": {
display: "block",
borderRadius: "20rem",
backgroundColor: "#8A8C8F",
},
".show-scrollbar::-webkit-scrollbar-track": {
backgroundColor: "#FFFFFFF",
},
};
addUtilities(newUtilities);
}),
plugin(function ({ addVariant, addUtilities, e }) {
addVariant("red", ({ modifySelectors, separator }) => {
modifySelectors(({ className }) => {
return `.red${separator}${className}`;
});
});
const newUtilities = {
".red .red\\:bg-red": {
"--tw-bg-opacity": "1",
"background-color": "rgb(255 0 0 / var(--tw-bg-opacity))",
},
};
addUtilities(newUtilities, ["responsive", "hover"]);
}),
plugin(function ({ addUtilities }) {
const newUtilities = {
".primary-gradient-button": {
boxShadow:
"0px 0px 0px 1px hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 1) calc(l + 2) / 1)",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 1) calc(l - 7) / 1) -5%, rgb(var(--btn-primary-background-color)) 107.5%),
linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 2) calc(l + 10) / 1) -6.25%, rgb(var(--btn-primary-hover-background-color)) 100%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".primary-gradient-button:hover": {
boxShadow:
"0px 0px 0px 1px hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 1) calc(l + 2) / 1)",
backgroundImage: `linear-gradient(180deg, rgb(var(--btn-primary-background-color)) 0%, hsl(from rgb(var(--btn-primary-background-color)) h s calc(l + 4) / 1) 100%),
linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 2) calc(l + 10) / 1) -6.25%, rgb(var(--btn-primary-hover-background-color)) 100%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".primary-gradient-button:active": {
boxShadow: "0px 3px 4px 0px #00000026 inset",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 1) calc(l - 13) / 1) -5%, rgb(var(--btn-primary-background-color)) 107.5%),
linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) calc(h - 1) calc(s + 1) calc(l - 18) / 1) -6.25%, rgb(var(--btn-primary-hover-background-color)) 100%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".primary-gradient-button:focus-visible": {
boxShadow:
"0px 0px 0px 3px hsl(from rgb(var(--btn-primary-hover-background-color)) calc(h - 1) calc(s + 3) calc(l + 45) / 1)",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 1) calc(l - 7) / 1) -5%, rgb(var(--btn-primary-background-color)) 107.5%),
linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s + 2) calc(l + 10) / 1) -6.25%, rgb(var(--btn-primary-hover-background-color)) 100%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".primary-gradient-button:disabled": {
boxShadow:
"0px 0px 0px 1px hsl(from rgb(var(--btn-primary-hover-background-color)) h calc(s + 3) calc(l + 35) / 1)",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-primary-background-color)) h calc(s - 10) calc(l + 25) / 1) 0%, hsl(from rgb(var(--btn-primary-background-color)) h calc(s - 10) calc(l + 25) / 1) 100%)`,
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".secondary-gradient-button": {
boxShadow: "0px 0px 0px 1px #bfbfc380",
backgroundImage: `linear-gradient(180deg, rgb(var(--btn-secondary-background-color)) 0%, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 5) / 1) 100%),
linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 5) / 1) 0%, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 1) / 1) 97.5%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".secondary-gradient-button:hover": {
boxShadow: "0px 0px 0px 1px #bfbfc380",
backgroundImage: `linear-gradient(180deg, rgb(var(--btn-secondary-hover-background-color)) 0%, rgb(var(--btn-secondary-hover-background-color)) 100%),
linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 5) / 1) 0%, hsl(from rgb(var(--btn-secondary-hover-background-color)) h calc(s - 11) calc(l - 6) / 0.75) 97.5%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".secondary-gradient-button:active": {
boxShadow: "0px 3px 4px 0px #0000001a inset",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-hover-background-color)) h calc(s - 11) calc(l - 6) / 1) 0%, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 3) / 1) 100%),
linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-hover-background-color)) h calc(s - 11) calc(l - 6) / 0.75) 0%, hsl(from rgb(var(--btn-secondary-hover-background-color)) h calc(s - 11) calc(l - 6) / 1) 97.5%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
".secondary-gradient-button:focus-visible": {
boxShadow: "0px 0px 0px 3px #bfbfc354",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-hover-background-color)) calc(h + 20) calc(s + 23) l / 1) 0%, hsl(from rgb(var(--btn-secondary-hover-background-color)) calc(h + 20) calc(s + 23) l / 1) 100%),
linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-background-color)) h s calc(l + 3) / 1) 0%, hsl(from rgb(var(--btn-secondary-hover-background-color)) h calc(s - 11) calc(l - 6) / 0.75) 97.5%)`,
transition: "ease-out 120ms",
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
outline: "none",
},
".secondary-gradient-button:disabled": {
boxShadow: "0px 0px 0px 1px #bfbfc354",
backgroundImage: `linear-gradient(180deg, hsl(from rgb(var(--btn-secondary-hover-background-color)) calc(h - 20) calc(s + 10) calc(l - 3) / 1) 0%, hsl(from rgb(var(--btn-secondary-hover-background-color)) calc(h - 20) calc(s + 10) calc(l - 3) / 1) 100%)`,
backgroundOrigin: "border-box",
backgroundClip: "content-box, border-box",
},
};
addUtilities(newUtilities, ["responsive", "hover"]);
}),
],
};
// clean jp-gray
// refactor colors object
// use Primar and seconday color for button
// we should use UIConfigs value as placeholder in the button
| 6,652 | 9,054 |
hyperswitch-control-center | README.md | .md | # Hyperswitch Control Center
Hyperswitch control center is an open source dashboard to easily view, manage and control your payments across multiple processors through Hyperswitch - an open source payments switch.
## Features
1. Connect to multiple payment processors like Stripe, Braintree, Adyen etc. in a few clicks
2. View and manage payments (payments, refunds, disputes) processed through multiple processors
3. Easily configure routing rules (volume-based, rule-based) to intelligently route your payments
4. Advanced analytics to make sense of your payment data
---
## Standard Installation
1. You can run Hyperswitch on your system using Docker compose after cloning this repository.
```bash
git clone --depth 1 --branch latest https://github.com/juspay/hyperswitch
cd hyperswitch
docker compose up -d
```
### Accessing the Application
Once the containers are up and running, you can access the application by navigating to http://localhost:9000 in your web browser.
---
## Standard Process for Local Development
### Prerequisites
1. Node.js and npm installed on your machine.
### Installation Steps
Follow these simple steps to set up Hyperswitch on your local machine.
1. Clone the repository:
```bash
git clone https://github.com/juspay/hyperswitch-control-center.git
```
2. Navigate to the project directory:
```bash
cd hyperswitch-control-center
```
3. Install project dependencies:
```bash
npm install
```
4. Start the ReScript compiler:
```bash
npm run re:start
```
5. In another terminal window, start the backend development server:
```
git clone --depth 1 --branch latest https://github.com/juspay/hyperswitch
cd hyperswitch
docker compose up -d --scale hyperswitch-control-center=0
```
6. Update the config.toml file
```bash
api_url = your-backend-url #e.g: http://localhost:8080
sdk_url = your-sdk-url #e.g: http://localhost:9050/HyperLoader.js
```
7. In another terminal window, start the development server:
```bash
npm run start
```
8. Access the application in your browser at http://localhost:9000.
---
## Feature Flags
Feature flags allow the users to enable or disable certain functionalities or flows in the control center.
### Using feature flags
The config.toml file can be found under config/config.toml. By default, all the feature flags are turned off (`False` value).
### Feature flag descriptions
#### Generate report
The `generate_report` feature flag controls the ability to generate detailed reports on payments, refunds, and disputes. When enabled, this allows users to pull reports covering the previous 6 months of transaction data. The reports can provide insights into trends, identify issues, and inform business decisions.
#### Mixpanel
The `mixpanel` feature flag controls the collection and transmission of anonymous usage data to Mixpanel for analytics. When enabled, the dashboard will automatically send information about user actions and events to Mixpanel without collecting any personally identifiable information via REST API.
#### Feedback
The `feedback` feature flag enables the ability for users to provide direct product feedback from within the dashboard. When enabled, a feedback modal will be available in the UI that allows users to rate features, report bugs, and suggest improvements. Disabling this flag will remove the feedback modal and prevent collection of any user data.
#### Test Processors
The `test_processors` feature flag allows enabling sandbox/test payment processors for testing purposes. When enabled, developers and testers can add test payment processors like Stripe Test or PayPal Test to trial payment flows without touching live transactions or making processor API calls.
#### Recon
The `recon` feature flag enables access to reconciliation capabilities in the Hyperswitch dashboard. When turned on, this unlocks the Reconciliation module that allows users to match payment transactions with bank/ledger entries for accounting purposes.
#### Payout
The `payout` feature flag enables the payout functionality in the dashboard. When enabled, this allows users to configure payout profiles, manage recipient details, schedule disbursements, and process payout batches to pay out funds to third parties.
#### FRM
The `frm` feature flag enables the Fraud and Risk Management (FRM) module within the dashboard. When enabled, this unlocks integrations with FRM players like Riskified and Signified.
#### Sample data
The `sample_data` feature flag enables the ability to load simulated sample data into the dashboard for preview purposes. When enabled, dummy transactions, analytics, and reporting data can be generated.
#### Audit trail
The `audit_trail` feature flag enables access to payment and refund audit logs within the dashboard. When turned on, users can view detailed trails showing the history of transactions including status changes, approvals, edits, and more.
#### Test Live Toggle
The `test_live_toggle` feature flag enables users to toggle between test and live modes when signing in. When enabled, users will see an option during sign-in to actively switch between test and live environments.
#### Is Live Mode
The `is_live_mode` feature flag enables the live mode - that the user is accessing. When enabled, it will show a visual indicator within the dashboard signaling whether the user is currently in a test environment or live production environment.
In Live mode, current users are not allowed to sign up. Users must be created manually.
#### Email
The `email` feature flag enables user sign-in and sign-up using magic links instead of passwords. When enabled, users can request a magic link via email that logs them into their account or creates a new account if they are signing up.
### Surcharge
The `surcharge` feature flag enables the ability to apply surcharges to payments. When enabled, you can create advanced rules based on payment parameters like amount, currency, and payment method to enforce surcharges as needed.
### Branding
Enabling `branding` feature flag enables customization of branding elements like logos, colors.
---
## Customize the Color and Logo
Priamry color,logo and favicon can customizied by setting the values in the config.toml
```
[default.theme]
primary_color="#006DF9"
primary_hover_color="#005ED6"
sidebar_color="#242F48"
[default.endpoints]
logo_url=""
favicon_url=""
```
## Enable the features on Run time by overriding the default value
You can override these default values either by exporting them directly
```
export default__theme__sidebar_color="#3b0764";
export default__features__threeds_authenticator=true;
export default__features__is_live_mode=true;
```
Or, you can set these values as environment variables by defining them in the `.env` file and pass the file
during the docker run command
`docker run -p 9000:9000 --env-file=.env juspaydotin/hyperswitch-control-center:latest`
### Deploy on AWS cloud
What you need to get started
- An AWS account
> P.S. You can directly start from Step 3 if you have installed and configured AWS CLI.
#### Step 1 - Install or update the AWS CLI
> For more information, [click here](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html)
**For Linux x86 (64-bit)**
1. Run the following command on your terminal
```
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
```
2. Confirm the installation with the following command
```
aws --version
```
3. Expected Response: aws-cli/2.10.0 Python/3.11.2 Linux/4.14.133-113.105.amzn2.x86_64 botocore/2.4.5
**For Linux ARM**
1. Run the following command on your terminal
```
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
```
2. Confirm the installation with the following command
```
aws --version
```
3. Expected Response: aws-cli/2.10.0 Python/3.11.2 Linux/4.14.133-113.105.amzn2.x86_64 botocore/2.4.5
**For MacOS**
1. Run the following command on your terminal
```
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
```
2. To verify that the shell can find and run the aws command in your $PATH, use the following commands
```
which aws
```
3. Expected Response: /usr/local/bin/aws
#### Step 2 - Configure the AWS CLI
For this step you would need the following from your AWS account
- Access key ID
- Secret Access Key
You can create or manage your access keys from the Security Credentials tab inside your AWS Console. For more information, [click here](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey)

Once you have the keys run the below command
```
export AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
export AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
```
#### Step 3 - Setup Hyperswitch
You can now deploy the hyperswitch application by running the below command in the same terminal session.
```
curl https://raw.githubusercontent.com/juspay/hyperswitch-control-center/main/aws/hyperswitch_control_center_aws_setup.sh | bash
```
> This step takes around 10-15min
Once the script is executed, you will receive a Public IP as the response (e.g. http://34.207.75.225). This IP is the base URL for accessing the application's APIs
#### Clean Up
If you want to delete the application from your account simply run the below clean up script. You need to install JQ for this. For more information, [click here](https://jqlang.github.io/jq/download/)
```
curl https://raw.githubusercontent.com/juspay/hyperswitch-control-center/main/aws/hyperswitch_control_center_cleanup_setup.sh | bash
```
---
## Versioning
For a detailed list of changes made in each version, please refer to the [CHANGELOG](./CHANGELOG.md) file.
---
## Contributing
We welcome contributions from the community! If you would like to contribute to Hyperswitch, please follow our contribution guidelines.
### Commit Conventions
We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for our commit messages. Each commit message should have a structured format:
`<type>(<subject>): <description>`
The commit message should begin with one of the following keywords followed by a colon: 'feat', 'fix', 'chore', 'refactor', 'docs', 'test' or 'style'. For example, it should be formatted like this: `feat: <subject> - <description>`
### Signing Commits
All commits should be signed to verify the authenticity of contributors. Follow the steps below to sign your commits:
1. Generate a GPG key if you haven't already:
```bash
gpg --gen-key
```
2. List your GPG keys and copy the GPG key ID::
```bash
gpg --list-secret-keys --keyid-format LONG
```
#### Identify the GPG key you want to add to your GitHub account.
a. Run the following command to export your GPG public key in ASCII-armored format:
```bash
gpg --armor --export <GPG_KEY_ID>
```
Replace <GPG_KEY_ID> with the actual key ID.
b. Copy the entire output, including the lines that start with "-----BEGIN PGP PUBLIC KEY BLOCK-----" and "-----END PGP PUBLIC KEY BLOCK-----".
c. Go to your GitHub Settings.
d. Click on "SSH and GPG keys" in the left sidebar.
e. Click the "New GPG key" button.
f. Paste your GPG public key into the provided text box.
g. Click the "Add GPG key" button.
h. Now your GPG public key is associated with your GitHub account, and you can sign your commits for added security.
3. Configure Git to use your GPG key:
```bash
git config --global user.signingkey <GPG_KEY_ID>
```
4. Set Git to sign all your commits by default:
```bash
git config --global commit.gpgSign true
```
5. Commit your changes with the -S option to sign the commit:
```bash
git commit -S -m "your commit message"
```
For further assistance, please refer to the [GitHub documentation on signing commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
---
## Standard Process for Raising a Pull Request (PR) from a Branch
### Introduction
Welcome to the standard process for raising a Pull Request (PR) directly from a branch in our project! Please follow these guidelines to ensure that your contributions align with our project's goals and standards.
### Steps to Raise a PR from a Branch
1. **Clone the Repository**:
- Clone the main repository to your local machine using the following command:
```bash
git clone https://github.com/juspay/hyperswitch-control-center.git
```
2. **Create a New Branch**:
- Create a new branch for your changes directly in the main repository. Please ensure the branch name is descriptive and relates to the feature or bug you're addressing.
```bash
git checkout -b feature/your-feature-name
```
3. **Make Changes**:
- Make the necessary changes in the codebase, ensuring that you follow the project's coding guidelines and standards.
4. **Commit Changes**:
- Commit your changes with a clear and descriptive commit message. Please follow conventional commit [guidelines](https://www.conventionalcommits.org/).
5. **Push Changes**:
- Push your changes to the branch in the main repository.
```bash
git push origin feature/your-feature-name
```
6. **Create a Pull Request**:
- Navigate to the main repository on GitHub and create a new PR from your branch. Provide a detailed description of the changes, along with any relevant context or screenshots.
7. **Respond to Feedback**:
- Be responsive to feedback from reviewers. Address any comments or suggestions promptly and make the necessary changes as required.
### Additional Notes
- Ensure your PR adheres to our coding guidelines, style conventions, and documentation standards.
- Include relevant tests, documentation updates, or screenshots, if applicable.
- Collaborate and communicate effectively with other contributors and maintainers throughout the review process.
## Cypress Test Suite
This guide walks you through running Cypress tests locally for the [Hyperswitch Control Center](https://github.com/juspay/hyperswitch-control-center) project. The tests simulate real user workflows on the dashboard UI and require a working Hyperswitch backend environment.
---
## Local Testing Setup
### Prerequisites
- [Node.js](https://nodejs.org/)
- [npm](https://www.npmjs.com/)
- [Cypress](https://docs.cypress.io/app/get-started/install-cypress)
---
### 1. Clone the repository and navigate to the project directory
```bash
git clone https://github.com/juspay/hyperswitch-control-center.git
cd hyperswitch-control-center
```
### 2. Install project dependencies:
```bash
npm install
```
### 3. Start the local dashboard server
```
npm run build:test && npm run test:start
```
### 4. Running Cypress Tests
Open a second terminal and run the following commands
#### Set environment variables for cypress
```
export CYPRESS_USERNAME="cypress@test.com"
export CYPRESS_PASSWORD="Cypress00#"
```
#### To run tests interactively in Cypress Test Runner:
```
npm run cy:open
```
#### To run tests in headless mode (CI/CD):
```
npm run cy:run
```
## License
This project is open-source and available under the Apache 2.0 license.
---
| 3,656 | 9,055 |
hyperswitch-control-center | Makefile | none | # Override envars using -e
# make release -e NS=docker.io/juspay/test -e VERSION=1.2.3 -e IMAGE_NAME=docker-test
NS ?= juspaydotin
VERSION ?= latest
IMAGE_NAME ?= hyperswitch-control-center
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
CONTAINER_NAME ?= hyperswitch-control-center
CONTAINER_INSTANCE ?= default
SOURCE_COMMIT := $(shell git rev-parse HEAD)
RUN_TEST ?= false
.PHONY: build push shell run start stop rm release
build: Dockerfile
$(info Building $(NS)/$(IMAGE_NAME):$(VERSION) / git-head: $(SOURCE_COMMIT))
$(info git branch is $(BRANCH_NAME))
# cp -R ~/.ssh .
docker build --platform=linux/amd64 -t $(IMAGE_NAME):$(VERSION) -f Dockerfile --build-arg BRANCH_NAME="$(BRANCH_NAME)" --build-arg RUN_TEST="$(RUN_TEST)" .
push:
docker tag $(IMAGE_NAME):$(VERSION) $(NS)/$(IMAGE_NAME):$(VERSION)
docker push $(NS)/$(IMAGE_NAME):$(VERSION)
shell:
docker run --rm --name $(CONTAINER_NAME)-$(CONTAINER_INSTANCE) -i -t $(PORTS) $(VOLUMES) $(ENV) $(NS)/$(IMAGE_NAME):$(VERSION) /bin/sh
run:
docker run --rm --name $(CONTAINER_NAME)-$(CONTAINER_INSTANCE) $(PORTS) $(VOLUMES) $(ENV) $(NS)/$(IMAGE_NAME):$(VERSION)
start:
docker run -d --name $(CONTAINER_NAME)-$(CONTAINER_INSTANCE) $(PORTS) $(VOLUMES) $(ENV) $(NS)/$(IMAGE_NAME):$(VERSION)
stop:
docker stop $(CONTAINER_NAME)-$(CONTAINER_INSTANCE)
rm:
docker rm $(CONTAINER_NAME)-$(CONTAINER_INSTANCE)
release: build
make push -e VERSION=$(VERSION)
default: build | 425 | 9,056 |
hyperswitch-control-center | package-lock.json | .json | {
"name": "hyperswitch-dashboard",
"version": "1.0.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "hyperswitch-dashboard",
"version": "1.0.5",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
"@headlessui/react": "^1.2.0",
"@iarna/toml": "^2.2.5",
"@juspay-tech/hyper-js": "^1.6.0",
"@juspay-tech/react-hyper-js": "^1.2.1",
"@monaco-editor/react": "^4.4.5",
"@rescript/core": "^0.6.0",
"@rescript/react": "^0.12.0",
"apexcharts": "^4.0.0",
"bs-fetch": "^0.6.2",
"dayjs": "^1.10.4",
"final-form": "^4.20.4",
"framer-motion": "^10.12.16",
"highcharts": "^9.3.0",
"highcharts-react-official": "^3.1.0",
"js-datepicker": "^5.18.2",
"js-sha256": "^0.9.0",
"lottie-react": "^2.3.1",
"mixpanel-browser": "2.45.0",
"monaco-editor": "^0.34.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-ga4": "^2.0.0",
"react-pdf": "^9.1.1",
"react-qr-code": "^2.0.12",
"react-syntax-highlighter": "^15.5.0",
"react-window": "^1.8.8",
"recoil": "^0.1.2",
"rescript-webapi": "^0.9.1",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.24",
"@eslint/create-config": "0.4.6",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cypress": "^13.6.0",
"eslint": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^1.3.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"nyc": "^15.1.0",
"postcss": "^8.3.6",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
"rescript": "^11.1.1",
"serve": "^14.2.1",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.3.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.3.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.26.2",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.25.9",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
"integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
"integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helpers": "^7.26.0",
"@babel/parser": "^7.26.0",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/eslint-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz",
"integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==",
"dependencies": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
"semver": "^6.3.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
},
"peerDependencies": {
"@babel/core": "^7.11.0",
"eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
}
},
"node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
"engines": {
"node": ">=10"
}
},
"node_modules/@babel/generator": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
"integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-annotate-as-pure": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
"integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
"dependencies": {
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
"integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
"dependencies": {
"@babel/compat-data": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz",
"integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-optimise-call-expression": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/traverse": "^7.25.9",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz",
"integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"regexpu-core": "^6.2.0",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-define-polyfill-provider": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz",
"integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==",
"dependencies": {
"@babel/helper-compilation-targets": "^7.22.6",
"@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "^1.14.2"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz",
"integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz",
"integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
"dependencies": {
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz",
"integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-remap-async-to-generator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz",
"integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-wrap-function": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz",
"integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==",
"dependencies": {
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-optimise-call-expression": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz",
"integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-wrap-function": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz",
"integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==",
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
"integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
"integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"dependencies": {
"@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz",
"integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz",
"integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz",
"integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz",
"integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.13.0"
}
},
"node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz",
"integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-proposal-class-properties": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
"integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-decorators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz",
"integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-decorators": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
"integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
"deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.",
"dependencies": {
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-numeric-separator": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
"integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
"deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.",
"dependencies": {
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-optional-chaining": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
"integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
"deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.",
"dependencies": {
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-private-methods": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
"integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
"deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-private-property-in-object": {
"version": "7.21.0-placeholder-for-preset-env.2",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-bigint": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-static-block": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-decorators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz",
"integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-flow": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz",
"integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-assertions": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz",
"integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-attributes": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz",
"integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@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",
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
"integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@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==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-numeric-separator": {
"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==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-private-property-in-object": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-typescript": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz",
"integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-unicode-sets-regex": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
"integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-transform-arrow-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz",
"integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz",
"integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-remap-async-to-generator": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-async-to-generator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz",
"integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==",
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-remap-async-to-generator": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz",
"integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz",
"integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-class-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz",
"integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-class-static-block": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz",
"integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.12.0"
}
},
"node_modules/@babel/plugin-transform-classes": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz",
"integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9",
"@babel/traverse": "^7.25.9",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-computed-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz",
"integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/template": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-destructuring": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz",
"integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-dotall-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz",
"integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz",
"integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz",
"integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-transform-dynamic-import": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz",
"integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz",
"integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-export-namespace-from": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz",
"integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-flow-strip-types": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz",
"integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-flow": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-for-of": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz",
"integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-function-name": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz",
"integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==",
"dependencies": {
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-json-strings": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz",
"integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz",
"integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz",
"integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz",
"integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-amd": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz",
"integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==",
"dependencies": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz",
"integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==",
"dependencies": {
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz",
"integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==",
"dependencies": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-umd": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz",
"integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==",
"dependencies": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz",
"integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-transform-new-target": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz",
"integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz",
"integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-numeric-separator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz",
"integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-object-rest-spread": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz",
"integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==",
"dependencies": {
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-object-super": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz",
"integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-optional-catch-binding": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz",
"integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-optional-chaining": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz",
"integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-parameters": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz",
"integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-private-methods": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz",
"integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-private-property-in-object": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz",
"integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-property-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz",
"integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-constant-elements": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz",
"integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-display-name": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz",
"integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz",
"integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-development": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz",
"integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-pure-annotations": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz",
"integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-regenerator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz",
"integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"regenerator-transform": "^0.15.2"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-regexp-modifiers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz",
"integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-transform-reserved-words": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz",
"integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-runtime": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz",
"integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==",
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"babel-plugin-polyfill-corejs2": "^0.4.10",
"babel-plugin-polyfill-corejs3": "^0.10.6",
"babel-plugin-polyfill-regenerator": "^0.6.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz",
"integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-spread": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz",
"integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-sticky-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz",
"integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-template-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz",
"integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz",
"integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-typescript": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz",
"integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/plugin-syntax-typescript": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz",
"integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-unicode-property-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz",
"integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-unicode-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz",
"integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-unicode-sets-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz",
"integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==",
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/preset-env": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz",
"integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==",
"dependencies": {
"@babel/compat-data": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9",
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9",
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-async-generator-functions": "^7.25.9",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-block-scoped-functions": "^7.25.9",
"@babel/plugin-transform-block-scoping": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-classes": "^7.25.9",
"@babel/plugin-transform-computed-properties": "^7.25.9",
"@babel/plugin-transform-destructuring": "^7.25.9",
"@babel/plugin-transform-dotall-regex": "^7.25.9",
"@babel/plugin-transform-duplicate-keys": "^7.25.9",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-dynamic-import": "^7.25.9",
"@babel/plugin-transform-exponentiation-operator": "^7.25.9",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-for-of": "^7.25.9",
"@babel/plugin-transform-function-name": "^7.25.9",
"@babel/plugin-transform-json-strings": "^7.25.9",
"@babel/plugin-transform-literals": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-member-expression-literals": "^7.25.9",
"@babel/plugin-transform-modules-amd": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-modules-systemjs": "^7.25.9",
"@babel/plugin-transform-modules-umd": "^7.25.9",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-new-target": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-object-super": "^7.25.9",
"@babel/plugin-transform-optional-catch-binding": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-property-literals": "^7.25.9",
"@babel/plugin-transform-regenerator": "^7.25.9",
"@babel/plugin-transform-regexp-modifiers": "^7.26.0",
"@babel/plugin-transform-reserved-words": "^7.25.9",
"@babel/plugin-transform-shorthand-properties": "^7.25.9",
"@babel/plugin-transform-spread": "^7.25.9",
"@babel/plugin-transform-sticky-regex": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.25.9",
"@babel/plugin-transform-typeof-symbol": "^7.25.9",
"@babel/plugin-transform-unicode-escapes": "^7.25.9",
"@babel/plugin-transform-unicode-property-regex": "^7.25.9",
"@babel/plugin-transform-unicode-regex": "^7.25.9",
"@babel/plugin-transform-unicode-sets-regex": "^7.25.9",
"@babel/preset-modules": "0.1.6-no-external-plugins",
"babel-plugin-polyfill-corejs2": "^0.4.10",
"babel-plugin-polyfill-corejs3": "^0.10.6",
"babel-plugin-polyfill-regenerator": "^0.6.1",
"core-js-compat": "^3.38.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/preset-modules": {
"version": "0.1.6-no-external-plugins",
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
"integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/preset-react": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz",
"integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-transform-react-display-name": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@babel/plugin-transform-react-pure-annotations": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/preset-typescript": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz",
"integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"dependencies": {
"@babel/code-frame": "^7.25.9",
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.26.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
"integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
"integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"dev": true,
"optional": true,
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@csstools/convert-colors": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz",
"integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==",
"dev": true,
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/@csstools/normalize.css": {
"version": "12.1.1",
"resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz",
"integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ=="
},
"node_modules/@csstools/postcss-cascade-layers": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz",
"integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==",
"dependencies": {
"@csstools/selector-specificity": "^2.0.2",
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-color-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz",
"integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-font-format-keywords": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz",
"integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-hwb-function": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz",
"integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-ic-unit": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz",
"integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-is-pseudo-class": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz",
"integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==",
"dependencies": {
"@csstools/selector-specificity": "^2.0.0",
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-nested-calc": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz",
"integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-normalize-display-values": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz",
"integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-oklab-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz",
"integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-progressive-custom-properties": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz",
"integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.3"
}
},
"node_modules/@csstools/postcss-stepped-value-functions": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz",
"integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-text-decoration-shorthand": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz",
"integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-trigonometric-functions": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz",
"integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-unset-value": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz",
"integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==",
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/selector-specificity": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz",
"integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==",
"engines": {
"node": "^14 || ^16 || >=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss-selector-parser": "^6.0.10"
}
},
"node_modules/@cypress/code-coverage": {
"version": "3.13.9",
"resolved": "https://registry.npmjs.org/@cypress/code-coverage/-/code-coverage-3.13.9.tgz",
"integrity": "sha512-VnsBLmhRLE3xgeX5hdN7aWCU3l8UHttUCMO7b+2OrRvs+R3kpBwjejfSC0/H7ErXz5o6r99biClIaS5bqo60uQ==",
"dev": true,
"dependencies": {
"@cypress/webpack-preprocessor": "^6.0.0",
"chalk": "4.1.2",
"dayjs": "1.11.13",
"debug": "4.3.7",
"execa": "4.1.0",
"globby": "11.1.0",
"istanbul-lib-coverage": "^3.0.0",
"js-yaml": "4.1.0",
"nyc": "15.1.0"
},
"peerDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.3 || ^9",
"cypress": "*",
"webpack": "^4 || ^5"
}
},
"node_modules/@cypress/code-coverage/node_modules/debug": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
"dev": true,
"dependencies": {
"ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/@cypress/request": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.7.tgz",
"integrity": "sha512-LzxlLEMbBOPYB85uXrDqvD4MgcenjRBLIns3zyhx7vTPj/0u2eQhzXvPiGcaJrV38Q9dbkExWp6cOHPJ+EtFYg==",
"dev": true,
"dependencies": {
"aws-sign2": "~0.7.0",
"aws4": "^1.8.0",
"caseless": "~0.12.0",
"combined-stream": "~1.0.6",
"extend": "~3.0.2",
"forever-agent": "~0.6.1",
"form-data": "~4.0.0",
"http-signature": "~1.4.0",
"is-typedarray": "~1.0.0",
"isstream": "~0.1.2",
"json-stringify-safe": "~5.0.1",
"mime-types": "~2.1.19",
"performance-now": "^2.1.0",
"qs": "6.13.1",
"safe-buffer": "^5.1.2",
"tough-cookie": "^5.0.0",
"tunnel-agent": "^0.6.0",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@cypress/webpack-preprocessor": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@cypress/webpack-preprocessor/-/webpack-preprocessor-6.0.2.tgz",
"integrity": "sha512-0+1+4iy4W9PE6R5ywBNKAZoFp8Sf//w3UJ+CKTqkcAjA29b+dtsD0iFT70DsYE0BMqUM1PO7HXFGbXllQ+bRAA==",
"dev": true,
"dependencies": {
"bluebird": "3.7.1",
"debug": "^4.3.4",
"lodash": "^4.17.20"
},
"peerDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.3 || ^9",
"webpack": "^4 || ^5"
}
},
"node_modules/@cypress/xvfb": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz",
"integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
"dev": true,
"dependencies": {
"debug": "^3.1.0",
"lodash.once": "^4.1.1"
}
},
"node_modules/@cypress/xvfb/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/@discoveryjs/json-ext": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
"integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
"dev": true,
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"optional": true,
"dependencies": {
"@emotion/memoize": "0.7.4"
}
},
"node_modules/@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
"optional": true
},
"node_modules/@esbuild/android-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
"integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"cpu": [
"arm"
],
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
"integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
"integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
"integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
"integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
"integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
"integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
"integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"cpu": [
"arm"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
"integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
"integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
"integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
"cpu": [
"loong64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-mips64el": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
"integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"cpu": [
"mips64el"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ppc64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
"integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"cpu": [
"ppc64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-riscv64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
"integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"cpu": [
"riscv64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-s390x": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
"integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"cpu": [
"s390x"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
"integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/netbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
"integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"netbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/openbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
"integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"openbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/sunos-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
"integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"sunos"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
"integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
"integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
"integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
"integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"dependencies": {
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/create-config": {
"version": "0.4.6",
"resolved": "https://registry.npmjs.org/@eslint/create-config/-/create-config-0.4.6.tgz",
"integrity": "sha512-JKxV4ORZoOElPdAZEib7YXhuBRAwS/fS9xu5xbfe0KEUIgglFKDxNgytZp3ubDDPI3rdOVgwU0psKSG44SyKGQ==",
"dev": true,
"dependencies": {
"@eslint/eslintrc": "^1.0.3",
"cross-spawn": "^7.0.2",
"debug": "^4.0.1",
"enquirer": "^2.3.5",
"js-yaml": "^4.1.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"mri": "^1.2.0",
"semver": "^7.2.1"
},
"bin": {
"create-config": "bin/create-config.js"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/create-config/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@eslint/eslintrc": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
"integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.4.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
"version": "13.24.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dev": true,
"dependencies": {
"type-fest": "^0.20.2"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@eslint/eslintrc/node_modules/type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@eslint/js": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@headlessui/react": {
"version": "1.7.19",
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.19.tgz",
"integrity": "sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==",
"dependencies": {
"@tanstack/react-virtual": "^3.0.0-beta.60",
"client-only": "^0.0.1"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
"deprecated": "Use @eslint/config-array instead",
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.3",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
"deprecated": "Use @eslint/object-schema instead"
},
"node_modules/@iarna/toml": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dependencies": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dependencies": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
"integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
"dependencies": {
"camelcase": "^5.3.1",
"find-up": "^4.1.0",
"get-package-type": "^0.1.0",
"js-yaml": "^3.13.1",
"resolve-from": "^5.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dependencies": {
"sprintf-js": "~1.0.2"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dependencies": {
"p-locate": "^4.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dependencies": {
"p-limit": "^2.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"engines": {
"node": ">=8"
}
},
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
"integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/console": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz",
"integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"jest-message-util": "^27.5.1",
"jest-util": "^27.5.1",
"slash": "^3.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/console/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/console/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/console/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/console/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/core": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
"integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==",
"dependencies": {
"@jest/console": "^27.5.1",
"@jest/reporters": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
"jest-changed-files": "^27.5.1",
"jest-config": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-resolve-dependencies": "^27.5.1",
"jest-runner": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"jest-watcher": "^27.5.1",
"micromatch": "^4.0.4",
"rimraf": "^3.0.0",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
"optional": true
}
}
},
"node_modules/@jest/core/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/core/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/core/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/core/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/environment": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz",
"integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==",
"dependencies": {
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/environment/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/environment/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/fake-timers": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz",
"integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==",
"dependencies": {
"@jest/types": "^27.5.1",
"@sinonjs/fake-timers": "^8.0.1",
"@types/node": "*",
"jest-message-util": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/fake-timers/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/fake-timers/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/fake-timers/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/fake-timers/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/globals": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz",
"integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/types": "^27.5.1",
"expect": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/globals/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/globals/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/reporters": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz",
"integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
"@jest/console": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"collect-v8-coverage": "^1.0.0",
"exit": "^0.1.2",
"glob": "^7.1.2",
"graceful-fs": "^4.2.9",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^5.1.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.1.3",
"jest-haste-map": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"slash": "^3.0.0",
"source-map": "^0.6.0",
"string-length": "^4.0.1",
"terminal-link": "^2.0.0",
"v8-to-istanbul": "^8.1.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
"optional": true
}
}
},
"node_modules/@jest/reporters/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/reporters/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/reporters/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
"integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/parser": "^7.14.7",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.2.0",
"semver": "^6.3.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/reporters/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/reporters/node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/@jest/reporters/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jest/reporters/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/@jest/schemas": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"dev": true,
"dependencies": {
"@sinclair/typebox": "^0.27.8"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jest/source-map": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz",
"integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==",
"dependencies": {
"callsites": "^3.0.0",
"graceful-fs": "^4.2.9",
"source-map": "^0.6.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/source-map/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jest/test-result": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz",
"integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==",
"dependencies": {
"@jest/console": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/test-result/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/test-result/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/test-sequencer": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz",
"integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==",
"dependencies": {
"@jest/test-result": "^27.5.1",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-runtime": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/transform": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz",
"integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==",
"dependencies": {
"@babel/core": "^7.1.0",
"@jest/types": "^27.5.1",
"babel-plugin-istanbul": "^6.1.1",
"chalk": "^4.0.0",
"convert-source-map": "^1.4.0",
"fast-json-stable-stringify": "^2.0.0",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-util": "^27.5.1",
"micromatch": "^4.0.4",
"pirates": "^4.0.4",
"slash": "^3.0.0",
"source-map": "^0.6.1",
"write-file-atomic": "^3.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/transform/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/transform/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@jest/transform/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/@jest/transform/node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/@jest/transform/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/@jest/transform/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jest/types": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
"integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
"dev": true,
"dependencies": {
"@jest/schemas": "^29.6.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^17.0.8",
"chalk": "^4.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
"integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@jsdevtools/coverage-istanbul-loader": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz",
"integrity": "sha512-EUCPEkaRPvmHjWAAZkWMT7JDzpw7FKB00WTISaiXsbNOd5hCHg77XLA8sLYLFDo1zepYLo2w7GstN8YBqRXZfA==",
"dev": true,
"dependencies": {
"convert-source-map": "^1.7.0",
"istanbul-lib-instrument": "^4.0.3",
"loader-utils": "^2.0.0",
"merge-source-map": "^1.1.0",
"schema-utils": "^2.7.0"
}
},
"node_modules/@jsdevtools/coverage-istanbul-loader/node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true
},
"node_modules/@juspay-tech/hyper-js": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@juspay-tech/hyper-js/-/hyper-js-1.6.0.tgz",
"integrity": "sha512-Lntha7USoH+Kh4hfSYkm2GCFFxOAzeAV0bojLEKDrL/VSccmntKqzugvgrYhfHHIeX/QDdDzacMO5IVyR3sgfA==",
"dependencies": {
"@ryyppy/rescript-promise": "^2.1.0",
"bs-fetch": "^0.6.2",
"esbuild": "^0.18.17",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-postcss": "^0.0.4",
"react-scripts": "^5.0.1"
}
},
"node_modules/@juspay-tech/react-hyper-js": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@juspay-tech/react-hyper-js/-/react-hyper-js-1.2.2.tgz",
"integrity": "sha512-EFFM3P9/zDweymVGwvHf7RenGmBuqS0mhPVPLJ8IxDAJ2YwxgbtLiL3E6sR3+ZQ8nhcfQVXI1tfeKC5Jx0+fTw==",
"dependencies": {
"@rescript/core": "^0.7.0",
"@rescript/react": "^0.12.1",
"@ryyppy/rescript-promise": "^2.1.0",
"postcss": "^8.4.19",
"react-scripts": "^5.0.1"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@juspay-tech/react-hyper-js/node_modules/@rescript/core": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.7.0.tgz",
"integrity": "sha512-5arTnw1EVPvssqq4v+XHkigROoWXYm/3pD+ZyOSeJgnbzMccRibGWb4L6Ss3QBoEkpuCodX06RnLx8Vqa3kECQ==",
"peerDependencies": {
"rescript": "^10.1.0 || ^11.0.0"
}
},
"node_modules/@leichtgewicht/ip-codec": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
"integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw=="
},
"node_modules/@mapbox/node-pre-gyp": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
"integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
"optional": true,
"dependencies": {
"detect-libc": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"make-dir": "^3.1.0",
"node-fetch": "^2.6.7",
"nopt": "^5.0.0",
"npmlog": "^5.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.11"
},
"bin": {
"node-pre-gyp": "bin/node-pre-gyp"
}
},
"node_modules/@mapbox/node-pre-gyp/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"optional": true,
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@monaco-editor/loader": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz",
"integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==",
"dependencies": {
"state-local": "^1.0.6"
},
"peerDependencies": {
"monaco-editor": ">= 0.21.0 < 1"
}
},
"node_modules/@monaco-editor/react": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz",
"integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==",
"dependencies": {
"@monaco-editor/loader": "^1.4.0"
},
"peerDependencies": {
"monaco-editor": ">= 0.25.0 < 1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
"version": "5.1.1-v1",
"resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
"integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
"dependencies": {
"eslint-scope": "5.1.1"
}
},
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"engines": {
"node": ">=4.0"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pkgjs/parseargs": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
"optional": true,
"engines": {
"node": ">=14"
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin": {
"version": "0.5.15",
"resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz",
"integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==",
"dependencies": {
"ansi-html": "^0.0.9",
"core-js-pure": "^3.23.3",
"error-stack-parser": "^2.0.6",
"html-entities": "^2.1.0",
"loader-utils": "^2.0.4",
"schema-utils": "^4.2.0",
"source-map": "^0.7.3"
},
"engines": {
"node": ">= 10.13"
},
"peerDependencies": {
"@types/webpack": "4.x || 5.x",
"react-refresh": ">=0.10.0 <1.0.0",
"sockjs-client": "^1.4.0",
"type-fest": ">=0.17.0 <5.0.0",
"webpack": ">=4.43.0 <6.0.0",
"webpack-dev-server": "3.x || 4.x || 5.x",
"webpack-hot-middleware": "2.x",
"webpack-plugin-serve": "0.x || 1.x"
},
"peerDependenciesMeta": {
"@types/webpack": {
"optional": true
},
"sockjs-client": {
"optional": true
},
"type-fest": {
"optional": true
},
"webpack-dev-server": {
"optional": true
},
"webpack-hot-middleware": {
"optional": true
},
"webpack-plugin-serve": {
"optional": true
}
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/@rescript/core": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.6.0.tgz",
"integrity": "sha512-D4ykxSpbmxbQa99kCg6/DztwCNt1tV3t11BLSOvJPHNLSIuQxfAU3ddgRruaH9LQSKOrMUjxQS9z6RdG5iFPoA==",
"peerDependencies": {
"rescript": "^10.1.0 || ^11.0.0-alpha.0 || next"
}
},
"node_modules/@rescript/react": {
"version": "0.12.2",
"resolved": "https://registry.npmjs.org/@rescript/react/-/react-0.12.2.tgz",
"integrity": "sha512-EOF19dLTG4Y9K59JqMjG5yfvIsrMZqfxGC2J/oe9gGgrMiUrzZh3KH9khTcR1Z3Ih0lRViSh0/iYnJz20gGoag==",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
},
"node_modules/@rollup/plugin-babel": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz",
"integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==",
"dependencies": {
"@babel/helper-module-imports": "^7.10.4",
"@rollup/pluginutils": "^3.1.0"
},
"engines": {
"node": ">= 10.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@types/babel__core": "^7.1.9",
"rollup": "^1.20.0||^2.0.0"
},
"peerDependenciesMeta": {
"@types/babel__core": {
"optional": true
}
}
},
"node_modules/@rollup/plugin-node-resolve": {
"version": "11.2.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz",
"integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==",
"dependencies": {
"@rollup/pluginutils": "^3.1.0",
"@types/resolve": "1.17.1",
"builtin-modules": "^3.1.0",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.19.0"
},
"engines": {
"node": ">= 10.0.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0"
}
},
"node_modules/@rollup/plugin-replace": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz",
"integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==",
"dependencies": {
"@rollup/pluginutils": "^3.1.0",
"magic-string": "^0.25.7"
},
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0"
}
},
"node_modules/@rollup/pluginutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
"integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
"dependencies": {
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"picomatch": "^2.2.2"
},
"engines": {
"node": ">= 8.0.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0"
}
},
"node_modules/@rollup/pluginutils/node_modules/@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
"integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
},
"node_modules/@rtsao/scc": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
"integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g=="
},
"node_modules/@rushstack/eslint-patch": {
"version": "1.10.4",
"resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz",
"integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA=="
},
"node_modules/@ryyppy/rescript-promise": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@ryyppy/rescript-promise/-/rescript-promise-2.1.0.tgz",
"integrity": "sha512-+dW6msBrj2Lr2hbEMX+HoWCvN89qVjl94RwbYWJgHQuj8jm/izdPC0YzxgpGoEFdeAEW2sOozoLcYHxT6o5WXQ=="
},
"node_modules/@sinclair/typebox": {
"version": "0.27.8",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
"integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
"dev": true
},
"node_modules/@sinonjs/commons": {
"version": "1.8.6",
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
"dependencies": {
"type-detect": "4.0.8"
}
},
"node_modules/@sinonjs/fake-timers": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
"integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
"dependencies": {
"@sinonjs/commons": "^1.7.0"
}
},
"node_modules/@surma/rollup-plugin-off-main-thread": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz",
"integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==",
"dependencies": {
"ejs": "^3.1.6",
"json5": "^2.2.0",
"magic-string": "^0.25.0",
"string.prototype.matchall": "^4.0.6"
}
},
"node_modules/@svgdotjs/svg.draggable.js": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.draggable.js/-/svg.draggable.js-3.0.4.tgz",
"integrity": "sha512-vWi/Col5Szo74HJVBgMHz23kLVljt3jvngmh0DzST45iO2ubIZ487uUAHIxSZH2tVRyiaaTL+Phaasgp4gUD2g==",
"peerDependencies": {
"@svgdotjs/svg.js": "^3.2.4"
}
},
"node_modules/@svgdotjs/svg.filter.js": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.filter.js/-/svg.filter.js-3.0.8.tgz",
"integrity": "sha512-YshF2YDaeRA2StyzAs5nUPrev7npQ38oWD0eTRwnsciSL2KrRPMoUw8BzjIXItb3+dccKGTX3IQOd2NFzmHkog==",
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/@svgdotjs/svg.js": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.js/-/svg.js-3.2.4.tgz",
"integrity": "sha512-BjJ/7vWNowlX3Z8O4ywT58DqbNRyYlkk6Yz/D13aB7hGmfQTvGX4Tkgtm/ApYlu9M7lCQi15xUEidqMUmdMYwg==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Fuzzyma"
}
},
"node_modules/@svgdotjs/svg.resize.js": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.resize.js/-/svg.resize.js-2.0.5.tgz",
"integrity": "sha512-4heRW4B1QrJeENfi7326lUPYBCevj78FJs8kfeDxn5st0IYPIRXoTtOSYvTzFWgaWWXd3YCDE6ao4fmv91RthA==",
"engines": {
"node": ">= 14.18"
},
"peerDependencies": {
"@svgdotjs/svg.js": "^3.2.4",
"@svgdotjs/svg.select.js": "^4.0.1"
}
},
"node_modules/@svgdotjs/svg.select.js": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.select.js/-/svg.select.js-4.0.2.tgz",
"integrity": "sha512-5gWdrvoQX3keo03SCmgaBbD+kFftq0F/f2bzCbNnpkkvW6tk4rl4MakORzFuNjvXPWwB4az9GwuvVxQVnjaK2g==",
"engines": {
"node": ">= 14.18"
},
"peerDependencies": {
"@svgdotjs/svg.js": "^3.2.4"
}
},
"node_modules/@svgr/babel-plugin-add-jsx-attribute": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz",
"integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz",
"integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz",
"integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz",
"integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-svg-dynamic-title": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz",
"integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-svg-em-dimensions": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz",
"integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-transform-react-native-svg": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz",
"integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-plugin-transform-svg-component": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz",
"integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==",
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/babel-preset": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz",
"integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==",
"dependencies": {
"@svgr/babel-plugin-add-jsx-attribute": "^5.4.0",
"@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0",
"@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1",
"@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1",
"@svgr/babel-plugin-svg-dynamic-title": "^5.4.0",
"@svgr/babel-plugin-svg-em-dimensions": "^5.4.0",
"@svgr/babel-plugin-transform-react-native-svg": "^5.4.0",
"@svgr/babel-plugin-transform-svg-component": "^5.5.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/core": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz",
"integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==",
"dependencies": {
"@svgr/plugin-jsx": "^5.5.0",
"camelcase": "^6.2.0",
"cosmiconfig": "^7.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/core/node_modules/camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@svgr/hast-util-to-babel-ast": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz",
"integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==",
"dependencies": {
"@babel/types": "^7.12.6"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/plugin-jsx": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz",
"integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==",
"dependencies": {
"@babel/core": "^7.12.3",
"@svgr/babel-preset": "^5.5.0",
"@svgr/hast-util-to-babel-ast": "^5.5.0",
"svg-parser": "^2.0.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/plugin-svgo": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz",
"integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==",
"dependencies": {
"cosmiconfig": "^7.0.0",
"deepmerge": "^4.2.2",
"svgo": "^1.2.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dependencies": {
"sprintf-js": "~1.0.2"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@svgr/plugin-svgo/node_modules/css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
"integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
"dependencies": {
"boolbase": "^1.0.0",
"css-what": "^3.2.1",
"domutils": "^1.7.0",
"nth-check": "^1.0.2"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/css-tree": {
"version": "1.0.0-alpha.37",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
"integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
"dependencies": {
"mdn-data": "2.0.4",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/css-what": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
"integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==",
"engines": {
"node": ">= 6"
},
"funding": {
"url": "https://github.com/sponsors/fb55"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/csso": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
"dependencies": {
"css-tree": "^1.1.2"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/csso/node_modules/css-tree": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
"dependencies": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/csso/node_modules/mdn-data": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
"node_modules/@svgr/plugin-svgo/node_modules/dom-serializer": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
"integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
"dependencies": {
"domelementtype": "^2.0.1",
"entities": "^2.0.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/domutils": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
"integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
"dependencies": {
"dom-serializer": "0",
"domelementtype": "1"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/domutils/node_modules/domelementtype": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
"integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
},
"node_modules/@svgr/plugin-svgo/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
"node": ">=4"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/mdn-data": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
"integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA=="
},
"node_modules/@svgr/plugin-svgo/node_modules/mkdirp": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"dependencies": {
"minimist": "^1.2.6"
},
"bin": {
"mkdirp": "bin/cmd.js"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
"integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
"dependencies": {
"boolbase": "~1.0.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@svgr/plugin-svgo/node_modules/svgo": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
"integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
"deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.",
"dependencies": {
"chalk": "^2.4.1",
"coa": "^2.0.2",
"css-select": "^2.0.0",
"css-select-base-adapter": "^0.1.1",
"css-tree": "1.0.0-alpha.37",
"csso": "^4.0.2",
"js-yaml": "^3.13.1",
"mkdirp": "~0.5.1",
"object.values": "^1.1.0",
"sax": "~1.2.4",
"stable": "^0.1.8",
"unquote": "~1.1.1",
"util.promisify": "~1.0.0"
},
"bin": {
"svgo": "bin/svgo"
},
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/@svgr/webpack": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz",
"integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"loader-utils": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
}
},
"node_modules/@tanstack/react-virtual": {
"version": "3.11.2",
"resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.2.tgz",
"integrity": "sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==",
"dependencies": {
"@tanstack/virtual-core": "3.11.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/@tanstack/virtual-core": {
"version": "3.11.2",
"resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.11.2.tgz",
"integrity": "sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
}
},
"node_modules/@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
"engines": {
"node": ">= 6"
}
},
"node_modules/@trysound/sax": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/@types/babel__core": {
"version": "7.20.5",
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
"dependencies": {
"@babel/parser": "^7.20.7",
"@babel/types": "^7.20.7",
"@types/babel__generator": "*",
"@types/babel__template": "*",
"@types/babel__traverse": "*"
}
},
"node_modules/@types/babel__generator": {
"version": "7.6.8",
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
"integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
"dependencies": {
"@babel/types": "^7.0.0"
}
},
"node_modules/@types/babel__template": {
"version": "7.4.4",
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
"dependencies": {
"@babel/parser": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"node_modules/@types/babel__traverse": {
"version": "7.20.6",
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
"integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
"dependencies": {
"@babel/types": "^7.20.7"
}
},
"node_modules/@types/body-parser": {
"version": "1.19.5",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
"integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
"dependencies": {
"@types/connect": "*",
"@types/node": "*"
}
},
"node_modules/@types/bonjour": {
"version": "3.5.13",
"resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz",
"integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/connect": {
"version": "3.4.38",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
"integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/connect-history-api-fallback": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz",
"integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==",
"dependencies": {
"@types/express-serve-static-core": "*",
"@types/node": "*"
}
},
"node_modules/@types/eslint": {
"version": "8.56.12",
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz",
"integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==",
"dependencies": {
"@types/estree": "*",
"@types/json-schema": "*"
}
},
"node_modules/@types/eslint-scope": {
"version": "3.7.7",
"resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
"integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
"dependencies": {
"@types/eslint": "*",
"@types/estree": "*"
}
},
"node_modules/@types/estree": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
"node_modules/@types/express": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz",
"integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==",
"dependencies": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.33",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"node_modules/@types/express-serve-static-core": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz",
"integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==",
"dependencies": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*",
"@types/send": "*"
}
},
"node_modules/@types/express/node_modules/@types/express-serve-static-core": {
"version": "4.19.6",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz",
"integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==",
"dependencies": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*",
"@types/send": "*"
}
},
"node_modules/@types/graceful-fs": {
"version": "4.1.9",
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
"integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/hast": {
"version": "2.3.10",
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz",
"integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
"dependencies": {
"@types/unist": "^2"
}
},
"node_modules/@types/hoist-non-react-statics": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.6.tgz",
"integrity": "sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==",
"dependencies": {
"@types/react": "*",
"hoist-non-react-statics": "^3.3.0"
}
},
"node_modules/@types/html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="
},
"node_modules/@types/http-errors": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
"integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA=="
},
"node_modules/@types/http-proxy": {
"version": "1.17.15",
"resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz",
"integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
"integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="
},
"node_modules/@types/istanbul-lib-report": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
"integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"dependencies": {
"@types/istanbul-lib-coverage": "*"
}
},
"node_modules/@types/istanbul-reports": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
"integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"dependencies": {
"@types/istanbul-lib-report": "*"
}
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
},
"node_modules/@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
},
"node_modules/@types/mime": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
"integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w=="
},
"node_modules/@types/node": {
"version": "22.10.2",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
"integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"dependencies": {
"undici-types": "~6.20.0"
}
},
"node_modules/@types/node-forge": {
"version": "1.3.11",
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz",
"integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/parse-json": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw=="
},
"node_modules/@types/prettier": {
"version": "2.7.3",
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
"integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA=="
},
"node_modules/@types/q": {
"version": "1.5.8",
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz",
"integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw=="
},
"node_modules/@types/qs": {
"version": "6.9.17",
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz",
"integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ=="
},
"node_modules/@types/range-parser": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
"integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="
},
"node_modules/@types/react": {
"version": "19.0.1",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.1.tgz",
"integrity": "sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==",
"dependencies": {
"csstype": "^3.0.2"
}
},
"node_modules/@types/react-redux": {
"version": "7.1.34",
"resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz",
"integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==",
"dependencies": {
"@types/hoist-non-react-statics": "^3.3.0",
"@types/react": "*",
"hoist-non-react-statics": "^3.3.0",
"redux": "^4.0.0"
}
},
"node_modules/@types/resolve": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
"integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/retry": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
},
"node_modules/@types/semver": {
"version": "7.5.8",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
"integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ=="
},
"node_modules/@types/send": {
"version": "0.17.4",
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
"integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
"dependencies": {
"@types/mime": "^1",
"@types/node": "*"
}
},
"node_modules/@types/serve-index": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz",
"integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==",
"dependencies": {
"@types/express": "*"
}
},
"node_modules/@types/serve-static": {
"version": "1.15.7",
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz",
"integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==",
"dependencies": {
"@types/http-errors": "*",
"@types/node": "*",
"@types/send": "*"
}
},
"node_modules/@types/sinonjs__fake-timers": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz",
"integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==",
"dev": true
},
"node_modules/@types/sizzle": {
"version": "2.3.9",
"resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.9.tgz",
"integrity": "sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==",
"dev": true
},
"node_modules/@types/sockjs": {
"version": "0.3.36",
"resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz",
"integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/stack-utils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
"integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="
},
"node_modules/@types/trusted-types": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="
},
"node_modules/@types/unist": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="
},
"node_modules/@types/ws": {
"version": "8.5.13",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz",
"integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/yargs": {
"version": "17.0.33",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz",
"integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/@types/yargs-parser": {
"version": "21.0.3",
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="
},
"node_modules/@types/yauzl": {
"version": "2.10.3",
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
"dev": true,
"optional": true,
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@typescript-eslint/eslint-plugin": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
"integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
"dependencies": {
"@eslint-community/regexpp": "^4.4.0",
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/type-utils": "5.62.0",
"@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
"natural-compare-lite": "^1.4.0",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@typescript-eslint/experimental-utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz",
"integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==",
"dependencies": {
"@typescript-eslint/utils": "5.62.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/@typescript-eslint/parser": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
"integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
"dependencies": {
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"debug": "^4.3.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/scope-manager": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
"integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
"dependencies": {
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/visitor-keys": "5.62.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/type-utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
"dependencies": {
"@typescript-eslint/typescript-estree": "5.62.0",
"@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"tsutils": "^3.21.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/types": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
"integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@typescript-eslint/typescript-estree": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
"integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
"dependencies": {
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/visitor-keys": "5.62.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@typescript-eslint/utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@types/json-schema": "^7.0.9",
"@types/semver": "^7.3.12",
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"eslint-scope": "^5.1.1",
"semver": "^7.3.7"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@typescript-eslint/utils/node_modules/estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"engines": {
"node": ">=4.0"
}
},
"node_modules/@typescript-eslint/utils/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@typescript-eslint/visitor-keys": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
"integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
"dependencies": {
"@typescript-eslint/types": "5.62.0",
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@ungap/structured-clone": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
"integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA=="
},
"node_modules/@webassemblyjs/ast": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
"integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
"dependencies": {
"@webassemblyjs/helper-numbers": "1.13.2",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2"
}
},
"node_modules/@webassemblyjs/floating-point-hex-parser": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
"integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA=="
},
"node_modules/@webassemblyjs/helper-api-error": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
"integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ=="
},
"node_modules/@webassemblyjs/helper-buffer": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
"integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA=="
},
"node_modules/@webassemblyjs/helper-numbers": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
"integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
"dependencies": {
"@webassemblyjs/floating-point-hex-parser": "1.13.2",
"@webassemblyjs/helper-api-error": "1.13.2",
"@xtuc/long": "4.2.2"
}
},
"node_modules/@webassemblyjs/helper-wasm-bytecode": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
"integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA=="
},
"node_modules/@webassemblyjs/helper-wasm-section": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
"integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/wasm-gen": "1.14.1"
}
},
"node_modules/@webassemblyjs/ieee754": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
"integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
"dependencies": {
"@xtuc/ieee754": "^1.2.0"
}
},
"node_modules/@webassemblyjs/leb128": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
"integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
"dependencies": {
"@xtuc/long": "4.2.2"
}
},
"node_modules/@webassemblyjs/utf8": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
"integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ=="
},
"node_modules/@webassemblyjs/wasm-edit": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
"integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/helper-wasm-section": "1.14.1",
"@webassemblyjs/wasm-gen": "1.14.1",
"@webassemblyjs/wasm-opt": "1.14.1",
"@webassemblyjs/wasm-parser": "1.14.1",
"@webassemblyjs/wast-printer": "1.14.1"
}
},
"node_modules/@webassemblyjs/wasm-gen": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
"integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/ieee754": "1.13.2",
"@webassemblyjs/leb128": "1.13.2",
"@webassemblyjs/utf8": "1.13.2"
}
},
"node_modules/@webassemblyjs/wasm-opt": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
"integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/wasm-gen": "1.14.1",
"@webassemblyjs/wasm-parser": "1.14.1"
}
},
"node_modules/@webassemblyjs/wasm-parser": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
"integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-api-error": "1.13.2",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/ieee754": "1.13.2",
"@webassemblyjs/leb128": "1.13.2",
"@webassemblyjs/utf8": "1.13.2"
}
},
"node_modules/@webassemblyjs/wast-printer": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
"integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@xtuc/long": "4.2.2"
}
},
"node_modules/@webpack-cli/configtest": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz",
"integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==",
"dev": true,
"peerDependencies": {
"webpack": "4.x.x || 5.x.x",
"webpack-cli": "4.x.x"
}
},
"node_modules/@webpack-cli/info": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz",
"integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==",
"dev": true,
"dependencies": {
"envinfo": "^7.7.3"
},
"peerDependencies": {
"webpack-cli": "4.x.x"
}
},
"node_modules/@webpack-cli/serve": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz",
"integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==",
"dev": true,
"peerDependencies": {
"webpack-cli": "4.x.x"
},
"peerDependenciesMeta": {
"webpack-dev-server": {
"optional": true
}
}
},
"node_modules/@xtuc/ieee754": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
},
"node_modules/@xtuc/long": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
},
"node_modules/@yr/monotone-cubic-spline": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@yr/monotone-cubic-spline/-/monotone-cubic-spline-1.0.3.tgz",
"integrity": "sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA=="
},
"node_modules/@zeit/schemas": {
"version": "2.36.0",
"resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.36.0.tgz",
"integrity": "sha512-7kjMwcChYEzMKjeex9ZFXkt1AyNov9R5HZtjBKVsmVpw7pa7ZtlCGvCBC2vnnXctaYN+aRI61HjIqeetZW5ROg==",
"dev": true
},
"node_modules/abab": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
"deprecated": "Use your platform's native atob() and btoa() methods instead"
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"optional": true
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/acorn": {
"version": "8.14.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
"integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-globals": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
"dependencies": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1"
}
},
"node_modules/acorn-globals/node_modules/acorn": {
"version": "7.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/acorn-walk": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/address": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
"integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
"engines": {
"node": ">= 10.0.0"
}
},
"node_modules/adjust-sourcemap-loader": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
"integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==",
"dependencies": {
"loader-utils": "^2.0.0",
"regex-parser": "^2.2.11"
},
"engines": {
"node": ">=8.9"
}
},
"node_modules/agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"dependencies": {
"debug": "4"
},
"engines": {
"node": ">= 6.0.0"
}
},
"node_modules/aggregate-error": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
"dev": true,
"dependencies": {
"clean-stack": "^2.0.0",
"indent-string": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ajv-keywords": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"peerDependencies": {
"ajv": "^6.9.1"
}
},
"node_modules/ansi-align": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
"integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
"dev": true,
"dependencies": {
"string-width": "^4.1.0"
}
},
"node_modules/ansi-colors": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
"integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/ansi-escapes": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dependencies": {
"type-fest": "^0.21.3"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/ansi-html": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz",
"integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==",
"engines": [
"node >= 0.8.0"
],
"bin": {
"ansi-html": "bin/ansi-html"
}
},
"node_modules/ansi-html-community": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
"engines": [
"node >= 0.8.0"
],
"bin": {
"ansi-html": "bin/ansi-html"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/any-promise": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/apexcharts": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-4.2.0.tgz",
"integrity": "sha512-MQ5o8KnwMGcAlo+LhXlAjWGk8wBNBK2O1gFv+JiB6w3oJeuDJUFqa6FLTDlXvdhtObNQ3vIfAtv0AbMSkDv0DQ==",
"dependencies": {
"@svgdotjs/svg.draggable.js": "^3.0.4",
"@svgdotjs/svg.filter.js": "^3.0.8",
"@svgdotjs/svg.js": "^3.2.4",
"@svgdotjs/svg.resize.js": "^2.0.2",
"@svgdotjs/svg.select.js": "^4.0.1",
"@yr/monotone-cubic-spline": "^1.0.3"
}
},
"node_modules/append-transform": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz",
"integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==",
"dev": true,
"dependencies": {
"default-require-extensions": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/aproba": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
"optional": true
},
"node_modules/arch": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/archy": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
"integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==",
"dev": true
},
"node_modules/are-we-there-yet": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"deprecated": "This package is no longer supported.",
"optional": true,
"dependencies": {
"delegates": "^1.0.0",
"readable-stream": "^3.6.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/arg": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
},
"node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"node_modules/aria-query": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/array-buffer-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz",
"integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==",
"dependencies": {
"call-bind": "^1.0.5",
"is-array-buffer": "^3.0.4"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"node_modules/array-includes": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
"integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.4",
"is-string": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"engines": {
"node": ">=8"
}
},
"node_modules/array.prototype.findlast": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
"integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-shim-unscopables": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.findlastindex": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
"integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-shim-unscopables": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.flat": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
"integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
"dependencies": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-shim-unscopables": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.flatmap": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
"integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
"dependencies": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-shim-unscopables": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.reduce": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz",
"integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-array-method-boxes-properly": "^1.0.0",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"is-string": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/array.prototype.tosorted": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
"integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3",
"es-errors": "^1.3.0",
"es-shim-unscopables": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/arraybuffer.prototype.slice": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
"integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
"dependencies": {
"array-buffer-byte-length": "^1.0.1",
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.6",
"is-array-buffer": "^3.0.4"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
},
"node_modules/asn1": {
"version": "0.2.6",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
"dev": true,
"dependencies": {
"safer-buffer": "~2.1.0"
}
},
"node_modules/assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
"dev": true,
"engines": {
"node": ">=0.8"
}
},
"node_modules/ast-types-flow": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
"integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="
},
"node_modules/astral-regex": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/async": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"node_modules/at-least-node": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
"engines": {
"node": ">= 4.0.0"
}
},
"node_modules/autoprefixer": {
"version": "9.8.8",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz",
"integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==",
"dev": true,
"dependencies": {
"browserslist": "^4.12.0",
"caniuse-lite": "^1.0.30001109",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
"picocolors": "^0.2.1",
"postcss": "^7.0.32",
"postcss-value-parser": "^4.1.0"
},
"bin": {
"autoprefixer": "bin/autoprefixer"
},
"funding": {
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
}
},
"node_modules/autoprefixer/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/autoprefixer/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/autoprefixer/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/available-typed-arrays": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
"integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
"dependencies": {
"possible-typed-array-names": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
"dev": true,
"engines": {
"node": "*"
}
},
"node_modules/aws4": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
"integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==",
"dev": true
},
"node_modules/axe-core": {
"version": "4.10.2",
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz",
"integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==",
"engines": {
"node": ">=4"
}
},
"node_modules/axobject-query": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/babel-jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz",
"integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==",
"dependencies": {
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/babel__core": "^7.1.14",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-jest": "^27.5.1",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"slash": "^3.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"@babel/core": "^7.8.0"
}
},
"node_modules/babel-jest/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/babel-jest/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/babel-loader": {
"version": "9.2.1",
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz",
"integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==",
"dev": true,
"peer": true,
"dependencies": {
"find-cache-dir": "^4.0.0",
"schema-utils": "^4.0.0"
},
"engines": {
"node": ">= 14.15.0"
},
"peerDependencies": {
"@babel/core": "^7.12.0",
"webpack": ">=5"
}
},
"node_modules/babel-loader/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/babel-loader/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"peer": true,
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/babel-loader/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/babel-loader/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"peer": true
},
"node_modules/babel-loader/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"peer": true,
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/babel-plugin-istanbul": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
"integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-instrument": "^5.0.4",
"test-exclude": "^6.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
"integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/parser": "^7.14.7",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.2.0",
"semver": "^6.3.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/babel-plugin-jest-hoist": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz",
"integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==",
"dependencies": {
"@babel/template": "^7.3.3",
"@babel/types": "^7.3.3",
"@types/babel__core": "^7.0.0",
"@types/babel__traverse": "^7.0.6"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/babel-plugin-macros": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"dependencies": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
},
"engines": {
"node": ">=10",
"npm": ">=6"
}
},
"node_modules/babel-plugin-named-asset-import": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz",
"integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==",
"peerDependencies": {
"@babel/core": "^7.1.0"
}
},
"node_modules/babel-plugin-polyfill-corejs2": {
"version": "0.4.12",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz",
"integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==",
"dependencies": {
"@babel/compat-data": "^7.22.6",
"@babel/helper-define-polyfill-provider": "^0.6.3",
"semver": "^6.3.1"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.10.6",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz",
"integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==",
"dependencies": {
"@babel/helper-define-polyfill-provider": "^0.6.2",
"core-js-compat": "^3.38.0"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-polyfill-regenerator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz",
"integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==",
"dependencies": {
"@babel/helper-define-polyfill-provider": "^0.6.3"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/babel-plugin-transform-react-remove-prop-types": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz",
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"node_modules/babel-preset-current-node-syntax": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz",
"integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==",
"dependencies": {
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/babel-preset-jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz",
"integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==",
"dependencies": {
"babel-plugin-jest-hoist": "^27.5.1",
"babel-preset-current-node-syntax": "^1.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/babel-preset-react-app": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz",
"integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-flow-strip-types": "^7.16.0",
"@babel/plugin-transform-react-display-name": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/batch": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
"integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="
},
"node_modules/bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
"dev": true,
"dependencies": {
"tweetnacl": "^0.14.3"
}
},
"node_modules/bfj": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz",
"integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==",
"dependencies": {
"bluebird": "^3.7.2",
"check-types": "^11.2.3",
"hoopy": "^0.1.4",
"jsonpath": "^1.1.1",
"tryer": "^1.0.1"
},
"engines": {
"node": ">= 8.0.0"
}
},
"node_modules/bfj/node_modules/bluebird": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
},
"node_modules/big.js": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
"engines": {
"node": "*"
}
},
"node_modules/binary-extensions": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/blob-util": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz",
"integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==",
"dev": true
},
"node_modules/bluebird": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz",
"integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==",
"dev": true
},
"node_modules/body-parser": {
"version": "1.20.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
"dependencies": {
"bytes": "3.1.2",
"content-type": "~1.0.5",
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"on-finished": "2.4.1",
"qs": "6.13.0",
"raw-body": "2.5.2",
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
"engines": {
"node": ">= 0.8",
"npm": "1.2.8000 || >= 1.4.16"
}
},
"node_modules/body-parser/node_modules/bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/body-parser/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/body-parser/node_modules/iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/body-parser/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/body-parser/node_modules/qs": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
"dependencies": {
"side-channel": "^1.0.6"
},
"engines": {
"node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/bonjour-service": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz",
"integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"multicast-dns": "^7.2.5"
}
},
"node_modules/boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
"node_modules/boxen": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.0.tgz",
"integrity": "sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==",
"dev": true,
"dependencies": {
"ansi-align": "^3.0.1",
"camelcase": "^7.0.0",
"chalk": "^5.0.1",
"cli-boxes": "^3.0.0",
"string-width": "^5.1.2",
"type-fest": "^2.13.0",
"widest-line": "^4.0.1",
"wrap-ansi": "^8.0.1"
},
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/boxen/node_modules/ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/boxen/node_modules/ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/boxen/node_modules/camelcase": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
"integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==",
"dev": true,
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/boxen/node_modules/chalk": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
"dev": true,
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/boxen/node_modules/string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"dependencies": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/boxen/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/boxen/node_modules/type-fest": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"dev": true,
"engines": {
"node": ">=12.20"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/boxen/node_modules/wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/braces": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dependencies": {
"fill-range": "^7.1.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/browser-process-hrtime": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"node_modules/browserslist": {
"version": "4.24.3",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
"integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/browserslist"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"caniuse-lite": "^1.0.30001688",
"electron-to-chromium": "^1.5.73",
"node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.1"
},
"bin": {
"browserslist": "cli.js"
},
"engines": {
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
}
},
"node_modules/bs-fetch": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/bs-fetch/-/bs-fetch-0.6.2.tgz",
"integrity": "sha512-VXEjp8kY3vHPckaoy3d96Bx0KYjJAPLNISBwfpwMN26K6DtuZYwI2HKhx7zeHBajz1bRArfx7O8OOLcdtujMvg=="
},
"node_modules/bser": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
"dependencies": {
"node-int64": "^0.4.0"
}
},
"node_modules/buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"node_modules/buffer-crc32": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
"dev": true,
"engines": {
"node": "*"
}
},
"node_modules/buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
},
"node_modules/builtin-modules": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz",
"integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==",
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/bytes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
"integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/cachedir": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz",
"integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/caching-transform": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz",
"integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==",
"dev": true,
"dependencies": {
"hasha": "^5.0.0",
"make-dir": "^3.0.0",
"package-hash": "^4.0.0",
"write-file-atomic": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/call-bind": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"dependencies": {
"call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
"get-intrinsic": "^1.2.4",
"set-function-length": "^1.2.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/call-bind-apply-helpers": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
"integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
"dependencies": {
"es-errors": "^1.3.0",
"function-bind": "^1.1.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/call-bound": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
"get-intrinsic": "^1.2.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/camel-case": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
"integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
"dependencies": {
"pascal-case": "^3.1.2",
"tslib": "^2.0.3"
}
},
"node_modules/camelcase": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"engines": {
"node": ">=6"
}
},
"node_modules/camelcase-css": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
"engines": {
"node": ">= 6"
}
},
"node_modules/caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
"dependencies": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.0",
"lodash.memoize": "^4.1.2",
"lodash.uniq": "^4.5.0"
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001689",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001689.tgz",
"integrity": "sha512-CmeR2VBycfa+5/jOfnp/NpWPGd06nf1XYiefUvhXFfZE4GkRc9jv+eGPS4nT558WS/8lYCzV8SlANCIPvbWP1g==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
]
},
"node_modules/canvas": {
"version": "2.11.2",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.11.2.tgz",
"integrity": "sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.17.0",
"simple-get": "^3.0.3"
},
"engines": {
"node": ">=6"
}
},
"node_modules/case-sensitive-paths-webpack-plugin": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
"integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==",
"engines": {
"node": ">=4"
}
},
"node_modules/caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
"dev": true
},
"node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/chalk-template": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz",
"integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==",
"dev": true,
"dependencies": {
"chalk": "^4.1.2"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/chalk-template?sponsor=1"
}
},
"node_modules/char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
"engines": {
"node": ">=10"
}
},
"node_modules/character-entities": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
"integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/character-entities-legacy": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
"integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/character-reference-invalid": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
"integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/check-more-types": {
"version": "2.24.0",
"resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz",
"integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==",
"dev": true,
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/check-types": {
"version": "11.2.3",
"resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz",
"integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg=="
},
"node_modules/chokidar": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
"dependencies": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
},
"engines": {
"node": ">= 8.10.0"
},
"funding": {
"url": "https://paulmillr.com/funding/"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/chokidar/node_modules/glob-parent": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dependencies": {
"is-glob": "^4.0.1"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/chownr": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
"optional": true,
"engines": {
"node": ">=10"
}
},
"node_modules/chrome-trace-event": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
"integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
"engines": {
"node": ">=6.0"
}
},
"node_modules/ci-info": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz",
"integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/cjs-module-lexer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz",
"integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA=="
},
"node_modules/clean-css": {
"version": "5.3.3",
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
"integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
"dependencies": {
"source-map": "~0.6.0"
},
"engines": {
"node": ">= 10.0"
}
},
"node_modules/clean-css/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/clean-stack": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/cli-boxes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
"integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/cli-cursor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
"dev": true,
"dependencies": {
"restore-cursor": "^3.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/cli-table3": {
"version": "0.6.5",
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
"integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
"dev": true,
"dependencies": {
"string-width": "^4.2.0"
},
"engines": {
"node": "10.* || >= 12.*"
},
"optionalDependencies": {
"@colors/colors": "1.5.0"
}
},
"node_modules/cli-truncate": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz",
"integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
"dev": true,
"dependencies": {
"slice-ansi": "^3.0.0",
"string-width": "^4.2.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
},
"node_modules/clipboardy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz",
"integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==",
"dev": true,
"dependencies": {
"arch": "^2.2.0",
"execa": "^5.1.1",
"is-wsl": "^2.2.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/clipboardy/node_modules/execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dev": true,
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
"node_modules/clipboardy/node_modules/get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/clipboardy/node_modules/human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"dev": true,
"engines": {
"node": ">=10.17.0"
}
},
"node_modules/cliui": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
"integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
"dev": true,
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^6.2.0"
}
},
"node_modules/cliui/node_modules/wrap-ansi": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
"dev": true,
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/clone-deep": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
"dev": true,
"dependencies": {
"is-plain-object": "^2.0.4",
"kind-of": "^6.0.2",
"shallow-clone": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
"engines": {
"node": ">=6"
}
},
"node_modules/co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
"engines": {
"iojs": ">= 1.0.0",
"node": ">= 0.12.0"
}
},
"node_modules/coa": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
"integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
"dependencies": {
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
},
"engines": {
"node": ">= 4.0"
}
},
"node_modules/coa/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/coa/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/coa/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/coa/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/coa/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/coa/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
"node": ">=4"
}
},
"node_modules/coa/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/collect-v8-coverage": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
"integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
},
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"node_modules/color-support": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
"integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
"optional": true,
"bin": {
"color-support": "bin.js"
}
},
"node_modules/colord": {
"version": "2.9.3",
"resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
"integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="
},
"node_modules/colorette": {
"version": "2.0.20",
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
},
"node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"dependencies": {
"delayed-stream": "~1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/comma-separated-tokens": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
"integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/commander": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
"dev": true,
"engines": {
"node": ">= 6"
}
},
"node_modules/common-path-prefix": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
"integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
"dev": true,
"peer": true
},
"node_modules/common-tags": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz",
"integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==",
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/commondir": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
"integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
},
"node_modules/compressible": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
"dependencies": {
"mime-db": ">= 1.43.0 < 2"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/compression": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
"dependencies": {
"accepts": "~1.3.5",
"bytes": "3.0.0",
"compressible": "~2.0.16",
"debug": "2.6.9",
"on-headers": "~1.0.2",
"safe-buffer": "5.1.2",
"vary": "~1.1.2"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/compression/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/compression/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/compression/node_modules/safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
"node_modules/confusing-browser-globals": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
"integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA=="
},
"node_modules/connect-history-api-fallback": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
"integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==",
"engines": {
"node": ">=0.8"
}
},
"node_modules/console-control-strings": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
"integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
"optional": true
},
"node_modules/content-disposition": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
"integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==",
"dev": true,
"engines": {
"node": ">= 0.6"
}
},
"node_modules/content-type": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
},
"node_modules/cookie": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
},
"node_modules/copy-webpack-plugin": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz",
"integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==",
"dev": true,
"dependencies": {
"fast-glob": "^3.2.7",
"glob-parent": "^6.0.1",
"globby": "^11.0.3",
"normalize-path": "^3.0.0",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.0"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.1.0"
}
},
"node_modules/copy-webpack-plugin/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/core-js": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz",
"integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==",
"hasInstallScript": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
}
},
"node_modules/core-js-compat": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz",
"integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==",
"dependencies": {
"browserslist": "^4.24.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
}
},
"node_modules/core-js-pure": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz",
"integrity": "sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==",
"hasInstallScript": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
}
},
"node_modules/core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
},
"node_modules/cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"dependencies": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/cross-env": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
"integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
"dev": true,
"dependencies": {
"cross-spawn": "^7.0.1"
},
"bin": {
"cross-env": "src/bin/cross-env.js",
"cross-env-shell": "src/bin/cross-env-shell.js"
},
"engines": {
"node": ">=10.14",
"npm": ">=6",
"yarn": ">=1"
}
},
"node_modules/cross-spawn": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/crypto-random-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
"integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==",
"engines": {
"node": ">=8"
}
},
"node_modules/css-blank-pseudo": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz",
"integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==",
"dev": true,
"dependencies": {
"postcss": "^7.0.5"
},
"bin": {
"css-blank-pseudo": "cli.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/css-blank-pseudo/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/css-blank-pseudo/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/css-blank-pseudo/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/css-box-model": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz",
"integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==",
"dependencies": {
"tiny-invariant": "^1.0.6"
}
},
"node_modules/css-declaration-sorter": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz",
"integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18"
},
"peerDependencies": {
"postcss": "^8.0.9"
}
},
"node_modules/css-has-pseudo": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz",
"integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==",
"dev": true,
"dependencies": {
"postcss": "^7.0.6",
"postcss-selector-parser": "^5.0.0-rc.4"
},
"bin": {
"css-has-pseudo": "cli.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/css-has-pseudo/node_modules/cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true,
"bin": {
"cssesc": "bin/cssesc"
},
"engines": {
"node": ">=4"
}
},
"node_modules/css-has-pseudo/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/css-has-pseudo/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/css-has-pseudo/node_modules/postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"dependencies": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/css-has-pseudo/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/css-loader": {
"version": "5.2.7",
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz",
"integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==",
"dev": true,
"dependencies": {
"icss-utils": "^5.1.0",
"loader-utils": "^2.0.0",
"postcss": "^8.2.15",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.1.0",
"schema-utils": "^3.0.0",
"semver": "^7.3.5"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.27.0 || ^5.0.0"
}
},
"node_modules/css-loader/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/css-loader/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/css-minimizer-webpack-plugin": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz",
"integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==",
"dev": true,
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.18",
"cssnano": "^6.0.1",
"jest-worker": "^29.4.3",
"postcss": "^8.4.24",
"schema-utils": "^4.0.1",
"serialize-javascript": "^6.0.1"
},
"engines": {
"node": ">= 14.15.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@parcel/css": {
"optional": true
},
"@swc/css": {
"optional": true
},
"clean-css": {
"optional": true
},
"csso": {
"optional": true
},
"esbuild": {
"optional": true
},
"lightningcss": {
"optional": true
}
}
},
"node_modules/css-minimizer-webpack-plugin/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/css-minimizer-webpack-plugin/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/css-prefers-color-scheme": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz",
"integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.5"
},
"bin": {
"css-prefers-color-scheme": "cli.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/css-prefers-color-scheme/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/css-prefers-color-scheme/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/css-prefers-color-scheme/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/css-select": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
"dependencies": {
"boolbase": "^1.0.0",
"css-what": "^6.0.1",
"domhandler": "^4.3.1",
"domutils": "^2.8.0",
"nth-check": "^2.0.1"
},
"funding": {
"url": "https://github.com/sponsors/fb55"
}
},
"node_modules/css-select-base-adapter": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
"integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w=="
},
"node_modules/css-tree": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
"dev": true,
"dependencies": {
"mdn-data": "2.0.30",
"source-map-js": "^1.0.1"
},
"engines": {
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
}
},
"node_modules/css-what": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
"engines": {
"node": ">= 6"
},
"funding": {
"url": "https://github.com/sponsors/fb55"
}
},
"node_modules/cssdb": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz",
"integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==",
"dev": true
},
"node_modules/cssesc": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
"bin": {
"cssesc": "bin/cssesc"
},
"engines": {
"node": ">=4"
}
},
"node_modules/cssnano": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz",
"integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==",
"dev": true,
"dependencies": {
"cssnano-preset-default": "^6.1.2",
"lilconfig": "^3.1.1"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cssnano"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/cssnano-preset-default": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz",
"integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"css-declaration-sorter": "^7.2.0",
"cssnano-utils": "^4.0.2",
"postcss-calc": "^9.0.1",
"postcss-colormin": "^6.1.0",
"postcss-convert-values": "^6.1.0",
"postcss-discard-comments": "^6.0.2",
"postcss-discard-duplicates": "^6.0.3",
"postcss-discard-empty": "^6.0.3",
"postcss-discard-overridden": "^6.0.2",
"postcss-merge-longhand": "^6.0.5",
"postcss-merge-rules": "^6.1.1",
"postcss-minify-font-values": "^6.1.0",
"postcss-minify-gradients": "^6.0.3",
"postcss-minify-params": "^6.1.0",
"postcss-minify-selectors": "^6.0.4",
"postcss-normalize-charset": "^6.0.2",
"postcss-normalize-display-values": "^6.0.2",
"postcss-normalize-positions": "^6.0.2",
"postcss-normalize-repeat-style": "^6.0.2",
"postcss-normalize-string": "^6.0.2",
"postcss-normalize-timing-functions": "^6.0.2",
"postcss-normalize-unicode": "^6.1.0",
"postcss-normalize-url": "^6.0.2",
"postcss-normalize-whitespace": "^6.0.2",
"postcss-ordered-values": "^6.0.2",
"postcss-reduce-initial": "^6.1.0",
"postcss-reduce-transforms": "^6.0.2",
"postcss-svgo": "^6.0.3",
"postcss-unique-selectors": "^6.0.4"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/cssnano-utils": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz",
"integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/csso": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
"dev": true,
"dependencies": {
"css-tree": "~2.2.0"
},
"engines": {
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
"npm": ">=7.0.0"
}
},
"node_modules/csso/node_modules/css-tree": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
"dev": true,
"dependencies": {
"mdn-data": "2.0.28",
"source-map-js": "^1.0.1"
},
"engines": {
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
"npm": ">=7.0.0"
}
},
"node_modules/csso/node_modules/mdn-data": {
"version": "2.0.28",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
"dev": true
},
"node_modules/cssom": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
},
"node_modules/cssstyle": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
"integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
"dependencies": {
"cssom": "~0.3.6"
},
"engines": {
"node": ">=8"
}
},
"node_modules/cssstyle/node_modules/cssom": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
},
"node_modules/csstype": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
},
"node_modules/cypress": {
"version": "13.16.1",
"resolved": "https://registry.npmjs.org/cypress/-/cypress-13.16.1.tgz",
"integrity": "sha512-17FtCaz0cx7ssWYKXzGB0Vub8xHwpVPr+iPt2fHhLMDhVAPVrplD+rTQsZUsfb19LVBn5iwkEUFjQ1yVVJXsLA==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"@cypress/request": "^3.0.6",
"@cypress/xvfb": "^1.2.4",
"@types/sinonjs__fake-timers": "8.1.1",
"@types/sizzle": "^2.3.2",
"arch": "^2.2.0",
"blob-util": "^2.0.2",
"bluebird": "^3.7.2",
"buffer": "^5.7.1",
"cachedir": "^2.3.0",
"chalk": "^4.1.0",
"check-more-types": "^2.24.0",
"ci-info": "^4.0.0",
"cli-cursor": "^3.1.0",
"cli-table3": "~0.6.1",
"commander": "^6.2.1",
"common-tags": "^1.8.0",
"dayjs": "^1.10.4",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"eventemitter2": "6.4.7",
"execa": "4.1.0",
"executable": "^4.1.1",
"extract-zip": "2.0.1",
"figures": "^3.2.0",
"fs-extra": "^9.1.0",
"getos": "^3.2.1",
"is-installed-globally": "~0.4.0",
"lazy-ass": "^1.6.0",
"listr2": "^3.8.3",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
"minimist": "^1.2.8",
"ospath": "^1.2.2",
"pretty-bytes": "^5.6.0",
"process": "^0.11.10",
"proxy-from-env": "1.0.0",
"request-progress": "^3.0.0",
"semver": "^7.5.3",
"supports-color": "^8.1.1",
"tmp": "~0.2.3",
"tree-kill": "1.2.2",
"untildify": "^4.0.0",
"yauzl": "^2.10.0"
},
"bin": {
"cypress": "bin/cypress"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
}
},
"node_modules/cypress/node_modules/bluebird": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
"dev": true
},
"node_modules/cypress/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/cypress/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/damerau-levenshtein": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
},
"node_modules/dashdash": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
"dev": true,
"dependencies": {
"assert-plus": "^1.0.0"
},
"engines": {
"node": ">=0.10"
}
},
"node_modules/data-urls": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
"dependencies": {
"abab": "^2.0.3",
"whatwg-mimetype": "^2.3.0",
"whatwg-url": "^8.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/data-urls/node_modules/tr46": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
"dependencies": {
"punycode": "^2.1.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/data-urls/node_modules/whatwg-url": {
"version": "8.7.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
"dependencies": {
"lodash": "^4.7.0",
"tr46": "^2.1.0",
"webidl-conversions": "^6.1.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/data-view-buffer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz",
"integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==",
"dependencies": {
"call-bind": "^1.0.6",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/data-view-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz",
"integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==",
"dependencies": {
"call-bind": "^1.0.7",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/data-view-byte-offset": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz",
"integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==",
"dependencies": {
"call-bind": "^1.0.6",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/dayjs": {
"version": "1.11.13",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz",
"integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
},
"node_modules/debug": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"dependencies": {
"ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/decimal.js": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
"integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="
},
"node_modules/decompress-response": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz",
"integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==",
"optional": true,
"dependencies": {
"mimic-response": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/dedent": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
},
"node_modules/deep-extend": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"dev": true,
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/deep-is": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
},
"node_modules/deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/default-gateway": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz",
"integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==",
"dependencies": {
"execa": "^5.0.0"
},
"engines": {
"node": ">= 10"
}
},
"node_modules/default-gateway/node_modules/execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
"node_modules/default-gateway/node_modules/get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/default-gateway/node_modules/human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"engines": {
"node": ">=10.17.0"
}
},
"node_modules/default-require-extensions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz",
"integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==",
"dev": true,
"dependencies": {
"strip-bom": "^4.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/define-data-property": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
"integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
"dependencies": {
"es-define-property": "^1.0.0",
"es-errors": "^1.3.0",
"gopd": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/define-lazy-prop": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
"integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
"engines": {
"node": ">=8"
}
},
"node_modules/define-properties": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
"integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"dependencies": {
"define-data-property": "^1.0.1",
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/delegates": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
"optional": true
},
"node_modules/depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/dequal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"engines": {
"node": ">=6"
}
},
"node_modules/destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
"engines": {
"node": ">= 0.8",
"npm": "1.2.8000 || >= 1.4.16"
}
},
"node_modules/detect-libc": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
"optional": true,
"engines": {
"node": ">=8"
}
},
"node_modules/detect-newline": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
"engines": {
"node": ">=8"
}
},
"node_modules/detect-node": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="
},
"node_modules/detect-port-alt": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
"integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
"dependencies": {
"address": "^1.0.1",
"debug": "^2.6.0"
},
"bin": {
"detect": "bin/detect-port",
"detect-port": "bin/detect-port"
},
"engines": {
"node": ">= 4.2.1"
}
},
"node_modules/detect-port-alt/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/detect-port-alt/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/didyoumean": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
},
"node_modules/diff-sequences": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz",
"integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==",
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/dir-glob": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"dependencies": {
"path-type": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/dlv": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
},
"node_modules/dns-packet": {
"version": "5.6.1",
"resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz",
"integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
"dependencies": {
"@leichtgewicht/ip-codec": "^2.0.1"
},
"engines": {
"node": ">=6"
}
},
"node_modules/doctrine": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"dependencies": {
"esutils": "^2.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/dom-converter": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
"integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"dependencies": {
"utila": "~0.4"
}
},
"node_modules/dom-serializer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
"entities": "^2.0.0"
},
"funding": {
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
"node_modules/domelementtype": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fb55"
}
]
},
"node_modules/domexception": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
"deprecated": "Use your platform's native DOMException instead",
"dependencies": {
"webidl-conversions": "^5.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/domexception/node_modules/webidl-conversions": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
"engines": {
"node": ">=8"
}
},
"node_modules/domhandler": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
"dependencies": {
"domelementtype": "^2.2.0"
},
"engines": {
"node": ">= 4"
},
"funding": {
"url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
"node_modules/domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"dependencies": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
"domhandler": "^4.2.0"
},
"funding": {
"url": "https://github.com/fb55/domutils?sponsor=1"
}
},
"node_modules/dot-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
"integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
"dependencies": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"node_modules/dotenv": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
"engines": {
"node": ">=10"
}
},
"node_modules/dotenv-expand": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
"integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA=="
},
"node_modules/dunder-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
"es-errors": "^1.3.0",
"gopd": "^1.2.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/duplexer": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
"integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="
},
"node_modules/eastasianwidth": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
"node_modules/ecc-jsbn": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
"integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
"dev": true,
"dependencies": {
"jsbn": "~0.1.0",
"safer-buffer": "^2.1.0"
}
},
"node_modules/ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
},
"node_modules/ejs": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
"integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
"dependencies": {
"jake": "^10.8.5"
},
"bin": {
"ejs": "bin/cli.js"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/electron-to-chromium": {
"version": "1.5.74",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.74.tgz",
"integrity": "sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw=="
},
"node_modules/emittery": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
"integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
"node_modules/emoji-regex": {
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
"node_modules/emojis-list": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
"engines": {
"node": ">= 4"
}
},
"node_modules/encodeurl": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/end-of-stream": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"dev": true,
"dependencies": {
"once": "^1.4.0"
}
},
"node_modules/enhanced-resolve": {
"version": "5.17.1",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz",
"integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==",
"dependencies": {
"graceful-fs": "^4.2.4",
"tapable": "^2.2.0"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/enquirer": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz",
"integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==",
"dev": true,
"dependencies": {
"ansi-colors": "^4.1.1",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=8.6"
}
},
"node_modules/entities": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/envinfo": {
"version": "7.14.0",
"resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz",
"integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==",
"dev": true,
"bin": {
"envinfo": "dist/cli.js"
},
"engines": {
"node": ">=4"
}
},
"node_modules/error-ex": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"dependencies": {
"is-arrayish": "^0.2.1"
}
},
"node_modules/error-stack-parser": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
"integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
"dependencies": {
"stackframe": "^1.3.4"
}
},
"node_modules/es-abstract": {
"version": "1.23.6",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.6.tgz",
"integrity": "sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==",
"dependencies": {
"array-buffer-byte-length": "^1.0.1",
"arraybuffer.prototype.slice": "^1.0.4",
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.8",
"call-bound": "^1.0.3",
"data-view-buffer": "^1.0.1",
"data-view-byte-length": "^1.0.1",
"data-view-byte-offset": "^1.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-set-tostringtag": "^2.0.3",
"es-to-primitive": "^1.3.0",
"function.prototype.name": "^1.1.7",
"get-intrinsic": "^1.2.6",
"get-symbol-description": "^1.0.2",
"globalthis": "^1.0.4",
"gopd": "^1.2.0",
"has-property-descriptors": "^1.0.2",
"has-proto": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"internal-slot": "^1.1.0",
"is-array-buffer": "^3.0.4",
"is-callable": "^1.2.7",
"is-data-view": "^1.0.2",
"is-negative-zero": "^2.0.3",
"is-regex": "^1.2.1",
"is-shared-array-buffer": "^1.0.3",
"is-string": "^1.1.1",
"is-typed-array": "^1.1.13",
"is-weakref": "^1.1.0",
"math-intrinsics": "^1.0.0",
"object-inspect": "^1.13.3",
"object-keys": "^1.1.1",
"object.assign": "^4.1.5",
"regexp.prototype.flags": "^1.5.3",
"safe-array-concat": "^1.1.3",
"safe-regex-test": "^1.1.0",
"string.prototype.trim": "^1.2.10",
"string.prototype.trimend": "^1.0.9",
"string.prototype.trimstart": "^1.0.8",
"typed-array-buffer": "^1.0.2",
"typed-array-byte-length": "^1.0.1",
"typed-array-byte-offset": "^1.0.3",
"typed-array-length": "^1.0.7",
"unbox-primitive": "^1.0.2",
"which-typed-array": "^1.1.16"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/es-array-method-boxes-properly": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
"integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="
},
"node_modules/es-define-property": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-errors": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-iterator-helpers": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.0.tgz",
"integrity": "sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3",
"es-errors": "^1.3.0",
"es-set-tostringtag": "^2.0.3",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
"globalthis": "^1.0.4",
"gopd": "^1.0.1",
"has-property-descriptors": "^1.0.2",
"has-proto": "^1.0.3",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.7",
"iterator.prototype": "^1.1.3",
"safe-array-concat": "^1.1.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-module-lexer": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
"integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw=="
},
"node_modules/es-object-atoms": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
"integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
"dependencies": {
"es-errors": "^1.3.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-set-tostringtag": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz",
"integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==",
"dependencies": {
"get-intrinsic": "^1.2.4",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.1"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-shim-unscopables": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
"integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
"dependencies": {
"hasown": "^2.0.0"
}
},
"node_modules/es-to-primitive": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
"integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
"dependencies": {
"is-callable": "^1.2.7",
"is-date-object": "^1.0.5",
"is-symbol": "^1.0.4"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/es6-error": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
"integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
"dev": true
},
"node_modules/esbuild": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
"integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
"hasInstallScript": true,
"bin": {
"esbuild": "bin/esbuild"
},
"engines": {
"node": ">=12"
},
"optionalDependencies": {
"@esbuild/android-arm": "0.18.20",
"@esbuild/android-arm64": "0.18.20",
"@esbuild/android-x64": "0.18.20",
"@esbuild/darwin-arm64": "0.18.20",
"@esbuild/darwin-x64": "0.18.20",
"@esbuild/freebsd-arm64": "0.18.20",
"@esbuild/freebsd-x64": "0.18.20",
"@esbuild/linux-arm": "0.18.20",
"@esbuild/linux-arm64": "0.18.20",
"@esbuild/linux-ia32": "0.18.20",
"@esbuild/linux-loong64": "0.18.20",
"@esbuild/linux-mips64el": "0.18.20",
"@esbuild/linux-ppc64": "0.18.20",
"@esbuild/linux-riscv64": "0.18.20",
"@esbuild/linux-s390x": "0.18.20",
"@esbuild/linux-x64": "0.18.20",
"@esbuild/netbsd-x64": "0.18.20",
"@esbuild/openbsd-x64": "0.18.20",
"@esbuild/sunos-x64": "0.18.20",
"@esbuild/win32-arm64": "0.18.20",
"@esbuild/win32-ia32": "0.18.20",
"@esbuild/win32-x64": "0.18.20"
}
},
"node_modules/esbuild-plugin-inline-image": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/esbuild-plugin-inline-image/-/esbuild-plugin-inline-image-0.0.9.tgz",
"integrity": "sha512-pw3ZgN2phh32Z7BpKrhRDtmI+iVCl+Gc0BLOT9croXg1MnMjRuN7aXhIQirhLeK39erkIwfFlhy6xieroBGc1Q=="
},
"node_modules/esbuild-postcss": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/esbuild-postcss/-/esbuild-postcss-0.0.4.tgz",
"integrity": "sha512-CKYibp+aCswskE+gBPnGZ0b9YyuY0n9w2dxyMaoLYEvGTwmjkRj5SV8l1zGJpw8KylqmcMTK0Gr349RnOLd+8A==",
"dependencies": {
"postcss-load-config": "^3.1.0"
},
"peerDependencies": {
"esbuild": "*",
"postcss": "^8.0.0"
}
},
"node_modules/escalade": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"engines": {
"node": ">=6"
}
},
"node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
},
"node_modules/escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/escodegen": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
"dependencies": {
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
"esutils": "^2.0.2"
},
"bin": {
"escodegen": "bin/escodegen.js",
"esgenerate": "bin/esgenerate.js"
},
"engines": {
"node": ">=6.0"
},
"optionalDependencies": {
"source-map": "~0.6.1"
}
},
"node_modules/escodegen/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"optional": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/eslint": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
"integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "8.57.1",
"@humanwhocodes/config-array": "^0.13.0",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
"@ungap/structured-clone": "^1.2.0",
"ajv": "^6.12.4",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.3.2",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"eslint-scope": "^7.2.2",
"eslint-visitor-keys": "^3.4.3",
"espree": "^9.6.1",
"esquery": "^1.4.2",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
"file-entry-cache": "^6.0.1",
"find-up": "^5.0.0",
"glob-parent": "^6.0.2",
"globals": "^13.19.0",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
"imurmurhash": "^0.1.4",
"is-glob": "^4.0.0",
"is-path-inside": "^3.0.3",
"js-yaml": "^4.1.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.4.1",
"lodash.merge": "^4.6.2",
"minimatch": "^3.1.2",
"natural-compare": "^1.4.0",
"optionator": "^0.9.3",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0"
},
"bin": {
"eslint": "bin/eslint.js"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/eslint-config-react-app": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz",
"integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@rushstack/eslint-patch": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-preset-react-app": "^10.0.1",
"confusing-browser-globals": "^1.0.11",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"eslint": "^8.0.0"
}
},
"node_modules/eslint-import-resolver-node": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
"integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"dependencies": {
"debug": "^3.2.7",
"is-core-module": "^2.13.0",
"resolve": "^1.22.4"
}
},
"node_modules/eslint-import-resolver-node/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/eslint-module-utils": {
"version": "2.12.0",
"resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
"integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
"dependencies": {
"debug": "^3.2.7"
},
"engines": {
"node": ">=4"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
}
}
},
"node_modules/eslint-module-utils/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/eslint-plugin-flowtype": {
"version": "8.0.3",
"resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz",
"integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==",
"dependencies": {
"lodash": "^4.17.21",
"string-natural-compare": "^3.0.1"
},
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"eslint": "^8.1.0"
}
},
"node_modules/eslint-plugin-import": {
"version": "2.31.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
"integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
"dependencies": {
"@rtsao/scc": "^1.1.0",
"array-includes": "^3.1.8",
"array.prototype.findlastindex": "^1.2.5",
"array.prototype.flat": "^1.3.2",
"array.prototype.flatmap": "^1.3.2",
"debug": "^3.2.7",
"doctrine": "^2.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-module-utils": "^2.12.0",
"hasown": "^2.0.2",
"is-core-module": "^2.15.1",
"is-glob": "^4.0.3",
"minimatch": "^3.1.2",
"object.fromentries": "^2.0.8",
"object.groupby": "^1.0.3",
"object.values": "^1.2.0",
"semver": "^6.3.1",
"string.prototype.trimend": "^1.0.8",
"tsconfig-paths": "^3.15.0"
},
"engines": {
"node": ">=4"
},
"peerDependencies": {
"eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
}
},
"node_modules/eslint-plugin-import/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/eslint-plugin-import/node_modules/doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"dependencies": {
"esutils": "^2.0.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/eslint-plugin-jest": {
"version": "25.7.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz",
"integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==",
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"jest": {
"optional": true
}
}
},
"node_modules/eslint-plugin-jsx-a11y": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
"integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
"dependencies": {
"aria-query": "^5.3.2",
"array-includes": "^3.1.8",
"array.prototype.flatmap": "^1.3.2",
"ast-types-flow": "^0.0.8",
"axe-core": "^4.10.0",
"axobject-query": "^4.1.0",
"damerau-levenshtein": "^1.0.8",
"emoji-regex": "^9.2.2",
"hasown": "^2.0.2",
"jsx-ast-utils": "^3.3.5",
"language-tags": "^1.0.9",
"minimatch": "^3.1.2",
"object.fromentries": "^2.0.8",
"safe-regex-test": "^1.0.3",
"string.prototype.includes": "^2.0.1"
},
"engines": {
"node": ">=4.0"
},
"peerDependencies": {
"eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
}
},
"node_modules/eslint-plugin-react": {
"version": "7.37.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz",
"integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==",
"dependencies": {
"array-includes": "^3.1.8",
"array.prototype.findlast": "^1.2.5",
"array.prototype.flatmap": "^1.3.2",
"array.prototype.tosorted": "^1.1.4",
"doctrine": "^2.1.0",
"es-iterator-helpers": "^1.1.0",
"estraverse": "^5.3.0",
"hasown": "^2.0.2",
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
"minimatch": "^3.1.2",
"object.entries": "^1.1.8",
"object.fromentries": "^2.0.8",
"object.values": "^1.2.0",
"prop-types": "^15.8.1",
"resolve": "^2.0.0-next.5",
"semver": "^6.3.1",
"string.prototype.matchall": "^4.0.11",
"string.prototype.repeat": "^1.0.0"
},
"engines": {
"node": ">=4"
},
"peerDependencies": {
"eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
}
},
"node_modules/eslint-plugin-react-hooks": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz",
"integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==",
"engines": {
"node": ">=10"
},
"peerDependencies": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
"node_modules/eslint-plugin-react/node_modules/doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"dependencies": {
"esutils": "^2.0.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/eslint-plugin-react/node_modules/resolve": {
"version": "2.0.0-next.5",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
"integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
"dependencies": {
"is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
"bin": {
"resolve": "bin/resolve"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/eslint-plugin-testing-library": {
"version": "5.11.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz",
"integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==",
"dependencies": {
"@typescript-eslint/utils": "^5.58.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"npm": ">=6"
},
"peerDependencies": {
"eslint": "^7.5.0 || ^8.0.0"
}
},
"node_modules/eslint-scope": {
"version": "7.2.2",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
"integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/eslint-webpack-plugin": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz",
"integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==",
"dependencies": {
"@types/eslint": "^7.29.0 || ^8.4.1",
"jest-worker": "^28.0.2",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
"schema-utils": "^4.0.0"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"webpack": "^5.0.0"
}
},
"node_modules/eslint-webpack-plugin/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/eslint-webpack-plugin/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/eslint-webpack-plugin/node_modules/jest-worker": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz",
"integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/eslint-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/eslint-webpack-plugin/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/eslint/node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/eslint/node_modules/globals": {
"version": "13.24.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dependencies": {
"type-fest": "^0.20.2"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/eslint/node_modules/type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/espree": {
"version": "9.6.1",
"resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
"integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
"dependencies": {
"acorn": "^8.9.0",
"acorn-jsx": "^5.3.2",
"eslint-visitor-keys": "^3.4.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
"bin": {
"esparse": "bin/esparse.js",
"esvalidate": "bin/esvalidate.js"
},
"engines": {
"node": ">=4"
}
},
"node_modules/esquery": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
"integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
"dependencies": {
"estraverse": "^5.1.0"
},
"engines": {
"node": ">=0.10"
}
},
"node_modules/esrecurse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dependencies": {
"estraverse": "^5.2.0"
},
"engines": {
"node": ">=4.0"
}
},
"node_modules/estraverse": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"engines": {
"node": ">=4.0"
}
},
"node_modules/estree-walker": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
"integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg=="
},
"node_modules/esutils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/etag": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/eventemitter2": {
"version": "6.4.7",
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz",
"integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==",
"dev": true
},
"node_modules/eventemitter3": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
},
"node_modules/events": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"engines": {
"node": ">=0.8.x"
}
},
"node_modules/execa": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
"integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
"dev": true,
"dependencies": {
"cross-spawn": "^7.0.0",
"get-stream": "^5.0.0",
"human-signals": "^1.1.1",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.0",
"onetime": "^5.1.0",
"signal-exit": "^3.0.2",
"strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
"node_modules/executable": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz",
"integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
"dev": true,
"dependencies": {
"pify": "^2.2.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/exit": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
"integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/expect": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz",
"integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==",
"dependencies": {
"@jest/types": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/expect/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/expect/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/express": {
"version": "4.21.2",
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"dependencies": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
"body-parser": "1.20.3",
"content-disposition": "0.5.4",
"content-type": "~1.0.4",
"cookie": "0.7.1",
"cookie-signature": "1.0.6",
"debug": "2.6.9",
"depd": "2.0.0",
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"etag": "~1.8.1",
"finalhandler": "1.3.1",
"fresh": "0.5.2",
"http-errors": "2.0.0",
"merge-descriptors": "1.0.3",
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
"path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
"safe-buffer": "5.2.1",
"send": "0.19.0",
"serve-static": "1.16.2",
"setprototypeof": "1.2.0",
"statuses": "2.0.1",
"type-is": "~1.6.18",
"utils-merge": "1.0.1",
"vary": "~1.1.2"
},
"engines": {
"node": ">= 0.10.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/express"
}
},
"node_modules/express/node_modules/content-disposition": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"dependencies": {
"safe-buffer": "5.2.1"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/express/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/express/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/express/node_modules/path-to-regexp": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
},
"node_modules/express/node_modules/qs": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
"dependencies": {
"side-channel": "^1.0.6"
},
"engines": {
"node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/express/node_modules/range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"dev": true
},
"node_modules/extract-zip": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
"dev": true,
"dependencies": {
"debug": "^4.1.1",
"get-stream": "^5.1.0",
"yauzl": "^2.10.0"
},
"bin": {
"extract-zip": "cli.js"
},
"engines": {
"node": ">= 10.17.0"
},
"optionalDependencies": {
"@types/yauzl": "^2.9.1"
}
},
"node_modules/extsprintf": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
"dev": true,
"engines": [
"node >=0.6.0"
]
},
"node_modules/fast-deep-equal": {
"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=="
},
"node_modules/fast-glob": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
"integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
"dependencies": {
"@nodelib/fs.stat": "^2.0.2",
"@nodelib/fs.walk": "^1.2.3",
"glob-parent": "^5.1.2",
"merge2": "^1.3.0",
"micromatch": "^4.0.4"
},
"engines": {
"node": ">=8.6.0"
}
},
"node_modules/fast-glob/node_modules/glob-parent": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dependencies": {
"is-glob": "^4.0.1"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
},
"node_modules/fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
},
"node_modules/fast-uri": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz",
"integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw=="
},
"node_modules/fastest-levenshtein": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
"integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
"dev": true,
"engines": {
"node": ">= 4.9.1"
}
},
"node_modules/fastq": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
"integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
"dependencies": {
"reusify": "^1.0.4"
}
},
"node_modules/fault": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
"integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
"dependencies": {
"format": "^0.2.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/faye-websocket": {
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz",
"integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
"dependencies": {
"websocket-driver": ">=0.5.1"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/fb-watchman": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
"integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
"dependencies": {
"bser": "2.1.1"
}
},
"node_modules/fd-slicer": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
"dev": true,
"dependencies": {
"pend": "~1.2.0"
}
},
"node_modules/figures": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
"integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
"dev": true,
"dependencies": {
"escape-string-regexp": "^1.0.5"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/figures/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/file-entry-cache": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"dependencies": {
"flat-cache": "^3.0.4"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
},
"node_modules/file-loader": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
"integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
}
},
"node_modules/file-loader/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/filelist": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
"integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
"dependencies": {
"minimatch": "^5.0.1"
}
},
"node_modules/filelist/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/filelist/node_modules/minimatch": {
"version": "5.1.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/filesize": {
"version": "8.0.7",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz",
"integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==",
"engines": {
"node": ">= 0.4.0"
}
},
"node_modules/fill-range": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dependencies": {
"to-regex-range": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/final-form": {
"version": "4.20.10",
"resolved": "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz",
"integrity": "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==",
"dependencies": {
"@babel/runtime": "^7.10.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
}
},
"node_modules/finalhandler": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
"dependencies": {
"debug": "2.6.9",
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
"statuses": "2.0.1",
"unpipe": "~1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/finalhandler/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/finalhandler/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/find-cache-dir": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
"integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
"dev": true,
"peer": true,
"dependencies": {
"common-path-prefix": "^3.0.0",
"pkg-dir": "^7.0.0"
},
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dependencies": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/flat": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
"integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
"dev": true,
"bin": {
"flat": "cli.js"
}
},
"node_modules/flat-cache": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
"integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
"dependencies": {
"flatted": "^3.2.9",
"keyv": "^4.5.3",
"rimraf": "^3.0.2"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
},
"node_modules/flatted": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
"integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="
},
"node_modules/flatten": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz",
"integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==",
"deprecated": "flatten is deprecated in favor of utility frameworks such as lodash.",
"dev": true
},
"node_modules/follow-redirects": {
"version": "1.15.9",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/RubenVerborgh"
}
],
"engines": {
"node": ">=4.0"
},
"peerDependenciesMeta": {
"debug": {
"optional": true
}
}
},
"node_modules/for-each": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
"integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
"dependencies": {
"is-callable": "^1.1.3"
}
},
"node_modules/foreground-child": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
"integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
"dev": true,
"dependencies": {
"cross-spawn": "^7.0.0",
"signal-exit": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/forever-agent": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
"dev": true,
"engines": {
"node": "*"
}
},
"node_modules/fork-ts-checker-webpack-plugin": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz",
"integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==",
"dependencies": {
"@babel/code-frame": "^7.8.3",
"@types/json-schema": "^7.0.5",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"cosmiconfig": "^6.0.0",
"deepmerge": "^4.2.2",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"memfs": "^3.1.2",
"minimatch": "^3.0.4",
"schema-utils": "2.7.0",
"semver": "^7.3.2",
"tapable": "^1.0.0"
},
"engines": {
"node": ">=10",
"yarn": ">=1.0.0"
},
"peerDependencies": {
"eslint": ">= 6",
"typescript": ">= 2.7",
"vue-template-compiler": "*",
"webpack": ">= 4"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"vue-template-compiler": {
"optional": true
}
}
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
"dependencies": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.1.0",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.7.2"
},
"engines": {
"node": ">=8"
}
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
"integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
"dependencies": {
"@types/json-schema": "^7.0.4",
"ajv": "^6.12.2",
"ajv-keywords": "^3.4.1"
},
"engines": {
"node": ">= 8.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
"integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
"engines": {
"node": ">=6"
}
},
"node_modules/form-data": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
"integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
"dev": true,
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/format": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
"integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==",
"engines": {
"node": ">=0.4.x"
}
},
"node_modules/forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/fraction.js": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
"engines": {
"node": "*"
},
"funding": {
"type": "patreon",
"url": "https://github.com/sponsors/rawify"
}
},
"node_modules/framer-motion": {
"version": "10.18.0",
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.18.0.tgz",
"integrity": "sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==",
"dependencies": {
"tslib": "^2.4.0"
},
"optionalDependencies": {
"@emotion/is-prop-valid": "^0.8.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
},
"node_modules/fresh": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/fromentries": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz",
"integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"dependencies": {
"at-least-node": "^1.0.0",
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/fs-minipass": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"optional": true,
"dependencies": {
"minipass": "^3.0.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/fs-minipass/node_modules/minipass": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
"optional": true,
"dependencies": {
"yallist": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/fs-minipass/node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
},
"node_modules/fs-monkey": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz",
"integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg=="
},
"node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"hasInstallScript": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/function.prototype.name": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.7.tgz",
"integrity": "sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==",
"dependencies": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"functions-have-names": "^1.2.3",
"hasown": "^2.0.2",
"is-callable": "^1.2.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/functions-have-names": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
"integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/gauge": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
"integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
"deprecated": "This package is no longer supported.",
"optional": true,
"dependencies": {
"aproba": "^1.0.3 || ^2.0.0",
"color-support": "^1.1.2",
"console-control-strings": "^1.0.0",
"has-unicode": "^2.0.1",
"object-assign": "^4.1.1",
"signal-exit": "^3.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"wide-align": "^1.1.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/gensync": {
"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==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/get-caller-file": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
},
"node_modules/get-intrinsic": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
"integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
"dunder-proto": "^1.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"math-intrinsics": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/get-own-enumerable-property-symbols": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
"integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="
},
"node_modules/get-package-type": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
"integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/get-stream": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
"dev": true,
"dependencies": {
"pump": "^3.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/get-symbol-description": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz",
"integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==",
"dependencies": {
"call-bind": "^1.0.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/getos": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz",
"integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
"dev": true,
"dependencies": {
"async": "^3.2.0"
}
},
"node_modules/getpass": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
"dev": true,
"dependencies": {
"assert-plus": "^1.0.0"
}
},
"node_modules/glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"deprecated": "Glob versions prior to v9 are no longer supported",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.1.1",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/glob-parent": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dependencies": {
"is-glob": "^4.0.3"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/glob-to-regexp": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
},
"node_modules/global-dirs": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz",
"integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
"dev": true,
"dependencies": {
"ini": "2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/global-modules": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
"integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
"dependencies": {
"global-prefix": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/global-prefix": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
"integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
"dependencies": {
"ini": "^1.3.5",
"kind-of": "^6.0.2",
"which": "^1.3.1"
},
"engines": {
"node": ">=6"
}
},
"node_modules/global-prefix/node_modules/ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
"node_modules/global-prefix/node_modules/which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
"dependencies": {
"isexe": "^2.0.0"
},
"bin": {
"which": "bin/which"
}
},
"node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"engines": {
"node": ">=4"
}
},
"node_modules/globalthis": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
"integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
"dependencies": {
"define-properties": "^1.2.1",
"gopd": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/globby": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"dependencies": {
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
"fast-glob": "^3.2.9",
"ignore": "^5.2.0",
"merge2": "^1.4.1",
"slash": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/gopd": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/graceful-fs": {
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
},
"node_modules/graphemer": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="
},
"node_modules/gzip-size": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz",
"integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==",
"dependencies": {
"duplexer": "^0.1.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/handle-thing": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="
},
"node_modules/harmony-reflect": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
"integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="
},
"node_modules/has-bigints": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
"integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/has-property-descriptors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
"integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
"dependencies": {
"es-define-property": "^1.0.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-proto": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
"integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
"dependencies": {
"dunder-proto": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-symbols": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-tostringtag": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"dependencies": {
"has-symbols": "^1.0.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-unicode": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
"integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
"optional": true
},
"node_modules/hasha": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz",
"integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==",
"dev": true,
"dependencies": {
"is-stream": "^2.0.0",
"type-fest": "^0.8.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/hasha/node_modules/type-fest": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
"dependencies": {
"function-bind": "^1.1.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/hast-util-parse-selector": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz",
"integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/hastscript": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
"integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
"dependencies": {
"@types/hast": "^2.0.0",
"comma-separated-tokens": "^1.0.0",
"hast-util-parse-selector": "^2.0.0",
"property-information": "^5.0.0",
"space-separated-tokens": "^1.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/he": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
"bin": {
"he": "bin/he"
}
},
"node_modules/highcharts": {
"version": "9.3.3",
"resolved": "https://registry.npmjs.org/highcharts/-/highcharts-9.3.3.tgz",
"integrity": "sha512-QeOvm6cifeZYYdTLm4IxZsXcOE9c4xqfs0z0OJJ0z7hhA9WG0rmcVAyuIp5HBl/znjA/ayYHmpYjBYD/9PG4Fg=="
},
"node_modules/highcharts-react-official": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/highcharts-react-official/-/highcharts-react-official-3.2.1.tgz",
"integrity": "sha512-hyQTX7ezCxl7JqumaWiGsroGWalzh24GedQIgO3vJbkGOZ6ySRAltIYjfxhrq4HszJOySZegotEF7v+haQ75UA==",
"peerDependencies": {
"highcharts": ">=6.0.0",
"react": ">=16.8.0"
}
},
"node_modules/highlight.js": {
"version": "10.7.3",
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
"integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
"engines": {
"node": "*"
}
},
"node_modules/highlightjs-vue": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/highlightjs-vue/-/highlightjs-vue-1.0.0.tgz",
"integrity": "sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA=="
},
"node_modules/hoist-non-react-statics": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
"dependencies": {
"react-is": "^16.7.0"
}
},
"node_modules/hoopy": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
"integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
"engines": {
"node": ">= 6.0.0"
}
},
"node_modules/hpack.js": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
"integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==",
"dependencies": {
"inherits": "^2.0.1",
"obuf": "^1.0.0",
"readable-stream": "^2.0.1",
"wbuf": "^1.1.0"
}
},
"node_modules/hpack.js/node_modules/isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
},
"node_modules/hpack.js/node_modules/readable-stream": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
"isarray": "~1.0.0",
"process-nextick-args": "~2.0.0",
"safe-buffer": "~5.1.1",
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
}
},
"node_modules/hpack.js/node_modules/safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"node_modules/hpack.js/node_modules/string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"dependencies": {
"safe-buffer": "~5.1.0"
}
},
"node_modules/html-encoding-sniffer": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
"dependencies": {
"whatwg-encoding": "^1.0.5"
},
"engines": {
"node": ">=10"
}
},
"node_modules/html-entities": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz",
"integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mdevils"
},
{
"type": "patreon",
"url": "https://patreon.com/mdevils"
}
]
},
"node_modules/html-escaper": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
},
"node_modules/html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==",
"dependencies": {
"camel-case": "^4.1.2",
"clean-css": "^5.2.2",
"commander": "^8.3.0",
"he": "^1.2.0",
"param-case": "^3.0.4",
"relateurl": "^0.2.7",
"terser": "^5.10.0"
},
"bin": {
"html-minifier-terser": "cli.js"
},
"engines": {
"node": ">=12"
}
},
"node_modules/html-minifier-terser/node_modules/commander": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
"engines": {
"node": ">= 12"
}
},
"node_modules/html-webpack-plugin": {
"version": "5.6.3",
"resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz",
"integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==",
"dependencies": {
"@types/html-minifier-terser": "^6.0.0",
"html-minifier-terser": "^6.0.2",
"lodash": "^4.17.21",
"pretty-error": "^4.0.0",
"tapable": "^2.0.0"
},
"engines": {
"node": ">=10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/html-webpack-plugin"
},
"peerDependencies": {
"@rspack/core": "0.x || 1.x",
"webpack": "^5.20.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"webpack": {
"optional": true
}
}
},
"node_modules/htmlparser2": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
"integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
"funding": [
"https://github.com/fb55/htmlparser2?sponsor=1",
{
"type": "github",
"url": "https://github.com/sponsors/fb55"
}
],
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0",
"domutils": "^2.5.2",
"entities": "^2.0.0"
}
},
"node_modules/http-deceiver": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
"integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw=="
},
"node_modules/http-errors": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
"dependencies": {
"depd": "2.0.0",
"inherits": "2.0.4",
"setprototypeof": "1.2.0",
"statuses": "2.0.1",
"toidentifier": "1.0.1"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/http-parser-js": {
"version": "0.5.8",
"resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz",
"integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="
},
"node_modules/http-proxy": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
"dependencies": {
"eventemitter3": "^4.0.0",
"follow-redirects": "^1.0.0",
"requires-port": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/http-proxy-agent": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
"dependencies": {
"@tootallnate/once": "1",
"agent-base": "6",
"debug": "4"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/http-proxy-middleware": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz",
"integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==",
"dependencies": {
"@types/http-proxy": "^1.17.8",
"http-proxy": "^1.18.1",
"is-glob": "^4.0.1",
"is-plain-obj": "^3.0.0",
"micromatch": "^4.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"@types/express": "^4.17.13"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
}
}
},
"node_modules/http-signature": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.4.0.tgz",
"integrity": "sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==",
"dev": true,
"dependencies": {
"assert-plus": "^1.0.0",
"jsprim": "^2.0.2",
"sshpk": "^1.18.0"
},
"engines": {
"node": ">=0.10"
}
},
"node_modules/https-proxy-agent": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
"dependencies": {
"agent-base": "6",
"debug": "4"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/human-signals": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
"integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
"dev": true,
"engines": {
"node": ">=8.12.0"
}
},
"node_modules/husky": {
"version": "8.0.3",
"resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz",
"integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==",
"dev": true,
"bin": {
"husky": "lib/bin.js"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/typicode"
}
},
"node_modules/iconv-lite": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/icss-utils": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
"engines": {
"node": "^10 || ^12 || >= 14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/idb": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz",
"integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ=="
},
"node_modules/identity-obj-proxy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
"integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==",
"dependencies": {
"harmony-reflect": "^1.4.6"
},
"engines": {
"node": ">=4"
}
},
"node_modules/ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/ignore": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
"engines": {
"node": ">= 4"
}
},
"node_modules/immer": {
"version": "9.0.21",
"resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
"integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
}
},
"node_modules/import-fresh": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
"dependencies": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/import-local": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
"integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
"dependencies": {
"pkg-dir": "^4.2.0",
"resolve-cwd": "^3.0.0"
},
"bin": {
"import-local-fixture": "fixtures/cli.js"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/import-local/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/import-local/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dependencies": {
"p-locate": "^4.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/import-local/node_modules/p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/import-local/node_modules/p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dependencies": {
"p-limit": "^2.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/import-local/node_modules/pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dependencies": {
"find-up": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/imurmurhash": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"engines": {
"node": ">=0.8.19"
}
},
"node_modules/indent-string": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/indexes-of": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
"integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==",
"dev": true
},
"node_modules/inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
"dependencies": {
"once": "^1.3.0",
"wrappy": "1"
}
},
"node_modules/inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
"node_modules/ini": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
"dev": true,
"engines": {
"node": ">=10"
}
},
"node_modules/internal-slot": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
"integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
"dependencies": {
"es-errors": "^1.3.0",
"hasown": "^2.0.2",
"side-channel": "^1.1.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/interpret": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
"integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
"dev": true,
"engines": {
"node": ">= 0.10"
}
},
"node_modules/ipaddr.js": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz",
"integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==",
"engines": {
"node": ">= 10"
}
},
"node_modules/is-alphabetical": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
"integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-alphanumerical": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
"integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
"dependencies": {
"is-alphabetical": "^1.0.0",
"is-decimal": "^1.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-array-buffer": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
"integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
"dependencies": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.3",
"get-intrinsic": "^1.2.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-arrayish": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
},
"node_modules/is-async-function": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
"integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
"dependencies": {
"has-tostringtag": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-bigint": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
"integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
"dependencies": {
"has-bigints": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"dependencies": {
"binary-extensions": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/is-boolean-object": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz",
"integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",
"dependencies": {
"call-bound": "^1.0.2",
"has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-callable": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-core-module": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
"integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"dependencies": {
"hasown": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-data-view": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
"integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
"dependencies": {
"call-bound": "^1.0.2",
"get-intrinsic": "^1.2.6",
"is-typed-array": "^1.1.13"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-date-object": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
"integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
"dependencies": {
"call-bound": "^1.0.2",
"has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-decimal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
"integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-docker": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"bin": {
"is-docker": "cli.js"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-finalizationregistry": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
"integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
"dependencies": {
"call-bound": "^1.0.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"engines": {
"node": ">=8"
}
},
"node_modules/is-generator-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/is-generator-function": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
"integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
"dependencies": {
"has-tostringtag": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"dependencies": {
"is-extglob": "^2.1.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-hexadecimal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
"integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-installed-globally": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
"integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
"dev": true,
"dependencies": {
"global-dirs": "^3.0.0",
"is-path-inside": "^3.0.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-map": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
"integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-module": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
"integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g=="
},
"node_modules/is-negative-zero": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
"integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"engines": {
"node": ">=0.12.0"
}
},
"node_modules/is-number-object": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
"integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
"dependencies": {
"call-bound": "^1.0.3",
"has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-obj": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
"integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-path-inside": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/is-plain-obj": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
"integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
"dev": true,
"dependencies": {
"isobject": "^3.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-port-reachable": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-port-reachable/-/is-port-reachable-4.0.0.tgz",
"integrity": "sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==",
"dev": true,
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-potential-custom-element-name": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
},
"node_modules/is-regex": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
"integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
"dependencies": {
"call-bound": "^1.0.2",
"gopd": "^1.2.0",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-regexp": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
"integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-root": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
"integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==",
"engines": {
"node": ">=6"
}
},
"node_modules/is-set": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
"integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-shared-array-buffer": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz",
"integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==",
"dependencies": {
"call-bind": "^1.0.7"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-stream": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-string": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
"integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
"dependencies": {
"call-bound": "^1.0.3",
"has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-symbol": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
"integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
"dependencies": {
"call-bound": "^1.0.2",
"has-symbols": "^1.1.0",
"safe-regex-test": "^1.1.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-typed-array": {
"version": "1.1.13",
"resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz",
"integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
"dependencies": {
"which-typed-array": "^1.1.14"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-typedarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
"integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
},
"node_modules/is-unicode-supported": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
"integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/is-weakmap": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
"integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-weakref": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz",
"integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",
"dependencies": {
"call-bound": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-weakset": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
"integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
"dependencies": {
"call-bound": "^1.0.3",
"get-intrinsic": "^1.2.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-wsl": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"dependencies": {
"is-docker": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/isarray": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
},
"node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
"node_modules/isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
"integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/isstream": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
"integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
"dev": true
},
"node_modules/istanbul-lib-coverage": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
"integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
"engines": {
"node": ">=8"
}
},
"node_modules/istanbul-lib-hook": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz",
"integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==",
"dev": true,
"dependencies": {
"append-transform": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/istanbul-lib-instrument": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
"integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
"dev": true,
"dependencies": {
"@babel/core": "^7.7.5",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.0.0",
"semver": "^6.3.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/istanbul-lib-processinfo": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz",
"integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==",
"dev": true,
"dependencies": {
"archy": "^1.0.0",
"cross-spawn": "^7.0.3",
"istanbul-lib-coverage": "^3.2.0",
"p-map": "^3.0.0",
"rimraf": "^3.0.0",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=8"
}
},
"node_modules/istanbul-lib-processinfo/node_modules/p-map": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
"integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"dependencies": {
"aggregate-error": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/istanbul-lib-report": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
"integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"dependencies": {
"istanbul-lib-coverage": "^3.0.0",
"make-dir": "^4.0.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/istanbul-lib-report/node_modules/make-dir": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
"integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"dependencies": {
"semver": "^7.5.3"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/istanbul-lib-report/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/istanbul-lib-source-maps": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
"integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
"dependencies": {
"debug": "^4.1.1",
"istanbul-lib-coverage": "^3.0.0",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/istanbul-lib-source-maps/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/istanbul-reports": {
"version": "3.1.7",
"resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
"integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
"dependencies": {
"html-escaper": "^2.0.0",
"istanbul-lib-report": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/iterator.prototype": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.4.tgz",
"integrity": "sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==",
"dependencies": {
"define-data-property": "^1.1.4",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.6",
"has-symbols": "^1.1.0",
"reflect.getprototypeof": "^1.0.8",
"set-function-name": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/jackspeak": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
"dependencies": {
"@isaacs/cliui": "^8.0.2"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"optionalDependencies": {
"@pkgjs/parseargs": "^0.11.0"
}
},
"node_modules/jake": {
"version": "10.9.2",
"resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
"integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
"dependencies": {
"async": "^3.2.3",
"chalk": "^4.0.2",
"filelist": "^1.0.4",
"minimatch": "^3.1.2"
},
"bin": {
"jake": "bin/cli.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz",
"integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==",
"dependencies": {
"@jest/core": "^27.5.1",
"import-local": "^3.0.2",
"jest-cli": "^27.5.1"
},
"bin": {
"jest": "bin/jest.js"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
"optional": true
}
}
},
"node_modules/jest-changed-files": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz",
"integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==",
"dependencies": {
"@jest/types": "^27.5.1",
"execa": "^5.0.0",
"throat": "^6.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-changed-files/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-changed-files/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-changed-files/node_modules/execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
"node_modules/jest-changed-files/node_modules/get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-changed-files/node_modules/human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"engines": {
"node": ">=10.17.0"
}
},
"node_modules/jest-circus": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz",
"integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"co": "^4.6.0",
"dedent": "^0.7.0",
"expect": "^27.5.1",
"is-generator-fn": "^2.0.0",
"jest-each": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"stack-utils": "^2.0.3",
"throat": "^6.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-circus/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-circus/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-circus/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-circus/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-cli": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz",
"integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==",
"dependencies": {
"@jest/core": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
"import-local": "^3.0.2",
"jest-config": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"prompts": "^2.0.1",
"yargs": "^16.2.0"
},
"bin": {
"jest": "bin/jest.js"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
"optional": true
}
}
},
"node_modules/jest-cli/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-cli/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-cli/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-cli/node_modules/cliui": {
"version": "7.0.4",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^7.0.0"
}
},
"node_modules/jest-cli/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-cli/node_modules/y18n": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
"engines": {
"node": ">=10"
}
},
"node_modules/jest-cli/node_modules/yargs": {
"version": "16.2.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"dependencies": {
"cliui": "^7.0.2",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
"string-width": "^4.2.0",
"y18n": "^5.0.5",
"yargs-parser": "^20.2.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/jest-cli/node_modules/yargs-parser": {
"version": "20.2.9",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
"engines": {
"node": ">=10"
}
},
"node_modules/jest-config": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz",
"integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==",
"dependencies": {
"@babel/core": "^7.8.0",
"@jest/test-sequencer": "^27.5.1",
"@jest/types": "^27.5.1",
"babel-jest": "^27.5.1",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"deepmerge": "^4.2.2",
"glob": "^7.1.1",
"graceful-fs": "^4.2.9",
"jest-circus": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-jasmine2": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-runner": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"micromatch": "^4.0.4",
"parse-json": "^5.2.0",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"peerDependencies": {
"ts-node": ">=9.0.0"
},
"peerDependenciesMeta": {
"ts-node": {
"optional": true
}
}
},
"node_modules/jest-config/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-config/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-config/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-config/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-diff": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz",
"integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==",
"dependencies": {
"chalk": "^4.0.0",
"diff-sequences": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-docblock": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz",
"integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==",
"dependencies": {
"detect-newline": "^3.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-each": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz",
"integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==",
"dependencies": {
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"jest-get-type": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-each/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-each/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-each/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-each/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-jsdom": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz",
"integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1",
"jsdom": "^16.6.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-jsdom/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-jsdom/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-environment-jsdom/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-environment-jsdom/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-node": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz",
"integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-node/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-environment-node/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-environment-node/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-environment-node/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-get-type": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz",
"integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==",
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-haste-map": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz",
"integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/graceful-fs": "^4.1.2",
"@types/node": "*",
"anymatch": "^3.0.3",
"fb-watchman": "^2.0.0",
"graceful-fs": "^4.2.9",
"jest-regex-util": "^27.5.1",
"jest-serializer": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"micromatch": "^4.0.4",
"walker": "^1.0.7"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
},
"node_modules/jest-haste-map/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-haste-map/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-haste-map/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-haste-map/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-haste-map/node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/jest-haste-map/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/jest-jasmine2": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz",
"integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/source-map": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"co": "^4.6.0",
"expect": "^27.5.1",
"is-generator-fn": "^2.0.0",
"jest-each": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1",
"throat": "^6.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-jasmine2/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-jasmine2/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-jasmine2/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-jasmine2/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-leak-detector": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz",
"integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==",
"dependencies": {
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-matcher-utils": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz",
"integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==",
"dependencies": {
"chalk": "^4.0.0",
"jest-diff": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-message-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
"integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@jest/types": "^27.5.1",
"@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.4",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"stack-utils": "^2.0.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-message-util/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-message-util/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-mock": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz",
"integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-mock/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-mock/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-pnp-resolver": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
"integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
"engines": {
"node": ">=6"
},
"peerDependencies": {
"jest-resolve": "*"
},
"peerDependenciesMeta": {
"jest-resolve": {
"optional": true
}
}
},
"node_modules/jest-regex-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz",
"integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==",
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-resolve": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz",
"integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==",
"dependencies": {
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-pnp-resolver": "^1.2.2",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"resolve": "^1.20.0",
"resolve.exports": "^1.1.0",
"slash": "^3.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-resolve-dependencies": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz",
"integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==",
"dependencies": {
"@jest/types": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-snapshot": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-resolve-dependencies/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-resolve-dependencies/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-resolve/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-resolve/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-resolve/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-resolve/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runner": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz",
"integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==",
"dependencies": {
"@jest/console": "^27.5.1",
"@jest/environment": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"graceful-fs": "^4.2.9",
"jest-docblock": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-leak-detector": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"source-map-support": "^0.5.6",
"throat": "^6.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runner/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runner/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-runner/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-runner/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runner/node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/jest-runner/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/jest-runtime": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz",
"integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==",
"dependencies": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/globals": "^27.5.1",
"@jest/source-map": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"cjs-module-lexer": "^1.0.0",
"collect-v8-coverage": "^1.0.0",
"execa": "^5.0.0",
"glob": "^7.1.3",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"slash": "^3.0.0",
"strip-bom": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runtime/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-runtime/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-runtime/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-runtime/node_modules/execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dependencies": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
"node_modules/jest-runtime/node_modules/get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-runtime/node_modules/human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"engines": {
"node": ">=10.17.0"
}
},
"node_modules/jest-runtime/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-serializer": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz",
"integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==",
"dependencies": {
"@types/node": "*",
"graceful-fs": "^4.2.9"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-snapshot": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz",
"integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==",
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/generator": "^7.7.2",
"@babel/plugin-syntax-typescript": "^7.7.2",
"@babel/traverse": "^7.7.2",
"@babel/types": "^7.0.0",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/babel__traverse": "^7.0.4",
"@types/prettier": "^2.1.5",
"babel-preset-current-node-syntax": "^1.0.0",
"chalk": "^4.0.0",
"expect": "^27.5.1",
"graceful-fs": "^4.2.9",
"jest-diff": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-util": "^27.5.1",
"natural-compare": "^1.4.0",
"pretty-format": "^27.5.1",
"semver": "^7.3.2"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-snapshot/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-snapshot/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-snapshot/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-snapshot/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-snapshot/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/jest-util": {
"version": "29.7.0",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
"integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
"dev": true,
"dependencies": {
"@jest/types": "^29.6.3",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/jest-util/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-validate": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz",
"integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==",
"dependencies": {
"@jest/types": "^27.5.1",
"camelcase": "^6.2.0",
"chalk": "^4.0.0",
"jest-get-type": "^27.5.1",
"leven": "^3.1.0",
"pretty-format": "^27.5.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-validate/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-validate/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-validate/node_modules/camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-watch-typeahead": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz",
"integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==",
"dependencies": {
"ansi-escapes": "^4.3.1",
"chalk": "^4.0.0",
"jest-regex-util": "^28.0.0",
"jest-watcher": "^28.0.0",
"slash": "^4.0.0",
"string-length": "^5.0.1",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"jest": "^27.0.0 || ^28.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/@jest/console": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz",
"integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==",
"dependencies": {
"@jest/types": "^28.1.3",
"@types/node": "*",
"chalk": "^4.0.0",
"jest-message-util": "^28.1.3",
"jest-util": "^28.1.3",
"slash": "^3.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"engines": {
"node": ">=8"
}
},
"node_modules/jest-watch-typeahead/node_modules/@jest/schemas": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz",
"integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
"dependencies": {
"@sinclair/typebox": "^0.24.1"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/@jest/test-result": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz",
"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
"dependencies": {
"@jest/console": "^28.1.3",
"@jest/types": "^28.1.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/@jest/types": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz",
"integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==",
"dependencies": {
"@jest/schemas": "^28.1.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^17.0.8",
"chalk": "^4.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/@sinclair/typebox": {
"version": "0.24.51",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz",
"integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
},
"node_modules/jest-watch-typeahead/node_modules/ansi-styles": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/jest-watch-typeahead/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-watch-typeahead/node_modules/emittery": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz",
"integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sindresorhus/emittery?sponsor=1"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-message-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz",
"integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@jest/types": "^28.1.3",
"@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.4",
"pretty-format": "^28.1.3",
"slash": "^3.0.0",
"stack-utils": "^2.0.3"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"engines": {
"node": ">=8"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-regex-util": {
"version": "28.0.2",
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz",
"integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==",
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz",
"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
"dependencies": {
"@jest/types": "^28.1.3",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-watcher": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz",
"integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==",
"dependencies": {
"@jest/test-result": "^28.1.3",
"@jest/types": "^28.1.3",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"emittery": "^0.10.2",
"jest-util": "^28.1.3",
"string-length": "^4.0.1"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
"dependencies": {
"char-regex": "^1.0.2",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dependencies": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/jest-watch-typeahead/node_modules/pretty-format": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz",
"integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==",
"dependencies": {
"@jest/schemas": "^28.1.3",
"ansi-regex": "^5.0.1",
"ansi-styles": "^5.0.0",
"react-is": "^18.0.0"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
}
},
"node_modules/jest-watch-typeahead/node_modules/react-is": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="
},
"node_modules/jest-watch-typeahead/node_modules/slash": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
"integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-watch-typeahead/node_modules/string-length": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz",
"integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==",
"dependencies": {
"char-regex": "^2.0.0",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12.20"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz",
"integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==",
"engines": {
"node": ">=12.20"
}
},
"node_modules/jest-watch-typeahead/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/jest-watcher": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz",
"integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==",
"dependencies": {
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"jest-util": "^27.5.1",
"string-length": "^4.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-watcher/node_modules/@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-watcher/node_modules/@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"dependencies": {
"@types/yargs-parser": "*"
}
},
"node_modules/jest-watcher/node_modules/ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"engines": {
"node": ">=8"
}
},
"node_modules/jest-watcher/node_modules/jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"dependencies": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/jest-worker": {
"version": "29.7.0",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
"integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
"dev": true,
"dependencies": {
"@types/node": "*",
"jest-util": "^29.7.0",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
"node_modules/jest-worker/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/jiti": {
"version": "1.21.6",
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz",
"integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==",
"bin": {
"jiti": "bin/jiti.js"
}
},
"node_modules/js-datepicker": {
"version": "5.18.3",
"resolved": "https://registry.npmjs.org/js-datepicker/-/js-datepicker-5.18.3.tgz",
"integrity": "sha512-M1+UKeRkLT0p04JhnSpNugveFSfy6VfEeNTyAyFef6unKIqQx4oQqx66lsBi0FRKHb4HtQsmJ8V4L4SPj1lbRQ=="
},
"node_modules/js-sha256": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
"integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
},
"node_modules/js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"node_modules/js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dependencies": {
"argparse": "^2.0.1"
},
"bin": {
"js-yaml": "bin/js-yaml.js"
}
},
"node_modules/jsbn": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
"dev": true
},
"node_modules/jsdom": {
"version": "16.7.0",
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
"integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
"dependencies": {
"abab": "^2.0.5",
"acorn": "^8.2.4",
"acorn-globals": "^6.0.0",
"cssom": "^0.4.4",
"cssstyle": "^2.3.0",
"data-urls": "^2.0.0",
"decimal.js": "^10.2.1",
"domexception": "^2.0.1",
"escodegen": "^2.0.0",
"form-data": "^3.0.0",
"html-encoding-sniffer": "^2.0.1",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "^5.0.0",
"is-potential-custom-element-name": "^1.0.1",
"nwsapi": "^2.2.0",
"parse5": "6.0.1",
"saxes": "^5.0.1",
"symbol-tree": "^3.2.4",
"tough-cookie": "^4.0.0",
"w3c-hr-time": "^1.0.2",
"w3c-xmlserializer": "^2.0.0",
"webidl-conversions": "^6.1.0",
"whatwg-encoding": "^1.0.5",
"whatwg-mimetype": "^2.3.0",
"whatwg-url": "^8.5.0",
"ws": "^7.4.6",
"xml-name-validator": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"canvas": "^2.5.0"
},
"peerDependenciesMeta": {
"canvas": {
"optional": true
}
}
},
"node_modules/jsdom/node_modules/form-data": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz",
"integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/jsdom/node_modules/tough-cookie": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
"integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==",
"dependencies": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
"universalify": "^0.2.0",
"url-parse": "^1.5.3"
},
"engines": {
"node": ">=6"
}
},
"node_modules/jsdom/node_modules/tr46": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
"dependencies": {
"punycode": "^2.1.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/jsdom/node_modules/universalify": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
"engines": {
"node": ">= 4.0.0"
}
},
"node_modules/jsdom/node_modules/whatwg-url": {
"version": "8.7.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
"dependencies": {
"lodash": "^4.7.0",
"tr46": "^2.1.0",
"webidl-conversions": "^6.1.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/jsesc": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"bin": {
"jsesc": "bin/jsesc"
},
"engines": {
"node": ">=6"
}
},
"node_modules/json-buffer": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
},
"node_modules/json-schema": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
},
"node_modules/json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"node_modules/json-stable-stringify-without-jsonify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
},
"node_modules/json-stringify-safe": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
"dev": true
},
"node_modules/json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"bin": {
"json5": "lib/cli.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"dependencies": {
"universalify": "^2.0.0"
},
"optionalDependencies": {
"graceful-fs": "^4.1.6"
}
},
"node_modules/jsonpath": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz",
"integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==",
"dependencies": {
"esprima": "1.2.2",
"static-eval": "2.0.2",
"underscore": "1.12.1"
}
},
"node_modules/jsonpath/node_modules/esprima": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
"integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==",
"bin": {
"esparse": "bin/esparse.js",
"esvalidate": "bin/esvalidate.js"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/jsonpointer": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz",
"integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/jsprim": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz",
"integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==",
"dev": true,
"engines": [
"node >=0.6.0"
],
"dependencies": {
"assert-plus": "1.0.0",
"extsprintf": "1.3.0",
"json-schema": "0.4.0",
"verror": "1.10.0"
}
},
"node_modules/jsx-ast-utils": {
"version": "3.3.5",
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
"integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
"dependencies": {
"array-includes": "^3.1.6",
"array.prototype.flat": "^1.3.1",
"object.assign": "^4.1.4",
"object.values": "^1.1.6"
},
"engines": {
"node": ">=4.0"
}
},
"node_modules/keyv": {
"version": "4.5.4",
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"dependencies": {
"json-buffer": "3.0.1"
}
},
"node_modules/kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/kleur": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
"engines": {
"node": ">=6"
}
},
"node_modules/klona": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
"integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
"engines": {
"node": ">= 8"
}
},
"node_modules/language-subtag-registry": {
"version": "0.3.23",
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
"integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ=="
},
"node_modules/language-tags": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
"integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
"dependencies": {
"language-subtag-registry": "^0.3.20"
},
"engines": {
"node": ">=0.10"
}
},
"node_modules/launch-editor": {
"version": "2.9.1",
"resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz",
"integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==",
"dependencies": {
"picocolors": "^1.0.0",
"shell-quote": "^1.8.1"
}
},
"node_modules/lazy-ass": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz",
"integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==",
"dev": true,
"engines": {
"node": "> 0.8"
}
},
"node_modules/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==",
"engines": {
"node": ">=6"
}
},
"node_modules/levn": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"dependencies": {
"prelude-ls": "^1.2.1",
"type-check": "~0.4.0"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/lilconfig": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/antonk52"
}
},
"node_modules/lines-and-columns": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
},
"node_modules/listr2": {
"version": "3.14.0",
"resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz",
"integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==",
"dev": true,
"dependencies": {
"cli-truncate": "^2.1.0",
"colorette": "^2.0.16",
"log-update": "^4.0.0",
"p-map": "^4.0.0",
"rfdc": "^1.3.0",
"rxjs": "^7.5.1",
"through": "^2.3.8",
"wrap-ansi": "^7.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"enquirer": ">= 2.3.0 < 3"
},
"peerDependenciesMeta": {
"enquirer": {
"optional": true
}
}
},
"node_modules/loader-runner": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
"engines": {
"node": ">=6.11.5"
}
},
"node_modules/loader-utils": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
"dependencies": {
"big.js": "^5.2.2",
"emojis-list": "^3.0.0",
"json5": "^2.1.2"
},
"engines": {
"node": ">=8.9.0"
}
},
"node_modules/locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dependencies": {
"p-locate": "^5.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/lodash": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
"node_modules/lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
},
"node_modules/lodash.flattendeep": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
"integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==",
"dev": true
},
"node_modules/lodash.memoize": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="
},
"node_modules/lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
},
"node_modules/lodash.once": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
"dev": true
},
"node_modules/lodash.sortby": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
"integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA=="
},
"node_modules/lodash.uniq": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
},
"node_modules/log-symbols": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
"integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
"dev": true,
"dependencies": {
"chalk": "^4.1.0",
"is-unicode-supported": "^0.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/log-update": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz",
"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
"dev": true,
"dependencies": {
"ansi-escapes": "^4.3.0",
"cli-cursor": "^3.1.0",
"slice-ansi": "^4.0.0",
"wrap-ansi": "^6.2.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/log-update/node_modules/slice-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
"integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^4.0.0",
"astral-regex": "^2.0.0",
"is-fullwidth-code-point": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
}
},
"node_modules/log-update/node_modules/wrap-ansi": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
"dev": true,
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"dependencies": {
"js-tokens": "^3.0.0 || ^4.0.0"
},
"bin": {
"loose-envify": "cli.js"
}
},
"node_modules/lottie-react": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/lottie-react/-/lottie-react-2.4.0.tgz",
"integrity": "sha512-pDJGj+AQlnlyHvOHFK7vLdsDcvbuqvwPZdMlJ360wrzGFurXeKPr8SiRCjLf3LrNYKANQtSsh5dz9UYQHuqx4w==",
"dependencies": {
"lottie-web": "^5.10.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/lottie-web": {
"version": "5.12.2",
"resolved": "https://registry.npmjs.org/lottie-web/-/lottie-web-5.12.2.tgz",
"integrity": "sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg=="
},
"node_modules/lower-case": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
"integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
"dependencies": {
"tslib": "^2.0.3"
}
},
"node_modules/lowlight": {
"version": "1.20.0",
"resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz",
"integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==",
"dependencies": {
"fault": "^1.0.0",
"highlight.js": "~10.7.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dependencies": {
"yallist": "^3.0.2"
}
},
"node_modules/magic-string": {
"version": "0.25.9",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
"integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==",
"dependencies": {
"sourcemap-codec": "^1.4.8"
}
},
"node_modules/make-cancellable-promise": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/make-cancellable-promise/-/make-cancellable-promise-1.3.2.tgz",
"integrity": "sha512-GCXh3bq/WuMbS+Ky4JBPW1hYTOU+znU+Q5m9Pu+pI8EoUqIHk9+tviOKC6/qhHh8C4/As3tzJ69IF32kdz85ww==",
"funding": {
"url": "https://github.com/wojtekmaj/make-cancellable-promise?sponsor=1"
}
},
"node_modules/make-dir": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dependencies": {
"semver": "^6.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/make-event-props": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/make-event-props/-/make-event-props-1.6.2.tgz",
"integrity": "sha512-iDwf7mA03WPiR8QxvcVHmVWEPfMY1RZXerDVNCRYW7dUr2ppH3J58Rwb39/WG39yTZdRSxr3x+2v22tvI0VEvA==",
"funding": {
"url": "https://github.com/wojtekmaj/make-event-props?sponsor=1"
}
},
"node_modules/makeerror": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
"integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
"dependencies": {
"tmpl": "1.0.5"
}
},
"node_modules/math-intrinsics": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
"integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/mdn-data": {
"version": "2.0.30",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
"dev": true
},
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/memfs": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
"dependencies": {
"fs-monkey": "^1.0.4"
},
"engines": {
"node": ">= 4.0.0"
}
},
"node_modules/memoize-one": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
"integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="
},
"node_modules/merge-descriptors": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/merge-refs": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/merge-refs/-/merge-refs-1.3.0.tgz",
"integrity": "sha512-nqXPXbso+1dcKDpPCXvwZyJILz+vSLqGGOnDrYHQYE+B8n9JTCekVLC65AfCpR4ggVyA/45Y0iR9LDyS2iI+zA==",
"funding": {
"url": "https://github.com/wojtekmaj/merge-refs?sponsor=1"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/merge-source-map": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz",
"integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==",
"dev": true,
"dependencies": {
"source-map": "^0.6.1"
}
},
"node_modules/merge-source-map/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/merge-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
},
"node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"engines": {
"node": ">= 8"
}
},
"node_modules/methods": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/micromatch": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dependencies": {
"braces": "^3.0.3",
"picomatch": "^2.3.1"
},
"engines": {
"node": ">=8.6"
}
},
"node_modules/mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
"bin": {
"mime": "cli.js"
},
"engines": {
"node": ">=4"
}
},
"node_modules/mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dependencies": {
"mime-db": "1.52.0"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/mimic-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
"engines": {
"node": ">=6"
}
},
"node_modules/mimic-response": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
"integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
"optional": true,
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/mini-css-extract-plugin": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz",
"integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==",
"dev": true,
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"webpack-sources": "^1.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.4.0 || ^5.0.0"
}
},
"node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/minimalistic-assert": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
},
"node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/minizlib": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
"integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
"optional": true,
"dependencies": {
"minipass": "^3.0.0",
"yallist": "^4.0.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/minizlib/node_modules/minipass": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
"optional": true,
"dependencies": {
"yallist": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/minizlib/node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
},
"node_modules/mixpanel-browser": {
"version": "2.45.0",
"resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.45.0.tgz",
"integrity": "sha512-PQ1DaTk68yyYtLA0iejmzPA9iNDhT4uIZpqZjRTw7HWpYfl123fydHb2laKanaKjm8YDmrGGz3+xZ4Q6joogyg=="
},
"node_modules/mkdirp": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
"optional": true,
"bin": {
"mkdirp": "bin/cmd.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/monaco-editor": {
"version": "0.34.1",
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.34.1.tgz",
"integrity": "sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ=="
},
"node_modules/monaco-editor-webpack-plugin": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-7.1.0.tgz",
"integrity": "sha512-ZjnGINHN963JQkFqjjcBtn1XBtUATDZBMgNQhDQwd78w2ukRhFXAPNgWuacaQiDZsUr4h1rWv5Mv6eriKuOSzA==",
"dev": true,
"dependencies": {
"loader-utils": "^2.0.2"
},
"peerDependencies": {
"monaco-editor": ">= 0.31.0",
"webpack": "^4.5.0 || 5.x"
}
},
"node_modules/mri": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
"dev": true,
"engines": {
"node": ">=4"
}
},
"node_modules/ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"node_modules/multicast-dns": {
"version": "7.2.5",
"resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz",
"integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==",
"dependencies": {
"dns-packet": "^5.2.2",
"thunky": "^1.0.2"
},
"bin": {
"multicast-dns": "cli.js"
}
},
"node_modules/mz": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
"dependencies": {
"any-promise": "^1.0.0",
"object-assign": "^4.0.1",
"thenify-all": "^1.0.0"
}
},
"node_modules/nan": {
"version": "2.22.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz",
"integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==",
"optional": true
},
"node_modules/nanoid": {
"version": "3.3.8",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"bin": {
"nanoid": "bin/nanoid.cjs"
},
"engines": {
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
},
"node_modules/natural-compare": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
},
"node_modules/natural-compare-lite": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz",
"integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g=="
},
"node_modules/negotiator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="
},
"node_modules/no-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
"integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
"dependencies": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
}
},
"node_modules/node-fetch": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
"optional": true,
"dependencies": {
"whatwg-url": "^5.0.0"
},
"engines": {
"node": "4.x || >=6.0.0"
},
"peerDependencies": {
"encoding": "^0.1.0"
},
"peerDependenciesMeta": {
"encoding": {
"optional": true
}
}
},
"node_modules/node-forge": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
"integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==",
"engines": {
"node": ">= 6.13.0"
}
},
"node_modules/node-int64": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
},
"node_modules/node-preload": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz",
"integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==",
"dev": true,
"dependencies": {
"process-on-spawn": "^1.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/node-releases": {
"version": "2.0.19",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="
},
"node_modules/nopt": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
"integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
"optional": true,
"dependencies": {
"abbrev": "1"
},
"bin": {
"nopt": "bin/nopt.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/normalize-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/normalize-range": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/normalize-url": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
"integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/npm-run-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
"integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
"dependencies": {
"path-key": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/npmlog": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
"integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
"deprecated": "This package is no longer supported.",
"optional": true,
"dependencies": {
"are-we-there-yet": "^2.0.0",
"console-control-strings": "^1.1.0",
"gauge": "^3.0.0",
"set-blocking": "^2.0.0"
}
},
"node_modules/nth-check": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
"dependencies": {
"boolbase": "^1.0.0"
},
"funding": {
"url": "https://github.com/fb55/nth-check?sponsor=1"
}
},
"node_modules/num2fraction": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
"integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==",
"dev": true
},
"node_modules/nwsapi": {
"version": "2.2.16",
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz",
"integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ=="
},
"node_modules/nyc": {
"version": "15.1.0",
"resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz",
"integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==",
"dev": true,
"dependencies": {
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.2",
"caching-transform": "^4.0.0",
"convert-source-map": "^1.7.0",
"decamelize": "^1.2.0",
"find-cache-dir": "^3.2.0",
"find-up": "^4.1.0",
"foreground-child": "^2.0.0",
"get-package-type": "^0.1.0",
"glob": "^7.1.6",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-hook": "^3.0.0",
"istanbul-lib-instrument": "^4.0.0",
"istanbul-lib-processinfo": "^2.0.2",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.0.2",
"make-dir": "^3.0.0",
"node-preload": "^0.2.1",
"p-map": "^3.0.0",
"process-on-spawn": "^1.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"signal-exit": "^3.0.2",
"spawn-wrap": "^2.0.0",
"test-exclude": "^6.0.0",
"yargs": "^15.0.2"
},
"bin": {
"nyc": "bin/nyc.js"
},
"engines": {
"node": ">=8.9"
}
},
"node_modules/nyc/node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true
},
"node_modules/nyc/node_modules/find-cache-dir": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
"integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dev": true,
"dependencies": {
"commondir": "^1.0.1",
"make-dir": "^3.0.2",
"pkg-dir": "^4.1.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
"node_modules/nyc/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/nyc/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"dependencies": {
"p-locate": "^4.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/nyc/node_modules/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,
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/nyc/node_modules/p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"dependencies": {
"p-limit": "^2.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/nyc/node_modules/p-map": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
"integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"dependencies": {
"aggregate-error": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/nyc/node_modules/pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"dependencies": {
"find-up": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/nyc/node_modules/resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/object-hash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
"engines": {
"node": ">= 6"
}
},
"node_modules/object-inspect": {
"version": "1.13.3",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
"integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object-keys": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/object.assign": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz",
"integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
"dependencies": {
"call-bind": "^1.0.5",
"define-properties": "^1.2.1",
"has-symbols": "^1.0.3",
"object-keys": "^1.1.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object.entries": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz",
"integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/object.fromentries": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
"integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object.getownpropertydescriptors": {
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz",
"integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==",
"dependencies": {
"array.prototype.reduce": "^1.0.6",
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0",
"gopd": "^1.0.1",
"safe-array-concat": "^1.1.2"
},
"engines": {
"node": ">= 0.8"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object.groupby": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
"integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/object.values": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz",
"integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/obuf": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
},
"node_modules/on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
"dependencies": {
"ee-first": "1.1.1"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/on-headers": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
"dependencies": {
"wrappy": "1"
}
},
"node_modules/onetime": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
"dependencies": {
"mimic-fn": "^2.1.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/open": {
"version": "8.4.2",
"resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"dependencies": {
"define-lazy-prop": "^2.0.0",
"is-docker": "^2.1.1",
"is-wsl": "^2.2.0"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/optionator": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
"integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
"dependencies": {
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
"levn": "^0.4.1",
"prelude-ls": "^1.2.1",
"type-check": "^0.4.0",
"word-wrap": "^1.2.5"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/ospath": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz",
"integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==",
"dev": true
},
"node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dependencies": {
"yocto-queue": "^0.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dependencies": {
"p-limit": "^3.0.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/p-map": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
"integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
"dev": true,
"dependencies": {
"aggregate-error": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/p-retry": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
"integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
"dependencies": {
"@types/retry": "0.12.0",
"retry": "^0.13.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/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==",
"engines": {
"node": ">=6"
}
},
"node_modules/package-hash": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz",
"integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==",
"dev": true,
"dependencies": {
"graceful-fs": "^4.1.15",
"hasha": "^5.0.0",
"lodash.flattendeep": "^4.4.0",
"release-zalgo": "^1.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/package-json-from-dist": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
},
"node_modules/param-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
"integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
"dependencies": {
"dot-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"node_modules/parent-module": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"dependencies": {
"callsites": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/parse-entities": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
"integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
"dependencies": {
"character-entities": "^1.0.0",
"character-entities-legacy": "^1.0.0",
"character-reference-invalid": "^1.0.0",
"is-alphanumerical": "^1.0.0",
"is-decimal": "^1.0.0",
"is-hexadecimal": "^1.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/parse-json": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
"json-parse-even-better-errors": "^2.3.0",
"lines-and-columns": "^1.1.6"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/parse5": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
},
"node_modules/parseurl": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/pascal-case": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
"integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
"dependencies": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"node_modules/path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"engines": {
"node": ">=8"
}
},
"node_modules/path-is-absolute": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/path-is-inside": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
"integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==",
"dev": true
},
"node_modules/path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
"engines": {
"node": ">=8"
}
},
"node_modules/path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
"node_modules/path-scurry": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": {
"lru-cache": "^10.2.0",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
},
"engines": {
"node": ">=16 || 14 >=14.18"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/path-scurry/node_modules/lru-cache": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
},
"node_modules/path-to-regexp": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz",
"integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==",
"dev": true
},
"node_modules/path-type": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
"engines": {
"node": ">=8"
}
},
"node_modules/path2d": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/path2d/-/path2d-0.2.2.tgz",
"integrity": "sha512-+vnG6S4dYcYxZd+CZxzXCNKdELYZSKfohrk98yajCo1PtRoDgCTrrwOvK1GT0UoAdVszagDVllQc0U1vaX4NUQ==",
"optional": true,
"engines": {
"node": ">=6"
}
},
"node_modules/pdfjs-dist": {
"version": "4.4.168",
"resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-4.4.168.tgz",
"integrity": "sha512-MbkAjpwka/dMHaCfQ75RY1FXX3IewBVu6NGZOcxerRFlaBiIkZmUoR0jotX5VUzYZEXAGzSFtknWs5xRKliXPA==",
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"path2d": "^0.2.0"
}
},
"node_modules/pend": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
"dev": true
},
"node_modules/performance-now": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
},
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
},
"node_modules/picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
"engines": {
"node": ">=8.6"
},
"funding": {
"url": "https://github.com/sponsors/jonschlinkert"
}
},
"node_modules/pify": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/pirates": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
"engines": {
"node": ">= 6"
}
},
"node_modules/pkg-dir": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz",
"integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
"dev": true,
"peer": true,
"dependencies": {
"find-up": "^6.3.0"
},
"engines": {
"node": ">=14.16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-dir/node_modules/find-up": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz",
"integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
"dev": true,
"peer": true,
"dependencies": {
"locate-path": "^7.1.0",
"path-exists": "^5.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-dir/node_modules/locate-path": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
"dev": true,
"peer": true,
"dependencies": {
"p-locate": "^6.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-dir/node_modules/p-limit": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
"integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
"dev": true,
"peer": true,
"dependencies": {
"yocto-queue": "^1.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-dir/node_modules/p-locate": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz",
"integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
"dev": true,
"peer": true,
"dependencies": {
"p-limit": "^4.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-dir/node_modules/path-exists": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
"integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
"dev": true,
"peer": true,
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
},
"node_modules/pkg-dir/node_modules/yocto-queue": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz",
"integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==",
"dev": true,
"peer": true,
"engines": {
"node": ">=12.20"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-up": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
"integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
"dependencies": {
"find-up": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/pkg-up/node_modules/find-up": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dependencies": {
"locate-path": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/pkg-up/node_modules/locate-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dependencies": {
"p-locate": "^3.0.0",
"path-exists": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/pkg-up/node_modules/p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pkg-up/node_modules/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==",
"dependencies": {
"p-limit": "^2.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/pkg-up/node_modules/path-exists": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
"integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
"engines": {
"node": ">=4"
}
},
"node_modules/possible-typed-array-names": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
"integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/postcss": {
"version": "8.4.49",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
"integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/postcss"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
"engines": {
"node": "^10 || ^12 || >=14"
}
},
"node_modules/postcss-attribute-case-insensitive": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz",
"integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^6.0.2"
}
},
"node_modules/postcss-attribute-case-insensitive/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-attribute-case-insensitive/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-attribute-case-insensitive/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-browser-comments": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz",
"integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==",
"engines": {
"node": ">=8"
},
"peerDependencies": {
"browserslist": ">=4",
"postcss": ">=8"
}
},
"node_modules/postcss-calc": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz",
"integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==",
"dev": true,
"dependencies": {
"postcss-selector-parser": "^6.0.11",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.2.2"
}
},
"node_modules/postcss-clamp": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz",
"integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": ">=7.6.0"
},
"peerDependencies": {
"postcss": "^8.4.6"
}
},
"node_modules/postcss-color-functional-notation": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz",
"integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-color-functional-notation/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-color-functional-notation/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-color-functional-notation/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-color-gray": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz",
"integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==",
"dev": true,
"dependencies": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.5",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-color-gray/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-color-gray/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-color-gray/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-color-hex-alpha": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz",
"integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.14",
"postcss-values-parser": "^2.0.1"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-color-hex-alpha/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-color-hex-alpha/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-color-hex-alpha/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-color-mod-function": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz",
"integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==",
"dev": true,
"dependencies": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-color-mod-function/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-color-mod-function/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-color-mod-function/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-color-rebeccapurple": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz",
"integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-color-rebeccapurple/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-color-rebeccapurple/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-color-rebeccapurple/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-colormin": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz",
"integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0",
"colord": "^2.9.3",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-convert-values": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz",
"integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-custom-media": {
"version": "7.0.8",
"resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz",
"integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.14"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-custom-media/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-custom-media/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-custom-media/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-custom-properties": {
"version": "8.0.11",
"resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz",
"integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==",
"dev": true,
"dependencies": {
"postcss": "^7.0.17",
"postcss-values-parser": "^2.0.1"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-custom-properties/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-custom-properties/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-custom-properties/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-custom-selectors": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz",
"integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-custom-selectors/node_modules/cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true,
"bin": {
"cssesc": "bin/cssesc"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-custom-selectors/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-custom-selectors/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"dependencies": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-custom-selectors/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-dir-pseudo-class": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz",
"integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/postcss-dir-pseudo-class/node_modules/cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true,
"bin": {
"cssesc": "bin/cssesc"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-dir-pseudo-class/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-dir-pseudo-class/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"dependencies": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-dir-pseudo-class/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-discard-comments": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz",
"integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-discard-duplicates": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz",
"integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-discard-empty": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz",
"integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-discard-overridden": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz",
"integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-double-position-gradients": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz",
"integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==",
"dev": true,
"dependencies": {
"postcss": "^7.0.5",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-double-position-gradients/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-double-position-gradients/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-double-position-gradients/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-env-function": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz",
"integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-env-function/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-env-function/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-env-function/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-flexbugs-fixes": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz",
"integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==",
"peerDependencies": {
"postcss": "^8.1.4"
}
},
"node_modules/postcss-focus-visible": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz",
"integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-focus-visible/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-focus-visible/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-focus-visible/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-focus-within": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz",
"integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-focus-within/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-focus-within/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-focus-within/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-font-variant": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz",
"integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
}
},
"node_modules/postcss-font-variant/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-font-variant/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-font-variant/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-gap-properties": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz",
"integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-gap-properties/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-gap-properties/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-gap-properties/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-image-set-function": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz",
"integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-image-set-function/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-image-set-function/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-image-set-function/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-import": {
"version": "15.1.0",
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
"dependencies": {
"postcss-value-parser": "^4.0.0",
"read-cache": "^1.0.0",
"resolve": "^1.1.7"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
},
"node_modules/postcss-initial": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz",
"integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
}
},
"node_modules/postcss-initial/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-initial/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-initial/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-js": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
"integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
"dependencies": {
"camelcase-css": "^2.0.1"
},
"engines": {
"node": "^12 || ^14 || >= 16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
"peerDependencies": {
"postcss": "^8.4.21"
}
},
"node_modules/postcss-lab-function": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz",
"integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==",
"dev": true,
"dependencies": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-lab-function/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-lab-function/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-lab-function/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-load-config": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz",
"integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==",
"dependencies": {
"lilconfig": "^2.0.5",
"yaml": "^1.10.2"
},
"engines": {
"node": ">= 10"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
"peerDependencies": {
"postcss": ">=8.0.9",
"ts-node": ">=9.0.0"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
},
"ts-node": {
"optional": true
}
}
},
"node_modules/postcss-load-config/node_modules/lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
"engines": {
"node": ">=10"
}
},
"node_modules/postcss-loader": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz",
"integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==",
"dev": true,
"dependencies": {
"cosmiconfig": "^7.0.0",
"klona": "^2.0.4",
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"semver": "^7.3.4"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"postcss": "^7.0.0 || ^8.0.1",
"webpack": "^4.0.0 || ^5.0.0"
}
},
"node_modules/postcss-loader/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/postcss-loader/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/postcss-logical": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz",
"integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-logical/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-logical/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-logical/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-media-minmax": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz",
"integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-media-minmax/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-media-minmax/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-media-minmax/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-merge-longhand": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz",
"integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0",
"stylehacks": "^6.1.1"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-merge-rules": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz",
"integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0",
"cssnano-utils": "^4.0.2",
"postcss-selector-parser": "^6.0.16"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-minify-font-values": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz",
"integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-minify-gradients": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz",
"integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==",
"dev": true,
"dependencies": {
"colord": "^2.9.3",
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-minify-params": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz",
"integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-minify-selectors": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz",
"integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==",
"dev": true,
"dependencies": {
"postcss-selector-parser": "^6.0.16"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-modules-extract-imports": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz",
"integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==",
"engines": {
"node": "^10 || ^12 || >= 14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/postcss-modules-local-by-default": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz",
"integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==",
"dependencies": {
"icss-utils": "^5.0.0",
"postcss-selector-parser": "^7.0.0",
"postcss-value-parser": "^4.1.0"
},
"engines": {
"node": "^10 || ^12 || >= 14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
"integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
"dependencies": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-modules-scope": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz",
"integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==",
"dependencies": {
"postcss-selector-parser": "^7.0.0"
},
"engines": {
"node": "^10 || ^12 || >= 14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
"integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
"dependencies": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-modules-values": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
"dependencies": {
"icss-utils": "^5.0.0"
},
"engines": {
"node": "^10 || ^12 || >= 14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/postcss-nested": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"postcss-selector-parser": "^6.1.1"
},
"engines": {
"node": ">=12.0"
},
"peerDependencies": {
"postcss": "^8.2.14"
}
},
"node_modules/postcss-nesting": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz",
"integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-nesting/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-nesting/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-nesting/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-normalize": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz",
"integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==",
"dependencies": {
"@csstools/normalize.css": "*",
"postcss-browser-comments": "^4",
"sanitize.css": "*"
},
"engines": {
"node": ">= 12"
},
"peerDependencies": {
"browserslist": ">= 4",
"postcss": ">= 8"
}
},
"node_modules/postcss-normalize-charset": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz",
"integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==",
"dev": true,
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-display-values": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz",
"integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-positions": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz",
"integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-repeat-style": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz",
"integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-string": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz",
"integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-timing-functions": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz",
"integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-unicode": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz",
"integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-url": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz",
"integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-normalize-whitespace": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz",
"integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-opacity-percentage": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz",
"integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/mrcgrtz"
},
{
"type": "liberapay",
"url": "https://liberapay.com/mrcgrtz"
}
],
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/postcss-ordered-values": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz",
"integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==",
"dev": true,
"dependencies": {
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-overflow-shorthand": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz",
"integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-overflow-shorthand/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-overflow-shorthand/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-overflow-shorthand/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-page-break": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz",
"integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
}
},
"node_modules/postcss-page-break/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-page-break/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-page-break/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-place": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz",
"integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-place/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-place/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-place/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-preset-env": {
"version": "6.7.2",
"resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.2.tgz",
"integrity": "sha512-nz+VyUUEB9uAxo5VxI0Gq4E31UjHCG3cUiZW3PzRn7KqkGlAEWuYgb/VLbAitEq7Ooubfix+H2JCm9v+C6hJuw==",
"dev": true,
"dependencies": {
"autoprefixer": "^9.6.1",
"browserslist": "^4.6.4",
"caniuse-lite": "^1.0.30000981",
"css-blank-pseudo": "^0.1.4",
"css-has-pseudo": "^0.10.0",
"css-prefers-color-scheme": "^3.1.1",
"cssdb": "^4.4.0",
"postcss": "^7.0.17",
"postcss-attribute-case-insensitive": "^4.0.1",
"postcss-color-functional-notation": "^2.0.1",
"postcss-color-gray": "^5.0.0",
"postcss-color-hex-alpha": "^5.0.3",
"postcss-color-mod-function": "^3.0.3",
"postcss-color-rebeccapurple": "^4.0.1",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^8.0.11",
"postcss-custom-selectors": "^5.1.2",
"postcss-dir-pseudo-class": "^5.0.0",
"postcss-double-position-gradients": "^1.0.0",
"postcss-env-function": "^2.0.2",
"postcss-focus-visible": "^4.0.0",
"postcss-focus-within": "^3.0.0",
"postcss-font-variant": "^4.0.0",
"postcss-gap-properties": "^2.0.0",
"postcss-image-set-function": "^3.0.1",
"postcss-initial": "^3.0.0",
"postcss-lab-function": "^2.0.1",
"postcss-logical": "^3.0.0",
"postcss-media-minmax": "^4.0.0",
"postcss-nesting": "^7.0.0",
"postcss-overflow-shorthand": "^2.0.0",
"postcss-page-break": "^2.0.0",
"postcss-place": "^4.0.1",
"postcss-pseudo-class-any-link": "^6.0.0",
"postcss-replace-overflow-wrap": "^3.0.0",
"postcss-selector-matches": "^4.0.0",
"postcss-selector-not": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-preset-env/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-preset-env/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-preset-env/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-pseudo-class-any-link": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz",
"integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/postcss-pseudo-class-any-link/node_modules/cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true,
"bin": {
"cssesc": "bin/cssesc"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-pseudo-class-any-link/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-pseudo-class-any-link/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"dependencies": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-pseudo-class-any-link/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-reduce-initial": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz",
"integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-reduce-transforms": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz",
"integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-replace-overflow-wrap": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz",
"integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==",
"dev": true,
"dependencies": {
"postcss": "^7.0.2"
}
},
"node_modules/postcss-replace-overflow-wrap/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-replace-overflow-wrap/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-replace-overflow-wrap/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-selector-matches": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz",
"integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0",
"postcss": "^7.0.2"
}
},
"node_modules/postcss-selector-matches/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-selector-matches/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-selector-matches/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-selector-not": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz",
"integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0",
"postcss": "^7.0.2"
}
},
"node_modules/postcss-selector-not/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"node_modules/postcss-selector-not/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/postcss-selector-not/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/postcss-selector-parser": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
"dependencies": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
},
"engines": {
"node": ">=4"
}
},
"node_modules/postcss-svgo": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz",
"integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==",
"dev": true,
"dependencies": {
"postcss-value-parser": "^4.2.0",
"svgo": "^3.2.0"
},
"engines": {
"node": "^14 || ^16 || >= 18"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-unique-selectors": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz",
"integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==",
"dev": true,
"dependencies": {
"postcss-selector-parser": "^6.0.16"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/postcss-value-parser": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
},
"node_modules/postcss-values-parser": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz",
"integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==",
"dev": true,
"dependencies": {
"flatten": "^1.0.2",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
},
"engines": {
"node": ">=6.14.4"
}
},
"node_modules/prelude-ls": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/prettier": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
"integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
"dev": true,
"bin": {
"prettier": "bin/prettier.cjs"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
}
},
"node_modules/pretty-bytes": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
"integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/pretty-error": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz",
"integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==",
"dependencies": {
"lodash": "^4.17.20",
"renderkid": "^3.0.0"
}
},
"node_modules/pretty-format": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz",
"integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==",
"dependencies": {
"ansi-regex": "^5.0.1",
"ansi-styles": "^5.0.0",
"react-is": "^17.0.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
"node_modules/pretty-format/node_modules/ansi-styles": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/pretty-format/node_modules/react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
},
"node_modules/prismjs": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
"integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
"engines": {
"node": ">=6"
}
},
"node_modules/process": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"dev": true,
"engines": {
"node": ">= 0.6.0"
}
},
"node_modules/process-nextick-args": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
},
"node_modules/process-on-spawn": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.1.0.tgz",
"integrity": "sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==",
"dev": true,
"dependencies": {
"fromentries": "^1.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/promise": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz",
"integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==",
"dependencies": {
"asap": "~2.0.6"
}
},
"node_modules/prompts": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dependencies": {
"kleur": "^3.0.3",
"sisteransi": "^1.0.5"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/prop-types": {
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"dependencies": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.13.1"
}
},
"node_modules/property-information": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
"integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
"dependencies": {
"xtend": "^4.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/proxy-addr": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
"dependencies": {
"forwarded": "0.2.0",
"ipaddr.js": "1.9.1"
},
"engines": {
"node": ">= 0.10"
}
},
"node_modules/proxy-addr/node_modules/ipaddr.js": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
"engines": {
"node": ">= 0.10"
}
},
"node_modules/proxy-from-env": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz",
"integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==",
"dev": true
},
"node_modules/psl": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
"integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
"dependencies": {
"punycode": "^2.3.1"
},
"funding": {
"url": "https://github.com/sponsors/lupomontero"
}
},
"node_modules/pump": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
"dev": true,
"dependencies": {
"end-of-stream": "^1.1.0",
"once": "^1.3.1"
}
},
"node_modules/punycode": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"engines": {
"node": ">=6"
}
},
"node_modules/q": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
"integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==",
"deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)",
"engines": {
"node": ">=0.6.0",
"teleport": ">=0.2.0"
}
},
"node_modules/qr.js": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz",
"integrity": "sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ=="
},
"node_modules/qs": {
"version": "6.13.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.1.tgz",
"integrity": "sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==",
"dev": true,
"dependencies": {
"side-channel": "^1.0.6"
},
"engines": {
"node": ">=0.6"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/querystringify": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
},
"node_modules/queue-microtask": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/raf": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz",
"integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==",
"dependencies": {
"performance-now": "^2.1.0"
}
},
"node_modules/raf-schd": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz",
"integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ=="
},
"node_modules/randombytes": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"dependencies": {
"safe-buffer": "^5.1.0"
}
},
"node_modules/range-parser": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
"integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==",
"dev": true,
"engines": {
"node": ">= 0.6"
}
},
"node_modules/raw-body": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
"dependencies": {
"bytes": "3.1.2",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"unpipe": "1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/raw-body/node_modules/bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/raw-body/node_modules/iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/rc": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
"dev": true,
"dependencies": {
"deep-extend": "^0.6.0",
"ini": "~1.3.0",
"minimist": "^1.2.0",
"strip-json-comments": "~2.0.1"
},
"bin": {
"rc": "cli.js"
}
},
"node_modules/rc/node_modules/ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
"dev": true
},
"node_modules/rc/node_modules/strip-json-comments": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
"dependencies": {
"loose-envify": "^1.1.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-apexcharts": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/react-apexcharts/-/react-apexcharts-1.7.0.tgz",
"integrity": "sha512-03oScKJyNLRf0Oe+ihJxFZliBQM9vW3UWwomVn4YVRTN1jsIR58dLWt0v1sb8RwJVHDMbeHiKQueM0KGpn7nOA==",
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"apexcharts": ">=4.0.0",
"react": ">=0.13"
}
},
"node_modules/react-app-polyfill": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz",
"integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==",
"dependencies": {
"core-js": "^3.19.2",
"object-assign": "^4.1.1",
"promise": "^8.1.0",
"raf": "^3.4.1",
"regenerator-runtime": "^0.13.9",
"whatwg-fetch": "^3.6.2"
},
"engines": {
"node": ">=14"
}
},
"node_modules/react-app-polyfill/node_modules/regenerator-runtime": {
"version": "0.13.11",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
},
"node_modules/react-beautiful-dnd": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz",
"integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==",
"deprecated": "react-beautiful-dnd is now deprecated. Context and options: https://github.com/atlassian/react-beautiful-dnd/issues/2672",
"dependencies": {
"@babel/runtime": "^7.9.2",
"css-box-model": "^1.2.0",
"memoize-one": "^5.1.1",
"raf-schd": "^4.0.2",
"react-redux": "^7.2.0",
"redux": "^4.0.4",
"use-memo-one": "^1.1.1"
},
"peerDependencies": {
"react": "^16.8.5 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/react-dev-utils": {
"version": "12.0.1",
"resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz",
"integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==",
"dependencies": {
"@babel/code-frame": "^7.16.0",
"address": "^1.1.2",
"browserslist": "^4.18.1",
"chalk": "^4.1.2",
"cross-spawn": "^7.0.3",
"detect-port-alt": "^1.1.6",
"escape-string-regexp": "^4.0.0",
"filesize": "^8.0.6",
"find-up": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"global-modules": "^2.0.0",
"globby": "^11.0.4",
"gzip-size": "^6.0.0",
"immer": "^9.0.7",
"is-root": "^2.1.0",
"loader-utils": "^3.2.0",
"open": "^8.4.0",
"pkg-up": "^3.1.0",
"prompts": "^2.4.2",
"react-error-overlay": "^6.0.11",
"recursive-readdir": "^2.2.2",
"shell-quote": "^1.7.3",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0"
},
"engines": {
"node": ">=14"
}
},
"node_modules/react-dev-utils/node_modules/loader-utils": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz",
"integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==",
"engines": {
"node": ">= 12.13.0"
}
},
"node_modules/react-dom": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
"dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.2"
},
"peerDependencies": {
"react": "^18.3.1"
}
},
"node_modules/react-error-overlay": {
"version": "6.0.11",
"resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz",
"integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg=="
},
"node_modules/react-final-form": {
"version": "6.5.9",
"resolved": "https://registry.npmjs.org/react-final-form/-/react-final-form-6.5.9.tgz",
"integrity": "sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==",
"dependencies": {
"@babel/runtime": "^7.15.4"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
},
"peerDependencies": {
"final-form": "^4.20.4",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/react-ga4": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/react-ga4/-/react-ga4-2.1.0.tgz",
"integrity": "sha512-ZKS7PGNFqqMd3PJ6+C2Jtz/o1iU9ggiy8Y8nUeksgVuvNISbmrQtJiZNvC/TjDsqD0QlU5Wkgs7i+w9+OjHhhQ=="
},
"node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
"node_modules/react-pdf": {
"version": "9.1.1",
"resolved": "https://registry.npmjs.org/react-pdf/-/react-pdf-9.1.1.tgz",
"integrity": "sha512-Cn3RTJZMqVOOCgLMRXDamLk4LPGfyB2Np3OwQAUjmHIh47EpuGW1OpAA1Z1GVDLoHx4d5duEDo/YbUkDbr4QFQ==",
"dependencies": {
"clsx": "^2.0.0",
"dequal": "^2.0.3",
"make-cancellable-promise": "^1.3.1",
"make-event-props": "^1.6.0",
"merge-refs": "^1.3.0",
"pdfjs-dist": "4.4.168",
"tiny-invariant": "^1.0.0",
"warning": "^4.0.0"
},
"funding": {
"url": "https://github.com/wojtekmaj/react-pdf?sponsor=1"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/react-qr-code": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/react-qr-code/-/react-qr-code-2.0.15.tgz",
"integrity": "sha512-MkZcjEXqVKqXEIMVE0mbcGgDpkfSdd8zhuzXEl9QzYeNcw8Hq2oVIzDLWuZN2PQBwM5PWjc2S31K8Q1UbcFMfw==",
"dependencies": {
"prop-types": "^15.8.1",
"qr.js": "0.0.0"
},
"peerDependencies": {
"react": "*"
}
},
"node_modules/react-redux": {
"version": "7.2.9",
"resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz",
"integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==",
"dependencies": {
"@babel/runtime": "^7.15.4",
"@types/react-redux": "^7.1.20",
"hoist-non-react-statics": "^3.3.2",
"loose-envify": "^1.4.0",
"prop-types": "^15.7.2",
"react-is": "^17.0.2"
},
"peerDependencies": {
"react": "^16.8.3 || ^17 || ^18"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
}
},
"node_modules/react-redux/node_modules/react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
},
"node_modules/react-refresh": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz",
"integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-scripts": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz",
"integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==",
"dependencies": {
"@babel/core": "^7.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
"@svgr/webpack": "^5.5.0",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.0.1",
"bfj": "^7.0.2",
"browserslist": "^4.18.1",
"camelcase": "^6.2.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jest-resolve": "^27.4.2",
"jest-watch-typeahead": "^1.0.0",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.0.1",
"prompts": "^2.4.2",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.11.0",
"resolve": "^1.20.0",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.3.0",
"semver": "^7.3.5",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.2",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.4",
"webpack-dev-server": "^4.6.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
},
"bin": {
"react-scripts": "bin/react-scripts.js"
},
"engines": {
"node": ">=14.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16",
"typescript": "^3.2.1 || ^4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/react-scripts/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/react-scripts/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/react-scripts/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/react-scripts/node_modules/autoprefixer": {
"version": "10.4.20",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
"integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"browserslist": "^4.23.3",
"caniuse-lite": "^1.0.30001646",
"fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.1",
"postcss-value-parser": "^4.2.0"
},
"bin": {
"autoprefixer": "bin/autoprefixer"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/react-scripts/node_modules/babel-loader": {
"version": "8.4.1",
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz",
"integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==",
"dependencies": {
"find-cache-dir": "^3.3.1",
"loader-utils": "^2.0.4",
"make-dir": "^3.1.0",
"schema-utils": "^2.6.5"
},
"engines": {
"node": ">= 8.9"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"webpack": ">=2"
}
},
"node_modules/react-scripts/node_modules/camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/react-scripts/node_modules/commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"engines": {
"node": ">= 10"
}
},
"node_modules/react-scripts/node_modules/css-blank-pseudo": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz",
"integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==",
"dependencies": {
"postcss-selector-parser": "^6.0.9"
},
"bin": {
"css-blank-pseudo": "dist/cli.cjs"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/css-declaration-sorter": {
"version": "6.4.1",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
"integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
"engines": {
"node": "^10 || ^12 || >=14"
},
"peerDependencies": {
"postcss": "^8.0.9"
}
},
"node_modules/react-scripts/node_modules/css-has-pseudo": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz",
"integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==",
"dependencies": {
"postcss-selector-parser": "^6.0.9"
},
"bin": {
"css-has-pseudo": "dist/cli.cjs"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/css-loader": {
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz",
"integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==",
"dependencies": {
"icss-utils": "^5.1.0",
"postcss": "^8.4.33",
"postcss-modules-extract-imports": "^3.1.0",
"postcss-modules-local-by-default": "^4.0.5",
"postcss-modules-scope": "^3.2.0",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.2.0",
"semver": "^7.5.4"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"@rspack/core": "0.x || 1.x",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"webpack": {
"optional": true
}
}
},
"node_modules/react-scripts/node_modules/css-minimizer-webpack-plugin": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz",
"integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==",
"dependencies": {
"cssnano": "^5.0.6",
"jest-worker": "^27.0.2",
"postcss": "^8.3.5",
"schema-utils": "^4.0.0",
"serialize-javascript": "^6.0.0",
"source-map": "^0.6.1"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@parcel/css": {
"optional": true
},
"clean-css": {
"optional": true
},
"csso": {
"optional": true
},
"esbuild": {
"optional": true
}
}
},
"node_modules/react-scripts/node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/react-scripts/node_modules/css-prefers-color-scheme": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz",
"integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==",
"bin": {
"css-prefers-color-scheme": "dist/cli.cjs"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/css-tree": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
"dependencies": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/react-scripts/node_modules/cssdb": {
"version": "7.11.2",
"resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz",
"integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
}
]
},
"node_modules/react-scripts/node_modules/cssnano": {
"version": "5.1.15",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz",
"integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==",
"dependencies": {
"cssnano-preset-default": "^5.2.14",
"lilconfig": "^2.0.3",
"yaml": "^1.10.2"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cssnano"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/cssnano-preset-default": {
"version": "5.2.14",
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz",
"integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==",
"dependencies": {
"css-declaration-sorter": "^6.3.1",
"cssnano-utils": "^3.1.0",
"postcss-calc": "^8.2.3",
"postcss-colormin": "^5.3.1",
"postcss-convert-values": "^5.1.3",
"postcss-discard-comments": "^5.1.2",
"postcss-discard-duplicates": "^5.1.0",
"postcss-discard-empty": "^5.1.1",
"postcss-discard-overridden": "^5.1.0",
"postcss-merge-longhand": "^5.1.7",
"postcss-merge-rules": "^5.1.4",
"postcss-minify-font-values": "^5.1.0",
"postcss-minify-gradients": "^5.1.1",
"postcss-minify-params": "^5.1.4",
"postcss-minify-selectors": "^5.2.1",
"postcss-normalize-charset": "^5.1.0",
"postcss-normalize-display-values": "^5.1.0",
"postcss-normalize-positions": "^5.1.1",
"postcss-normalize-repeat-style": "^5.1.1",
"postcss-normalize-string": "^5.1.0",
"postcss-normalize-timing-functions": "^5.1.0",
"postcss-normalize-unicode": "^5.1.1",
"postcss-normalize-url": "^5.1.0",
"postcss-normalize-whitespace": "^5.1.1",
"postcss-ordered-values": "^5.1.3",
"postcss-reduce-initial": "^5.1.2",
"postcss-reduce-transforms": "^5.1.0",
"postcss-svgo": "^5.1.0",
"postcss-unique-selectors": "^5.1.1"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/cssnano-utils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz",
"integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/csso": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
"dependencies": {
"css-tree": "^1.1.2"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/react-scripts/node_modules/find-cache-dir": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
"integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dependencies": {
"commondir": "^1.0.1",
"make-dir": "^3.0.2",
"pkg-dir": "^4.1.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/avajs/find-cache-dir?sponsor=1"
}
},
"node_modules/react-scripts/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/react-scripts/node_modules/fs-extra": {
"version": "10.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/react-scripts/node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/react-scripts/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/react-scripts/node_modules/lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
"engines": {
"node": ">=10"
}
},
"node_modules/react-scripts/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dependencies": {
"p-locate": "^4.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/react-scripts/node_modules/mdn-data": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
"node_modules/react-scripts/node_modules/mini-css-extract-plugin": {
"version": "2.9.2",
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz",
"integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==",
"dependencies": {
"schema-utils": "^4.0.0",
"tapable": "^2.2.1"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.0.0"
}
},
"node_modules/react-scripts/node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/react-scripts/node_modules/p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/react-scripts/node_modules/p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dependencies": {
"p-limit": "^2.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/react-scripts/node_modules/pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dependencies": {
"find-up": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/react-scripts/node_modules/postcss-attribute-case-insensitive": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz",
"integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==",
"dependencies": {
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-calc": {
"version": "8.2.4",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz",
"integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
"dependencies": {
"postcss-selector-parser": "^6.0.9",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.2.2"
}
},
"node_modules/react-scripts/node_modules/postcss-color-functional-notation": {
"version": "4.2.4",
"resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz",
"integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-color-hex-alpha": {
"version": "8.0.4",
"resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz",
"integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/postcss-color-rebeccapurple": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz",
"integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-colormin": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz",
"integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==",
"dependencies": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0",
"colord": "^2.9.1",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-convert-values": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
"integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
"dependencies": {
"browserslist": "^4.21.4",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-custom-media": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz",
"integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.3"
}
},
"node_modules/react-scripts/node_modules/postcss-custom-properties": {
"version": "12.1.11",
"resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz",
"integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-custom-selectors": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz",
"integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==",
"dependencies": {
"postcss-selector-parser": "^6.0.4"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.3"
}
},
"node_modules/react-scripts/node_modules/postcss-dir-pseudo-class": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz",
"integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==",
"dependencies": {
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-discard-comments": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
"integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-discard-duplicates": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz",
"integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-discard-empty": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz",
"integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-discard-overridden": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz",
"integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-double-position-gradients": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz",
"integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-env-function": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz",
"integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/postcss-focus-visible": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz",
"integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==",
"dependencies": {
"postcss-selector-parser": "^6.0.9"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/postcss-focus-within": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz",
"integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==",
"dependencies": {
"postcss-selector-parser": "^6.0.9"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/postcss-font-variant": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz",
"integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==",
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/react-scripts/node_modules/postcss-gap-properties": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz",
"integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==",
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-image-set-function": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz",
"integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-initial": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz",
"integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==",
"peerDependencies": {
"postcss": "^8.0.0"
}
},
"node_modules/react-scripts/node_modules/postcss-lab-function": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz",
"integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-loader": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz",
"integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==",
"dependencies": {
"cosmiconfig": "^7.0.0",
"klona": "^2.0.5",
"semver": "^7.3.5"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"postcss": "^7.0.0 || ^8.0.1",
"webpack": "^5.0.0"
}
},
"node_modules/react-scripts/node_modules/postcss-logical": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz",
"integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==",
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.4"
}
},
"node_modules/react-scripts/node_modules/postcss-media-minmax": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz",
"integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.1.0"
}
},
"node_modules/react-scripts/node_modules/postcss-merge-longhand": {
"version": "5.1.7",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz",
"integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0",
"stylehacks": "^5.1.1"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-merge-rules": {
"version": "5.1.4",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz",
"integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==",
"dependencies": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0",
"cssnano-utils": "^3.1.0",
"postcss-selector-parser": "^6.0.5"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-minify-font-values": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz",
"integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-minify-gradients": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz",
"integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==",
"dependencies": {
"colord": "^2.9.1",
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-minify-params": {
"version": "5.1.4",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz",
"integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==",
"dependencies": {
"browserslist": "^4.21.4",
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-minify-selectors": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz",
"integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==",
"dependencies": {
"postcss-selector-parser": "^6.0.5"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-nesting": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz",
"integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==",
"dependencies": {
"@csstools/selector-specificity": "^2.0.0",
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-charset": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
"integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==",
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-display-values": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz",
"integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-positions": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz",
"integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-repeat-style": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz",
"integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-string": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz",
"integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-timing-functions": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz",
"integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-unicode": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz",
"integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==",
"dependencies": {
"browserslist": "^4.21.4",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-url": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz",
"integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==",
"dependencies": {
"normalize-url": "^6.0.1",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-normalize-whitespace": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz",
"integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-ordered-values": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
"integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==",
"dependencies": {
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-overflow-shorthand": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz",
"integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-page-break": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz",
"integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==",
"peerDependencies": {
"postcss": "^8"
}
},
"node_modules/react-scripts/node_modules/postcss-place": {
"version": "7.0.5",
"resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz",
"integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-preset-env": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz",
"integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==",
"dependencies": {
"@csstools/postcss-cascade-layers": "^1.1.1",
"@csstools/postcss-color-function": "^1.1.1",
"@csstools/postcss-font-format-keywords": "^1.0.1",
"@csstools/postcss-hwb-function": "^1.0.2",
"@csstools/postcss-ic-unit": "^1.0.1",
"@csstools/postcss-is-pseudo-class": "^2.0.7",
"@csstools/postcss-nested-calc": "^1.0.0",
"@csstools/postcss-normalize-display-values": "^1.0.1",
"@csstools/postcss-oklab-function": "^1.1.1",
"@csstools/postcss-progressive-custom-properties": "^1.3.0",
"@csstools/postcss-stepped-value-functions": "^1.0.1",
"@csstools/postcss-text-decoration-shorthand": "^1.0.0",
"@csstools/postcss-trigonometric-functions": "^1.0.2",
"@csstools/postcss-unset-value": "^1.0.2",
"autoprefixer": "^10.4.13",
"browserslist": "^4.21.4",
"css-blank-pseudo": "^3.0.3",
"css-has-pseudo": "^3.0.4",
"css-prefers-color-scheme": "^6.0.3",
"cssdb": "^7.1.0",
"postcss-attribute-case-insensitive": "^5.0.2",
"postcss-clamp": "^4.1.0",
"postcss-color-functional-notation": "^4.2.4",
"postcss-color-hex-alpha": "^8.0.4",
"postcss-color-rebeccapurple": "^7.1.1",
"postcss-custom-media": "^8.0.2",
"postcss-custom-properties": "^12.1.10",
"postcss-custom-selectors": "^6.0.3",
"postcss-dir-pseudo-class": "^6.0.5",
"postcss-double-position-gradients": "^3.1.2",
"postcss-env-function": "^4.0.6",
"postcss-focus-visible": "^6.0.4",
"postcss-focus-within": "^5.0.4",
"postcss-font-variant": "^5.0.0",
"postcss-gap-properties": "^3.0.5",
"postcss-image-set-function": "^4.0.7",
"postcss-initial": "^4.0.1",
"postcss-lab-function": "^4.2.1",
"postcss-logical": "^5.0.4",
"postcss-media-minmax": "^5.0.0",
"postcss-nesting": "^10.2.0",
"postcss-opacity-percentage": "^1.1.2",
"postcss-overflow-shorthand": "^3.0.4",
"postcss-page-break": "^3.0.4",
"postcss-place": "^7.0.5",
"postcss-pseudo-class-any-link": "^7.1.6",
"postcss-replace-overflow-wrap": "^4.0.0",
"postcss-selector-not": "^6.0.1",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-pseudo-class-any-link": {
"version": "7.1.6",
"resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz",
"integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==",
"dependencies": {
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-reduce-initial": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
"integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==",
"dependencies": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-reduce-transforms": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz",
"integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-replace-overflow-wrap": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz",
"integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==",
"peerDependencies": {
"postcss": "^8.0.3"
}
},
"node_modules/react-scripts/node_modules/postcss-selector-not": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz",
"integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==",
"dependencies": {
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/react-scripts/node_modules/postcss-svgo": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz",
"integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==",
"dependencies": {
"postcss-value-parser": "^4.2.0",
"svgo": "^2.7.0"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/postcss-unique-selectors": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz",
"integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==",
"dependencies": {
"postcss-selector-parser": "^6.0.5"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/react-refresh": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz",
"integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-scripts/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/react-scripts/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-scripts/node_modules/stylehacks": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz",
"integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==",
"dependencies": {
"browserslist": "^4.21.4",
"postcss-selector-parser": "^6.0.4"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
},
"peerDependencies": {
"postcss": "^8.2.15"
}
},
"node_modules/react-scripts/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/react-scripts/node_modules/svgo": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
"dependencies": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
"css-select": "^4.1.3",
"css-tree": "^1.1.3",
"csso": "^4.2.0",
"picocolors": "^1.0.0",
"stable": "^0.1.8"
},
"bin": {
"svgo": "bin/svgo"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/react-syntax-highlighter": {
"version": "15.6.1",
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.6.1.tgz",
"integrity": "sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==",
"dependencies": {
"@babel/runtime": "^7.3.1",
"highlight.js": "^10.4.1",
"highlightjs-vue": "^1.0.0",
"lowlight": "^1.17.0",
"prismjs": "^1.27.0",
"refractor": "^3.6.0"
},
"peerDependencies": {
"react": ">= 0.14.0"
}
},
"node_modules/react-window": {
"version": "1.8.11",
"resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.11.tgz",
"integrity": "sha512-+SRbUVT2scadgFSWx+R1P754xHPEqvcfSfVX10QYg6POOz+WNgkN48pS+BtZNIMGiL1HYrSEiCkwsMS15QogEQ==",
"dependencies": {
"@babel/runtime": "^7.0.0",
"memoize-one": ">=3.1.1 <6"
},
"engines": {
"node": ">8.0.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"node_modules/read-cache": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
"dependencies": {
"pify": "^2.3.0"
}
},
"node_modules/readable-stream": {
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
"dependencies": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
"dependencies": {
"picomatch": "^2.2.1"
},
"engines": {
"node": ">=8.10.0"
}
},
"node_modules/rechoir": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
"integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
"dev": true,
"dependencies": {
"resolve": "^1.9.0"
},
"engines": {
"node": ">= 0.10"
}
},
"node_modules/recoil": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/recoil/-/recoil-0.1.3.tgz",
"integrity": "sha512-/Rm7wN7jqCjhtFK1TgtK0V115SUXNu6d4QYvwxWNLydib0QChSmpB6U8CaHoRPS0MFWtAIsD/IFjpbfk/OYm7Q==",
"peerDependencies": {
"react": ">=16.13.1"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
}
},
"node_modules/recursive-readdir": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz",
"integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==",
"dependencies": {
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/redux": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz",
"integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==",
"dependencies": {
"@babel/runtime": "^7.9.2"
}
},
"node_modules/reflect.getprototypeof": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz",
"integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==",
"dependencies": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"dunder-proto": "^1.0.0",
"es-abstract": "^1.23.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4",
"gopd": "^1.2.0",
"which-builtin-type": "^1.2.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/refractor": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz",
"integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==",
"dependencies": {
"hastscript": "^6.0.0",
"parse-entities": "^2.0.0",
"prismjs": "~1.27.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/refractor/node_modules/prismjs": {
"version": "1.27.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz",
"integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==",
"engines": {
"node": ">=6"
}
},
"node_modules/regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
},
"node_modules/regenerate-unicode-properties": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz",
"integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==",
"dependencies": {
"regenerate": "^1.4.2"
},
"engines": {
"node": ">=4"
}
},
"node_modules/regenerator-runtime": {
"version": "0.14.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
},
"node_modules/regenerator-transform": {
"version": "0.15.2",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
"integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"dependencies": {
"@babel/runtime": "^7.8.4"
}
},
"node_modules/regex-parser": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz",
"integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg=="
},
"node_modules/regexp.prototype.flags": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz",
"integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-errors": "^1.3.0",
"set-function-name": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/regexpu-core": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz",
"integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==",
"dependencies": {
"regenerate": "^1.4.2",
"regenerate-unicode-properties": "^10.2.0",
"regjsgen": "^0.8.0",
"regjsparser": "^0.12.0",
"unicode-match-property-ecmascript": "^2.0.0",
"unicode-match-property-value-ecmascript": "^2.1.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/registry-auth-token": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz",
"integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==",
"dev": true,
"dependencies": {
"rc": "^1.1.6",
"safe-buffer": "^5.0.1"
}
},
"node_modules/registry-url": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
"integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==",
"dev": true,
"dependencies": {
"rc": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/regjsgen": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz",
"integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q=="
},
"node_modules/regjsparser": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz",
"integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==",
"dependencies": {
"jsesc": "~3.0.2"
},
"bin": {
"regjsparser": "bin/parser"
}
},
"node_modules/regjsparser/node_modules/jsesc": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
"integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
"bin": {
"jsesc": "bin/jsesc"
},
"engines": {
"node": ">=6"
}
},
"node_modules/relateurl": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
"integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==",
"engines": {
"node": ">= 0.10"
}
},
"node_modules/release-zalgo": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz",
"integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==",
"dev": true,
"dependencies": {
"es6-error": "^4.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/renderkid": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz",
"integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==",
"dependencies": {
"css-select": "^4.1.3",
"dom-converter": "^0.2.0",
"htmlparser2": "^6.1.0",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.1"
}
},
"node_modules/request-progress": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz",
"integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==",
"dev": true,
"dependencies": {
"throttleit": "^1.0.0"
}
},
"node_modules/require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/require-from-string": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/require-main-filename": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
"dev": true
},
"node_modules/requires-port": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
},
"node_modules/rescript": {
"version": "11.1.4",
"resolved": "https://registry.npmjs.org/rescript/-/rescript-11.1.4.tgz",
"integrity": "sha512-0bGU0bocihjSC6MsE3TMjHjY0EUpchyrREquLS8VsZ3ohSMD+VHUEwimEfB3kpBI1vYkw3UFZ3WD8R28guz/Vw==",
"hasInstallScript": true,
"bin": {
"bsc": "bsc",
"bstracing": "lib/bstracing",
"rescript": "rescript"
},
"engines": {
"node": ">=10"
}
},
"node_modules/rescript-webapi": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/rescript-webapi/-/rescript-webapi-0.9.1.tgz",
"integrity": "sha512-6havxEsyCgcCB4EsH8ac2QpLVbv5Nv6IMjTIn6XifpU/bjgXEvMTpNJ78/JEKtSH6kFUeFV/T/QHPRSZb66Rew=="
},
"node_modules/resolve": {
"version": "1.22.9",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
"integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"dependencies": {
"is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
"bin": {
"resolve": "bin/resolve"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/resolve-cwd": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
"integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
"dependencies": {
"resolve-from": "^5.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/resolve-cwd/node_modules/resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"engines": {
"node": ">=8"
}
},
"node_modules/resolve-from": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
"engines": {
"node": ">=4"
}
},
"node_modules/resolve-url-loader": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz",
"integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==",
"dependencies": {
"adjust-sourcemap-loader": "^4.0.0",
"convert-source-map": "^1.7.0",
"loader-utils": "^2.0.0",
"postcss": "^7.0.35",
"source-map": "0.6.1"
},
"engines": {
"node": ">=8.9"
},
"peerDependencies": {
"rework": "1.0.1",
"rework-visit": "1.0.0"
},
"peerDependenciesMeta": {
"rework": {
"optional": true
},
"rework-visit": {
"optional": true
}
}
},
"node_modules/resolve-url-loader/node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/resolve-url-loader/node_modules/picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="
},
"node_modules/resolve-url-loader/node_modules/postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dependencies": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
}
},
"node_modules/resolve-url-loader/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/resolve.exports": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz",
"integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==",
"engines": {
"node": ">=10"
}
},
"node_modules/restore-cursor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
"integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
"dev": true,
"dependencies": {
"onetime": "^5.1.0",
"signal-exit": "^3.0.2"
},
"engines": {
"node": ">=8"
}
},
"node_modules/retry": {
"version": "0.13.1",
"resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
"engines": {
"node": ">= 4"
}
},
"node_modules/reusify": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
"engines": {
"iojs": ">=1.0.0",
"node": ">=0.10.0"
}
},
"node_modules/rfdc": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
"dev": true
},
"node_modules/rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"deprecated": "Rimraf versions prior to v4 are no longer supported",
"dependencies": {
"glob": "^7.1.3"
},
"bin": {
"rimraf": "bin.js"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/rollup": {
"version": "2.79.2",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz",
"integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==",
"bin": {
"rollup": "dist/bin/rollup"
},
"engines": {
"node": ">=10.0.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/rollup-plugin-terser": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz",
"integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==",
"deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser",
"dependencies": {
"@babel/code-frame": "^7.10.4",
"jest-worker": "^26.2.1",
"serialize-javascript": "^4.0.0",
"terser": "^5.0.0"
},
"peerDependencies": {
"rollup": "^2.0.0"
}
},
"node_modules/rollup-plugin-terser/node_modules/jest-worker": {
"version": "26.6.2",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
"integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^7.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/rollup-plugin-terser/node_modules/serialize-javascript": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
"integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
"dependencies": {
"randombytes": "^2.1.0"
}
},
"node_modules/run-parallel": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"dependencies": {
"queue-microtask": "^1.2.2"
}
},
"node_modules/rxjs": {
"version": "7.8.1",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
"dev": true,
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/safe-array-concat": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
"integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
"dependencies": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"get-intrinsic": "^1.2.6",
"has-symbols": "^1.1.0",
"isarray": "^2.0.5"
},
"engines": {
"node": ">=0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/safe-regex-test": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
"integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
"dependencies": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"is-regex": "^1.2.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"node_modules/sanitize.css": {
"version": "13.0.0",
"resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz",
"integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA=="
},
"node_modules/sass-loader": {
"version": "12.6.0",
"resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz",
"integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==",
"dependencies": {
"klona": "^2.0.4",
"neo-async": "^2.6.2"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"fibers": ">= 3.1.0",
"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"sass": "^1.3.0",
"sass-embedded": "*",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"fibers": {
"optional": true
},
"node-sass": {
"optional": true
},
"sass": {
"optional": true
},
"sass-embedded": {
"optional": true
}
}
},
"node_modules/sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"node_modules/saxes": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
"dependencies": {
"xmlchars": "^2.2.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/scheduler": {
"version": "0.23.2",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
"dependencies": {
"loose-envify": "^1.1.0"
}
},
"node_modules/schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
"integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
"dependencies": {
"@types/json-schema": "^7.0.5",
"ajv": "^6.12.4",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 8.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/select-hose": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
"integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg=="
},
"node_modules/selfsigned": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz",
"integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==",
"dependencies": {
"@types/node-forge": "^1.3.0",
"node-forge": "^1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/send": {
"version": "0.19.0",
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
"dependencies": {
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
"etag": "~1.8.1",
"fresh": "0.5.2",
"http-errors": "2.0.0",
"mime": "1.6.0",
"ms": "2.1.3",
"on-finished": "2.4.1",
"range-parser": "~1.2.1",
"statuses": "2.0.1"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/send/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/send/node_modules/debug/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/send/node_modules/encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/send/node_modules/range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serialize-javascript": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
"integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"dependencies": {
"randombytes": "^2.1.0"
}
},
"node_modules/serve": {
"version": "14.2.4",
"resolved": "https://registry.npmjs.org/serve/-/serve-14.2.4.tgz",
"integrity": "sha512-qy1S34PJ/fcY8gjVGszDB3EXiPSk5FKhUa7tQe0UPRddxRidc2V6cNHPNewbE1D7MAkgLuWEt3Vw56vYy73tzQ==",
"dev": true,
"dependencies": {
"@zeit/schemas": "2.36.0",
"ajv": "8.12.0",
"arg": "5.0.2",
"boxen": "7.0.0",
"chalk": "5.0.1",
"chalk-template": "0.4.0",
"clipboardy": "3.0.0",
"compression": "1.7.4",
"is-port-reachable": "4.0.0",
"serve-handler": "6.1.6",
"update-check": "1.5.4"
},
"bin": {
"serve": "build/main.js"
},
"engines": {
"node": ">= 14"
}
},
"node_modules/serve-handler": {
"version": "6.1.6",
"resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz",
"integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==",
"dev": true,
"dependencies": {
"bytes": "3.0.0",
"content-disposition": "0.5.2",
"mime-types": "2.1.18",
"minimatch": "3.1.2",
"path-is-inside": "1.0.2",
"path-to-regexp": "3.3.0",
"range-parser": "1.2.0"
}
},
"node_modules/serve-handler/node_modules/mime-db": {
"version": "1.33.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
"integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
"dev": true,
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serve-handler/node_modules/mime-types": {
"version": "2.1.18",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
"integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
"dev": true,
"dependencies": {
"mime-db": "~1.33.0"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serve-index": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
"integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==",
"dependencies": {
"accepts": "~1.3.4",
"batch": "0.6.1",
"debug": "2.6.9",
"escape-html": "~1.0.3",
"http-errors": "~1.6.2",
"mime-types": "~2.1.17",
"parseurl": "~1.3.2"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/serve-index/node_modules/debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/serve-index/node_modules/depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
"integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serve-index/node_modules/http-errors": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
"integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==",
"dependencies": {
"depd": "~1.1.2",
"inherits": "2.0.3",
"setprototypeof": "1.1.0",
"statuses": ">= 1.4.0 < 2"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serve-index/node_modules/inherits": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
},
"node_modules/serve-index/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"node_modules/serve-index/node_modules/setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
},
"node_modules/serve-index/node_modules/statuses": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
"integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/serve-static": {
"version": "1.16.2",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
"dependencies": {
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"parseurl": "~1.3.3",
"send": "0.19.0"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/serve/node_modules/ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/serve/node_modules/chalk": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz",
"integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==",
"dev": true,
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/serve/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"node_modules/set-blocking": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
"integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
"devOptional": true
},
"node_modules/set-function-length": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
"integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
"dependencies": {
"define-data-property": "^1.1.4",
"es-errors": "^1.3.0",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
"gopd": "^1.0.1",
"has-property-descriptors": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/set-function-name": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
"integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
"dependencies": {
"define-data-property": "^1.1.4",
"es-errors": "^1.3.0",
"functions-have-names": "^1.2.3",
"has-property-descriptors": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
},
"node_modules/shallow-clone": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
"dev": true,
"dependencies": {
"kind-of": "^6.0.2"
},
"engines": {
"node": ">=8"
}
},
"node_modules/shebang-command": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dependencies": {
"shebang-regex": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/shebang-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
"engines": {
"node": ">=8"
}
},
"node_modules/shell-quote": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz",
"integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/side-channel": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"dependencies": {
"es-errors": "^1.3.0",
"object-inspect": "^1.13.3",
"side-channel-list": "^1.0.0",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/side-channel-list": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
"dependencies": {
"es-errors": "^1.3.0",
"object-inspect": "^1.13.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/side-channel-map": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
"dependencies": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.5",
"object-inspect": "^1.13.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/side-channel-weakmap": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
"dependencies": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.5",
"object-inspect": "^1.13.3",
"side-channel-map": "^1.0.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/signal-exit": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
},
"node_modules/simple-concat": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"optional": true
},
"node_modules/simple-get": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz",
"integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==",
"optional": true,
"dependencies": {
"decompress-response": "^4.2.0",
"once": "^1.3.1",
"simple-concat": "^1.0.0"
}
},
"node_modules/sisteransi": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
},
"node_modules/slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"engines": {
"node": ">=8"
}
},
"node_modules/slice-ansi": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz",
"integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^4.0.0",
"astral-regex": "^2.0.0",
"is-fullwidth-code-point": "^3.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/sockjs": {
"version": "0.3.24",
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
"integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==",
"dependencies": {
"faye-websocket": "^0.11.3",
"uuid": "^8.3.2",
"websocket-driver": "^0.7.4"
}
},
"node_modules/source-list-map": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
"integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw=="
},
"node_modules/source-map": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
"integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
"engines": {
"node": ">= 8"
}
},
"node_modules/source-map-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/source-map-loader": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz",
"integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==",
"dependencies": {
"abab": "^2.0.5",
"iconv-lite": "^0.6.3",
"source-map-js": "^1.0.1"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.0.0"
}
},
"node_modules/source-map-support": {
"version": "0.5.21",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"dependencies": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
}
},
"node_modules/source-map-support/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/sourcemap-codec": {
"version": "1.4.8",
"resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
"integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
"deprecated": "Please use @jridgewell/sourcemap-codec instead"
},
"node_modules/space-separated-tokens": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
"integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/spawn-wrap": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz",
"integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==",
"dev": true,
"dependencies": {
"foreground-child": "^2.0.0",
"is-windows": "^1.0.2",
"make-dir": "^3.0.0",
"rimraf": "^3.0.0",
"signal-exit": "^3.0.2",
"which": "^2.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/spdy": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
"dependencies": {
"debug": "^4.1.0",
"handle-thing": "^2.0.0",
"http-deceiver": "^1.2.7",
"select-hose": "^2.0.0",
"spdy-transport": "^3.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/spdy-transport": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
"dependencies": {
"debug": "^4.1.0",
"detect-node": "^2.0.4",
"hpack.js": "^2.1.6",
"obuf": "^1.1.2",
"readable-stream": "^3.0.6",
"wbuf": "^1.7.3"
}
},
"node_modules/sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
},
"node_modules/sshpk": {
"version": "1.18.0",
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz",
"integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
"dev": true,
"dependencies": {
"asn1": "~0.2.3",
"assert-plus": "^1.0.0",
"bcrypt-pbkdf": "^1.0.0",
"dashdash": "^1.12.0",
"ecc-jsbn": "~0.1.1",
"getpass": "^0.1.1",
"jsbn": "~0.1.0",
"safer-buffer": "^2.0.2",
"tweetnacl": "~0.14.0"
},
"bin": {
"sshpk-conv": "bin/sshpk-conv",
"sshpk-sign": "bin/sshpk-sign",
"sshpk-verify": "bin/sshpk-verify"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
"deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility"
},
"node_modules/stack-utils": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
"integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
"dependencies": {
"escape-string-regexp": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/stack-utils/node_modules/escape-string-regexp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
"engines": {
"node": ">=8"
}
},
"node_modules/stackframe": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
"integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="
},
"node_modules/state-local": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz",
"integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w=="
},
"node_modules/static-eval": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz",
"integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==",
"dependencies": {
"escodegen": "^1.8.1"
}
},
"node_modules/static-eval/node_modules/escodegen": {
"version": "1.14.3",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
"integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
"dependencies": {
"esprima": "^4.0.1",
"estraverse": "^4.2.0",
"esutils": "^2.0.2",
"optionator": "^0.8.1"
},
"bin": {
"escodegen": "bin/escodegen.js",
"esgenerate": "bin/esgenerate.js"
},
"engines": {
"node": ">=4.0"
},
"optionalDependencies": {
"source-map": "~0.6.1"
}
},
"node_modules/static-eval/node_modules/estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"engines": {
"node": ">=4.0"
}
},
"node_modules/static-eval/node_modules/levn": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
"integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
"dependencies": {
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/static-eval/node_modules/optionator": {
"version": "0.8.3",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
"dependencies": {
"deep-is": "~0.1.3",
"fast-levenshtein": "~2.0.6",
"levn": "~0.3.0",
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2",
"word-wrap": "~1.2.3"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/static-eval/node_modules/prelude-ls": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
"integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/static-eval/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"optional": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/static-eval/node_modules/type-check": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
"integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
"dependencies": {
"prelude-ls": "~1.1.2"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/string_decoder": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
"dependencies": {
"safe-buffer": "~5.2.0"
}
},
"node_modules/string-length": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
"dependencies": {
"char-regex": "^1.0.2",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/string-natural-compare": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz",
"integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw=="
},
"node_modules/string-width": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/string-width-cjs": {
"name": "string-width",
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/string-width-cjs/node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
"node_modules/string-width/node_modules/emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
"node_modules/string.prototype.includes": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
"integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/string.prototype.matchall": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz",
"integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.4",
"gopd": "^1.0.1",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.7",
"regexp.prototype.flags": "^1.5.2",
"set-function-name": "^2.0.2",
"side-channel": "^1.0.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.repeat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
"integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.5"
}
},
"node_modules/string.prototype.trim": {
"version": "1.2.10",
"resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
"integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
"dependencies": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"define-data-property": "^1.1.4",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-object-atoms": "^1.0.0",
"has-property-descriptors": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.trimend": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
"integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
"dependencies": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.trimstart": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
"integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/stringify-object": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz",
"integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==",
"dependencies": {
"get-own-enumerable-property-symbols": "^3.0.0",
"is-obj": "^1.0.1",
"is-regexp": "^1.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dependencies": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/strip-ansi-cjs": {
"name": "strip-ansi",
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dependencies": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/strip-bom": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
"integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
"engines": {
"node": ">=8"
}
},
"node_modules/strip-comments": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz",
"integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==",
"engines": {
"node": ">=10"
}
},
"node_modules/strip-final-newline": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
"integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
"engines": {
"node": ">=6"
}
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/style-loader": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz",
"integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==",
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.0.0"
}
},
"node_modules/stylehacks": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz",
"integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==",
"dev": true,
"dependencies": {
"browserslist": "^4.23.0",
"postcss-selector-parser": "^6.0.16"
},
"engines": {
"node": "^14 || ^16 || >=18.0"
},
"peerDependencies": {
"postcss": "^8.4.31"
}
},
"node_modules/sucrase": {
"version": "3.35.0",
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
"integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
"glob": "^10.3.10",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^4.0.1",
"ts-interface-checker": "^0.1.9"
},
"bin": {
"sucrase": "bin/sucrase",
"sucrase-node": "bin/sucrase-node"
},
"engines": {
"node": ">=16 || 14 >=14.17"
}
},
"node_modules/sucrase/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/sucrase/node_modules/commander": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
"engines": {
"node": ">= 6"
}
},
"node_modules/sucrase/node_modules/foreground-child": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
"integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
"dependencies": {
"cross-spawn": "^7.0.0",
"signal-exit": "^4.0.1"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/sucrase/node_modules/glob": {
"version": "10.4.5",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dependencies": {
"foreground-child": "^3.1.0",
"jackspeak": "^3.1.2",
"minimatch": "^9.0.4",
"minipass": "^7.1.2",
"package-json-from-dist": "^1.0.0",
"path-scurry": "^1.11.1"
},
"bin": {
"glob": "dist/esm/bin.mjs"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/sucrase/node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/sucrase/node_modules/minipass": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
"engines": {
"node": ">=16 || 14 >=14.17"
}
},
"node_modules/sucrase/node_modules/signal-exit": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/supports-hyperlinks": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
"integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
"dependencies": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/svg-parser": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
"integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
},
"node_modules/svgo": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz",
"integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
"dev": true,
"dependencies": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
"css-select": "^5.1.0",
"css-tree": "^2.3.1",
"css-what": "^6.1.0",
"csso": "^5.0.5",
"picocolors": "^1.0.0"
},
"bin": {
"svgo": "bin/svgo"
},
"engines": {
"node": ">=14.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/svgo"
}
},
"node_modules/svgo/node_modules/commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true,
"engines": {
"node": ">= 10"
}
},
"node_modules/svgo/node_modules/css-select": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
"dev": true,
"dependencies": {
"boolbase": "^1.0.0",
"css-what": "^6.1.0",
"domhandler": "^5.0.2",
"domutils": "^3.0.1",
"nth-check": "^2.0.1"
},
"funding": {
"url": "https://github.com/sponsors/fb55"
}
},
"node_modules/svgo/node_modules/dom-serializer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
"dev": true,
"dependencies": {
"domelementtype": "^2.3.0",
"domhandler": "^5.0.2",
"entities": "^4.2.0"
},
"funding": {
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
"node_modules/svgo/node_modules/domhandler": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
"dev": true,
"dependencies": {
"domelementtype": "^2.3.0"
},
"engines": {
"node": ">= 4"
},
"funding": {
"url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
"node_modules/svgo/node_modules/domutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz",
"integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
"dev": true,
"dependencies": {
"dom-serializer": "^2.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3"
},
"funding": {
"url": "https://github.com/fb55/domutils?sponsor=1"
}
},
"node_modules/svgo/node_modules/entities": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
"dev": true,
"engines": {
"node": ">=0.12"
},
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/symbol-tree": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
},
"node_modules/tailwindcss": {
"version": "3.4.16",
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.16.tgz",
"integrity": "sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==",
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"arg": "^5.0.2",
"chokidar": "^3.6.0",
"didyoumean": "^1.2.2",
"dlv": "^1.1.3",
"fast-glob": "^3.3.2",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"jiti": "^1.21.6",
"lilconfig": "^3.1.3",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"object-hash": "^3.0.0",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"postcss-import": "^15.1.0",
"postcss-js": "^4.0.1",
"postcss-load-config": "^4.0.2",
"postcss-nested": "^6.2.0",
"postcss-selector-parser": "^6.1.2",
"resolve": "^1.22.8",
"sucrase": "^3.35.0"
},
"bin": {
"tailwind": "lib/cli.js",
"tailwindcss": "lib/cli.js"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/tailwindcss/node_modules/postcss-load-config": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
"integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"lilconfig": "^3.0.0",
"yaml": "^2.3.4"
},
"engines": {
"node": ">= 14"
},
"peerDependencies": {
"postcss": ">=8.0.9",
"ts-node": ">=9.0.0"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
},
"ts-node": {
"optional": true
}
}
},
"node_modules/tailwindcss/node_modules/yaml": {
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
"integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
"bin": {
"yaml": "bin.mjs"
},
"engines": {
"node": ">= 14"
}
},
"node_modules/tapable": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/tar": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
"integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
"optional": true,
"dependencies": {
"chownr": "^2.0.0",
"fs-minipass": "^2.0.0",
"minipass": "^5.0.0",
"minizlib": "^2.1.1",
"mkdirp": "^1.0.3",
"yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/tar/node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
},
"node_modules/temp-dir": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz",
"integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==",
"engines": {
"node": ">=8"
}
},
"node_modules/tempy": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz",
"integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==",
"dependencies": {
"is-stream": "^2.0.0",
"temp-dir": "^2.0.0",
"type-fest": "^0.16.0",
"unique-string": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/tempy/node_modules/type-fest": {
"version": "0.16.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz",
"integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/terminal-link": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
"integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
"dependencies": {
"ansi-escapes": "^4.2.1",
"supports-hyperlinks": "^2.0.0"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/terser": {
"version": "5.37.0",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz",
"integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
"acorn": "^8.8.2",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
"bin": {
"terser": "bin/terser"
},
"engines": {
"node": ">=10"
}
},
"node_modules/terser-webpack-plugin": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz",
"integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==",
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"jest-worker": "^27.4.5",
"schema-utils": "^4.3.0",
"serialize-javascript": "^6.0.2",
"terser": "^5.31.1"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^5.1.0"
},
"peerDependenciesMeta": {
"@swc/core": {
"optional": true
},
"esbuild": {
"optional": true
},
"uglify-js": {
"optional": true
}
}
},
"node_modules/terser-webpack-plugin/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/terser-webpack-plugin/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/terser-webpack-plugin/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/terser-webpack-plugin/node_modules/jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
},
"node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/terser-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/terser-webpack-plugin/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/terser/node_modules/commander": {
"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=="
},
"node_modules/test-exclude": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
"integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
"dependencies": {
"@istanbuljs/schema": "^0.1.2",
"glob": "^7.1.4",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">=8"
}
},
"node_modules/text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
},
"node_modules/thenify": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
"dependencies": {
"any-promise": "^1.0.0"
}
},
"node_modules/thenify-all": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
"dependencies": {
"thenify": ">= 3.1.0 < 4"
},
"engines": {
"node": ">=0.8"
}
},
"node_modules/throat": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz",
"integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ=="
},
"node_modules/throttleit": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz",
"integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==",
"dev": true,
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/through": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
"dev": true
},
"node_modules/thunky": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="
},
"node_modules/tiny-invariant": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="
},
"node_modules/tldts": {
"version": "6.1.68",
"resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.68.tgz",
"integrity": "sha512-JKF17jROiYkjJPT73hUTEiTp2OBCf+kAlB+1novk8i6Q6dWjHsgEjw9VLiipV4KTJavazXhY1QUXyQFSem2T7w==",
"dev": true,
"dependencies": {
"tldts-core": "^6.1.68"
},
"bin": {
"tldts": "bin/cli.js"
}
},
"node_modules/tldts-core": {
"version": "6.1.68",
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.68.tgz",
"integrity": "sha512-85TdlS/DLW/gVdf2oyyzqp3ocS30WxjaL4la85EArl9cHUR/nizifKAJPziWewSZjDZS71U517/i6ciUeqtB5Q==",
"dev": true
},
"node_modules/tmp": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
"dev": true,
"engines": {
"node": ">=14.14"
}
},
"node_modules/tmpl": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
},
"node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"dependencies": {
"is-number": "^7.0.0"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/toidentifier": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
"engines": {
"node": ">=0.6"
}
},
"node_modules/tough-cookie": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.0.0.tgz",
"integrity": "sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==",
"dev": true,
"dependencies": {
"tldts": "^6.1.32"
},
"engines": {
"node": ">=16"
}
},
"node_modules/tr46": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
"optional": true
},
"node_modules/tree-kill": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
"dev": true,
"bin": {
"tree-kill": "cli.js"
}
},
"node_modules/tryer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
"integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA=="
},
"node_modules/ts-interface-checker": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
},
"node_modules/tsconfig-paths": {
"version": "3.15.0",
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
"integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
"dependencies": {
"@types/json5": "^0.0.29",
"json5": "^1.0.2",
"minimist": "^1.2.6",
"strip-bom": "^3.0.0"
}
},
"node_modules/tsconfig-paths/node_modules/json5": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
"integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
"dependencies": {
"minimist": "^1.2.0"
},
"bin": {
"json5": "lib/cli.js"
}
},
"node_modules/tsconfig-paths/node_modules/strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
"engines": {
"node": ">=4"
}
},
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"node_modules/tsutils": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
"dependencies": {
"tslib": "^1.8.1"
},
"engines": {
"node": ">= 6"
},
"peerDependencies": {
"typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
}
},
"node_modules/tsutils/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
"dev": true,
"dependencies": {
"safe-buffer": "^5.0.1"
},
"engines": {
"node": "*"
}
},
"node_modules/tweetnacl": {
"version": "0.14.5",
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
"dev": true
},
"node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"dependencies": {
"prelude-ls": "^1.2.1"
},
"engines": {
"node": ">= 0.8.0"
}
},
"node_modules/type-detect": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
"engines": {
"node": ">=4"
}
},
"node_modules/type-fest": {
"version": "0.21.3",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/type-is": {
"version": "1.6.18",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
"dependencies": {
"media-typer": "0.3.0",
"mime-types": "~2.1.24"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/typed-array-buffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz",
"integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==",
"dependencies": {
"call-bind": "^1.0.7",
"es-errors": "^1.3.0",
"is-typed-array": "^1.1.13"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/typed-array-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz",
"integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==",
"dependencies": {
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-proto": "^1.0.3",
"is-typed-array": "^1.1.13"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/typed-array-byte-offset": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz",
"integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==",
"dependencies": {
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-proto": "^1.0.3",
"is-typed-array": "^1.1.13",
"reflect.getprototypeof": "^1.0.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/typed-array-length": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
"integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
"dependencies": {
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"is-typed-array": "^1.1.13",
"possible-typed-array-names": "^1.0.0",
"reflect.getprototypeof": "^1.0.6"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/typedarray-to-buffer": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
"integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
"dependencies": {
"is-typedarray": "^1.0.0"
}
},
"node_modules/typescript": {
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
"integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
"peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
},
"node_modules/unbox-primitive": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
"integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
"dependencies": {
"call-bound": "^1.0.3",
"has-bigints": "^1.0.2",
"has-symbols": "^1.1.0",
"which-boxed-primitive": "^1.1.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/underscore": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz",
"integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw=="
},
"node_modules/undici-types": {
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="
},
"node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz",
"integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==",
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
"integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"dependencies": {
"unicode-canonical-property-names-ecmascript": "^2.0.0",
"unicode-property-aliases-ecmascript": "^2.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-match-property-value-ecmascript": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz",
"integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==",
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-property-aliases-ecmascript": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
"integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
"engines": {
"node": ">=4"
}
},
"node_modules/uniq": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
"integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==",
"dev": true
},
"node_modules/unique-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
"integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
"dependencies": {
"crypto-random-string": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/universalify": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"engines": {
"node": ">= 10.0.0"
}
},
"node_modules/unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/unquote": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
"integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg=="
},
"node_modules/untildify": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
"integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/upath": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
"engines": {
"node": ">=4",
"yarn": "*"
}
},
"node_modules/update-browserslist-db": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
"integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/browserslist"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"dependencies": {
"escalade": "^3.2.0",
"picocolors": "^1.1.0"
},
"bin": {
"update-browserslist-db": "cli.js"
},
"peerDependencies": {
"browserslist": ">= 4.21.0"
}
},
"node_modules/update-check": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.4.tgz",
"integrity": "sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==",
"dev": true,
"dependencies": {
"registry-auth-token": "3.3.2",
"registry-url": "3.1.0"
}
},
"node_modules/uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dependencies": {
"punycode": "^2.1.0"
}
},
"node_modules/url-parse": {
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
"dependencies": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
}
},
"node_modules/use-memo-one": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz",
"integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
"node_modules/util.promisify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
"integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==",
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.2",
"has-symbols": "^1.0.1",
"object.getownpropertydescriptors": "^2.1.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/utila": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
"integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA=="
},
"node_modules/utils-merge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
"engines": {
"node": ">= 0.4.0"
}
},
"node_modules/uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/v8-to-istanbul": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz",
"integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.1",
"convert-source-map": "^1.6.0",
"source-map": "^0.7.3"
},
"engines": {
"node": ">=10.12.0"
}
},
"node_modules/v8-to-istanbul/node_modules/convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/verror": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
"integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
"dev": true,
"engines": [
"node >=0.6.0"
],
"dependencies": {
"assert-plus": "^1.0.0",
"core-util-is": "1.0.2",
"extsprintf": "^1.2.0"
}
},
"node_modules/w3c-hr-time": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
"deprecated": "Use your platform's native performance.now() and performance.timeOrigin.",
"dependencies": {
"browser-process-hrtime": "^1.0.0"
}
},
"node_modules/w3c-xmlserializer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
"integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
"dependencies": {
"xml-name-validator": "^3.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/walker": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
"integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
"dependencies": {
"makeerror": "1.0.12"
}
},
"node_modules/warning": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
"integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
"dependencies": {
"loose-envify": "^1.0.0"
}
},
"node_modules/watchpack": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
"integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
"dependencies": {
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.1.2"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/wbuf": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
"dependencies": {
"minimalistic-assert": "^1.0.0"
}
},
"node_modules/webidl-conversions": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
"engines": {
"node": ">=10.4"
}
},
"node_modules/webpack": {
"version": "5.97.1",
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz",
"integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==",
"dependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.6",
"@webassemblyjs/ast": "^1.14.1",
"@webassemblyjs/wasm-edit": "^1.14.1",
"@webassemblyjs/wasm-parser": "^1.14.1",
"acorn": "^8.14.0",
"browserslist": "^4.24.0",
"chrome-trace-event": "^1.0.2",
"enhanced-resolve": "^5.17.1",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.2.11",
"json-parse-even-better-errors": "^2.3.1",
"loader-runner": "^4.2.0",
"mime-types": "^2.1.27",
"neo-async": "^2.6.2",
"schema-utils": "^3.2.0",
"tapable": "^2.1.1",
"terser-webpack-plugin": "^5.3.10",
"watchpack": "^2.4.1",
"webpack-sources": "^3.2.3"
},
"bin": {
"webpack": "bin/webpack.js"
},
"engines": {
"node": ">=10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependenciesMeta": {
"webpack-cli": {
"optional": true
}
}
},
"node_modules/webpack-cli": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz",
"integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==",
"dev": true,
"dependencies": {
"@discoveryjs/json-ext": "^0.5.0",
"@webpack-cli/configtest": "^1.2.0",
"@webpack-cli/info": "^1.5.0",
"@webpack-cli/serve": "^1.7.0",
"colorette": "^2.0.14",
"commander": "^7.0.0",
"cross-spawn": "^7.0.3",
"fastest-levenshtein": "^1.0.12",
"import-local": "^3.0.2",
"interpret": "^2.2.0",
"rechoir": "^0.7.0",
"webpack-merge": "^5.7.3"
},
"bin": {
"webpack-cli": "bin/cli.js"
},
"engines": {
"node": ">=10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "4.x.x || 5.x.x"
},
"peerDependenciesMeta": {
"@webpack-cli/generators": {
"optional": true
},
"@webpack-cli/migrate": {
"optional": true
},
"webpack-bundle-analyzer": {
"optional": true
},
"webpack-dev-server": {
"optional": true
}
}
},
"node_modules/webpack-cli/node_modules/commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true,
"engines": {
"node": ">= 10"
}
},
"node_modules/webpack-dev-middleware": {
"version": "5.3.4",
"resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz",
"integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==",
"dependencies": {
"colorette": "^2.0.10",
"memfs": "^3.4.3",
"mime-types": "^2.1.31",
"range-parser": "^1.2.1",
"schema-utils": "^4.0.0"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
}
},
"node_modules/webpack-dev-middleware/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/webpack-dev-middleware/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/webpack-dev-middleware/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/webpack-dev-middleware/node_modules/range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/webpack-dev-middleware/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/webpack-dev-server": {
"version": "4.15.2",
"resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz",
"integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==",
"dependencies": {
"@types/bonjour": "^3.5.9",
"@types/connect-history-api-fallback": "^1.3.5",
"@types/express": "^4.17.13",
"@types/serve-index": "^1.9.1",
"@types/serve-static": "^1.13.10",
"@types/sockjs": "^0.3.33",
"@types/ws": "^8.5.5",
"ansi-html-community": "^0.0.8",
"bonjour-service": "^1.0.11",
"chokidar": "^3.5.3",
"colorette": "^2.0.10",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"default-gateway": "^6.0.3",
"express": "^4.17.3",
"graceful-fs": "^4.2.6",
"html-entities": "^2.3.2",
"http-proxy-middleware": "^2.0.3",
"ipaddr.js": "^2.0.1",
"launch-editor": "^2.6.0",
"open": "^8.0.9",
"p-retry": "^4.5.0",
"rimraf": "^3.0.2",
"schema-utils": "^4.0.0",
"selfsigned": "^2.1.1",
"serve-index": "^1.9.1",
"sockjs": "^0.3.24",
"spdy": "^4.0.2",
"webpack-dev-middleware": "^5.3.4",
"ws": "^8.13.0"
},
"bin": {
"webpack-dev-server": "bin/webpack-dev-server.js"
},
"engines": {
"node": ">= 12.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
"webpack": "^4.37.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"webpack-cli": {
"optional": true
}
}
},
"node_modules/webpack-dev-server/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/webpack-dev-server/node_modules/ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dependencies": {
"ajv": "^8.0.0"
},
"peerDependencies": {
"ajv": "^8.0.0"
},
"peerDependenciesMeta": {
"ajv": {
"optional": true
}
}
},
"node_modules/webpack-dev-server/node_modules/ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ajv": "^8.8.2"
}
},
"node_modules/webpack-dev-server/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/webpack-dev-server/node_modules/schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dependencies": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/webpack-dev-server/node_modules/ws": {
"version": "8.18.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
"integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": ">=5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
}
},
"node_modules/webpack-manifest-plugin": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz",
"integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==",
"dependencies": {
"tapable": "^2.0.0",
"webpack-sources": "^2.2.0"
},
"engines": {
"node": ">=12.22.0"
},
"peerDependencies": {
"webpack": "^4.44.2 || ^5.47.0"
}
},
"node_modules/webpack-manifest-plugin/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/webpack-manifest-plugin/node_modules/webpack-sources": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz",
"integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==",
"dependencies": {
"source-list-map": "^2.0.1",
"source-map": "^0.6.1"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/webpack-merge": {
"version": "5.10.0",
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz",
"integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==",
"dev": true,
"dependencies": {
"clone-deep": "^4.0.1",
"flat": "^5.0.2",
"wildcard": "^2.0.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/webpack-sources": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
"integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
"dependencies": {
"source-list-map": "^2.0.0",
"source-map": "~0.6.1"
}
},
"node_modules/webpack-sources/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/webpack/node_modules/eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/webpack/node_modules/estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"engines": {
"node": ">=4.0"
}
},
"node_modules/webpack/node_modules/schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dependencies": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
}
},
"node_modules/webpack/node_modules/webpack-sources": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
"integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/websocket-driver": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz",
"integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
"dependencies": {
"http-parser-js": ">=0.5.1",
"safe-buffer": ">=5.1.0",
"websocket-extensions": ">=0.1.1"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/websocket-extensions": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/whatwg-encoding": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
"dependencies": {
"iconv-lite": "0.4.24"
}
},
"node_modules/whatwg-encoding/node_modules/iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/whatwg-fetch": {
"version": "3.6.20",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz",
"integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg=="
},
"node_modules/whatwg-mimetype": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
"integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
},
"node_modules/whatwg-url": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
"optional": true,
"dependencies": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
}
},
"node_modules/whatwg-url/node_modules/webidl-conversions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
"optional": true
},
"node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dependencies": {
"isexe": "^2.0.0"
},
"bin": {
"node-which": "bin/node-which"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/which-boxed-primitive": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
"integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
"dependencies": {
"is-bigint": "^1.1.0",
"is-boolean-object": "^1.2.1",
"is-number-object": "^1.1.1",
"is-string": "^1.1.1",
"is-symbol": "^1.1.1"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/which-builtin-type": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
"integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
"dependencies": {
"call-bound": "^1.0.2",
"function.prototype.name": "^1.1.6",
"has-tostringtag": "^1.0.2",
"is-async-function": "^2.0.0",
"is-date-object": "^1.1.0",
"is-finalizationregistry": "^1.1.0",
"is-generator-function": "^1.0.10",
"is-regex": "^1.2.1",
"is-weakref": "^1.0.2",
"isarray": "^2.0.5",
"which-boxed-primitive": "^1.1.0",
"which-collection": "^1.0.2",
"which-typed-array": "^1.1.16"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/which-collection": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
"integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
"dependencies": {
"is-map": "^2.0.3",
"is-set": "^2.0.3",
"is-weakmap": "^2.0.2",
"is-weakset": "^2.0.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/which-module": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
"integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
"dev": true
},
"node_modules/which-typed-array": {
"version": "1.1.16",
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz",
"integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==",
"dependencies": {
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-tostringtag": "^1.0.2"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/wide-align": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
"integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
"optional": true,
"dependencies": {
"string-width": "^1.0.2 || 2 || 3 || 4"
}
},
"node_modules/widest-line": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
"integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
"dev": true,
"dependencies": {
"string-width": "^5.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/widest-line/node_modules/ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true,
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/widest-line/node_modules/string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"dependencies": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/widest-line/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/wildcard": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz",
"integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==",
"dev": true
},
"node_modules/word-wrap": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/workbox-background-sync": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz",
"integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==",
"dependencies": {
"idb": "^7.0.1",
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-broadcast-update": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz",
"integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-build": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz",
"integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==",
"dependencies": {
"@apideck/better-ajv-errors": "^0.3.1",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"ajv": "^8.6.0",
"common-tags": "^1.8.0",
"fast-json-stable-stringify": "^2.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"pretty-bytes": "^5.3.0",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.0",
"source-map": "^0.8.0-beta.0",
"stringify-object": "^3.3.0",
"strip-comments": "^2.0.1",
"tempy": "^0.6.0",
"upath": "^1.2.0",
"workbox-background-sync": "6.6.0",
"workbox-broadcast-update": "6.6.0",
"workbox-cacheable-response": "6.6.0",
"workbox-core": "6.6.0",
"workbox-expiration": "6.6.0",
"workbox-google-analytics": "6.6.0",
"workbox-navigation-preload": "6.6.0",
"workbox-precaching": "6.6.0",
"workbox-range-requests": "6.6.0",
"workbox-recipes": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0",
"workbox-streams": "6.6.0",
"workbox-sw": "6.6.0",
"workbox-window": "6.6.0"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
"integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
"dependencies": {
"json-schema": "^0.4.0",
"jsonpointer": "^5.0.0",
"leven": "^3.1.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"ajv": ">=8"
}
},
"node_modules/workbox-build/node_modules/ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/workbox-build/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"node_modules/workbox-build/node_modules/source-map": {
"version": "0.8.0-beta.0",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz",
"integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==",
"dependencies": {
"whatwg-url": "^7.0.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/workbox-build/node_modules/tr46": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
"integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==",
"dependencies": {
"punycode": "^2.1.0"
}
},
"node_modules/workbox-build/node_modules/webidl-conversions": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
"integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
},
"node_modules/workbox-build/node_modules/whatwg-url": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
"integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
"dependencies": {
"lodash.sortby": "^4.7.0",
"tr46": "^1.0.1",
"webidl-conversions": "^4.0.2"
}
},
"node_modules/workbox-cacheable-response": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz",
"integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==",
"deprecated": "workbox-background-sync@6.6.0",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-core": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz",
"integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ=="
},
"node_modules/workbox-expiration": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz",
"integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==",
"dependencies": {
"idb": "^7.0.1",
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-google-analytics": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz",
"integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==",
"deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained",
"dependencies": {
"workbox-background-sync": "6.6.0",
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-navigation-preload": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz",
"integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-precaching": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz",
"integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==",
"dependencies": {
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-range-requests": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz",
"integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-recipes": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz",
"integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==",
"dependencies": {
"workbox-cacheable-response": "6.6.0",
"workbox-core": "6.6.0",
"workbox-expiration": "6.6.0",
"workbox-precaching": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"node_modules/workbox-routing": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz",
"integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-strategies": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz",
"integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==",
"dependencies": {
"workbox-core": "6.6.0"
}
},
"node_modules/workbox-streams": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz",
"integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==",
"dependencies": {
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0"
}
},
"node_modules/workbox-sw": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz",
"integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ=="
},
"node_modules/workbox-webpack-plugin": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz",
"integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==",
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"pretty-bytes": "^5.4.1",
"upath": "^1.2.0",
"webpack-sources": "^1.4.3",
"workbox-build": "6.6.0"
},
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"webpack": "^4.4.0 || ^5.9.0"
}
},
"node_modules/workbox-window": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz",
"integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==",
"dependencies": {
"@types/trusted-types": "^2.0.2",
"workbox-core": "6.6.0"
}
},
"node_modules/wrap-ansi": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/wrap-ansi-cjs": {
"name": "wrap-ansi",
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dependencies": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
"node_modules/write-file-atomic": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
"integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
"dependencies": {
"imurmurhash": "^0.1.4",
"is-typedarray": "^1.0.0",
"signal-exit": "^3.0.2",
"typedarray-to-buffer": "^3.1.5"
}
},
"node_modules/ws": {
"version": "7.5.10",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
"integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
"engines": {
"node": ">=8.3.0"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
}
},
"node_modules/xml-name-validator": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
},
"node_modules/xmlchars": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
},
"node_modules/xtend": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
"engines": {
"node": ">=0.4"
}
},
"node_modules/y18n": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
"integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
"dev": true
},
"node_modules/yallist": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
},
"node_modules/yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"engines": {
"node": ">= 6"
}
},
"node_modules/yargs": {
"version": "15.4.1",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
"integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
"dev": true,
"dependencies": {
"cliui": "^6.0.0",
"decamelize": "^1.2.0",
"find-up": "^4.1.0",
"get-caller-file": "^2.0.1",
"require-directory": "^2.1.1",
"require-main-filename": "^2.0.0",
"set-blocking": "^2.0.0",
"string-width": "^4.2.0",
"which-module": "^2.0.0",
"y18n": "^4.0.0",
"yargs-parser": "^18.1.2"
},
"engines": {
"node": ">=8"
}
},
"node_modules/yargs-parser": {
"version": "18.1.3",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
"integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
"dev": true,
"dependencies": {
"camelcase": "^5.0.0",
"decamelize": "^1.2.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/yargs/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/yargs/node_modules/locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"dependencies": {
"p-locate": "^4.1.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/yargs/node_modules/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,
"dependencies": {
"p-try": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/yargs/node_modules/p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"dependencies": {
"p-limit": "^2.2.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/yauzl": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
"dev": true,
"dependencies": {
"buffer-crc32": "~0.2.3",
"fd-slicer": "~1.1.0"
}
},
"node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
}
},
"dependencies": {
"@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
},
"@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"requires": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
}
},
"@babel/code-frame": {
"version": "7.26.2",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"requires": {
"@babel/helper-validator-identifier": "^7.25.9",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
}
},
"@babel/compat-data": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
"integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g=="
},
"@babel/core": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
"integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
"requires": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helpers": "^7.26.0",
"@babel/parser": "^7.26.0",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
}
},
"@babel/eslint-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz",
"integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==",
"requires": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
"semver": "^6.3.1"
},
"dependencies": {
"eslint-visitor-keys": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="
}
}
},
"@babel/generator": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
"integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"requires": {
"@babel/parser": "^7.26.3",
"@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
"integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
"requires": {
"@babel/types": "^7.25.9"
}
},
"@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
"integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
"requires": {
"@babel/compat-data": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
}
},
"@babel/helper-create-class-features-plugin": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz",
"integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-optimise-call-expression": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/traverse": "^7.25.9",
"semver": "^6.3.1"
}
},
"@babel/helper-create-regexp-features-plugin": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz",
"integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"regexpu-core": "^6.2.0",
"semver": "^6.3.1"
}
},
"@babel/helper-define-polyfill-provider": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz",
"integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==",
"requires": {
"@babel/helper-compilation-targets": "^7.22.6",
"@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "^1.14.2"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz",
"integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
"requires": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/helper-module-imports": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"requires": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/helper-module-transforms": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"requires": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz",
"integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
"requires": {
"@babel/types": "^7.25.9"
}
},
"@babel/helper-plugin-utils": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz",
"integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw=="
},
"@babel/helper-remap-async-to-generator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz",
"integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-wrap-function": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/helper-replace-supers": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz",
"integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==",
"requires": {
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-optimise-call-expression": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz",
"integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
"requires": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/helper-string-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="
},
"@babel/helper-validator-identifier": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="
},
"@babel/helper-validator-option": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="
},
"@babel/helper-wrap-function": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz",
"integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==",
"requires": {
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/helpers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
"integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
"requires": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.0"
}
},
"@babel/parser": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
"integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"requires": {
"@babel/types": "^7.26.3"
}
},
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz",
"integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/plugin-bugfix-safari-class-field-initializer-scope": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz",
"integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz",
"integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz",
"integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9"
}
},
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz",
"integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/plugin-proposal-class-properties": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
"integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-proposal-decorators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz",
"integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-decorators": "^7.25.9"
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
"integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
"requires": {
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
}
},
"@babel/plugin-proposal-numeric-separator": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
"integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
"requires": {
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
}
},
"@babel/plugin-proposal-optional-chaining": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
"integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
"requires": {
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
}
},
"@babel/plugin-proposal-private-methods": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
"integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-proposal-private-property-in-object": {
"version": "7.21.0-placeholder-for-preset-env.2",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"requires": {}
},
"@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-bigint": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"requires": {
"@babel/helper-plugin-utils": "^7.12.13"
}
},
"@babel/plugin-syntax-class-static-block": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"requires": {
"@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/plugin-syntax-decorators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz",
"integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-syntax-flow": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz",
"integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-syntax-import-assertions": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz",
"integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-syntax-import-attributes": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz",
"integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@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",
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-jsx": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
"integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@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==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-numeric-separator": {
"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==",
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
}
},
"@babel/plugin-syntax-private-property-in-object": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"requires": {
"@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"requires": {
"@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/plugin-syntax-typescript": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz",
"integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-syntax-unicode-sets-regex": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
"integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-arrow-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz",
"integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-async-generator-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz",
"integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-remap-async-to-generator": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/plugin-transform-async-to-generator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz",
"integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==",
"requires": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-remap-async-to-generator": "^7.25.9"
}
},
"@babel/plugin-transform-block-scoped-functions": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz",
"integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-block-scoping": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz",
"integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-class-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz",
"integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-class-static-block": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz",
"integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-classes": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz",
"integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9",
"@babel/traverse": "^7.25.9",
"globals": "^11.1.0"
}
},
"@babel/plugin-transform-computed-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz",
"integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/template": "^7.25.9"
}
},
"@babel/plugin-transform-destructuring": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz",
"integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-dotall-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz",
"integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-duplicate-keys": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz",
"integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz",
"integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-dynamic-import": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz",
"integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-exponentiation-operator": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz",
"integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-export-namespace-from": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz",
"integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-flow-strip-types": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz",
"integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-flow": "^7.25.9"
}
},
"@babel/plugin-transform-for-of": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz",
"integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
}
},
"@babel/plugin-transform-function-name": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz",
"integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==",
"requires": {
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/plugin-transform-json-strings": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz",
"integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz",
"integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-logical-assignment-operators": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz",
"integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-member-expression-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz",
"integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-modules-amd": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz",
"integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==",
"requires": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-modules-commonjs": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz",
"integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==",
"requires": {
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-modules-systemjs": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz",
"integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==",
"requires": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
}
},
"@babel/plugin-transform-modules-umd": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz",
"integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==",
"requires": {
"@babel/helper-module-transforms": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-named-capturing-groups-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz",
"integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-new-target": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz",
"integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-nullish-coalescing-operator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz",
"integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-numeric-separator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz",
"integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-object-rest-spread": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz",
"integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==",
"requires": {
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9"
}
},
"@babel/plugin-transform-object-super": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz",
"integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9"
}
},
"@babel/plugin-transform-optional-catch-binding": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz",
"integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-optional-chaining": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz",
"integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
}
},
"@babel/plugin-transform-parameters": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz",
"integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-private-methods": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz",
"integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-private-property-in-object": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz",
"integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-property-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz",
"integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-react-constant-elements": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz",
"integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-react-display-name": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz",
"integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-react-jsx": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz",
"integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/plugin-transform-react-jsx-development": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz",
"integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==",
"requires": {
"@babel/plugin-transform-react-jsx": "^7.25.9"
}
},
"@babel/plugin-transform-react-pure-annotations": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz",
"integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-regenerator": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz",
"integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"regenerator-transform": "^0.15.2"
}
},
"@babel/plugin-transform-regexp-modifiers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz",
"integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-reserved-words": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz",
"integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-runtime": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz",
"integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==",
"requires": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"babel-plugin-polyfill-corejs2": "^0.4.10",
"babel-plugin-polyfill-corejs3": "^0.10.6",
"babel-plugin-polyfill-regenerator": "^0.6.1",
"semver": "^6.3.1"
}
},
"@babel/plugin-transform-shorthand-properties": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz",
"integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-spread": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz",
"integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
}
},
"@babel/plugin-transform-sticky-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz",
"integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-template-literals": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz",
"integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-typeof-symbol": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz",
"integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-typescript": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz",
"integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/plugin-syntax-typescript": "^7.25.9"
}
},
"@babel/plugin-transform-unicode-escapes": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz",
"integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-unicode-property-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz",
"integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-unicode-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz",
"integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/plugin-transform-unicode-sets-regex": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz",
"integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==",
"requires": {
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9"
}
},
"@babel/preset-env": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz",
"integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==",
"requires": {
"@babel/compat-data": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9",
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9",
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-async-generator-functions": "^7.25.9",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-block-scoped-functions": "^7.25.9",
"@babel/plugin-transform-block-scoping": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-classes": "^7.25.9",
"@babel/plugin-transform-computed-properties": "^7.25.9",
"@babel/plugin-transform-destructuring": "^7.25.9",
"@babel/plugin-transform-dotall-regex": "^7.25.9",
"@babel/plugin-transform-duplicate-keys": "^7.25.9",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-dynamic-import": "^7.25.9",
"@babel/plugin-transform-exponentiation-operator": "^7.25.9",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-for-of": "^7.25.9",
"@babel/plugin-transform-function-name": "^7.25.9",
"@babel/plugin-transform-json-strings": "^7.25.9",
"@babel/plugin-transform-literals": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-member-expression-literals": "^7.25.9",
"@babel/plugin-transform-modules-amd": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-modules-systemjs": "^7.25.9",
"@babel/plugin-transform-modules-umd": "^7.25.9",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-new-target": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-object-super": "^7.25.9",
"@babel/plugin-transform-optional-catch-binding": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-property-literals": "^7.25.9",
"@babel/plugin-transform-regenerator": "^7.25.9",
"@babel/plugin-transform-regexp-modifiers": "^7.26.0",
"@babel/plugin-transform-reserved-words": "^7.25.9",
"@babel/plugin-transform-shorthand-properties": "^7.25.9",
"@babel/plugin-transform-spread": "^7.25.9",
"@babel/plugin-transform-sticky-regex": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.25.9",
"@babel/plugin-transform-typeof-symbol": "^7.25.9",
"@babel/plugin-transform-unicode-escapes": "^7.25.9",
"@babel/plugin-transform-unicode-property-regex": "^7.25.9",
"@babel/plugin-transform-unicode-regex": "^7.25.9",
"@babel/plugin-transform-unicode-sets-regex": "^7.25.9",
"@babel/preset-modules": "0.1.6-no-external-plugins",
"babel-plugin-polyfill-corejs2": "^0.4.10",
"babel-plugin-polyfill-corejs3": "^0.10.6",
"babel-plugin-polyfill-regenerator": "^0.6.1",
"core-js-compat": "^3.38.1",
"semver": "^6.3.1"
}
},
"@babel/preset-modules": {
"version": "0.1.6-no-external-plugins",
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
"integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
}
},
"@babel/preset-react": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz",
"integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-transform-react-display-name": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@babel/plugin-transform-react-pure-annotations": "^7.25.9"
}
},
"@babel/preset-typescript": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz",
"integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==",
"requires": {
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9"
}
},
"@babel/runtime": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"requires": {
"regenerator-runtime": "^0.14.0"
}
},
"@babel/template": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"requires": {
"@babel/code-frame": "^7.25.9",
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.9"
}
},
"@babel/traverse": {
"version": "7.26.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
"integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"requires": {
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
"integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"requires": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
}
},
"@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
},
"@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"dev": true,
"optional": true
},
"@csstools/convert-colors": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz",
"integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==",
"dev": true
},
"@csstools/normalize.css": {
"version": "12.1.1",
"resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz",
"integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ=="
},
"@csstools/postcss-cascade-layers": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz",
"integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==",
"requires": {
"@csstools/selector-specificity": "^2.0.2",
"postcss-selector-parser": "^6.0.10"
}
},
"@csstools/postcss-color-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz",
"integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==",
"requires": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-font-format-keywords": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz",
"integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-hwb-function": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz",
"integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-ic-unit": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz",
"integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==",
"requires": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-is-pseudo-class": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz",
"integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==",
"requires": {
"@csstools/selector-specificity": "^2.0.0",
"postcss-selector-parser": "^6.0.10"
}
},
"@csstools/postcss-nested-calc": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz",
"integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-normalize-display-values": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz",
"integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-oklab-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz",
"integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==",
"requires": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-progressive-custom-properties": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz",
"integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-stepped-value-functions": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz",
"integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-text-decoration-shorthand": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz",
"integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-trigonometric-functions": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz",
"integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"@csstools/postcss-unset-value": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz",
"integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==",
"requires": {}
},
"@csstools/selector-specificity": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz",
"integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==",
"requires": {}
},
"@cypress/code-coverage": {
"version": "3.13.9",
"resolved": "https://registry.npmjs.org/@cypress/code-coverage/-/code-coverage-3.13.9.tgz",
"integrity": "sha512-VnsBLmhRLE3xgeX5hdN7aWCU3l8UHttUCMO7b+2OrRvs+R3kpBwjejfSC0/H7ErXz5o6r99biClIaS5bqo60uQ==",
"dev": true,
"requires": {
"@cypress/webpack-preprocessor": "^6.0.0",
"chalk": "4.1.2",
"dayjs": "1.11.13",
"debug": "4.3.7",
"execa": "4.1.0",
"globby": "11.1.0",
"istanbul-lib-coverage": "^3.0.0",
"js-yaml": "4.1.0",
"nyc": "15.1.0"
},
"dependencies": {
"debug": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
"integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
"dev": true,
"requires": {
"ms": "^2.1.3"
}
}
}
},
"@cypress/request": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.7.tgz",
"integrity": "sha512-LzxlLEMbBOPYB85uXrDqvD4MgcenjRBLIns3zyhx7vTPj/0u2eQhzXvPiGcaJrV38Q9dbkExWp6cOHPJ+EtFYg==",
"dev": true,
"requires": {
"aws-sign2": "~0.7.0",
"aws4": "^1.8.0",
"caseless": "~0.12.0",
"combined-stream": "~1.0.6",
"extend": "~3.0.2",
"forever-agent": "~0.6.1",
"form-data": "~4.0.0",
"http-signature": "~1.4.0",
"is-typedarray": "~1.0.0",
"isstream": "~0.1.2",
"json-stringify-safe": "~5.0.1",
"mime-types": "~2.1.19",
"performance-now": "^2.1.0",
"qs": "6.13.1",
"safe-buffer": "^5.1.2",
"tough-cookie": "^5.0.0",
"tunnel-agent": "^0.6.0",
"uuid": "^8.3.2"
}
},
"@cypress/webpack-preprocessor": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@cypress/webpack-preprocessor/-/webpack-preprocessor-6.0.2.tgz",
"integrity": "sha512-0+1+4iy4W9PE6R5ywBNKAZoFp8Sf//w3UJ+CKTqkcAjA29b+dtsD0iFT70DsYE0BMqUM1PO7HXFGbXllQ+bRAA==",
"dev": true,
"requires": {
"bluebird": "3.7.1",
"debug": "^4.3.4",
"lodash": "^4.17.20"
}
},
"@cypress/xvfb": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz",
"integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
"dev": true,
"requires": {
"debug": "^3.1.0",
"lodash.once": "^4.1.1"
},
"dependencies": {
"debug": {
"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"
}
}
}
},
"@discoveryjs/json-ext": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
"integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
"dev": true
},
"@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"optional": true,
"requires": {
"@emotion/memoize": "0.7.4"
}
},
"@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
"optional": true
},
"@esbuild/android-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
"integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"optional": true
},
"@esbuild/android-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
"integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"optional": true
},
"@esbuild/android-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
"integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"optional": true
},
"@esbuild/darwin-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
"integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"optional": true
},
"@esbuild/darwin-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
"integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"optional": true
},
"@esbuild/freebsd-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
"integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"optional": true
},
"@esbuild/freebsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
"integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"optional": true
},
"@esbuild/linux-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
"integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"optional": true
},
"@esbuild/linux-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
"integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"optional": true
},
"@esbuild/linux-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
"integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"optional": true
},
"@esbuild/linux-loong64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
"integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
"optional": true
},
"@esbuild/linux-mips64el": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
"integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"optional": true
},
"@esbuild/linux-ppc64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
"integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"optional": true
},
"@esbuild/linux-riscv64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
"integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"optional": true
},
"@esbuild/linux-s390x": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
"integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"optional": true
},
"@esbuild/linux-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
"integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"optional": true
},
"@esbuild/netbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
"integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"optional": true
},
"@esbuild/openbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
"integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"optional": true
},
"@esbuild/sunos-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
"integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"optional": true
},
"@esbuild/win32-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
"integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"optional": true
},
"@esbuild/win32-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
"integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"optional": true
},
"@esbuild/win32-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
"integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"optional": true
},
"@eslint-community/eslint-utils": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
"integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"requires": {
"eslint-visitor-keys": "^3.4.3"
}
},
"@eslint-community/regexpp": {
"version": "4.12.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="
},
"@eslint/create-config": {
"version": "0.4.6",
"resolved": "https://registry.npmjs.org/@eslint/create-config/-/create-config-0.4.6.tgz",
"integrity": "sha512-JKxV4ORZoOElPdAZEib7YXhuBRAwS/fS9xu5xbfe0KEUIgglFKDxNgytZp3ubDDPI3rdOVgwU0psKSG44SyKGQ==",
"dev": true,
"requires": {
"@eslint/eslintrc": "^1.0.3",
"cross-spawn": "^7.0.2",
"debug": "^4.0.1",
"enquirer": "^2.3.5",
"js-yaml": "^4.1.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"mri": "^1.2.0",
"semver": "^7.2.1"
},
"dependencies": {
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true
}
}
},
"@eslint/eslintrc": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
"integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.4.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"globals": {
"version": "13.24.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dev": true,
"requires": {
"type-fest": "^0.20.2"
}
},
"type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true
}
}
},
"@eslint/js": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q=="
},
"@headlessui/react": {
"version": "1.7.19",
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.19.tgz",
"integrity": "sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==",
"requires": {
"@tanstack/react-virtual": "^3.0.0-beta.60",
"client-only": "^0.0.1"
}
},
"@humanwhocodes/config-array": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
"requires": {
"@humanwhocodes/object-schema": "^2.0.3",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
}
},
"@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
},
"@humanwhocodes/object-schema": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
"integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA=="
},
"@iarna/toml": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
},
"@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"requires": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="
},
"ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
},
"string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"requires": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
}
},
"strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"requires": {
"ansi-regex": "^6.0.1"
}
},
"wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"requires": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
"strip-ansi": "^7.0.1"
}
}
}
},
"@istanbuljs/load-nyc-config": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
"integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
"requires": {
"camelcase": "^5.3.1",
"find-up": "^4.1.0",
"get-package-type": "^0.1.0",
"js-yaml": "^3.13.1",
"resolve-from": "^5.0.0"
},
"dependencies": {
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"requires": {
"sprintf-js": "~1.0.2"
}
},
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
}
},
"js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
}
},
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"requires": {
"p-locate": "^4.1.0"
}
},
"p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"requires": {
"p-try": "^2.0.0"
}
},
"p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"requires": {
"p-limit": "^2.2.0"
}
},
"resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
}
}
},
"@istanbuljs/schema": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
"integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
},
"@jest/console": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz",
"integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"jest-message-util": "^27.5.1",
"jest-util": "^27.5.1",
"slash": "^3.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"@jest/core": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
"integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==",
"requires": {
"@jest/console": "^27.5.1",
"@jest/reporters": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
"jest-changed-files": "^27.5.1",
"jest-config": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-resolve-dependencies": "^27.5.1",
"jest-runner": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"jest-watcher": "^27.5.1",
"micromatch": "^4.0.4",
"rimraf": "^3.0.0",
"slash": "^3.0.0",
"strip-ansi": "^6.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"@jest/environment": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz",
"integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==",
"requires": {
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"@jest/fake-timers": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz",
"integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==",
"requires": {
"@jest/types": "^27.5.1",
"@sinonjs/fake-timers": "^8.0.1",
"@types/node": "*",
"jest-message-util": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"@jest/globals": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz",
"integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/types": "^27.5.1",
"expect": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"@jest/reporters": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz",
"integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==",
"requires": {
"@bcoe/v8-coverage": "^0.2.3",
"@jest/console": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"collect-v8-coverage": "^1.0.0",
"exit": "^0.1.2",
"glob": "^7.1.2",
"graceful-fs": "^4.2.9",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^5.1.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.1.3",
"jest-haste-map": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"slash": "^3.0.0",
"source-map": "^0.6.0",
"string-length": "^4.0.1",
"terminal-link": "^2.0.0",
"v8-to-istanbul": "^8.1.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"istanbul-lib-instrument": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
"integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
"requires": {
"@babel/core": "^7.12.3",
"@babel/parser": "^7.14.7",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.2.0",
"semver": "^6.3.0"
}
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"@jest/schemas": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
"integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"dev": true,
"requires": {
"@sinclair/typebox": "^0.27.8"
}
},
"@jest/source-map": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz",
"integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==",
"requires": {
"callsites": "^3.0.0",
"graceful-fs": "^4.2.9",
"source-map": "^0.6.0"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"@jest/test-result": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz",
"integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==",
"requires": {
"@jest/console": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"@jest/test-sequencer": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz",
"integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==",
"requires": {
"@jest/test-result": "^27.5.1",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-runtime": "^27.5.1"
}
},
"@jest/transform": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz",
"integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==",
"requires": {
"@babel/core": "^7.1.0",
"@jest/types": "^27.5.1",
"babel-plugin-istanbul": "^6.1.1",
"chalk": "^4.0.0",
"convert-source-map": "^1.4.0",
"fast-json-stable-stringify": "^2.0.0",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-util": "^27.5.1",
"micromatch": "^4.0.4",
"pirates": "^4.0.4",
"slash": "^3.0.0",
"source-map": "^0.6.1",
"write-file-atomic": "^3.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"@jest/types": {
"version": "29.6.3",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
"integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
"dev": true,
"requires": {
"@jest/schemas": "^29.6.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^17.0.8",
"chalk": "^4.0.0"
}
},
"@jridgewell/gen-mapping": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"requires": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
}
},
"@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
},
"@jridgewell/set-array": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
},
"@jridgewell/source-map": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
"integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
"requires": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25"
}
},
"@jridgewell/sourcemap-codec": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
},
"@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"requires": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"@jsdevtools/coverage-istanbul-loader": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz",
"integrity": "sha512-EUCPEkaRPvmHjWAAZkWMT7JDzpw7FKB00WTISaiXsbNOd5hCHg77XLA8sLYLFDo1zepYLo2w7GstN8YBqRXZfA==",
"dev": true,
"requires": {
"convert-source-map": "^1.7.0",
"istanbul-lib-instrument": "^4.0.3",
"loader-utils": "^2.0.0",
"merge-source-map": "^1.1.0",
"schema-utils": "^2.7.0"
},
"dependencies": {
"convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true
}
}
},
"@juspay-tech/hyper-js": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@juspay-tech/hyper-js/-/hyper-js-1.6.0.tgz",
"integrity": "sha512-Lntha7USoH+Kh4hfSYkm2GCFFxOAzeAV0bojLEKDrL/VSccmntKqzugvgrYhfHHIeX/QDdDzacMO5IVyR3sgfA==",
"requires": {
"@ryyppy/rescript-promise": "^2.1.0",
"bs-fetch": "^0.6.2",
"esbuild": "^0.18.17",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-postcss": "^0.0.4",
"react-scripts": "^5.0.1"
}
},
"@juspay-tech/react-hyper-js": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@juspay-tech/react-hyper-js/-/react-hyper-js-1.2.2.tgz",
"integrity": "sha512-EFFM3P9/zDweymVGwvHf7RenGmBuqS0mhPVPLJ8IxDAJ2YwxgbtLiL3E6sR3+ZQ8nhcfQVXI1tfeKC5Jx0+fTw==",
"requires": {
"@rescript/core": "^0.7.0",
"@rescript/react": "^0.12.1",
"@ryyppy/rescript-promise": "^2.1.0",
"postcss": "^8.4.19",
"react-scripts": "^5.0.1"
},
"dependencies": {
"@rescript/core": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.7.0.tgz",
"integrity": "sha512-5arTnw1EVPvssqq4v+XHkigROoWXYm/3pD+ZyOSeJgnbzMccRibGWb4L6Ss3QBoEkpuCodX06RnLx8Vqa3kECQ==",
"requires": {}
}
}
},
"@leichtgewicht/ip-codec": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
"integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw=="
},
"@mapbox/node-pre-gyp": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
"integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
"optional": true,
"requires": {
"detect-libc": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"make-dir": "^3.1.0",
"node-fetch": "^2.6.7",
"nopt": "^5.0.0",
"npmlog": "^5.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.11"
},
"dependencies": {
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"optional": true
}
}
},
"@monaco-editor/loader": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz",
"integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==",
"requires": {
"state-local": "^1.0.6"
}
},
"@monaco-editor/react": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.6.0.tgz",
"integrity": "sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==",
"requires": {
"@monaco-editor/loader": "^1.4.0"
}
},
"@nicolo-ribaudo/eslint-scope-5-internals": {
"version": "5.1.1-v1",
"resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
"integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
"requires": {
"eslint-scope": "5.1.1"
},
"dependencies": {
"eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"requires": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
}
},
"estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
}
}
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
},
"@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@pkgjs/parseargs": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
"optional": true
},
"@pmmmwh/react-refresh-webpack-plugin": {
"version": "0.5.15",
"resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz",
"integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==",
"requires": {
"ansi-html": "^0.0.9",
"core-js-pure": "^3.23.3",
"error-stack-parser": "^2.0.6",
"html-entities": "^2.1.0",
"loader-utils": "^2.0.4",
"schema-utils": "^4.2.0",
"source-map": "^0.7.3"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"@rescript/core": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.6.0.tgz",
"integrity": "sha512-D4ykxSpbmxbQa99kCg6/DztwCNt1tV3t11BLSOvJPHNLSIuQxfAU3ddgRruaH9LQSKOrMUjxQS9z6RdG5iFPoA==",
"requires": {}
},
"@rescript/react": {
"version": "0.12.2",
"resolved": "https://registry.npmjs.org/@rescript/react/-/react-0.12.2.tgz",
"integrity": "sha512-EOF19dLTG4Y9K59JqMjG5yfvIsrMZqfxGC2J/oe9gGgrMiUrzZh3KH9khTcR1Z3Ih0lRViSh0/iYnJz20gGoag==",
"requires": {}
},
"@rollup/plugin-babel": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz",
"integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==",
"requires": {
"@babel/helper-module-imports": "^7.10.4",
"@rollup/pluginutils": "^3.1.0"
}
},
"@rollup/plugin-node-resolve": {
"version": "11.2.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz",
"integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==",
"requires": {
"@rollup/pluginutils": "^3.1.0",
"@types/resolve": "1.17.1",
"builtin-modules": "^3.1.0",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.19.0"
}
},
"@rollup/plugin-replace": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz",
"integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==",
"requires": {
"@rollup/pluginutils": "^3.1.0",
"magic-string": "^0.25.7"
}
},
"@rollup/pluginutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
"integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
"requires": {
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"picomatch": "^2.2.2"
},
"dependencies": {
"@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
"integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
}
}
},
"@rtsao/scc": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
"integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g=="
},
"@rushstack/eslint-patch": {
"version": "1.10.4",
"resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz",
"integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA=="
},
"@ryyppy/rescript-promise": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@ryyppy/rescript-promise/-/rescript-promise-2.1.0.tgz",
"integrity": "sha512-+dW6msBrj2Lr2hbEMX+HoWCvN89qVjl94RwbYWJgHQuj8jm/izdPC0YzxgpGoEFdeAEW2sOozoLcYHxT6o5WXQ=="
},
"@sinclair/typebox": {
"version": "0.27.8",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
"integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
"dev": true
},
"@sinonjs/commons": {
"version": "1.8.6",
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
"requires": {
"type-detect": "4.0.8"
}
},
"@sinonjs/fake-timers": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
"integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
"requires": {
"@sinonjs/commons": "^1.7.0"
}
},
"@surma/rollup-plugin-off-main-thread": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz",
"integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==",
"requires": {
"ejs": "^3.1.6",
"json5": "^2.2.0",
"magic-string": "^0.25.0",
"string.prototype.matchall": "^4.0.6"
}
},
"@svgdotjs/svg.draggable.js": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.draggable.js/-/svg.draggable.js-3.0.4.tgz",
"integrity": "sha512-vWi/Col5Szo74HJVBgMHz23kLVljt3jvngmh0DzST45iO2ubIZ487uUAHIxSZH2tVRyiaaTL+Phaasgp4gUD2g==",
"requires": {}
},
"@svgdotjs/svg.filter.js": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.filter.js/-/svg.filter.js-3.0.8.tgz",
"integrity": "sha512-YshF2YDaeRA2StyzAs5nUPrev7npQ38oWD0eTRwnsciSL2KrRPMoUw8BzjIXItb3+dccKGTX3IQOd2NFzmHkog==",
"requires": {
"@svgdotjs/svg.js": "^3.1.1"
}
},
"@svgdotjs/svg.js": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.js/-/svg.js-3.2.4.tgz",
"integrity": "sha512-BjJ/7vWNowlX3Z8O4ywT58DqbNRyYlkk6Yz/D13aB7hGmfQTvGX4Tkgtm/ApYlu9M7lCQi15xUEidqMUmdMYwg=="
},
"@svgdotjs/svg.resize.js": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.resize.js/-/svg.resize.js-2.0.5.tgz",
"integrity": "sha512-4heRW4B1QrJeENfi7326lUPYBCevj78FJs8kfeDxn5st0IYPIRXoTtOSYvTzFWgaWWXd3YCDE6ao4fmv91RthA==",
"requires": {}
},
"@svgdotjs/svg.select.js": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@svgdotjs/svg.select.js/-/svg.select.js-4.0.2.tgz",
"integrity": "sha512-5gWdrvoQX3keo03SCmgaBbD+kFftq0F/f2bzCbNnpkkvW6tk4rl4MakORzFuNjvXPWwB4az9GwuvVxQVnjaK2g==",
"requires": {}
},
"@svgr/babel-plugin-add-jsx-attribute": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz",
"integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg=="
},
"@svgr/babel-plugin-remove-jsx-attribute": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz",
"integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg=="
},
"@svgr/babel-plugin-remove-jsx-empty-expression": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz",
"integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA=="
},
"@svgr/babel-plugin-replace-jsx-attribute-value": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz",
"integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ=="
},
"@svgr/babel-plugin-svg-dynamic-title": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz",
"integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg=="
},
"@svgr/babel-plugin-svg-em-dimensions": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz",
"integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw=="
},
"@svgr/babel-plugin-transform-react-native-svg": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz",
"integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q=="
},
"@svgr/babel-plugin-transform-svg-component": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz",
"integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ=="
},
"@svgr/babel-preset": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz",
"integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==",
"requires": {
"@svgr/babel-plugin-add-jsx-attribute": "^5.4.0",
"@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0",
"@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1",
"@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1",
"@svgr/babel-plugin-svg-dynamic-title": "^5.4.0",
"@svgr/babel-plugin-svg-em-dimensions": "^5.4.0",
"@svgr/babel-plugin-transform-react-native-svg": "^5.4.0",
"@svgr/babel-plugin-transform-svg-component": "^5.5.0"
}
},
"@svgr/core": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz",
"integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==",
"requires": {
"@svgr/plugin-jsx": "^5.5.0",
"camelcase": "^6.2.0",
"cosmiconfig": "^7.0.0"
},
"dependencies": {
"camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
}
}
},
"@svgr/hast-util-to-babel-ast": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz",
"integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==",
"requires": {
"@babel/types": "^7.12.6"
}
},
"@svgr/plugin-jsx": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz",
"integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==",
"requires": {
"@babel/core": "^7.12.3",
"@svgr/babel-preset": "^5.5.0",
"@svgr/hast-util-to-babel-ast": "^5.5.0",
"svg-parser": "^2.0.2"
}
},
"@svgr/plugin-svgo": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz",
"integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==",
"requires": {
"cosmiconfig": "^7.0.0",
"deepmerge": "^4.2.2",
"svgo": "^1.2.2"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"requires": {
"sprintf-js": "~1.0.2"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"css-select": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
"integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
"requires": {
"boolbase": "^1.0.0",
"css-what": "^3.2.1",
"domutils": "^1.7.0",
"nth-check": "^1.0.2"
}
},
"css-tree": {
"version": "1.0.0-alpha.37",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
"integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
"requires": {
"mdn-data": "2.0.4",
"source-map": "^0.6.1"
}
},
"css-what": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
"integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="
},
"csso": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
"requires": {
"css-tree": "^1.1.2"
},
"dependencies": {
"css-tree": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
"requires": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
}
},
"mdn-data": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
}
}
},
"dom-serializer": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
"integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
"requires": {
"domelementtype": "^2.0.1",
"entities": "^2.0.0"
}
},
"domutils": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
"integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
"requires": {
"dom-serializer": "0",
"domelementtype": "1"
},
"dependencies": {
"domelementtype": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
"integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
}
}
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
},
"js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
}
},
"mdn-data": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
"integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA=="
},
"mkdirp": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"requires": {
"minimist": "^1.2.6"
}
},
"nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
"integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
"requires": {
"boolbase": "~1.0.0"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
}
},
"svgo": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
"integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
"requires": {
"chalk": "^2.4.1",
"coa": "^2.0.2",
"css-select": "^2.0.0",
"css-select-base-adapter": "^0.1.1",
"css-tree": "1.0.0-alpha.37",
"csso": "^4.0.2",
"js-yaml": "^3.13.1",
"mkdirp": "~0.5.1",
"object.values": "^1.1.0",
"sax": "~1.2.4",
"stable": "^0.1.8",
"unquote": "~1.1.1",
"util.promisify": "~1.0.0"
}
}
}
},
"@svgr/webpack": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz",
"integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==",
"requires": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"loader-utils": "^2.0.0"
}
},
"@tanstack/react-virtual": {
"version": "3.11.2",
"resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.2.tgz",
"integrity": "sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==",
"requires": {
"@tanstack/virtual-core": "3.11.2"
}
},
"@tanstack/virtual-core": {
"version": "3.11.2",
"resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.11.2.tgz",
"integrity": "sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw=="
},
"@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
},
"@trysound/sax": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
},
"@types/babel__core": {
"version": "7.20.5",
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
"requires": {
"@babel/parser": "^7.20.7",
"@babel/types": "^7.20.7",
"@types/babel__generator": "*",
"@types/babel__template": "*",
"@types/babel__traverse": "*"
}
},
"@types/babel__generator": {
"version": "7.6.8",
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
"integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
"requires": {
"@babel/types": "^7.0.0"
}
},
"@types/babel__template": {
"version": "7.4.4",
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
"requires": {
"@babel/parser": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@types/babel__traverse": {
"version": "7.20.6",
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
"integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
"requires": {
"@babel/types": "^7.20.7"
}
},
"@types/body-parser": {
"version": "1.19.5",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
"integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
"requires": {
"@types/connect": "*",
"@types/node": "*"
}
},
"@types/bonjour": {
"version": "3.5.13",
"resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz",
"integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==",
"requires": {
"@types/node": "*"
}
},
"@types/connect": {
"version": "3.4.38",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
"integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"requires": {
"@types/node": "*"
}
},
"@types/connect-history-api-fallback": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz",
"integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==",
"requires": {
"@types/express-serve-static-core": "*",
"@types/node": "*"
}
},
"@types/eslint": {
"version": "8.56.12",
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz",
"integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==",
"requires": {
"@types/estree": "*",
"@types/json-schema": "*"
}
},
"@types/eslint-scope": {
"version": "3.7.7",
"resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
"integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
"requires": {
"@types/eslint": "*",
"@types/estree": "*"
}
},
"@types/estree": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
"@types/express": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz",
"integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==",
"requires": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.33",
"@types/qs": "*",
"@types/serve-static": "*"
},
"dependencies": {
"@types/express-serve-static-core": {
"version": "4.19.6",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz",
"integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==",
"requires": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*",
"@types/send": "*"
}
}
}
},
"@types/express-serve-static-core": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz",
"integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==",
"requires": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*",
"@types/send": "*"
}
},
"@types/graceful-fs": {
"version": "4.1.9",
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
"integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
"requires": {
"@types/node": "*"
}
},
"@types/hast": {
"version": "2.3.10",
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz",
"integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
"requires": {
"@types/unist": "^2"
}
},
"@types/hoist-non-react-statics": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.6.tgz",
"integrity": "sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==",
"requires": {
"@types/react": "*",
"hoist-non-react-statics": "^3.3.0"
}
},
"@types/html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="
},
"@types/http-errors": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
"integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA=="
},
"@types/http-proxy": {
"version": "1.17.15",
"resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz",
"integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==",
"requires": {
"@types/node": "*"
}
},
"@types/istanbul-lib-coverage": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
"integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="
},
"@types/istanbul-lib-report": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
"integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"requires": {
"@types/istanbul-lib-coverage": "*"
}
},
"@types/istanbul-reports": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
"integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"requires": {
"@types/istanbul-lib-report": "*"
}
},
"@types/json-schema": {
"version": "7.0.15",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
},
"@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
},
"@types/mime": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
"integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w=="
},
"@types/node": {
"version": "22.10.2",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
"integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
"requires": {
"undici-types": "~6.20.0"
}
},
"@types/node-forge": {
"version": "1.3.11",
"resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz",
"integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==",
"requires": {
"@types/node": "*"
}
},
"@types/parse-json": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw=="
},
"@types/prettier": {
"version": "2.7.3",
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
"integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA=="
},
"@types/q": {
"version": "1.5.8",
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz",
"integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw=="
},
"@types/qs": {
"version": "6.9.17",
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz",
"integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ=="
},
"@types/range-parser": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
"integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ=="
},
"@types/react": {
"version": "19.0.1",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.1.tgz",
"integrity": "sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==",
"requires": {
"csstype": "^3.0.2"
}
},
"@types/react-redux": {
"version": "7.1.34",
"resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz",
"integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==",
"requires": {
"@types/hoist-non-react-statics": "^3.3.0",
"@types/react": "*",
"hoist-non-react-statics": "^3.3.0",
"redux": "^4.0.0"
}
},
"@types/resolve": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz",
"integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==",
"requires": {
"@types/node": "*"
}
},
"@types/retry": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
},
"@types/semver": {
"version": "7.5.8",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
"integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ=="
},
"@types/send": {
"version": "0.17.4",
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
"integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
"requires": {
"@types/mime": "^1",
"@types/node": "*"
}
},
"@types/serve-index": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz",
"integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==",
"requires": {
"@types/express": "*"
}
},
"@types/serve-static": {
"version": "1.15.7",
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz",
"integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==",
"requires": {
"@types/http-errors": "*",
"@types/node": "*",
"@types/send": "*"
}
},
"@types/sinonjs__fake-timers": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz",
"integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==",
"dev": true
},
"@types/sizzle": {
"version": "2.3.9",
"resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.9.tgz",
"integrity": "sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==",
"dev": true
},
"@types/sockjs": {
"version": "0.3.36",
"resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz",
"integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==",
"requires": {
"@types/node": "*"
}
},
"@types/stack-utils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
"integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="
},
"@types/trusted-types": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="
},
"@types/unist": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA=="
},
"@types/ws": {
"version": "8.5.13",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz",
"integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==",
"requires": {
"@types/node": "*"
}
},
"@types/yargs": {
"version": "17.0.33",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz",
"integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"@types/yargs-parser": {
"version": "21.0.3",
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="
},
"@types/yauzl": {
"version": "2.10.3",
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
"dev": true,
"optional": true,
"requires": {
"@types/node": "*"
}
},
"@typescript-eslint/eslint-plugin": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz",
"integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==",
"requires": {
"@eslint-community/regexpp": "^4.4.0",
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/type-utils": "5.62.0",
"@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
"natural-compare-lite": "^1.4.0",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"dependencies": {
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
}
}
},
"@typescript-eslint/experimental-utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz",
"integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==",
"requires": {
"@typescript-eslint/utils": "5.62.0"
}
},
"@typescript-eslint/parser": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
"integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
"requires": {
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"debug": "^4.3.4"
}
},
"@typescript-eslint/scope-manager": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
"integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
"requires": {
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/visitor-keys": "5.62.0"
}
},
"@typescript-eslint/type-utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz",
"integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==",
"requires": {
"@typescript-eslint/typescript-estree": "5.62.0",
"@typescript-eslint/utils": "5.62.0",
"debug": "^4.3.4",
"tsutils": "^3.21.0"
}
},
"@typescript-eslint/types": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
"integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ=="
},
"@typescript-eslint/typescript-estree": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
"integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
"requires": {
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/visitor-keys": "5.62.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"dependencies": {
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
}
}
},
"@typescript-eslint/utils": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
"integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
"requires": {
"@eslint-community/eslint-utils": "^4.2.0",
"@types/json-schema": "^7.0.9",
"@types/semver": "^7.3.12",
"@typescript-eslint/scope-manager": "5.62.0",
"@typescript-eslint/types": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"eslint-scope": "^5.1.1",
"semver": "^7.3.7"
},
"dependencies": {
"eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"requires": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
}
},
"estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
}
}
},
"@typescript-eslint/visitor-keys": {
"version": "5.62.0",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
"integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
"requires": {
"@typescript-eslint/types": "5.62.0",
"eslint-visitor-keys": "^3.3.0"
}
},
"@ungap/structured-clone": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz",
"integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA=="
},
"@webassemblyjs/ast": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
"integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
"requires": {
"@webassemblyjs/helper-numbers": "1.13.2",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2"
}
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
"integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA=="
},
"@webassemblyjs/helper-api-error": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
"integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ=="
},
"@webassemblyjs/helper-buffer": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
"integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA=="
},
"@webassemblyjs/helper-numbers": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
"integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
"requires": {
"@webassemblyjs/floating-point-hex-parser": "1.13.2",
"@webassemblyjs/helper-api-error": "1.13.2",
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
"integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA=="
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
"integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/wasm-gen": "1.14.1"
}
},
"@webassemblyjs/ieee754": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
"integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
"requires": {
"@xtuc/ieee754": "^1.2.0"
}
},
"@webassemblyjs/leb128": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
"integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
"requires": {
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/utf8": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
"integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ=="
},
"@webassemblyjs/wasm-edit": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
"integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/helper-wasm-section": "1.14.1",
"@webassemblyjs/wasm-gen": "1.14.1",
"@webassemblyjs/wasm-opt": "1.14.1",
"@webassemblyjs/wasm-parser": "1.14.1",
"@webassemblyjs/wast-printer": "1.14.1"
}
},
"@webassemblyjs/wasm-gen": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
"integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/ieee754": "1.13.2",
"@webassemblyjs/leb128": "1.13.2",
"@webassemblyjs/utf8": "1.13.2"
}
},
"@webassemblyjs/wasm-opt": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
"integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
"@webassemblyjs/wasm-gen": "1.14.1",
"@webassemblyjs/wasm-parser": "1.14.1"
}
},
"@webassemblyjs/wasm-parser": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
"integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-api-error": "1.13.2",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
"@webassemblyjs/ieee754": "1.13.2",
"@webassemblyjs/leb128": "1.13.2",
"@webassemblyjs/utf8": "1.13.2"
}
},
"@webassemblyjs/wast-printer": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
"integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
"requires": {
"@webassemblyjs/ast": "1.14.1",
"@xtuc/long": "4.2.2"
}
},
"@webpack-cli/configtest": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz",
"integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==",
"dev": true,
"requires": {}
},
"@webpack-cli/info": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz",
"integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==",
"dev": true,
"requires": {
"envinfo": "^7.7.3"
}
},
"@webpack-cli/serve": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz",
"integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==",
"dev": true,
"requires": {}
},
"@xtuc/ieee754": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
},
"@xtuc/long": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
},
"@yr/monotone-cubic-spline": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@yr/monotone-cubic-spline/-/monotone-cubic-spline-1.0.3.tgz",
"integrity": "sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA=="
},
"@zeit/schemas": {
"version": "2.36.0",
"resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.36.0.tgz",
"integrity": "sha512-7kjMwcChYEzMKjeex9ZFXkt1AyNov9R5HZtjBKVsmVpw7pa7ZtlCGvCBC2vnnXctaYN+aRI61HjIqeetZW5ROg==",
"dev": true
},
"abab": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"optional": true
},
"accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"requires": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
}
},
"acorn": {
"version": "8.14.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
"integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="
},
"acorn-globals": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
"requires": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1"
},
"dependencies": {
"acorn": {
"version": "7.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
}
}
},
"acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"requires": {}
},
"acorn-walk": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
},
"address": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
"integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="
},
"adjust-sourcemap-loader": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
"integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==",
"requires": {
"loader-utils": "^2.0.0",
"regex-parser": "^2.2.11"
}
},
"agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"requires": {
"debug": "4"
}
},
"aggregate-error": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
"dev": true,
"requires": {
"clean-stack": "^2.0.0",
"indent-string": "^4.0.0"
}
},
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ajv-keywords": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"requires": {}
},
"ansi-align": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
"integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
"dev": true,
"requires": {
"string-width": "^4.1.0"
}
},
"ansi-colors": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
"integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
"dev": true
},
"ansi-escapes": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"requires": {
"type-fest": "^0.21.3"
}
},
"ansi-html": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz",
"integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg=="
},
"ansi-html-community": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="
},
"ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
},
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
"color-convert": "^2.0.1"
}
},
"any-promise": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
},
"anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"requires": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
}
},
"apexcharts": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-4.2.0.tgz",
"integrity": "sha512-MQ5o8KnwMGcAlo+LhXlAjWGk8wBNBK2O1gFv+JiB6w3oJeuDJUFqa6FLTDlXvdhtObNQ3vIfAtv0AbMSkDv0DQ==",
"requires": {
"@svgdotjs/svg.draggable.js": "^3.0.4",
"@svgdotjs/svg.filter.js": "^3.0.8",
"@svgdotjs/svg.js": "^3.2.4",
"@svgdotjs/svg.resize.js": "^2.0.2",
"@svgdotjs/svg.select.js": "^4.0.1",
"@yr/monotone-cubic-spline": "^1.0.3"
}
},
"append-transform": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz",
"integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==",
"dev": true,
"requires": {
"default-require-extensions": "^3.0.0"
}
},
"aproba": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
"integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
"optional": true
},
"arch": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
"integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
"dev": true
},
"archy": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
"integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==",
"dev": true
},
"are-we-there-yet": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"optional": true,
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^3.6.0"
}
},
"arg": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
},
"argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"aria-query": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw=="
},
"array-buffer-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz",
"integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==",
"requires": {
"call-bind": "^1.0.5",
"is-array-buffer": "^3.0.4"
}
},
"array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"array-includes": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
"integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.4",
"is-string": "^1.0.7"
}
},
"array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
},
"array.prototype.findlast": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
"integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-shim-unscopables": "^1.0.2"
}
},
"array.prototype.findlastindex": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
"integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-shim-unscopables": "^1.0.2"
}
},
"array.prototype.flat": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
"integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
"requires": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-shim-unscopables": "^1.0.2"
}
},
"array.prototype.flatmap": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
"integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
"requires": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-shim-unscopables": "^1.0.2"
}
},
"array.prototype.reduce": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz",
"integrity": "sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-array-method-boxes-properly": "^1.0.0",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"is-string": "^1.0.7"
}
},
"array.prototype.tosorted": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
"integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3",
"es-errors": "^1.3.0",
"es-shim-unscopables": "^1.0.2"
}
},
"arraybuffer.prototype.slice": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
"integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
"requires": {
"array-buffer-byte-length": "^1.0.1",
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.6",
"is-array-buffer": "^3.0.4"
}
},
"asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
},
"asn1": {
"version": "0.2.6",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
"dev": true,
"requires": {
"safer-buffer": "~2.1.0"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
"dev": true
},
"ast-types-flow": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
"integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="
},
"astral-regex": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
"dev": true
},
"async": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"at-least-node": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="
},
"autoprefixer": {
"version": "9.8.8",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz",
"integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==",
"dev": true,
"requires": {
"browserslist": "^4.12.0",
"caniuse-lite": "^1.0.30001109",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
"picocolors": "^0.2.1",
"postcss": "^7.0.32",
"postcss-value-parser": "^4.1.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"available-typed-arrays": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
"integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
"requires": {
"possible-typed-array-names": "^1.0.0"
}
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
"dev": true
},
"aws4": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
"integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==",
"dev": true
},
"axe-core": {
"version": "4.10.2",
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz",
"integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w=="
},
"axobject-query": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="
},
"babel-jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz",
"integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==",
"requires": {
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/babel__core": "^7.1.14",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-jest": "^27.5.1",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"slash": "^3.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"babel-loader": {
"version": "9.2.1",
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz",
"integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==",
"dev": true,
"peer": true,
"requires": {
"find-cache-dir": "^4.0.0",
"schema-utils": "^4.0.0"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"peer": true,
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"peer": true,
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"peer": true,
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"peer": true
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"peer": true,
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"babel-plugin-istanbul": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
"integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-instrument": "^5.0.4",
"test-exclude": "^6.0.0"
},
"dependencies": {
"istanbul-lib-instrument": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
"integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
"requires": {
"@babel/core": "^7.12.3",
"@babel/parser": "^7.14.7",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.2.0",
"semver": "^6.3.0"
}
}
}
},
"babel-plugin-jest-hoist": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz",
"integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==",
"requires": {
"@babel/template": "^7.3.3",
"@babel/types": "^7.3.3",
"@types/babel__core": "^7.0.0",
"@types/babel__traverse": "^7.0.6"
}
},
"babel-plugin-macros": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"requires": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
}
},
"babel-plugin-named-asset-import": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz",
"integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==",
"requires": {}
},
"babel-plugin-polyfill-corejs2": {
"version": "0.4.12",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz",
"integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==",
"requires": {
"@babel/compat-data": "^7.22.6",
"@babel/helper-define-polyfill-provider": "^0.6.3",
"semver": "^6.3.1"
}
},
"babel-plugin-polyfill-corejs3": {
"version": "0.10.6",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz",
"integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==",
"requires": {
"@babel/helper-define-polyfill-provider": "^0.6.2",
"core-js-compat": "^3.38.0"
}
},
"babel-plugin-polyfill-regenerator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz",
"integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==",
"requires": {
"@babel/helper-define-polyfill-provider": "^0.6.3"
}
},
"babel-plugin-transform-react-remove-prop-types": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz",
"integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="
},
"babel-preset-current-node-syntax": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz",
"integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==",
"requires": {
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-top-level-await": "^7.14.5"
}
},
"babel-preset-jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz",
"integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==",
"requires": {
"babel-plugin-jest-hoist": "^27.5.1",
"babel-preset-current-node-syntax": "^1.0.0"
}
},
"babel-preset-react-app": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz",
"integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==",
"requires": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-flow-strip-types": "^7.16.0",
"@babel/plugin-transform-react-display-name": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "^7.16.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24"
}
},
"balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"dev": true
},
"batch": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
"integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
"dev": true,
"requires": {
"tweetnacl": "^0.14.3"
}
},
"bfj": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz",
"integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==",
"requires": {
"bluebird": "^3.7.2",
"check-types": "^11.2.3",
"hoopy": "^0.1.4",
"jsonpath": "^1.1.1",
"tryer": "^1.0.1"
},
"dependencies": {
"bluebird": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
}
}
},
"big.js": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
},
"binary-extensions": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="
},
"blob-util": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz",
"integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==",
"dev": true
},
"bluebird": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz",
"integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==",
"dev": true
},
"body-parser": {
"version": "1.20.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
"requires": {
"bytes": "3.1.2",
"content-type": "~1.0.5",
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"on-finished": "2.4.1",
"qs": "6.13.0",
"raw-body": "2.5.2",
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
"dependencies": {
"bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"qs": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
"requires": {
"side-channel": "^1.0.6"
}
}
}
},
"bonjour-service": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz",
"integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==",
"requires": {
"fast-deep-equal": "^3.1.3",
"multicast-dns": "^7.2.5"
}
},
"boolbase": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
"boxen": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.0.tgz",
"integrity": "sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==",
"dev": true,
"requires": {
"ansi-align": "^3.0.1",
"camelcase": "^7.0.0",
"chalk": "^5.0.1",
"cli-boxes": "^3.0.0",
"string-width": "^5.1.2",
"type-fest": "^2.13.0",
"widest-line": "^4.0.1",
"wrap-ansi": "^8.0.1"
},
"dependencies": {
"ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true
},
"ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"dev": true
},
"camelcase": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
"integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==",
"dev": true
},
"chalk": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
"dev": true
},
"string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"requires": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
}
},
"strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"requires": {
"ansi-regex": "^6.0.1"
}
},
"type-fest": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"dev": true
},
"wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dev": true,
"requires": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
"strip-ansi": "^7.0.1"
}
}
}
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"braces": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"requires": {
"fill-range": "^7.1.1"
}
},
"browser-process-hrtime": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"browserslist": {
"version": "4.24.3",
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
"integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
"requires": {
"caniuse-lite": "^1.0.30001688",
"electron-to-chromium": "^1.5.73",
"node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.1"
}
},
"bs-fetch": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/bs-fetch/-/bs-fetch-0.6.2.tgz",
"integrity": "sha512-VXEjp8kY3vHPckaoy3d96Bx0KYjJAPLNISBwfpwMN26K6DtuZYwI2HKhx7zeHBajz1bRArfx7O8OOLcdtujMvg=="
},
"bser": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
"requires": {
"node-int64": "^0.4.0"
}
},
"buffer": {
"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.3.1",
"ieee754": "^1.1.13"
}
},
"buffer-crc32": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
"dev": true
},
"buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
},
"builtin-modules": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz",
"integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw=="
},
"bytes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
"integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="
},
"cachedir": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz",
"integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==",
"dev": true
},
"caching-transform": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz",
"integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==",
"dev": true,
"requires": {
"hasha": "^5.0.0",
"make-dir": "^3.0.0",
"package-hash": "^4.0.0",
"write-file-atomic": "^3.0.0"
}
},
"call-bind": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"requires": {
"call-bind-apply-helpers": "^1.0.0",
"es-define-property": "^1.0.0",
"get-intrinsic": "^1.2.4",
"set-function-length": "^1.2.2"
}
},
"call-bind-apply-helpers": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
"integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
"requires": {
"es-errors": "^1.3.0",
"function-bind": "^1.1.2"
}
},
"call-bound": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
"requires": {
"call-bind-apply-helpers": "^1.0.1",
"get-intrinsic": "^1.2.6"
}
},
"callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
},
"camel-case": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
"integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
"requires": {
"pascal-case": "^3.1.2",
"tslib": "^2.0.3"
}
},
"camelcase": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
},
"camelcase-css": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
},
"caniuse-api": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
"requires": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.0",
"lodash.memoize": "^4.1.2",
"lodash.uniq": "^4.5.0"
}
},
"caniuse-lite": {
"version": "1.0.30001689",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001689.tgz",
"integrity": "sha512-CmeR2VBycfa+5/jOfnp/NpWPGd06nf1XYiefUvhXFfZE4GkRc9jv+eGPS4nT558WS/8lYCzV8SlANCIPvbWP1g=="
},
"canvas": {
"version": "2.11.2",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.11.2.tgz",
"integrity": "sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==",
"optional": true,
"requires": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.17.0",
"simple-get": "^3.0.3"
}
},
"case-sensitive-paths-webpack-plugin": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
"integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw=="
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
"dev": true
},
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"chalk-template": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-0.4.0.tgz",
"integrity": "sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==",
"dev": true,
"requires": {
"chalk": "^4.1.2"
}
},
"char-regex": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
"integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="
},
"character-entities": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
"integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw=="
},
"character-entities-legacy": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
"integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA=="
},
"character-reference-invalid": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
"integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg=="
},
"check-more-types": {
"version": "2.24.0",
"resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz",
"integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==",
"dev": true
},
"check-types": {
"version": "11.2.3",
"resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz",
"integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg=="
},
"chokidar": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
"requires": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
"fsevents": "~2.3.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
},
"dependencies": {
"glob-parent": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"requires": {
"is-glob": "^4.0.1"
}
}
}
},
"chownr": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
"optional": true
},
"chrome-trace-event": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
"integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ=="
},
"ci-info": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz",
"integrity": "sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==",
"dev": true
},
"cjs-module-lexer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz",
"integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA=="
},
"clean-css": {
"version": "5.3.3",
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
"integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
"requires": {
"source-map": "~0.6.0"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"clean-stack": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
"dev": true
},
"cli-boxes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
"integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
"dev": true
},
"cli-cursor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
"dev": true,
"requires": {
"restore-cursor": "^3.1.0"
}
},
"cli-table3": {
"version": "0.6.5",
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
"integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
"dev": true,
"requires": {
"@colors/colors": "1.5.0",
"string-width": "^4.2.0"
}
},
"cli-truncate": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz",
"integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
"dev": true,
"requires": {
"slice-ansi": "^3.0.0",
"string-width": "^4.2.0"
}
},
"client-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
},
"clipboardy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz",
"integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==",
"dev": true,
"requires": {
"arch": "^2.2.0",
"execa": "^5.1.1",
"is-wsl": "^2.2.0"
},
"dependencies": {
"execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dev": true,
"requires": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
}
},
"get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"dev": true
},
"human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"dev": true
}
}
},
"cliui": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
"integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
"dev": true,
"requires": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^6.2.0"
},
"dependencies": {
"wrap-ansi": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
}
}
}
},
"clone-deep": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
"dev": true,
"requires": {
"is-plain-object": "^2.0.4",
"kind-of": "^6.0.2",
"shallow-clone": "^3.0.0"
}
},
"clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="
},
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="
},
"coa": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
"integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
"requires": {
"@types/q": "^1.5.1",
"chalk": "^2.4.1",
"q": "^1.1.2"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"collect-v8-coverage": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
"integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
},
"color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"requires": {
"color-name": "~1.1.4"
}
},
"color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"color-support": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
"integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
"optional": true
},
"colord": {
"version": "2.9.3",
"resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
"integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw=="
},
"colorette": {
"version": "2.0.20",
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
},
"combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"requires": {
"delayed-stream": "~1.0.0"
}
},
"comma-separated-tokens": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
"integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw=="
},
"commander": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
"dev": true
},
"common-path-prefix": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
"integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
"dev": true,
"peer": true
},
"common-tags": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz",
"integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA=="
},
"commondir": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
"integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
},
"compressible": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
"requires": {
"mime-db": ">= 1.43.0 < 2"
}
},
"compression": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
"requires": {
"accepts": "~1.3.5",
"bytes": "3.0.0",
"compressible": "~2.0.16",
"debug": "2.6.9",
"on-headers": "~1.0.2",
"safe-buffer": "5.1.2",
"vary": "~1.1.2"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
}
}
},
"concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
"confusing-browser-globals": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
"integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA=="
},
"connect-history-api-fallback": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz",
"integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA=="
},
"console-control-strings": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
"integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
"optional": true
},
"content-disposition": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
"integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==",
"dev": true
},
"content-type": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
},
"convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
},
"cookie": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w=="
},
"cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
},
"copy-webpack-plugin": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz",
"integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==",
"dev": true,
"requires": {
"fast-glob": "^3.2.7",
"glob-parent": "^6.0.1",
"globby": "^11.0.3",
"normalize-path": "^3.0.0",
"schema-utils": "^3.1.1",
"serialize-javascript": "^6.0.0"
},
"dependencies": {
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
}
}
},
"core-js": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz",
"integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g=="
},
"core-js-compat": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz",
"integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==",
"requires": {
"browserslist": "^4.24.2"
}
},
"core-js-pure": {
"version": "3.39.0",
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz",
"integrity": "sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg=="
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
},
"cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
}
},
"cross-env": {
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
"integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
"dev": true,
"requires": {
"cross-spawn": "^7.0.1"
}
},
"cross-spawn": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"requires": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
}
},
"crypto-random-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
"integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
},
"css-blank-pseudo": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz",
"integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==",
"dev": true,
"requires": {
"postcss": "^7.0.5"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"css-box-model": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz",
"integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==",
"requires": {
"tiny-invariant": "^1.0.6"
}
},
"css-declaration-sorter": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz",
"integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==",
"dev": true,
"requires": {}
},
"css-has-pseudo": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz",
"integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==",
"dev": true,
"requires": {
"postcss": "^7.0.6",
"postcss-selector-parser": "^5.0.0-rc.4"
},
"dependencies": {
"cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true
},
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"requires": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"css-loader": {
"version": "5.2.7",
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz",
"integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==",
"dev": true,
"requires": {
"icss-utils": "^5.1.0",
"loader-utils": "^2.0.0",
"postcss": "^8.2.15",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.1.0",
"schema-utils": "^3.0.0",
"semver": "^7.3.5"
},
"dependencies": {
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true
}
}
},
"css-minimizer-webpack-plugin": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz",
"integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==",
"dev": true,
"requires": {
"@jridgewell/trace-mapping": "^0.3.18",
"cssnano": "^6.0.1",
"jest-worker": "^29.4.3",
"postcss": "^8.4.24",
"schema-utils": "^4.0.1",
"serialize-javascript": "^6.0.1"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"css-prefers-color-scheme": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz",
"integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==",
"dev": true,
"requires": {
"postcss": "^7.0.5"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"css-select": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
"requires": {
"boolbase": "^1.0.0",
"css-what": "^6.0.1",
"domhandler": "^4.3.1",
"domutils": "^2.8.0",
"nth-check": "^2.0.1"
}
},
"css-select-base-adapter": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
"integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w=="
},
"css-tree": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
"dev": true,
"requires": {
"mdn-data": "2.0.30",
"source-map-js": "^1.0.1"
}
},
"css-what": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
},
"cssdb": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz",
"integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==",
"dev": true
},
"cssesc": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
},
"cssnano": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz",
"integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==",
"dev": true,
"requires": {
"cssnano-preset-default": "^6.1.2",
"lilconfig": "^3.1.1"
}
},
"cssnano-preset-default": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz",
"integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"css-declaration-sorter": "^7.2.0",
"cssnano-utils": "^4.0.2",
"postcss-calc": "^9.0.1",
"postcss-colormin": "^6.1.0",
"postcss-convert-values": "^6.1.0",
"postcss-discard-comments": "^6.0.2",
"postcss-discard-duplicates": "^6.0.3",
"postcss-discard-empty": "^6.0.3",
"postcss-discard-overridden": "^6.0.2",
"postcss-merge-longhand": "^6.0.5",
"postcss-merge-rules": "^6.1.1",
"postcss-minify-font-values": "^6.1.0",
"postcss-minify-gradients": "^6.0.3",
"postcss-minify-params": "^6.1.0",
"postcss-minify-selectors": "^6.0.4",
"postcss-normalize-charset": "^6.0.2",
"postcss-normalize-display-values": "^6.0.2",
"postcss-normalize-positions": "^6.0.2",
"postcss-normalize-repeat-style": "^6.0.2",
"postcss-normalize-string": "^6.0.2",
"postcss-normalize-timing-functions": "^6.0.2",
"postcss-normalize-unicode": "^6.1.0",
"postcss-normalize-url": "^6.0.2",
"postcss-normalize-whitespace": "^6.0.2",
"postcss-ordered-values": "^6.0.2",
"postcss-reduce-initial": "^6.1.0",
"postcss-reduce-transforms": "^6.0.2",
"postcss-svgo": "^6.0.3",
"postcss-unique-selectors": "^6.0.4"
}
},
"cssnano-utils": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz",
"integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==",
"dev": true,
"requires": {}
},
"csso": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
"dev": true,
"requires": {
"css-tree": "~2.2.0"
},
"dependencies": {
"css-tree": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
"dev": true,
"requires": {
"mdn-data": "2.0.28",
"source-map-js": "^1.0.1"
}
},
"mdn-data": {
"version": "2.0.28",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
"dev": true
}
}
},
"cssom": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
},
"cssstyle": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
"integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
"requires": {
"cssom": "~0.3.6"
},
"dependencies": {
"cssom": {
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
}
}
},
"csstype": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
},
"cypress": {
"version": "13.16.1",
"resolved": "https://registry.npmjs.org/cypress/-/cypress-13.16.1.tgz",
"integrity": "sha512-17FtCaz0cx7ssWYKXzGB0Vub8xHwpVPr+iPt2fHhLMDhVAPVrplD+rTQsZUsfb19LVBn5iwkEUFjQ1yVVJXsLA==",
"dev": true,
"requires": {
"@cypress/request": "^3.0.6",
"@cypress/xvfb": "^1.2.4",
"@types/sinonjs__fake-timers": "8.1.1",
"@types/sizzle": "^2.3.2",
"arch": "^2.2.0",
"blob-util": "^2.0.2",
"bluebird": "^3.7.2",
"buffer": "^5.7.1",
"cachedir": "^2.3.0",
"chalk": "^4.1.0",
"check-more-types": "^2.24.0",
"ci-info": "^4.0.0",
"cli-cursor": "^3.1.0",
"cli-table3": "~0.6.1",
"commander": "^6.2.1",
"common-tags": "^1.8.0",
"dayjs": "^1.10.4",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"eventemitter2": "6.4.7",
"execa": "4.1.0",
"executable": "^4.1.1",
"extract-zip": "2.0.1",
"figures": "^3.2.0",
"fs-extra": "^9.1.0",
"getos": "^3.2.1",
"is-installed-globally": "~0.4.0",
"lazy-ass": "^1.6.0",
"listr2": "^3.8.3",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
"minimist": "^1.2.8",
"ospath": "^1.2.2",
"pretty-bytes": "^5.6.0",
"process": "^0.11.10",
"proxy-from-env": "1.0.0",
"request-progress": "^3.0.0",
"semver": "^7.5.3",
"supports-color": "^8.1.1",
"tmp": "~0.2.3",
"tree-kill": "1.2.2",
"untildify": "^4.0.0",
"yauzl": "^2.10.0"
},
"dependencies": {
"bluebird": {
"version": "3.7.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
"dev": true
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"damerau-levenshtein": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
},
"dashdash": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
"dev": true,
"requires": {
"assert-plus": "^1.0.0"
}
},
"data-urls": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
"requires": {
"abab": "^2.0.3",
"whatwg-mimetype": "^2.3.0",
"whatwg-url": "^8.0.0"
},
"dependencies": {
"tr46": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
"requires": {
"punycode": "^2.1.1"
}
},
"whatwg-url": {
"version": "8.7.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
"requires": {
"lodash": "^4.7.0",
"tr46": "^2.1.0",
"webidl-conversions": "^6.1.0"
}
}
}
},
"data-view-buffer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz",
"integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==",
"requires": {
"call-bind": "^1.0.6",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
}
},
"data-view-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz",
"integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==",
"requires": {
"call-bind": "^1.0.7",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
}
},
"data-view-byte-offset": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz",
"integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==",
"requires": {
"call-bind": "^1.0.6",
"es-errors": "^1.3.0",
"is-data-view": "^1.0.1"
}
},
"dayjs": {
"version": "1.11.13",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz",
"integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
},
"debug": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"requires": {
"ms": "^2.1.3"
}
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
"dev": true
},
"decimal.js": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
"integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="
},
"decompress-response": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz",
"integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==",
"optional": true,
"requires": {
"mimic-response": "^2.0.0"
}
},
"dedent": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
"integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA=="
},
"deep-extend": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"dev": true
},
"deep-is": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
},
"deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="
},
"default-gateway": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz",
"integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==",
"requires": {
"execa": "^5.0.0"
},
"dependencies": {
"execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"requires": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
}
},
"get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
},
"human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
}
}
},
"default-require-extensions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz",
"integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==",
"dev": true,
"requires": {
"strip-bom": "^4.0.0"
}
},
"define-data-property": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
"integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
"requires": {
"es-define-property": "^1.0.0",
"es-errors": "^1.3.0",
"gopd": "^1.0.1"
}
},
"define-lazy-prop": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
"integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="
},
"define-properties": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
"integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"requires": {
"define-data-property": "^1.0.1",
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
}
},
"delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
},
"delegates": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
"optional": true
},
"depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
},
"dequal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="
},
"destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
},
"detect-libc": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
"optional": true
},
"detect-newline": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
"integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="
},
"detect-node": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="
},
"detect-port-alt": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
"integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
"requires": {
"address": "^1.0.1",
"debug": "^2.6.0"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
}
}
},
"didyoumean": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
},
"diff-sequences": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz",
"integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="
},
"dir-glob": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"requires": {
"path-type": "^4.0.0"
}
},
"dlv": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
},
"dns-packet": {
"version": "5.6.1",
"resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz",
"integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==",
"requires": {
"@leichtgewicht/ip-codec": "^2.0.1"
}
},
"doctrine": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"requires": {
"esutils": "^2.0.2"
}
},
"dom-converter": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
"integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"requires": {
"utila": "~0.4"
}
},
"dom-serializer": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
"entities": "^2.0.0"
}
},
"domelementtype": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
},
"domexception": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
"requires": {
"webidl-conversions": "^5.0.0"
},
"dependencies": {
"webidl-conversions": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
}
}
},
"domhandler": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
"requires": {
"domelementtype": "^2.2.0"
}
},
"domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"requires": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
"domhandler": "^4.2.0"
}
},
"dot-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
"integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"dotenv": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q=="
},
"dotenv-expand": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
"integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA=="
},
"dunder-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
"requires": {
"call-bind-apply-helpers": "^1.0.1",
"es-errors": "^1.3.0",
"gopd": "^1.2.0"
}
},
"duplexer": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
"integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="
},
"eastasianwidth": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
"ecc-jsbn": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
"integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
"dev": true,
"requires": {
"jsbn": "~0.1.0",
"safer-buffer": "^2.1.0"
}
},
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
},
"ejs": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
"integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
"requires": {
"jake": "^10.8.5"
}
},
"electron-to-chromium": {
"version": "1.5.74",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.74.tgz",
"integrity": "sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw=="
},
"emittery": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
"integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg=="
},
"emoji-regex": {
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
"emojis-list": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
},
"encodeurl": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="
},
"end-of-stream": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"dev": true,
"requires": {
"once": "^1.4.0"
}
},
"enhanced-resolve": {
"version": "5.17.1",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz",
"integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==",
"requires": {
"graceful-fs": "^4.2.4",
"tapable": "^2.2.0"
}
},
"enquirer": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz",
"integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==",
"dev": true,
"requires": {
"ansi-colors": "^4.1.1",
"strip-ansi": "^6.0.1"
}
},
"entities": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
},
"envinfo": {
"version": "7.14.0",
"resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz",
"integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==",
"dev": true
},
"error-ex": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"requires": {
"is-arrayish": "^0.2.1"
}
},
"error-stack-parser": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
"integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
"requires": {
"stackframe": "^1.3.4"
}
},
"es-abstract": {
"version": "1.23.6",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.6.tgz",
"integrity": "sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==",
"requires": {
"array-buffer-byte-length": "^1.0.1",
"arraybuffer.prototype.slice": "^1.0.4",
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.8",
"call-bound": "^1.0.3",
"data-view-buffer": "^1.0.1",
"data-view-byte-length": "^1.0.1",
"data-view-byte-offset": "^1.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"es-set-tostringtag": "^2.0.3",
"es-to-primitive": "^1.3.0",
"function.prototype.name": "^1.1.7",
"get-intrinsic": "^1.2.6",
"get-symbol-description": "^1.0.2",
"globalthis": "^1.0.4",
"gopd": "^1.2.0",
"has-property-descriptors": "^1.0.2",
"has-proto": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"internal-slot": "^1.1.0",
"is-array-buffer": "^3.0.4",
"is-callable": "^1.2.7",
"is-data-view": "^1.0.2",
"is-negative-zero": "^2.0.3",
"is-regex": "^1.2.1",
"is-shared-array-buffer": "^1.0.3",
"is-string": "^1.1.1",
"is-typed-array": "^1.1.13",
"is-weakref": "^1.1.0",
"math-intrinsics": "^1.0.0",
"object-inspect": "^1.13.3",
"object-keys": "^1.1.1",
"object.assign": "^4.1.5",
"regexp.prototype.flags": "^1.5.3",
"safe-array-concat": "^1.1.3",
"safe-regex-test": "^1.1.0",
"string.prototype.trim": "^1.2.10",
"string.prototype.trimend": "^1.0.9",
"string.prototype.trimstart": "^1.0.8",
"typed-array-buffer": "^1.0.2",
"typed-array-byte-length": "^1.0.1",
"typed-array-byte-offset": "^1.0.3",
"typed-array-length": "^1.0.7",
"unbox-primitive": "^1.0.2",
"which-typed-array": "^1.1.16"
}
},
"es-array-method-boxes-properly": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
"integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="
},
"es-define-property": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
},
"es-errors": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
},
"es-iterator-helpers": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.0.tgz",
"integrity": "sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3",
"es-errors": "^1.3.0",
"es-set-tostringtag": "^2.0.3",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
"globalthis": "^1.0.4",
"gopd": "^1.0.1",
"has-property-descriptors": "^1.0.2",
"has-proto": "^1.0.3",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.7",
"iterator.prototype": "^1.1.3",
"safe-array-concat": "^1.1.2"
}
},
"es-module-lexer": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
"integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw=="
},
"es-object-atoms": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
"integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
"requires": {
"es-errors": "^1.3.0"
}
},
"es-set-tostringtag": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz",
"integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==",
"requires": {
"get-intrinsic": "^1.2.4",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.1"
}
},
"es-shim-unscopables": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
"integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
"requires": {
"hasown": "^2.0.0"
}
},
"es-to-primitive": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
"integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
"requires": {
"is-callable": "^1.2.7",
"is-date-object": "^1.0.5",
"is-symbol": "^1.0.4"
}
},
"es6-error": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
"integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
"dev": true
},
"esbuild": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
"integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
"requires": {
"@esbuild/android-arm": "0.18.20",
"@esbuild/android-arm64": "0.18.20",
"@esbuild/android-x64": "0.18.20",
"@esbuild/darwin-arm64": "0.18.20",
"@esbuild/darwin-x64": "0.18.20",
"@esbuild/freebsd-arm64": "0.18.20",
"@esbuild/freebsd-x64": "0.18.20",
"@esbuild/linux-arm": "0.18.20",
"@esbuild/linux-arm64": "0.18.20",
"@esbuild/linux-ia32": "0.18.20",
"@esbuild/linux-loong64": "0.18.20",
"@esbuild/linux-mips64el": "0.18.20",
"@esbuild/linux-ppc64": "0.18.20",
"@esbuild/linux-riscv64": "0.18.20",
"@esbuild/linux-s390x": "0.18.20",
"@esbuild/linux-x64": "0.18.20",
"@esbuild/netbsd-x64": "0.18.20",
"@esbuild/openbsd-x64": "0.18.20",
"@esbuild/sunos-x64": "0.18.20",
"@esbuild/win32-arm64": "0.18.20",
"@esbuild/win32-ia32": "0.18.20",
"@esbuild/win32-x64": "0.18.20"
}
},
"esbuild-plugin-inline-image": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/esbuild-plugin-inline-image/-/esbuild-plugin-inline-image-0.0.9.tgz",
"integrity": "sha512-pw3ZgN2phh32Z7BpKrhRDtmI+iVCl+Gc0BLOT9croXg1MnMjRuN7aXhIQirhLeK39erkIwfFlhy6xieroBGc1Q=="
},
"esbuild-postcss": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/esbuild-postcss/-/esbuild-postcss-0.0.4.tgz",
"integrity": "sha512-CKYibp+aCswskE+gBPnGZ0b9YyuY0n9w2dxyMaoLYEvGTwmjkRj5SV8l1zGJpw8KylqmcMTK0Gr349RnOLd+8A==",
"requires": {
"postcss-load-config": "^3.1.0"
}
},
"escalade": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="
},
"escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
},
"escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
},
"escodegen": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
"requires": {
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
"esutils": "^2.0.2",
"source-map": "~0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"optional": true
}
}
},
"eslint": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
"integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
"requires": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
"@eslint/eslintrc": "^2.1.4",
"@eslint/js": "8.57.1",
"@humanwhocodes/config-array": "^0.13.0",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
"@ungap/structured-clone": "^1.2.0",
"ajv": "^6.12.4",
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"debug": "^4.3.2",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"eslint-scope": "^7.2.2",
"eslint-visitor-keys": "^3.4.3",
"espree": "^9.6.1",
"esquery": "^1.4.2",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
"file-entry-cache": "^6.0.1",
"find-up": "^5.0.0",
"glob-parent": "^6.0.2",
"globals": "^13.19.0",
"graphemer": "^1.4.0",
"ignore": "^5.2.0",
"imurmurhash": "^0.1.4",
"is-glob": "^4.0.0",
"is-path-inside": "^3.0.3",
"js-yaml": "^4.1.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.4.1",
"lodash.merge": "^4.6.2",
"minimatch": "^3.1.2",
"natural-compare": "^1.4.0",
"optionator": "^0.9.3",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0"
},
"dependencies": {
"@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"requires": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
}
},
"globals": {
"version": "13.24.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
"integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"requires": {
"type-fest": "^0.20.2"
}
},
"type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
}
}
},
"eslint-config-react-app": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz",
"integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==",
"requires": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@rushstack/eslint-patch": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-preset-react-app": "^10.0.1",
"confusing-browser-globals": "^1.0.11",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1"
}
},
"eslint-import-resolver-node": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
"integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"requires": {
"debug": "^3.2.7",
"is-core-module": "^2.13.0",
"resolve": "^1.22.4"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"eslint-module-utils": {
"version": "2.12.0",
"resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
"integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
"requires": {
"debug": "^3.2.7"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"eslint-plugin-flowtype": {
"version": "8.0.3",
"resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz",
"integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==",
"requires": {
"lodash": "^4.17.21",
"string-natural-compare": "^3.0.1"
}
},
"eslint-plugin-import": {
"version": "2.31.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
"integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
"requires": {
"@rtsao/scc": "^1.1.0",
"array-includes": "^3.1.8",
"array.prototype.findlastindex": "^1.2.5",
"array.prototype.flat": "^1.3.2",
"array.prototype.flatmap": "^1.3.2",
"debug": "^3.2.7",
"doctrine": "^2.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-module-utils": "^2.12.0",
"hasown": "^2.0.2",
"is-core-module": "^2.15.1",
"is-glob": "^4.0.3",
"minimatch": "^3.1.2",
"object.fromentries": "^2.0.8",
"object.groupby": "^1.0.3",
"object.values": "^1.2.0",
"semver": "^6.3.1",
"string.prototype.trimend": "^1.0.8",
"tsconfig-paths": "^3.15.0"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
},
"doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"requires": {
"esutils": "^2.0.2"
}
}
}
},
"eslint-plugin-jest": {
"version": "25.7.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz",
"integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==",
"requires": {
"@typescript-eslint/experimental-utils": "^5.0.0"
}
},
"eslint-plugin-jsx-a11y": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
"integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
"requires": {
"aria-query": "^5.3.2",
"array-includes": "^3.1.8",
"array.prototype.flatmap": "^1.3.2",
"ast-types-flow": "^0.0.8",
"axe-core": "^4.10.0",
"axobject-query": "^4.1.0",
"damerau-levenshtein": "^1.0.8",
"emoji-regex": "^9.2.2",
"hasown": "^2.0.2",
"jsx-ast-utils": "^3.3.5",
"language-tags": "^1.0.9",
"minimatch": "^3.1.2",
"object.fromentries": "^2.0.8",
"safe-regex-test": "^1.0.3",
"string.prototype.includes": "^2.0.1"
}
},
"eslint-plugin-react": {
"version": "7.37.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz",
"integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==",
"requires": {
"array-includes": "^3.1.8",
"array.prototype.findlast": "^1.2.5",
"array.prototype.flatmap": "^1.3.2",
"array.prototype.tosorted": "^1.1.4",
"doctrine": "^2.1.0",
"es-iterator-helpers": "^1.1.0",
"estraverse": "^5.3.0",
"hasown": "^2.0.2",
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
"minimatch": "^3.1.2",
"object.entries": "^1.1.8",
"object.fromentries": "^2.0.8",
"object.values": "^1.2.0",
"prop-types": "^15.8.1",
"resolve": "^2.0.0-next.5",
"semver": "^6.3.1",
"string.prototype.matchall": "^4.0.11",
"string.prototype.repeat": "^1.0.0"
},
"dependencies": {
"doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"requires": {
"esutils": "^2.0.2"
}
},
"resolve": {
"version": "2.0.0-next.5",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
"integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
"requires": {
"is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
}
}
},
"eslint-plugin-react-hooks": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz",
"integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==",
"requires": {}
},
"eslint-plugin-testing-library": {
"version": "5.11.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz",
"integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==",
"requires": {
"@typescript-eslint/utils": "^5.58.0"
}
},
"eslint-scope": {
"version": "7.2.2",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
"integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
"requires": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
}
},
"eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="
},
"eslint-webpack-plugin": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz",
"integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==",
"requires": {
"@types/eslint": "^7.29.0 || ^8.4.1",
"jest-worker": "^28.0.2",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
"schema-utils": "^4.0.0"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"jest-worker": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz",
"integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"espree": {
"version": "9.6.1",
"resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
"integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
"requires": {
"acorn": "^8.9.0",
"acorn-jsx": "^5.3.2",
"eslint-visitor-keys": "^3.4.1"
}
},
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
},
"esquery": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
"integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
"requires": {
"estraverse": "^5.1.0"
}
},
"esrecurse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"requires": {
"estraverse": "^5.2.0"
}
},
"estraverse": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
},
"estree-walker": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
"integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg=="
},
"esutils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
},
"etag": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
},
"eventemitter2": {
"version": "6.4.7",
"resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz",
"integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==",
"dev": true
},
"eventemitter3": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
},
"events": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
},
"execa": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
"integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
"dev": true,
"requires": {
"cross-spawn": "^7.0.0",
"get-stream": "^5.0.0",
"human-signals": "^1.1.1",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.0",
"onetime": "^5.1.0",
"signal-exit": "^3.0.2",
"strip-final-newline": "^2.0.0"
}
},
"executable": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz",
"integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
"dev": true,
"requires": {
"pify": "^2.2.0"
}
},
"exit": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
"integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ=="
},
"expect": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz",
"integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==",
"requires": {
"@jest/types": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"express": {
"version": "4.21.2",
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"requires": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
"body-parser": "1.20.3",
"content-disposition": "0.5.4",
"content-type": "~1.0.4",
"cookie": "0.7.1",
"cookie-signature": "1.0.6",
"debug": "2.6.9",
"depd": "2.0.0",
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"etag": "~1.8.1",
"finalhandler": "1.3.1",
"fresh": "0.5.2",
"http-errors": "2.0.0",
"merge-descriptors": "1.0.3",
"methods": "~1.1.2",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
"path-to-regexp": "0.1.12",
"proxy-addr": "~2.0.7",
"qs": "6.13.0",
"range-parser": "~1.2.1",
"safe-buffer": "5.2.1",
"send": "0.19.0",
"serve-static": "1.16.2",
"setprototypeof": "1.2.0",
"statuses": "2.0.1",
"type-is": "~1.6.18",
"utils-merge": "1.0.1",
"vary": "~1.1.2"
},
"dependencies": {
"content-disposition": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"requires": {
"safe-buffer": "5.2.1"
}
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"path-to-regexp": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
},
"qs": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
"requires": {
"side-channel": "^1.0.6"
}
},
"range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
}
}
},
"extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
"dev": true
},
"extract-zip": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
"dev": true,
"requires": {
"@types/yauzl": "^2.9.1",
"debug": "^4.1.1",
"get-stream": "^5.1.0",
"yauzl": "^2.10.0"
}
},
"extsprintf": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
"dev": true
},
"fast-deep-equal": {
"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=="
},
"fast-glob": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
"integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
"requires": {
"@nodelib/fs.stat": "^2.0.2",
"@nodelib/fs.walk": "^1.2.3",
"glob-parent": "^5.1.2",
"merge2": "^1.3.0",
"micromatch": "^4.0.4"
},
"dependencies": {
"glob-parent": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"requires": {
"is-glob": "^4.0.1"
}
}
}
},
"fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
},
"fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
},
"fast-uri": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz",
"integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw=="
},
"fastest-levenshtein": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
"integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
"dev": true
},
"fastq": {
"version": "1.17.1",
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
"integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
"requires": {
"reusify": "^1.0.4"
}
},
"fault": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
"integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
"requires": {
"format": "^0.2.0"
}
},
"faye-websocket": {
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz",
"integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
"requires": {
"websocket-driver": ">=0.5.1"
}
},
"fb-watchman": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
"integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
"requires": {
"bser": "2.1.1"
}
},
"fd-slicer": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
"dev": true,
"requires": {
"pend": "~1.2.0"
}
},
"figures": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
"integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
"dev": true,
"requires": {
"escape-string-regexp": "^1.0.5"
},
"dependencies": {
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true
}
}
},
"file-entry-cache": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"requires": {
"flat-cache": "^3.0.4"
}
},
"file-loader": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
"integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
"requires": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"dependencies": {
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
}
}
},
"filelist": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
"integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
"requires": {
"minimatch": "^5.0.1"
},
"dependencies": {
"brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"requires": {
"balanced-match": "^1.0.0"
}
},
"minimatch": {
"version": "5.1.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
"requires": {
"brace-expansion": "^2.0.1"
}
}
}
},
"filesize": {
"version": "8.0.7",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz",
"integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="
},
"fill-range": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"requires": {
"to-regex-range": "^5.0.1"
}
},
"final-form": {
"version": "4.20.10",
"resolved": "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz",
"integrity": "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==",
"requires": {
"@babel/runtime": "^7.10.0"
}
},
"finalhandler": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
"requires": {
"debug": "2.6.9",
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"on-finished": "2.4.1",
"parseurl": "~1.3.3",
"statuses": "2.0.1",
"unpipe": "~1.0.0"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
}
}
},
"find-cache-dir": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
"integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
"dev": true,
"peer": true,
"requires": {
"common-path-prefix": "^3.0.0",
"pkg-dir": "^7.0.0"
}
},
"find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"flat": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
"integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
"dev": true
},
"flat-cache": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
"integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
"requires": {
"flatted": "^3.2.9",
"keyv": "^4.5.3",
"rimraf": "^3.0.2"
}
},
"flatted": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
"integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA=="
},
"flatten": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz",
"integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==",
"dev": true
},
"follow-redirects": {
"version": "1.15.9",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="
},
"for-each": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
"integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
"requires": {
"is-callable": "^1.1.3"
}
},
"foreground-child": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
"integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
"dev": true,
"requires": {
"cross-spawn": "^7.0.0",
"signal-exit": "^3.0.2"
}
},
"forever-agent": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
"dev": true
},
"fork-ts-checker-webpack-plugin": {
"version": "6.5.3",
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz",
"integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==",
"requires": {
"@babel/code-frame": "^7.8.3",
"@types/json-schema": "^7.0.5",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"cosmiconfig": "^6.0.0",
"deepmerge": "^4.2.2",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"memfs": "^3.1.2",
"minimatch": "^3.0.4",
"schema-utils": "2.7.0",
"semver": "^7.3.2",
"tapable": "^1.0.0"
},
"dependencies": {
"cosmiconfig": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.1.0",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.7.2"
}
},
"schema-utils": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz",
"integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==",
"requires": {
"@types/json-schema": "^7.0.4",
"ajv": "^6.12.2",
"ajv-keywords": "^3.4.1"
}
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
},
"tapable": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
"integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="
}
}
},
"form-data": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
"integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
"dev": true,
"requires": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
}
},
"format": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
"integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww=="
},
"forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
},
"fraction.js": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="
},
"framer-motion": {
"version": "10.18.0",
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.18.0.tgz",
"integrity": "sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==",
"requires": {
"@emotion/is-prop-valid": "^0.8.2",
"tslib": "^2.4.0"
}
},
"fresh": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
},
"fromentries": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz",
"integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==",
"dev": true
},
"fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
"requires": {
"at-least-node": "^1.0.0",
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
}
},
"fs-minipass": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"optional": true,
"requires": {
"minipass": "^3.0.0"
},
"dependencies": {
"minipass": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
"optional": true,
"requires": {
"yallist": "^4.0.0"
}
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
}
}
},
"fs-monkey": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz",
"integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg=="
},
"fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
"fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"optional": true
},
"function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
},
"function.prototype.name": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.7.tgz",
"integrity": "sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==",
"requires": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"functions-have-names": "^1.2.3",
"hasown": "^2.0.2",
"is-callable": "^1.2.7"
}
},
"functions-have-names": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
"integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="
},
"gauge": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
"integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
"optional": true,
"requires": {
"aproba": "^1.0.3 || ^2.0.0",
"color-support": "^1.1.2",
"console-control-strings": "^1.0.0",
"has-unicode": "^2.0.1",
"object-assign": "^4.1.1",
"signal-exit": "^3.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"wide-align": "^1.1.2"
}
},
"gensync": {
"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=="
},
"get-caller-file": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
},
"get-intrinsic": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
"integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
"requires": {
"call-bind-apply-helpers": "^1.0.1",
"dunder-proto": "^1.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"function-bind": "^1.1.2",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"math-intrinsics": "^1.0.0"
}
},
"get-own-enumerable-property-symbols": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz",
"integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="
},
"get-package-type": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
"integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="
},
"get-stream": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
"dev": true,
"requires": {
"pump": "^3.0.0"
}
},
"get-symbol-description": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz",
"integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==",
"requires": {
"call-bind": "^1.0.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4"
}
},
"getos": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz",
"integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==",
"dev": true,
"requires": {
"async": "^3.2.0"
}
},
"getpass": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
"dev": true,
"requires": {
"assert-plus": "^1.0.0"
}
},
"glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.1.1",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
}
},
"glob-parent": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"requires": {
"is-glob": "^4.0.3"
}
},
"glob-to-regexp": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
},
"global-dirs": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz",
"integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
"dev": true,
"requires": {
"ini": "2.0.0"
}
},
"global-modules": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
"integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
"requires": {
"global-prefix": "^3.0.0"
}
},
"global-prefix": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
"integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
"requires": {
"ini": "^1.3.5",
"kind-of": "^6.0.2",
"which": "^1.3.1"
},
"dependencies": {
"ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
"which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
"requires": {
"isexe": "^2.0.0"
}
}
}
},
"globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="
},
"globalthis": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
"integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
"requires": {
"define-properties": "^1.2.1",
"gopd": "^1.0.1"
}
},
"globby": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"requires": {
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
"fast-glob": "^3.2.9",
"ignore": "^5.2.0",
"merge2": "^1.4.1",
"slash": "^3.0.0"
}
},
"gopd": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
},
"graceful-fs": {
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
},
"graphemer": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="
},
"gzip-size": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz",
"integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==",
"requires": {
"duplexer": "^0.1.2"
}
},
"handle-thing": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="
},
"harmony-reflect": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
"integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="
},
"has-bigints": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
"integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="
},
"has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
},
"has-property-descriptors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
"integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
"requires": {
"es-define-property": "^1.0.0"
}
},
"has-proto": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
"integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
"requires": {
"dunder-proto": "^1.0.0"
}
},
"has-symbols": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
},
"has-tostringtag": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"requires": {
"has-symbols": "^1.0.3"
}
},
"has-unicode": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
"integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
"optional": true
},
"hasha": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz",
"integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==",
"dev": true,
"requires": {
"is-stream": "^2.0.0",
"type-fest": "^0.8.0"
},
"dependencies": {
"type-fest": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true
}
}
},
"hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
"requires": {
"function-bind": "^1.1.2"
}
},
"hast-util-parse-selector": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz",
"integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ=="
},
"hastscript": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
"integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
"requires": {
"@types/hast": "^2.0.0",
"comma-separated-tokens": "^1.0.0",
"hast-util-parse-selector": "^2.0.0",
"property-information": "^5.0.0",
"space-separated-tokens": "^1.0.0"
}
},
"he": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
},
"highcharts": {
"version": "9.3.3",
"resolved": "https://registry.npmjs.org/highcharts/-/highcharts-9.3.3.tgz",
"integrity": "sha512-QeOvm6cifeZYYdTLm4IxZsXcOE9c4xqfs0z0OJJ0z7hhA9WG0rmcVAyuIp5HBl/znjA/ayYHmpYjBYD/9PG4Fg=="
},
"highcharts-react-official": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/highcharts-react-official/-/highcharts-react-official-3.2.1.tgz",
"integrity": "sha512-hyQTX7ezCxl7JqumaWiGsroGWalzh24GedQIgO3vJbkGOZ6ySRAltIYjfxhrq4HszJOySZegotEF7v+haQ75UA==",
"requires": {}
},
"highlight.js": {
"version": "10.7.3",
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
"integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A=="
},
"highlightjs-vue": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/highlightjs-vue/-/highlightjs-vue-1.0.0.tgz",
"integrity": "sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA=="
},
"hoist-non-react-statics": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
"requires": {
"react-is": "^16.7.0"
}
},
"hoopy": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
"integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ=="
},
"hpack.js": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
"integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==",
"requires": {
"inherits": "^2.0.1",
"obuf": "^1.0.0",
"readable-stream": "^2.0.1",
"wbuf": "^1.1.0"
},
"dependencies": {
"isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
},
"readable-stream": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
"isarray": "~1.0.0",
"process-nextick-args": "~2.0.0",
"safe-buffer": "~5.1.1",
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
}
},
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
"safe-buffer": "~5.1.0"
}
}
}
},
"html-encoding-sniffer": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
"requires": {
"whatwg-encoding": "^1.0.5"
}
},
"html-entities": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz",
"integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA=="
},
"html-escaper": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="
},
"html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==",
"requires": {
"camel-case": "^4.1.2",
"clean-css": "^5.2.2",
"commander": "^8.3.0",
"he": "^1.2.0",
"param-case": "^3.0.4",
"relateurl": "^0.2.7",
"terser": "^5.10.0"
},
"dependencies": {
"commander": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="
}
}
},
"html-webpack-plugin": {
"version": "5.6.3",
"resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz",
"integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==",
"requires": {
"@types/html-minifier-terser": "^6.0.0",
"html-minifier-terser": "^6.0.2",
"lodash": "^4.17.21",
"pretty-error": "^4.0.0",
"tapable": "^2.0.0"
}
},
"htmlparser2": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
"integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0",
"domutils": "^2.5.2",
"entities": "^2.0.0"
}
},
"http-deceiver": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
"integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw=="
},
"http-errors": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
"requires": {
"depd": "2.0.0",
"inherits": "2.0.4",
"setprototypeof": "1.2.0",
"statuses": "2.0.1",
"toidentifier": "1.0.1"
}
},
"http-parser-js": {
"version": "0.5.8",
"resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz",
"integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q=="
},
"http-proxy": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
"requires": {
"eventemitter3": "^4.0.0",
"follow-redirects": "^1.0.0",
"requires-port": "^1.0.0"
}
},
"http-proxy-agent": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
"integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
"requires": {
"@tootallnate/once": "1",
"agent-base": "6",
"debug": "4"
}
},
"http-proxy-middleware": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz",
"integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==",
"requires": {
"@types/http-proxy": "^1.17.8",
"http-proxy": "^1.18.1",
"is-glob": "^4.0.1",
"is-plain-obj": "^3.0.0",
"micromatch": "^4.0.2"
}
},
"http-signature": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.4.0.tgz",
"integrity": "sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==",
"dev": true,
"requires": {
"assert-plus": "^1.0.0",
"jsprim": "^2.0.2",
"sshpk": "^1.18.0"
}
},
"https-proxy-agent": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
"requires": {
"agent-base": "6",
"debug": "4"
}
},
"human-signals": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
"integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
"dev": true
},
"husky": {
"version": "8.0.3",
"resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz",
"integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==",
"dev": true
},
"iconv-lite": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"requires": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
}
},
"icss-utils": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
"requires": {}
},
"idb": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz",
"integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ=="
},
"identity-obj-proxy": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
"integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==",
"requires": {
"harmony-reflect": "^1.4.6"
}
},
"ieee754": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"dev": true
},
"ignore": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="
},
"immer": {
"version": "9.0.21",
"resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
"integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA=="
},
"import-fresh": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
"requires": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
}
},
"import-local": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
"integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
"requires": {
"pkg-dir": "^4.2.0",
"resolve-cwd": "^3.0.0"
},
"dependencies": {
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"requires": {
"p-locate": "^4.1.0"
}
},
"p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"requires": {
"p-try": "^2.0.0"
}
},
"p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"requires": {
"p-limit": "^2.2.0"
}
},
"pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"requires": {
"find-up": "^4.0.0"
}
}
}
},
"imurmurhash": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
},
"indent-string": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true
},
"indexes-of": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
"integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==",
"dev": true
},
"inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
"requires": {
"once": "^1.3.0",
"wrappy": "1"
}
},
"inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
"ini": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
"dev": true
},
"internal-slot": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
"integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
"requires": {
"es-errors": "^1.3.0",
"hasown": "^2.0.2",
"side-channel": "^1.1.0"
}
},
"interpret": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
"integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
"dev": true
},
"ipaddr.js": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz",
"integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA=="
},
"is-alphabetical": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
"integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg=="
},
"is-alphanumerical": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
"integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
"requires": {
"is-alphabetical": "^1.0.0",
"is-decimal": "^1.0.0"
}
},
"is-array-buffer": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
"integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
"requires": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.3",
"get-intrinsic": "^1.2.6"
}
},
"is-arrayish": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
},
"is-async-function": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
"integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
"requires": {
"has-tostringtag": "^1.0.0"
}
},
"is-bigint": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
"integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
"requires": {
"has-bigints": "^1.0.2"
}
},
"is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"requires": {
"binary-extensions": "^2.0.0"
}
},
"is-boolean-object": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz",
"integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",
"requires": {
"call-bound": "^1.0.2",
"has-tostringtag": "^1.0.2"
}
},
"is-callable": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
},
"is-core-module": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
"integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==",
"requires": {
"hasown": "^2.0.2"
}
},
"is-data-view": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
"integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
"requires": {
"call-bound": "^1.0.2",
"get-intrinsic": "^1.2.6",
"is-typed-array": "^1.1.13"
}
},
"is-date-object": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
"integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
"requires": {
"call-bound": "^1.0.2",
"has-tostringtag": "^1.0.2"
}
},
"is-decimal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
"integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw=="
},
"is-docker": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="
},
"is-extglob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
},
"is-finalizationregistry": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
"integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
"requires": {
"call-bound": "^1.0.3"
}
},
"is-fullwidth-code-point": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
"is-generator-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="
},
"is-generator-function": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
"integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
"requires": {
"has-tostringtag": "^1.0.0"
}
},
"is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"requires": {
"is-extglob": "^2.1.1"
}
},
"is-hexadecimal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
"integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw=="
},
"is-installed-globally": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
"integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
"dev": true,
"requires": {
"global-dirs": "^3.0.0",
"is-path-inside": "^3.0.2"
}
},
"is-map": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
"integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="
},
"is-module": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
"integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g=="
},
"is-negative-zero": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
"integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="
},
"is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
},
"is-number-object": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
"integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
"requires": {
"call-bound": "^1.0.3",
"has-tostringtag": "^1.0.2"
}
},
"is-obj": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
"integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="
},
"is-path-inside": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
},
"is-plain-obj": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
"integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="
},
"is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
"dev": true,
"requires": {
"isobject": "^3.0.1"
}
},
"is-port-reachable": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/is-port-reachable/-/is-port-reachable-4.0.0.tgz",
"integrity": "sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==",
"dev": true
},
"is-potential-custom-element-name": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
},
"is-regex": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
"integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
"requires": {
"call-bound": "^1.0.2",
"gopd": "^1.2.0",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.2"
}
},
"is-regexp": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
"integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA=="
},
"is-root": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
"integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg=="
},
"is-set": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
"integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="
},
"is-shared-array-buffer": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz",
"integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==",
"requires": {
"call-bind": "^1.0.7"
}
},
"is-stream": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
},
"is-string": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
"integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
"requires": {
"call-bound": "^1.0.3",
"has-tostringtag": "^1.0.2"
}
},
"is-symbol": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
"integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
"requires": {
"call-bound": "^1.0.2",
"has-symbols": "^1.1.0",
"safe-regex-test": "^1.1.0"
}
},
"is-typed-array": {
"version": "1.1.13",
"resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz",
"integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
"requires": {
"which-typed-array": "^1.1.14"
}
},
"is-typedarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
"integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
},
"is-unicode-supported": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
"integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
"dev": true
},
"is-weakmap": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
"integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w=="
},
"is-weakref": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz",
"integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",
"requires": {
"call-bound": "^1.0.2"
}
},
"is-weakset": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
"integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
"requires": {
"call-bound": "^1.0.3",
"get-intrinsic": "^1.2.6"
}
},
"is-windows": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
"dev": true
},
"is-wsl": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"requires": {
"is-docker": "^2.0.0"
}
},
"isarray": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
},
"isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
"integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"dev": true
},
"isstream": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
"integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
"dev": true
},
"istanbul-lib-coverage": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
"integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg=="
},
"istanbul-lib-hook": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz",
"integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==",
"dev": true,
"requires": {
"append-transform": "^2.0.0"
}
},
"istanbul-lib-instrument": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
"integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
"dev": true,
"requires": {
"@babel/core": "^7.7.5",
"@istanbuljs/schema": "^0.1.2",
"istanbul-lib-coverage": "^3.0.0",
"semver": "^6.3.0"
}
},
"istanbul-lib-processinfo": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz",
"integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==",
"dev": true,
"requires": {
"archy": "^1.0.0",
"cross-spawn": "^7.0.3",
"istanbul-lib-coverage": "^3.2.0",
"p-map": "^3.0.0",
"rimraf": "^3.0.0",
"uuid": "^8.3.2"
},
"dependencies": {
"p-map": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
"integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"requires": {
"aggregate-error": "^3.0.0"
}
}
}
},
"istanbul-lib-report": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
"integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"requires": {
"istanbul-lib-coverage": "^3.0.0",
"make-dir": "^4.0.0",
"supports-color": "^7.1.0"
},
"dependencies": {
"make-dir": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
"integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"requires": {
"semver": "^7.5.3"
}
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
}
}
},
"istanbul-lib-source-maps": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
"integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
"requires": {
"debug": "^4.1.1",
"istanbul-lib-coverage": "^3.0.0",
"source-map": "^0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"istanbul-reports": {
"version": "3.1.7",
"resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
"integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
"requires": {
"html-escaper": "^2.0.0",
"istanbul-lib-report": "^3.0.0"
}
},
"iterator.prototype": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.4.tgz",
"integrity": "sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==",
"requires": {
"define-data-property": "^1.1.4",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.6",
"has-symbols": "^1.1.0",
"reflect.getprototypeof": "^1.0.8",
"set-function-name": "^2.0.2"
}
},
"jackspeak": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
"requires": {
"@isaacs/cliui": "^8.0.2",
"@pkgjs/parseargs": "^0.11.0"
}
},
"jake": {
"version": "10.9.2",
"resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
"integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
"requires": {
"async": "^3.2.3",
"chalk": "^4.0.2",
"filelist": "^1.0.4",
"minimatch": "^3.1.2"
}
},
"jest": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz",
"integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==",
"requires": {
"@jest/core": "^27.5.1",
"import-local": "^3.0.2",
"jest-cli": "^27.5.1"
}
},
"jest-changed-files": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz",
"integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==",
"requires": {
"@jest/types": "^27.5.1",
"execa": "^5.0.0",
"throat": "^6.0.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"requires": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
}
},
"get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
},
"human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
}
}
},
"jest-circus": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz",
"integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"co": "^4.6.0",
"dedent": "^0.7.0",
"expect": "^27.5.1",
"is-generator-fn": "^2.0.0",
"jest-each": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"stack-utils": "^2.0.3",
"throat": "^6.0.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-cli": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz",
"integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==",
"requires": {
"@jest/core": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"exit": "^0.1.2",
"graceful-fs": "^4.2.9",
"import-local": "^3.0.2",
"jest-config": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"prompts": "^2.0.1",
"yargs": "^16.2.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"cliui": {
"version": "7.0.4",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"requires": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^7.0.0"
}
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"y18n": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
},
"yargs": {
"version": "16.2.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"requires": {
"cliui": "^7.0.2",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
"string-width": "^4.2.0",
"y18n": "^5.0.5",
"yargs-parser": "^20.2.2"
}
},
"yargs-parser": {
"version": "20.2.9",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="
}
}
},
"jest-config": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz",
"integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==",
"requires": {
"@babel/core": "^7.8.0",
"@jest/test-sequencer": "^27.5.1",
"@jest/types": "^27.5.1",
"babel-jest": "^27.5.1",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"deepmerge": "^4.2.2",
"glob": "^7.1.1",
"graceful-fs": "^4.2.9",
"jest-circus": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-jasmine2": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-runner": "^27.5.1",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"micromatch": "^4.0.4",
"parse-json": "^5.2.0",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-diff": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz",
"integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==",
"requires": {
"chalk": "^4.0.0",
"diff-sequences": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
}
},
"jest-docblock": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz",
"integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==",
"requires": {
"detect-newline": "^3.0.0"
}
},
"jest-each": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz",
"integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==",
"requires": {
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"jest-get-type": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-environment-jsdom": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz",
"integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1",
"jsdom": "^16.6.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-environment-node": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz",
"integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"jest-mock": "^27.5.1",
"jest-util": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-get-type": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz",
"integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="
},
"jest-haste-map": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz",
"integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==",
"requires": {
"@jest/types": "^27.5.1",
"@types/graceful-fs": "^4.1.2",
"@types/node": "*",
"anymatch": "^3.0.3",
"fb-watchman": "^2.0.0",
"fsevents": "^2.3.2",
"graceful-fs": "^4.2.9",
"jest-regex-util": "^27.5.1",
"jest-serializer": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"micromatch": "^4.0.4",
"walker": "^1.0.7"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"jest-jasmine2": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz",
"integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/source-map": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"co": "^4.6.0",
"expect": "^27.5.1",
"is-generator-fn": "^2.0.0",
"jest-each": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"pretty-format": "^27.5.1",
"throat": "^6.0.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-leak-detector": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz",
"integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==",
"requires": {
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
}
},
"jest-matcher-utils": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz",
"integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==",
"requires": {
"chalk": "^4.0.0",
"jest-diff": "^27.5.1",
"jest-get-type": "^27.5.1",
"pretty-format": "^27.5.1"
}
},
"jest-message-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
"integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
"requires": {
"@babel/code-frame": "^7.12.13",
"@jest/types": "^27.5.1",
"@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.4",
"pretty-format": "^27.5.1",
"slash": "^3.0.0",
"stack-utils": "^2.0.3"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"jest-mock": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz",
"integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"jest-pnp-resolver": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
"integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
"requires": {}
},
"jest-regex-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz",
"integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="
},
"jest-resolve": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz",
"integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==",
"requires": {
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-pnp-resolver": "^1.2.2",
"jest-util": "^27.5.1",
"jest-validate": "^27.5.1",
"resolve": "^1.20.0",
"resolve.exports": "^1.1.0",
"slash": "^3.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-resolve-dependencies": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz",
"integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==",
"requires": {
"@jest/types": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-snapshot": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
}
}
},
"jest-runner": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz",
"integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==",
"requires": {
"@jest/console": "^27.5.1",
"@jest/environment": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"emittery": "^0.8.1",
"graceful-fs": "^4.2.9",
"jest-docblock": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-leak-detector": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-runtime": "^27.5.1",
"jest-util": "^27.5.1",
"jest-worker": "^27.5.1",
"source-map-support": "^0.5.6",
"throat": "^6.0.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"jest-runtime": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz",
"integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==",
"requires": {
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/globals": "^27.5.1",
"@jest/source-map": "^27.5.1",
"@jest/test-result": "^27.5.1",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"chalk": "^4.0.0",
"cjs-module-lexer": "^1.0.0",
"collect-v8-coverage": "^1.0.0",
"execa": "^5.0.0",
"glob": "^7.1.3",
"graceful-fs": "^4.2.9",
"jest-haste-map": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-regex-util": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-snapshot": "^27.5.1",
"jest-util": "^27.5.1",
"slash": "^3.0.0",
"strip-bom": "^4.0.0"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"execa": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"requires": {
"cross-spawn": "^7.0.3",
"get-stream": "^6.0.0",
"human-signals": "^2.1.0",
"is-stream": "^2.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"onetime": "^5.1.2",
"signal-exit": "^3.0.3",
"strip-final-newline": "^2.0.0"
}
},
"get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
},
"human-signals": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-serializer": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz",
"integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==",
"requires": {
"@types/node": "*",
"graceful-fs": "^4.2.9"
}
},
"jest-snapshot": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz",
"integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==",
"requires": {
"@babel/core": "^7.7.2",
"@babel/generator": "^7.7.2",
"@babel/plugin-syntax-typescript": "^7.7.2",
"@babel/traverse": "^7.7.2",
"@babel/types": "^7.0.0",
"@jest/transform": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/babel__traverse": "^7.0.4",
"@types/prettier": "^2.1.5",
"babel-preset-current-node-syntax": "^1.0.0",
"chalk": "^4.0.0",
"expect": "^27.5.1",
"graceful-fs": "^4.2.9",
"jest-diff": "^27.5.1",
"jest-get-type": "^27.5.1",
"jest-haste-map": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-message-util": "^27.5.1",
"jest-util": "^27.5.1",
"natural-compare": "^1.4.0",
"pretty-format": "^27.5.1",
"semver": "^7.3.2"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
}
}
},
"jest-util": {
"version": "29.7.0",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
"integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
"dev": true,
"requires": {
"@jest/types": "^29.6.3",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
},
"dependencies": {
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"dev": true
}
}
},
"jest-validate": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz",
"integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==",
"requires": {
"@jest/types": "^27.5.1",
"camelcase": "^6.2.0",
"chalk": "^4.0.0",
"jest-get-type": "^27.5.1",
"leven": "^3.1.0",
"pretty-format": "^27.5.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
}
}
},
"jest-watch-typeahead": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz",
"integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==",
"requires": {
"ansi-escapes": "^4.3.1",
"chalk": "^4.0.0",
"jest-regex-util": "^28.0.0",
"jest-watcher": "^28.0.0",
"slash": "^4.0.0",
"string-length": "^5.0.1",
"strip-ansi": "^7.0.1"
},
"dependencies": {
"@jest/console": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz",
"integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==",
"requires": {
"@jest/types": "^28.1.3",
"@types/node": "*",
"chalk": "^4.0.0",
"jest-message-util": "^28.1.3",
"jest-util": "^28.1.3",
"slash": "^3.0.0"
},
"dependencies": {
"slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
}
}
},
"@jest/schemas": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz",
"integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
"requires": {
"@sinclair/typebox": "^0.24.1"
}
},
"@jest/test-result": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz",
"integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
"requires": {
"@jest/console": "^28.1.3",
"@jest/types": "^28.1.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"collect-v8-coverage": "^1.0.0"
}
},
"@jest/types": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz",
"integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==",
"requires": {
"@jest/schemas": "^28.1.3",
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^17.0.8",
"chalk": "^4.0.0"
}
},
"@sinclair/typebox": {
"version": "0.24.51",
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz",
"integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="
},
"ansi-styles": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"emittery": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz",
"integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw=="
},
"jest-message-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz",
"integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==",
"requires": {
"@babel/code-frame": "^7.12.13",
"@jest/types": "^28.1.3",
"@types/stack-utils": "^2.0.0",
"chalk": "^4.0.0",
"graceful-fs": "^4.2.9",
"micromatch": "^4.0.4",
"pretty-format": "^28.1.3",
"slash": "^3.0.0",
"stack-utils": "^2.0.3"
},
"dependencies": {
"slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
}
}
},
"jest-regex-util": {
"version": "28.0.2",
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz",
"integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw=="
},
"jest-util": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz",
"integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
"requires": {
"@jest/types": "^28.1.3",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
},
"jest-watcher": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz",
"integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==",
"requires": {
"@jest/test-result": "^28.1.3",
"@jest/types": "^28.1.3",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"emittery": "^0.10.2",
"jest-util": "^28.1.3",
"string-length": "^4.0.1"
},
"dependencies": {
"string-length": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
"requires": {
"char-regex": "^1.0.2",
"strip-ansi": "^6.0.0"
}
},
"strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"requires": {
"ansi-regex": "^5.0.1"
}
}
}
},
"pretty-format": {
"version": "28.1.3",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz",
"integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==",
"requires": {
"@jest/schemas": "^28.1.3",
"ansi-regex": "^5.0.1",
"ansi-styles": "^5.0.0",
"react-is": "^18.0.0"
}
},
"react-is": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="
},
"slash": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
"integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="
},
"string-length": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz",
"integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==",
"requires": {
"char-regex": "^2.0.0",
"strip-ansi": "^7.0.1"
},
"dependencies": {
"char-regex": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz",
"integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg=="
}
}
},
"strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"requires": {
"ansi-regex": "^6.0.1"
},
"dependencies": {
"ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="
}
}
}
}
},
"jest-watcher": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz",
"integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==",
"requires": {
"@jest/test-result": "^27.5.1",
"@jest/types": "^27.5.1",
"@types/node": "*",
"ansi-escapes": "^4.2.1",
"chalk": "^4.0.0",
"jest-util": "^27.5.1",
"string-length": "^4.0.1"
},
"dependencies": {
"@jest/types": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
"integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0"
}
},
"@types/yargs": {
"version": "16.0.9",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz",
"integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"ci-info": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
"integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="
},
"jest-util": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
"integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
"requires": {
"@jest/types": "^27.5.1",
"@types/node": "*",
"chalk": "^4.0.0",
"ci-info": "^3.2.0",
"graceful-fs": "^4.2.9",
"picomatch": "^2.2.3"
}
}
}
},
"jest-worker": {
"version": "29.7.0",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
"integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
"dev": true,
"requires": {
"@types/node": "*",
"jest-util": "^29.7.0",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
},
"dependencies": {
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"jiti": {
"version": "1.21.6",
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz",
"integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w=="
},
"js-datepicker": {
"version": "5.18.3",
"resolved": "https://registry.npmjs.org/js-datepicker/-/js-datepicker-5.18.3.tgz",
"integrity": "sha512-M1+UKeRkLT0p04JhnSpNugveFSfy6VfEeNTyAyFef6unKIqQx4oQqx66lsBi0FRKHb4HtQsmJ8V4L4SPj1lbRQ=="
},
"js-sha256": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
"integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
},
"js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"requires": {
"argparse": "^2.0.1"
}
},
"jsbn": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
"dev": true
},
"jsdom": {
"version": "16.7.0",
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
"integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
"requires": {
"abab": "^2.0.5",
"acorn": "^8.2.4",
"acorn-globals": "^6.0.0",
"cssom": "^0.4.4",
"cssstyle": "^2.3.0",
"data-urls": "^2.0.0",
"decimal.js": "^10.2.1",
"domexception": "^2.0.1",
"escodegen": "^2.0.0",
"form-data": "^3.0.0",
"html-encoding-sniffer": "^2.0.1",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "^5.0.0",
"is-potential-custom-element-name": "^1.0.1",
"nwsapi": "^2.2.0",
"parse5": "6.0.1",
"saxes": "^5.0.1",
"symbol-tree": "^3.2.4",
"tough-cookie": "^4.0.0",
"w3c-hr-time": "^1.0.2",
"w3c-xmlserializer": "^2.0.0",
"webidl-conversions": "^6.1.0",
"whatwg-encoding": "^1.0.5",
"whatwg-mimetype": "^2.3.0",
"whatwg-url": "^8.5.0",
"ws": "^7.4.6",
"xml-name-validator": "^3.0.0"
},
"dependencies": {
"form-data": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz",
"integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==",
"requires": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"mime-types": "^2.1.12"
}
},
"tough-cookie": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
"integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==",
"requires": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
"universalify": "^0.2.0",
"url-parse": "^1.5.3"
}
},
"tr46": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
"integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
"requires": {
"punycode": "^2.1.1"
}
},
"universalify": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg=="
},
"whatwg-url": {
"version": "8.7.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
"integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
"requires": {
"lodash": "^4.7.0",
"tr46": "^2.1.0",
"webidl-conversions": "^6.1.0"
}
}
}
},
"jsesc": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="
},
"json-buffer": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
},
"json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
},
"json-schema": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
},
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"json-stable-stringify-without-jsonify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
},
"json-stringify-safe": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
"dev": true
},
"json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
},
"jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"requires": {
"graceful-fs": "^4.1.6",
"universalify": "^2.0.0"
}
},
"jsonpath": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz",
"integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==",
"requires": {
"esprima": "1.2.2",
"static-eval": "2.0.2",
"underscore": "1.12.1"
},
"dependencies": {
"esprima": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
"integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A=="
}
}
},
"jsonpointer": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz",
"integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ=="
},
"jsprim": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz",
"integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==",
"dev": true,
"requires": {
"assert-plus": "1.0.0",
"extsprintf": "1.3.0",
"json-schema": "0.4.0",
"verror": "1.10.0"
}
},
"jsx-ast-utils": {
"version": "3.3.5",
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
"integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
"requires": {
"array-includes": "^3.1.6",
"array.prototype.flat": "^1.3.1",
"object.assign": "^4.1.4",
"object.values": "^1.1.6"
}
},
"keyv": {
"version": "4.5.4",
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"requires": {
"json-buffer": "3.0.1"
}
},
"kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
},
"kleur": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
},
"klona": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
"integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="
},
"language-subtag-registry": {
"version": "0.3.23",
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
"integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ=="
},
"language-tags": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
"integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
"requires": {
"language-subtag-registry": "^0.3.20"
}
},
"launch-editor": {
"version": "2.9.1",
"resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz",
"integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==",
"requires": {
"picocolors": "^1.0.0",
"shell-quote": "^1.8.1"
}
},
"lazy-ass": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz",
"integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==",
"dev": true
},
"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=="
},
"levn": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"requires": {
"prelude-ls": "^1.2.1",
"type-check": "~0.4.0"
}
},
"lilconfig": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="
},
"lines-and-columns": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
},
"listr2": {
"version": "3.14.0",
"resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz",
"integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==",
"dev": true,
"requires": {
"cli-truncate": "^2.1.0",
"colorette": "^2.0.16",
"log-update": "^4.0.0",
"p-map": "^4.0.0",
"rfdc": "^1.3.0",
"rxjs": "^7.5.1",
"through": "^2.3.8",
"wrap-ansi": "^7.0.0"
}
},
"loader-runner": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
"integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="
},
"loader-utils": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
"integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
"requires": {
"big.js": "^5.2.2",
"emojis-list": "^3.0.0",
"json5": "^2.1.2"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"requires": {
"p-locate": "^5.0.0"
}
},
"lodash": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
},
"lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
"integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
},
"lodash.flattendeep": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
"integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==",
"dev": true
},
"lodash.memoize": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
"integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="
},
"lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
},
"lodash.once": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
"dev": true
},
"lodash.sortby": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
"integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA=="
},
"lodash.uniq": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
},
"log-symbols": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
"integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
"dev": true,
"requires": {
"chalk": "^4.1.0",
"is-unicode-supported": "^0.1.0"
}
},
"log-update": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz",
"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
"dev": true,
"requires": {
"ansi-escapes": "^4.3.0",
"cli-cursor": "^3.1.0",
"slice-ansi": "^4.0.0",
"wrap-ansi": "^6.2.0"
},
"dependencies": {
"slice-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
"integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
"astral-regex": "^2.0.0",
"is-fullwidth-code-point": "^3.0.0"
}
},
"wrap-ansi": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
}
}
}
},
"loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"requires": {
"js-tokens": "^3.0.0 || ^4.0.0"
}
},
"lottie-react": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/lottie-react/-/lottie-react-2.4.0.tgz",
"integrity": "sha512-pDJGj+AQlnlyHvOHFK7vLdsDcvbuqvwPZdMlJ360wrzGFurXeKPr8SiRCjLf3LrNYKANQtSsh5dz9UYQHuqx4w==",
"requires": {
"lottie-web": "^5.10.2"
}
},
"lottie-web": {
"version": "5.12.2",
"resolved": "https://registry.npmjs.org/lottie-web/-/lottie-web-5.12.2.tgz",
"integrity": "sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg=="
},
"lower-case": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
"integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
"requires": {
"tslib": "^2.0.3"
}
},
"lowlight": {
"version": "1.20.0",
"resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz",
"integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==",
"requires": {
"fault": "^1.0.0",
"highlight.js": "~10.7.0"
}
},
"lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"requires": {
"yallist": "^3.0.2"
}
},
"magic-string": {
"version": "0.25.9",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
"integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==",
"requires": {
"sourcemap-codec": "^1.4.8"
}
},
"make-cancellable-promise": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/make-cancellable-promise/-/make-cancellable-promise-1.3.2.tgz",
"integrity": "sha512-GCXh3bq/WuMbS+Ky4JBPW1hYTOU+znU+Q5m9Pu+pI8EoUqIHk9+tviOKC6/qhHh8C4/As3tzJ69IF32kdz85ww=="
},
"make-dir": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"requires": {
"semver": "^6.0.0"
}
},
"make-event-props": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/make-event-props/-/make-event-props-1.6.2.tgz",
"integrity": "sha512-iDwf7mA03WPiR8QxvcVHmVWEPfMY1RZXerDVNCRYW7dUr2ppH3J58Rwb39/WG39yTZdRSxr3x+2v22tvI0VEvA=="
},
"makeerror": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
"integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
"requires": {
"tmpl": "1.0.5"
}
},
"math-intrinsics": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz",
"integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA=="
},
"mdn-data": {
"version": "2.0.30",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
"dev": true
},
"media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
},
"memfs": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
"requires": {
"fs-monkey": "^1.0.4"
}
},
"memoize-one": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
"integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="
},
"merge-descriptors": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ=="
},
"merge-refs": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/merge-refs/-/merge-refs-1.3.0.tgz",
"integrity": "sha512-nqXPXbso+1dcKDpPCXvwZyJILz+vSLqGGOnDrYHQYE+B8n9JTCekVLC65AfCpR4ggVyA/45Y0iR9LDyS2iI+zA==",
"requires": {}
},
"merge-source-map": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz",
"integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==",
"dev": true,
"requires": {
"source-map": "^0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"merge-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
},
"merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
},
"methods": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
},
"micromatch": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"requires": {
"braces": "^3.0.3",
"picomatch": "^2.3.1"
}
},
"mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
},
"mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
},
"mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"requires": {
"mime-db": "1.52.0"
}
},
"mimic-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
},
"mimic-response": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
"integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
"optional": true
},
"mini-css-extract-plugin": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz",
"integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==",
"dev": true,
"requires": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"webpack-sources": "^1.1.0"
},
"dependencies": {
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
}
}
},
"minimalistic-assert": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
},
"minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"requires": {
"brace-expansion": "^1.1.7"
}
},
"minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
},
"minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="
},
"minizlib": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
"integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
"optional": true,
"requires": {
"minipass": "^3.0.0",
"yallist": "^4.0.0"
},
"dependencies": {
"minipass": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
"optional": true,
"requires": {
"yallist": "^4.0.0"
}
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
}
}
},
"mixpanel-browser": {
"version": "2.45.0",
"resolved": "https://registry.npmjs.org/mixpanel-browser/-/mixpanel-browser-2.45.0.tgz",
"integrity": "sha512-PQ1DaTk68yyYtLA0iejmzPA9iNDhT4uIZpqZjRTw7HWpYfl123fydHb2laKanaKjm8YDmrGGz3+xZ4Q6joogyg=="
},
"mkdirp": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
"optional": true
},
"monaco-editor": {
"version": "0.34.1",
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.34.1.tgz",
"integrity": "sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ=="
},
"monaco-editor-webpack-plugin": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-7.1.0.tgz",
"integrity": "sha512-ZjnGINHN963JQkFqjjcBtn1XBtUATDZBMgNQhDQwd78w2ukRhFXAPNgWuacaQiDZsUr4h1rWv5Mv6eriKuOSzA==",
"dev": true,
"requires": {
"loader-utils": "^2.0.2"
}
},
"mri": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
"dev": true
},
"ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"multicast-dns": {
"version": "7.2.5",
"resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz",
"integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==",
"requires": {
"dns-packet": "^5.2.2",
"thunky": "^1.0.2"
}
},
"mz": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
"requires": {
"any-promise": "^1.0.0",
"object-assign": "^4.0.1",
"thenify-all": "^1.0.0"
}
},
"nan": {
"version": "2.22.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz",
"integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==",
"optional": true
},
"nanoid": {
"version": "3.3.8",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="
},
"natural-compare": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
},
"natural-compare-lite": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz",
"integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g=="
},
"negotiator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
},
"neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="
},
"no-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
"integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
"requires": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
}
},
"node-fetch": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
"optional": true,
"requires": {
"whatwg-url": "^5.0.0"
}
},
"node-forge": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
"integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="
},
"node-int64": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
"integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
},
"node-preload": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz",
"integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==",
"dev": true,
"requires": {
"process-on-spawn": "^1.0.0"
}
},
"node-releases": {
"version": "2.0.19",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="
},
"nopt": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
"integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
"optional": true,
"requires": {
"abbrev": "1"
}
},
"normalize-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
},
"normalize-range": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="
},
"normalize-url": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
"integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="
},
"npm-run-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
"integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
"requires": {
"path-key": "^3.0.0"
}
},
"npmlog": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
"integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
"optional": true,
"requires": {
"are-we-there-yet": "^2.0.0",
"console-control-strings": "^1.1.0",
"gauge": "^3.0.0",
"set-blocking": "^2.0.0"
}
},
"nth-check": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
"requires": {
"boolbase": "^1.0.0"
}
},
"num2fraction": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
"integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==",
"dev": true
},
"nwsapi": {
"version": "2.2.16",
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz",
"integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ=="
},
"nyc": {
"version": "15.1.0",
"resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz",
"integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==",
"dev": true,
"requires": {
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.2",
"caching-transform": "^4.0.0",
"convert-source-map": "^1.7.0",
"decamelize": "^1.2.0",
"find-cache-dir": "^3.2.0",
"find-up": "^4.1.0",
"foreground-child": "^2.0.0",
"get-package-type": "^0.1.0",
"glob": "^7.1.6",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-hook": "^3.0.0",
"istanbul-lib-instrument": "^4.0.0",
"istanbul-lib-processinfo": "^2.0.2",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.0.2",
"make-dir": "^3.0.0",
"node-preload": "^0.2.1",
"p-map": "^3.0.0",
"process-on-spawn": "^1.0.0",
"resolve-from": "^5.0.0",
"rimraf": "^3.0.0",
"signal-exit": "^3.0.2",
"spawn-wrap": "^2.0.0",
"test-exclude": "^6.0.0",
"yargs": "^15.0.2"
},
"dependencies": {
"convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true
},
"find-cache-dir": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
"integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dev": true,
"requires": {
"commondir": "^1.0.1",
"make-dir": "^3.0.2",
"pkg-dir": "^4.1.0"
}
},
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"requires": {
"p-locate": "^4.1.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": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"requires": {
"p-limit": "^2.2.0"
}
},
"p-map": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
"integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"requires": {
"aggregate-error": "^3.0.0"
}
},
"pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"requires": {
"find-up": "^4.0.0"
}
},
"resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"dev": true
}
}
},
"object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
},
"object-hash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="
},
"object-inspect": {
"version": "1.13.3",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
"integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA=="
},
"object-keys": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
},
"object.assign": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz",
"integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
"requires": {
"call-bind": "^1.0.5",
"define-properties": "^1.2.1",
"has-symbols": "^1.0.3",
"object-keys": "^1.1.1"
}
},
"object.entries": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz",
"integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
}
},
"object.fromentries": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
"integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0"
}
},
"object.getownpropertydescriptors": {
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz",
"integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==",
"requires": {
"array.prototype.reduce": "^1.0.6",
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-object-atoms": "^1.0.0",
"gopd": "^1.0.1",
"safe-array-concat": "^1.1.2"
}
},
"object.groupby": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
"integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2"
}
},
"object.values": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz",
"integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
}
},
"obuf": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="
},
"on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
"requires": {
"ee-first": "1.1.1"
}
},
"on-headers": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
},
"once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
"requires": {
"wrappy": "1"
}
},
"onetime": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
"requires": {
"mimic-fn": "^2.1.0"
}
},
"open": {
"version": "8.4.2",
"resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"requires": {
"define-lazy-prop": "^2.0.0",
"is-docker": "^2.1.1",
"is-wsl": "^2.2.0"
}
},
"optionator": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
"integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
"requires": {
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
"levn": "^0.4.1",
"prelude-ls": "^1.2.1",
"type-check": "^0.4.0",
"word-wrap": "^1.2.5"
}
},
"ospath": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz",
"integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==",
"dev": true
},
"p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"requires": {
"yocto-queue": "^0.1.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"requires": {
"p-limit": "^3.0.2"
}
},
"p-map": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
"integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
"dev": true,
"requires": {
"aggregate-error": "^3.0.0"
}
},
"p-retry": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
"integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
"requires": {
"@types/retry": "0.12.0",
"retry": "^0.13.1"
}
},
"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=="
},
"package-hash": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz",
"integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==",
"dev": true,
"requires": {
"graceful-fs": "^4.1.15",
"hasha": "^5.0.0",
"lodash.flattendeep": "^4.4.0",
"release-zalgo": "^1.0.0"
}
},
"package-json-from-dist": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
},
"param-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
"integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
"requires": {
"dot-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"parent-module": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"requires": {
"callsites": "^3.0.0"
}
},
"parse-entities": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
"integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
"requires": {
"character-entities": "^1.0.0",
"character-entities-legacy": "^1.0.0",
"character-reference-invalid": "^1.0.0",
"is-alphanumerical": "^1.0.0",
"is-decimal": "^1.0.0",
"is-hexadecimal": "^1.0.0"
}
},
"parse-json": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"requires": {
"@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
"json-parse-even-better-errors": "^2.3.0",
"lines-and-columns": "^1.1.6"
}
},
"parse5": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="
},
"parseurl": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
},
"pascal-case": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
"integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
}
},
"path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
},
"path-is-absolute": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
},
"path-is-inside": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
"integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==",
"dev": true
},
"path-key": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
},
"path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
"path-scurry": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"requires": {
"lru-cache": "^10.2.0",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
},
"dependencies": {
"lru-cache": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
}
}
},
"path-to-regexp": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz",
"integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==",
"dev": true
},
"path-type": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
},
"path2d": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/path2d/-/path2d-0.2.2.tgz",
"integrity": "sha512-+vnG6S4dYcYxZd+CZxzXCNKdELYZSKfohrk98yajCo1PtRoDgCTrrwOvK1GT0UoAdVszagDVllQc0U1vaX4NUQ==",
"optional": true
},
"pdfjs-dist": {
"version": "4.4.168",
"resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-4.4.168.tgz",
"integrity": "sha512-MbkAjpwka/dMHaCfQ75RY1FXX3IewBVu6NGZOcxerRFlaBiIkZmUoR0jotX5VUzYZEXAGzSFtknWs5xRKliXPA==",
"requires": {
"canvas": "^2.11.2",
"path2d": "^0.2.0"
}
},
"pend": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
"dev": true
},
"performance-now": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
},
"picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
},
"picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
},
"pify": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="
},
"pirates": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="
},
"pkg-dir": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz",
"integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
"dev": true,
"peer": true,
"requires": {
"find-up": "^6.3.0"
},
"dependencies": {
"find-up": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz",
"integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
"dev": true,
"peer": true,
"requires": {
"locate-path": "^7.1.0",
"path-exists": "^5.0.0"
}
},
"locate-path": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
"dev": true,
"peer": true,
"requires": {
"p-locate": "^6.0.0"
}
},
"p-limit": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
"integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
"dev": true,
"peer": true,
"requires": {
"yocto-queue": "^1.0.0"
}
},
"p-locate": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz",
"integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
"dev": true,
"peer": true,
"requires": {
"p-limit": "^4.0.0"
}
},
"path-exists": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
"integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
"dev": true,
"peer": true
},
"yocto-queue": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz",
"integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==",
"dev": true,
"peer": true
}
}
},
"pkg-up": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
"integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
"requires": {
"find-up": "^3.0.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==",
"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==",
"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==",
"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==",
"requires": {
"p-limit": "^2.0.0"
}
},
"path-exists": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
"integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="
}
}
},
"possible-typed-array-names": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
"integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q=="
},
"postcss": {
"version": "8.4.49",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
"integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
"requires": {
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
}
},
"postcss-attribute-case-insensitive": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz",
"integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^6.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-browser-comments": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz",
"integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==",
"requires": {}
},
"postcss-calc": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz",
"integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==",
"dev": true,
"requires": {
"postcss-selector-parser": "^6.0.11",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-clamp": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz",
"integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-color-functional-notation": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz",
"integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-color-gray": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz",
"integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==",
"dev": true,
"requires": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.5",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-color-hex-alpha": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz",
"integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==",
"dev": true,
"requires": {
"postcss": "^7.0.14",
"postcss-values-parser": "^2.0.1"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-color-mod-function": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz",
"integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==",
"dev": true,
"requires": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-color-rebeccapurple": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz",
"integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-colormin": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz",
"integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0",
"colord": "^2.9.3",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-convert-values": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz",
"integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-custom-media": {
"version": "7.0.8",
"resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz",
"integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==",
"dev": true,
"requires": {
"postcss": "^7.0.14"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-custom-properties": {
"version": "8.0.11",
"resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz",
"integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==",
"dev": true,
"requires": {
"postcss": "^7.0.17",
"postcss-values-parser": "^2.0.1"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-custom-selectors": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz",
"integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"dependencies": {
"cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true
},
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"requires": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-dir-pseudo-class": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz",
"integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"dependencies": {
"cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true
},
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"requires": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-discard-comments": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz",
"integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==",
"dev": true,
"requires": {}
},
"postcss-discard-duplicates": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz",
"integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==",
"dev": true,
"requires": {}
},
"postcss-discard-empty": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz",
"integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==",
"dev": true,
"requires": {}
},
"postcss-discard-overridden": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz",
"integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==",
"dev": true,
"requires": {}
},
"postcss-double-position-gradients": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz",
"integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==",
"dev": true,
"requires": {
"postcss": "^7.0.5",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-env-function": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz",
"integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-flexbugs-fixes": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz",
"integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==",
"requires": {}
},
"postcss-focus-visible": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz",
"integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-focus-within": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz",
"integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-font-variant": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz",
"integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-gap-properties": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz",
"integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-image-set-function": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz",
"integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-import": {
"version": "15.1.0",
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
"requires": {
"postcss-value-parser": "^4.0.0",
"read-cache": "^1.0.0",
"resolve": "^1.1.7"
}
},
"postcss-initial": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz",
"integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-js": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
"integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
"requires": {
"camelcase-css": "^2.0.1"
}
},
"postcss-lab-function": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz",
"integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==",
"dev": true,
"requires": {
"@csstools/convert-colors": "^1.4.0",
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-load-config": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz",
"integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==",
"requires": {
"lilconfig": "^2.0.5",
"yaml": "^1.10.2"
},
"dependencies": {
"lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="
}
}
},
"postcss-loader": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz",
"integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==",
"dev": true,
"requires": {
"cosmiconfig": "^7.0.0",
"klona": "^2.0.4",
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"semver": "^7.3.4"
},
"dependencies": {
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
"dev": true
}
}
},
"postcss-logical": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz",
"integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-media-minmax": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz",
"integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-merge-longhand": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz",
"integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0",
"stylehacks": "^6.1.1"
}
},
"postcss-merge-rules": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz",
"integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0",
"cssnano-utils": "^4.0.2",
"postcss-selector-parser": "^6.0.16"
}
},
"postcss-minify-font-values": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz",
"integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-gradients": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz",
"integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==",
"dev": true,
"requires": {
"colord": "^2.9.3",
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-params": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz",
"integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-selectors": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz",
"integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==",
"dev": true,
"requires": {
"postcss-selector-parser": "^6.0.16"
}
},
"postcss-modules-extract-imports": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz",
"integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==",
"requires": {}
},
"postcss-modules-local-by-default": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz",
"integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==",
"requires": {
"icss-utils": "^5.0.0",
"postcss-selector-parser": "^7.0.0",
"postcss-value-parser": "^4.1.0"
},
"dependencies": {
"postcss-selector-parser": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
"integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
}
}
}
},
"postcss-modules-scope": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz",
"integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==",
"requires": {
"postcss-selector-parser": "^7.0.0"
},
"dependencies": {
"postcss-selector-parser": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
"integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
}
}
}
},
"postcss-modules-values": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
"requires": {
"icss-utils": "^5.0.0"
}
},
"postcss-nested": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
"requires": {
"postcss-selector-parser": "^6.1.1"
}
},
"postcss-nesting": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz",
"integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-normalize": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz",
"integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==",
"requires": {
"@csstools/normalize.css": "*",
"postcss-browser-comments": "^4",
"sanitize.css": "*"
}
},
"postcss-normalize-charset": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz",
"integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==",
"dev": true,
"requires": {}
},
"postcss-normalize-display-values": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz",
"integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-positions": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz",
"integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-repeat-style": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz",
"integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-string": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz",
"integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-timing-functions": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz",
"integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-unicode": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz",
"integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-url": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz",
"integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-whitespace": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz",
"integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-opacity-percentage": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz",
"integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==",
"requires": {}
},
"postcss-ordered-values": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz",
"integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==",
"dev": true,
"requires": {
"cssnano-utils": "^4.0.2",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-overflow-shorthand": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz",
"integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-page-break": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz",
"integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-place": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz",
"integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-preset-env": {
"version": "6.7.2",
"resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.2.tgz",
"integrity": "sha512-nz+VyUUEB9uAxo5VxI0Gq4E31UjHCG3cUiZW3PzRn7KqkGlAEWuYgb/VLbAitEq7Ooubfix+H2JCm9v+C6hJuw==",
"dev": true,
"requires": {
"autoprefixer": "^9.6.1",
"browserslist": "^4.6.4",
"caniuse-lite": "^1.0.30000981",
"css-blank-pseudo": "^0.1.4",
"css-has-pseudo": "^0.10.0",
"css-prefers-color-scheme": "^3.1.1",
"cssdb": "^4.4.0",
"postcss": "^7.0.17",
"postcss-attribute-case-insensitive": "^4.0.1",
"postcss-color-functional-notation": "^2.0.1",
"postcss-color-gray": "^5.0.0",
"postcss-color-hex-alpha": "^5.0.3",
"postcss-color-mod-function": "^3.0.3",
"postcss-color-rebeccapurple": "^4.0.1",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^8.0.11",
"postcss-custom-selectors": "^5.1.2",
"postcss-dir-pseudo-class": "^5.0.0",
"postcss-double-position-gradients": "^1.0.0",
"postcss-env-function": "^2.0.2",
"postcss-focus-visible": "^4.0.0",
"postcss-focus-within": "^3.0.0",
"postcss-font-variant": "^4.0.0",
"postcss-gap-properties": "^2.0.0",
"postcss-image-set-function": "^3.0.1",
"postcss-initial": "^3.0.0",
"postcss-lab-function": "^2.0.1",
"postcss-logical": "^3.0.0",
"postcss-media-minmax": "^4.0.0",
"postcss-nesting": "^7.0.0",
"postcss-overflow-shorthand": "^2.0.0",
"postcss-page-break": "^2.0.0",
"postcss-place": "^4.0.1",
"postcss-pseudo-class-any-link": "^6.0.0",
"postcss-replace-overflow-wrap": "^3.0.0",
"postcss-selector-matches": "^4.0.0",
"postcss-selector-not": "^4.0.0"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-pseudo-class-any-link": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz",
"integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==",
"dev": true,
"requires": {
"postcss": "^7.0.2",
"postcss-selector-parser": "^5.0.0-rc.3"
},
"dependencies": {
"cssesc": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
"integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
"dev": true
},
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"postcss-selector-parser": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz",
"integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==",
"dev": true,
"requires": {
"cssesc": "^2.0.0",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-reduce-initial": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz",
"integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"caniuse-api": "^3.0.0"
}
},
"postcss-reduce-transforms": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz",
"integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-replace-overflow-wrap": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz",
"integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==",
"dev": true,
"requires": {
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-selector-matches": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz",
"integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==",
"dev": true,
"requires": {
"balanced-match": "^1.0.0",
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-selector-not": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz",
"integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==",
"dev": true,
"requires": {
"balanced-match": "^1.0.0",
"postcss": "^7.0.2"
},
"dependencies": {
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==",
"dev": true
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"dev": true,
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"postcss-selector-parser": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
"requires": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
}
},
"postcss-svgo": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz",
"integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==",
"dev": true,
"requires": {
"postcss-value-parser": "^4.2.0",
"svgo": "^3.2.0"
}
},
"postcss-unique-selectors": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz",
"integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==",
"dev": true,
"requires": {
"postcss-selector-parser": "^6.0.16"
}
},
"postcss-value-parser": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
},
"postcss-values-parser": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz",
"integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==",
"dev": true,
"requires": {
"flatten": "^1.0.2",
"indexes-of": "^1.0.1",
"uniq": "^1.0.1"
}
},
"prelude-ls": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="
},
"prettier": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
"integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
"dev": true
},
"pretty-bytes": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
"integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg=="
},
"pretty-error": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz",
"integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==",
"requires": {
"lodash": "^4.17.20",
"renderkid": "^3.0.0"
}
},
"pretty-format": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz",
"integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==",
"requires": {
"ansi-regex": "^5.0.1",
"ansi-styles": "^5.0.0",
"react-is": "^17.0.1"
},
"dependencies": {
"ansi-styles": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
"integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="
},
"react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
}
}
},
"prismjs": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
"integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q=="
},
"process": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"dev": true
},
"process-nextick-args": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
},
"process-on-spawn": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.1.0.tgz",
"integrity": "sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==",
"dev": true,
"requires": {
"fromentries": "^1.2.0"
}
},
"promise": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz",
"integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==",
"requires": {
"asap": "~2.0.6"
}
},
"prompts": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"requires": {
"kleur": "^3.0.3",
"sisteransi": "^1.0.5"
}
},
"prop-types": {
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"requires": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.13.1"
}
},
"property-information": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
"integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
"requires": {
"xtend": "^4.0.0"
}
},
"proxy-addr": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
"requires": {
"forwarded": "0.2.0",
"ipaddr.js": "1.9.1"
},
"dependencies": {
"ipaddr.js": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
}
}
},
"proxy-from-env": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz",
"integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==",
"dev": true
},
"psl": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
"integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
"requires": {
"punycode": "^2.3.1"
}
},
"pump": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
"dev": true,
"requires": {
"end-of-stream": "^1.1.0",
"once": "^1.3.1"
}
},
"punycode": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="
},
"q": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
"integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw=="
},
"qr.js": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz",
"integrity": "sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ=="
},
"qs": {
"version": "6.13.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.1.tgz",
"integrity": "sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==",
"dev": true,
"requires": {
"side-channel": "^1.0.6"
}
},
"querystringify": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
},
"queue-microtask": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
},
"raf": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz",
"integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==",
"requires": {
"performance-now": "^2.1.0"
}
},
"raf-schd": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz",
"integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ=="
},
"randombytes": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"requires": {
"safe-buffer": "^5.1.0"
}
},
"range-parser": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
"integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==",
"dev": true
},
"raw-body": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
"requires": {
"bytes": "3.1.2",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"unpipe": "1.0.0"
},
"dependencies": {
"bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
},
"iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
}
}
},
"rc": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
"dev": true,
"requires": {
"deep-extend": "^0.6.0",
"ini": "~1.3.0",
"minimist": "^1.2.0",
"strip-json-comments": "~2.0.1"
},
"dependencies": {
"ini": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
"dev": true
},
"strip-json-comments": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
"dev": true
}
}
},
"react": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
"requires": {
"loose-envify": "^1.1.0"
}
},
"react-apexcharts": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/react-apexcharts/-/react-apexcharts-1.7.0.tgz",
"integrity": "sha512-03oScKJyNLRf0Oe+ihJxFZliBQM9vW3UWwomVn4YVRTN1jsIR58dLWt0v1sb8RwJVHDMbeHiKQueM0KGpn7nOA==",
"requires": {
"prop-types": "^15.8.1"
}
},
"react-app-polyfill": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz",
"integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==",
"requires": {
"core-js": "^3.19.2",
"object-assign": "^4.1.1",
"promise": "^8.1.0",
"raf": "^3.4.1",
"regenerator-runtime": "^0.13.9",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.13.11",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
}
}
},
"react-beautiful-dnd": {
"version": "13.1.1",
"resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz",
"integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==",
"requires": {
"@babel/runtime": "^7.9.2",
"css-box-model": "^1.2.0",
"memoize-one": "^5.1.1",
"raf-schd": "^4.0.2",
"react-redux": "^7.2.0",
"redux": "^4.0.4",
"use-memo-one": "^1.1.1"
}
},
"react-dev-utils": {
"version": "12.0.1",
"resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz",
"integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==",
"requires": {
"@babel/code-frame": "^7.16.0",
"address": "^1.1.2",
"browserslist": "^4.18.1",
"chalk": "^4.1.2",
"cross-spawn": "^7.0.3",
"detect-port-alt": "^1.1.6",
"escape-string-regexp": "^4.0.0",
"filesize": "^8.0.6",
"find-up": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"global-modules": "^2.0.0",
"globby": "^11.0.4",
"gzip-size": "^6.0.0",
"immer": "^9.0.7",
"is-root": "^2.1.0",
"loader-utils": "^3.2.0",
"open": "^8.4.0",
"pkg-up": "^3.1.0",
"prompts": "^2.4.2",
"react-error-overlay": "^6.0.11",
"recursive-readdir": "^2.2.2",
"shell-quote": "^1.7.3",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0"
},
"dependencies": {
"loader-utils": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz",
"integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg=="
}
}
},
"react-dom": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
"requires": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.2"
}
},
"react-error-overlay": {
"version": "6.0.11",
"resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz",
"integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg=="
},
"react-final-form": {
"version": "6.5.9",
"resolved": "https://registry.npmjs.org/react-final-form/-/react-final-form-6.5.9.tgz",
"integrity": "sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==",
"requires": {
"@babel/runtime": "^7.15.4"
}
},
"react-ga4": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/react-ga4/-/react-ga4-2.1.0.tgz",
"integrity": "sha512-ZKS7PGNFqqMd3PJ6+C2Jtz/o1iU9ggiy8Y8nUeksgVuvNISbmrQtJiZNvC/TjDsqD0QlU5Wkgs7i+w9+OjHhhQ=="
},
"react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
"react-pdf": {
"version": "9.1.1",
"resolved": "https://registry.npmjs.org/react-pdf/-/react-pdf-9.1.1.tgz",
"integrity": "sha512-Cn3RTJZMqVOOCgLMRXDamLk4LPGfyB2Np3OwQAUjmHIh47EpuGW1OpAA1Z1GVDLoHx4d5duEDo/YbUkDbr4QFQ==",
"requires": {
"clsx": "^2.0.0",
"dequal": "^2.0.3",
"make-cancellable-promise": "^1.3.1",
"make-event-props": "^1.6.0",
"merge-refs": "^1.3.0",
"pdfjs-dist": "4.4.168",
"tiny-invariant": "^1.0.0",
"warning": "^4.0.0"
}
},
"react-qr-code": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/react-qr-code/-/react-qr-code-2.0.15.tgz",
"integrity": "sha512-MkZcjEXqVKqXEIMVE0mbcGgDpkfSdd8zhuzXEl9QzYeNcw8Hq2oVIzDLWuZN2PQBwM5PWjc2S31K8Q1UbcFMfw==",
"requires": {
"prop-types": "^15.8.1",
"qr.js": "0.0.0"
}
},
"react-redux": {
"version": "7.2.9",
"resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz",
"integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==",
"requires": {
"@babel/runtime": "^7.15.4",
"@types/react-redux": "^7.1.20",
"hoist-non-react-statics": "^3.3.2",
"loose-envify": "^1.4.0",
"prop-types": "^15.7.2",
"react-is": "^17.0.2"
},
"dependencies": {
"react-is": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
}
}
},
"react-refresh": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz",
"integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ=="
},
"react-scripts": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz",
"integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==",
"requires": {
"@babel/core": "^7.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
"@svgr/webpack": "^5.5.0",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.0.1",
"bfj": "^7.0.2",
"browserslist": "^4.18.1",
"camelcase": "^6.2.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"fsevents": "^2.3.2",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jest-resolve": "^27.4.2",
"jest-watch-typeahead": "^1.0.0",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.0.1",
"prompts": "^2.4.2",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.11.0",
"resolve": "^1.20.0",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.3.0",
"semver": "^7.3.5",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.2",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.4",
"webpack-dev-server": "^4.6.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"autoprefixer": {
"version": "10.4.20",
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
"integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
"requires": {
"browserslist": "^4.23.3",
"caniuse-lite": "^1.0.30001646",
"fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.1",
"postcss-value-parser": "^4.2.0"
}
},
"babel-loader": {
"version": "8.4.1",
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz",
"integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==",
"requires": {
"find-cache-dir": "^3.3.1",
"loader-utils": "^2.0.4",
"make-dir": "^3.1.0",
"schema-utils": "^2.6.5"
}
},
"camelcase": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
},
"commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
},
"css-blank-pseudo": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz",
"integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==",
"requires": {
"postcss-selector-parser": "^6.0.9"
}
},
"css-declaration-sorter": {
"version": "6.4.1",
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz",
"integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==",
"requires": {}
},
"css-has-pseudo": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz",
"integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==",
"requires": {
"postcss-selector-parser": "^6.0.9"
}
},
"css-loader": {
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz",
"integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==",
"requires": {
"icss-utils": "^5.1.0",
"postcss": "^8.4.33",
"postcss-modules-extract-imports": "^3.1.0",
"postcss-modules-local-by-default": "^4.0.5",
"postcss-modules-scope": "^3.2.0",
"postcss-modules-values": "^4.0.0",
"postcss-value-parser": "^4.2.0",
"semver": "^7.5.4"
}
},
"css-minimizer-webpack-plugin": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz",
"integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==",
"requires": {
"cssnano": "^5.0.6",
"jest-worker": "^27.0.2",
"postcss": "^8.3.5",
"schema-utils": "^4.0.0",
"serialize-javascript": "^6.0.0",
"source-map": "^0.6.1"
},
"dependencies": {
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"css-prefers-color-scheme": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz",
"integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==",
"requires": {}
},
"css-tree": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
"requires": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
}
},
"cssdb": {
"version": "7.11.2",
"resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz",
"integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A=="
},
"cssnano": {
"version": "5.1.15",
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz",
"integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==",
"requires": {
"cssnano-preset-default": "^5.2.14",
"lilconfig": "^2.0.3",
"yaml": "^1.10.2"
}
},
"cssnano-preset-default": {
"version": "5.2.14",
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz",
"integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==",
"requires": {
"css-declaration-sorter": "^6.3.1",
"cssnano-utils": "^3.1.0",
"postcss-calc": "^8.2.3",
"postcss-colormin": "^5.3.1",
"postcss-convert-values": "^5.1.3",
"postcss-discard-comments": "^5.1.2",
"postcss-discard-duplicates": "^5.1.0",
"postcss-discard-empty": "^5.1.1",
"postcss-discard-overridden": "^5.1.0",
"postcss-merge-longhand": "^5.1.7",
"postcss-merge-rules": "^5.1.4",
"postcss-minify-font-values": "^5.1.0",
"postcss-minify-gradients": "^5.1.1",
"postcss-minify-params": "^5.1.4",
"postcss-minify-selectors": "^5.2.1",
"postcss-normalize-charset": "^5.1.0",
"postcss-normalize-display-values": "^5.1.0",
"postcss-normalize-positions": "^5.1.1",
"postcss-normalize-repeat-style": "^5.1.1",
"postcss-normalize-string": "^5.1.0",
"postcss-normalize-timing-functions": "^5.1.0",
"postcss-normalize-unicode": "^5.1.1",
"postcss-normalize-url": "^5.1.0",
"postcss-normalize-whitespace": "^5.1.1",
"postcss-ordered-values": "^5.1.3",
"postcss-reduce-initial": "^5.1.2",
"postcss-reduce-transforms": "^5.1.0",
"postcss-svgo": "^5.1.0",
"postcss-unique-selectors": "^5.1.1"
}
},
"cssnano-utils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz",
"integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==",
"requires": {}
},
"csso": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
"requires": {
"css-tree": "^1.1.2"
}
},
"find-cache-dir": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
"integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"requires": {
"commondir": "^1.0.1",
"make-dir": "^3.0.2",
"pkg-dir": "^4.1.0"
}
},
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
}
},
"fs-extra": {
"version": "10.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
"requires": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
"universalify": "^2.0.0"
}
},
"jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"lilconfig": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="
},
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"requires": {
"p-locate": "^4.1.0"
}
},
"mdn-data": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
"mini-css-extract-plugin": {
"version": "2.9.2",
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz",
"integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==",
"requires": {
"schema-utils": "^4.0.0",
"tapable": "^2.2.1"
},
"dependencies": {
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"p-limit": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"requires": {
"p-try": "^2.0.0"
}
},
"p-locate": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"requires": {
"p-limit": "^2.2.0"
}
},
"pkg-dir": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"requires": {
"find-up": "^4.0.0"
}
},
"postcss-attribute-case-insensitive": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz",
"integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==",
"requires": {
"postcss-selector-parser": "^6.0.10"
}
},
"postcss-calc": {
"version": "8.2.4",
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz",
"integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==",
"requires": {
"postcss-selector-parser": "^6.0.9",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-color-functional-notation": {
"version": "4.2.4",
"resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz",
"integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-color-hex-alpha": {
"version": "8.0.4",
"resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz",
"integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-color-rebeccapurple": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz",
"integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-colormin": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz",
"integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==",
"requires": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0",
"colord": "^2.9.1",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-convert-values": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz",
"integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==",
"requires": {
"browserslist": "^4.21.4",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-custom-media": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz",
"integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-custom-properties": {
"version": "12.1.11",
"resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz",
"integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-custom-selectors": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz",
"integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==",
"requires": {
"postcss-selector-parser": "^6.0.4"
}
},
"postcss-dir-pseudo-class": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz",
"integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==",
"requires": {
"postcss-selector-parser": "^6.0.10"
}
},
"postcss-discard-comments": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz",
"integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==",
"requires": {}
},
"postcss-discard-duplicates": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz",
"integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==",
"requires": {}
},
"postcss-discard-empty": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz",
"integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==",
"requires": {}
},
"postcss-discard-overridden": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz",
"integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==",
"requires": {}
},
"postcss-double-position-gradients": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz",
"integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==",
"requires": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-env-function": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz",
"integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-focus-visible": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz",
"integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==",
"requires": {
"postcss-selector-parser": "^6.0.9"
}
},
"postcss-focus-within": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz",
"integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==",
"requires": {
"postcss-selector-parser": "^6.0.9"
}
},
"postcss-font-variant": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz",
"integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==",
"requires": {}
},
"postcss-gap-properties": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz",
"integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==",
"requires": {}
},
"postcss-image-set-function": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz",
"integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-initial": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz",
"integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==",
"requires": {}
},
"postcss-lab-function": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz",
"integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==",
"requires": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-loader": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz",
"integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==",
"requires": {
"cosmiconfig": "^7.0.0",
"klona": "^2.0.5",
"semver": "^7.3.5"
}
},
"postcss-logical": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz",
"integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==",
"requires": {}
},
"postcss-media-minmax": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz",
"integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==",
"requires": {}
},
"postcss-merge-longhand": {
"version": "5.1.7",
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz",
"integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==",
"requires": {
"postcss-value-parser": "^4.2.0",
"stylehacks": "^5.1.1"
}
},
"postcss-merge-rules": {
"version": "5.1.4",
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz",
"integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==",
"requires": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0",
"cssnano-utils": "^3.1.0",
"postcss-selector-parser": "^6.0.5"
}
},
"postcss-minify-font-values": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz",
"integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-gradients": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz",
"integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==",
"requires": {
"colord": "^2.9.1",
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-params": {
"version": "5.1.4",
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz",
"integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==",
"requires": {
"browserslist": "^4.21.4",
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-minify-selectors": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz",
"integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==",
"requires": {
"postcss-selector-parser": "^6.0.5"
}
},
"postcss-nesting": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz",
"integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==",
"requires": {
"@csstools/selector-specificity": "^2.0.0",
"postcss-selector-parser": "^6.0.10"
}
},
"postcss-normalize-charset": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz",
"integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==",
"requires": {}
},
"postcss-normalize-display-values": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz",
"integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-positions": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz",
"integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-repeat-style": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz",
"integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-string": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz",
"integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-timing-functions": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz",
"integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-unicode": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz",
"integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==",
"requires": {
"browserslist": "^4.21.4",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-url": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz",
"integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==",
"requires": {
"normalize-url": "^6.0.1",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-normalize-whitespace": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz",
"integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-ordered-values": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz",
"integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==",
"requires": {
"cssnano-utils": "^3.1.0",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-overflow-shorthand": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz",
"integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-page-break": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz",
"integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==",
"requires": {}
},
"postcss-place": {
"version": "7.0.5",
"resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz",
"integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-preset-env": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz",
"integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==",
"requires": {
"@csstools/postcss-cascade-layers": "^1.1.1",
"@csstools/postcss-color-function": "^1.1.1",
"@csstools/postcss-font-format-keywords": "^1.0.1",
"@csstools/postcss-hwb-function": "^1.0.2",
"@csstools/postcss-ic-unit": "^1.0.1",
"@csstools/postcss-is-pseudo-class": "^2.0.7",
"@csstools/postcss-nested-calc": "^1.0.0",
"@csstools/postcss-normalize-display-values": "^1.0.1",
"@csstools/postcss-oklab-function": "^1.1.1",
"@csstools/postcss-progressive-custom-properties": "^1.3.0",
"@csstools/postcss-stepped-value-functions": "^1.0.1",
"@csstools/postcss-text-decoration-shorthand": "^1.0.0",
"@csstools/postcss-trigonometric-functions": "^1.0.2",
"@csstools/postcss-unset-value": "^1.0.2",
"autoprefixer": "^10.4.13",
"browserslist": "^4.21.4",
"css-blank-pseudo": "^3.0.3",
"css-has-pseudo": "^3.0.4",
"css-prefers-color-scheme": "^6.0.3",
"cssdb": "^7.1.0",
"postcss-attribute-case-insensitive": "^5.0.2",
"postcss-clamp": "^4.1.0",
"postcss-color-functional-notation": "^4.2.4",
"postcss-color-hex-alpha": "^8.0.4",
"postcss-color-rebeccapurple": "^7.1.1",
"postcss-custom-media": "^8.0.2",
"postcss-custom-properties": "^12.1.10",
"postcss-custom-selectors": "^6.0.3",
"postcss-dir-pseudo-class": "^6.0.5",
"postcss-double-position-gradients": "^3.1.2",
"postcss-env-function": "^4.0.6",
"postcss-focus-visible": "^6.0.4",
"postcss-focus-within": "^5.0.4",
"postcss-font-variant": "^5.0.0",
"postcss-gap-properties": "^3.0.5",
"postcss-image-set-function": "^4.0.7",
"postcss-initial": "^4.0.1",
"postcss-lab-function": "^4.2.1",
"postcss-logical": "^5.0.4",
"postcss-media-minmax": "^5.0.0",
"postcss-nesting": "^10.2.0",
"postcss-opacity-percentage": "^1.1.2",
"postcss-overflow-shorthand": "^3.0.4",
"postcss-page-break": "^3.0.4",
"postcss-place": "^7.0.5",
"postcss-pseudo-class-any-link": "^7.1.6",
"postcss-replace-overflow-wrap": "^4.0.0",
"postcss-selector-not": "^6.0.1",
"postcss-value-parser": "^4.2.0"
}
},
"postcss-pseudo-class-any-link": {
"version": "7.1.6",
"resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz",
"integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==",
"requires": {
"postcss-selector-parser": "^6.0.10"
}
},
"postcss-reduce-initial": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz",
"integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==",
"requires": {
"browserslist": "^4.21.4",
"caniuse-api": "^3.0.0"
}
},
"postcss-reduce-transforms": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz",
"integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==",
"requires": {
"postcss-value-parser": "^4.2.0"
}
},
"postcss-replace-overflow-wrap": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz",
"integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==",
"requires": {}
},
"postcss-selector-not": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz",
"integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==",
"requires": {
"postcss-selector-parser": "^6.0.10"
}
},
"postcss-svgo": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz",
"integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==",
"requires": {
"postcss-value-parser": "^4.2.0",
"svgo": "^2.7.0"
}
},
"postcss-unique-selectors": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz",
"integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==",
"requires": {
"postcss-selector-parser": "^6.0.5"
}
},
"react-refresh": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz",
"integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A=="
},
"semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
"integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"stylehacks": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz",
"integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==",
"requires": {
"browserslist": "^4.21.4",
"postcss-selector-parser": "^6.0.4"
}
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
},
"svgo": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
"requires": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
"css-select": "^4.1.3",
"css-tree": "^1.1.3",
"csso": "^4.2.0",
"picocolors": "^1.0.0",
"stable": "^0.1.8"
}
}
}
},
"react-syntax-highlighter": {
"version": "15.6.1",
"resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.6.1.tgz",
"integrity": "sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==",
"requires": {
"@babel/runtime": "^7.3.1",
"highlight.js": "^10.4.1",
"highlightjs-vue": "^1.0.0",
"lowlight": "^1.17.0",
"prismjs": "^1.27.0",
"refractor": "^3.6.0"
}
},
"react-window": {
"version": "1.8.11",
"resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.11.tgz",
"integrity": "sha512-+SRbUVT2scadgFSWx+R1P754xHPEqvcfSfVX10QYg6POOz+WNgkN48pS+BtZNIMGiL1HYrSEiCkwsMS15QogEQ==",
"requires": {
"@babel/runtime": "^7.0.0",
"memoize-one": ">=3.1.1 <6"
}
},
"read-cache": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
"requires": {
"pify": "^2.3.0"
}
},
"readable-stream": {
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
"requires": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
}
},
"readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
"requires": {
"picomatch": "^2.2.1"
}
},
"rechoir": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
"integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
"dev": true,
"requires": {
"resolve": "^1.9.0"
}
},
"recoil": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/recoil/-/recoil-0.1.3.tgz",
"integrity": "sha512-/Rm7wN7jqCjhtFK1TgtK0V115SUXNu6d4QYvwxWNLydib0QChSmpB6U8CaHoRPS0MFWtAIsD/IFjpbfk/OYm7Q==",
"requires": {}
},
"recursive-readdir": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz",
"integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==",
"requires": {
"minimatch": "^3.0.5"
}
},
"redux": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz",
"integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==",
"requires": {
"@babel/runtime": "^7.9.2"
}
},
"reflect.getprototypeof": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz",
"integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==",
"requires": {
"call-bind": "^1.0.8",
"define-properties": "^1.2.1",
"dunder-proto": "^1.0.0",
"es-abstract": "^1.23.5",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4",
"gopd": "^1.2.0",
"which-builtin-type": "^1.2.0"
}
},
"refractor": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz",
"integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==",
"requires": {
"hastscript": "^6.0.0",
"parse-entities": "^2.0.0",
"prismjs": "~1.27.0"
},
"dependencies": {
"prismjs": {
"version": "1.27.0",
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz",
"integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA=="
}
}
},
"regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="
},
"regenerate-unicode-properties": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz",
"integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==",
"requires": {
"regenerate": "^1.4.2"
}
},
"regenerator-runtime": {
"version": "0.14.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
},
"regenerator-transform": {
"version": "0.15.2",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
"integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"requires": {
"@babel/runtime": "^7.8.4"
}
},
"regex-parser": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz",
"integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg=="
},
"regexp.prototype.flags": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz",
"integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-errors": "^1.3.0",
"set-function-name": "^2.0.2"
}
},
"regexpu-core": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz",
"integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==",
"requires": {
"regenerate": "^1.4.2",
"regenerate-unicode-properties": "^10.2.0",
"regjsgen": "^0.8.0",
"regjsparser": "^0.12.0",
"unicode-match-property-ecmascript": "^2.0.0",
"unicode-match-property-value-ecmascript": "^2.1.0"
}
},
"registry-auth-token": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz",
"integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==",
"dev": true,
"requires": {
"rc": "^1.1.6",
"safe-buffer": "^5.0.1"
}
},
"registry-url": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
"integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==",
"dev": true,
"requires": {
"rc": "^1.0.1"
}
},
"regjsgen": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz",
"integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q=="
},
"regjsparser": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz",
"integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==",
"requires": {
"jsesc": "~3.0.2"
},
"dependencies": {
"jsesc": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
"integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="
}
}
},
"relateurl": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
"integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog=="
},
"release-zalgo": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz",
"integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==",
"dev": true,
"requires": {
"es6-error": "^4.0.1"
}
},
"renderkid": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz",
"integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==",
"requires": {
"css-select": "^4.1.3",
"dom-converter": "^0.2.0",
"htmlparser2": "^6.1.0",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.1"
}
},
"request-progress": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz",
"integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==",
"dev": true,
"requires": {
"throttleit": "^1.0.0"
}
},
"require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
},
"require-from-string": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
},
"require-main-filename": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
"dev": true
},
"requires-port": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
},
"rescript": {
"version": "11.1.4",
"resolved": "https://registry.npmjs.org/rescript/-/rescript-11.1.4.tgz",
"integrity": "sha512-0bGU0bocihjSC6MsE3TMjHjY0EUpchyrREquLS8VsZ3ohSMD+VHUEwimEfB3kpBI1vYkw3UFZ3WD8R28guz/Vw=="
},
"rescript-webapi": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/rescript-webapi/-/rescript-webapi-0.9.1.tgz",
"integrity": "sha512-6havxEsyCgcCB4EsH8ac2QpLVbv5Nv6IMjTIn6XifpU/bjgXEvMTpNJ78/JEKtSH6kFUeFV/T/QHPRSZb66Rew=="
},
"resolve": {
"version": "1.22.9",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz",
"integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==",
"requires": {
"is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
},
"resolve-cwd": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
"integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
"requires": {
"resolve-from": "^5.0.0"
},
"dependencies": {
"resolve-from": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
}
}
},
"resolve-from": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
},
"resolve-url-loader": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz",
"integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==",
"requires": {
"adjust-sourcemap-loader": "^4.0.0",
"convert-source-map": "^1.7.0",
"loader-utils": "^2.0.0",
"postcss": "^7.0.35",
"source-map": "0.6.1"
},
"dependencies": {
"convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"picocolors": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz",
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="
},
"postcss": {
"version": "7.0.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz",
"integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==",
"requires": {
"picocolors": "^0.2.1",
"source-map": "^0.6.1"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"resolve.exports": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz",
"integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ=="
},
"restore-cursor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
"integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
"dev": true,
"requires": {
"onetime": "^5.1.0",
"signal-exit": "^3.0.2"
}
},
"retry": {
"version": "0.13.1",
"resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="
},
"reusify": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
},
"rfdc": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
"dev": true
},
"rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"requires": {
"glob": "^7.1.3"
}
},
"rollup": {
"version": "2.79.2",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz",
"integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==",
"requires": {
"fsevents": "~2.3.2"
}
},
"rollup-plugin-terser": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz",
"integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==",
"requires": {
"@babel/code-frame": "^7.10.4",
"jest-worker": "^26.2.1",
"serialize-javascript": "^4.0.0",
"terser": "^5.0.0"
},
"dependencies": {
"jest-worker": {
"version": "26.6.2",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
"integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^7.0.0"
}
},
"serialize-javascript": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz",
"integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==",
"requires": {
"randombytes": "^2.1.0"
}
}
}
},
"run-parallel": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"requires": {
"queue-microtask": "^1.2.2"
}
},
"rxjs": {
"version": "7.8.1",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
"dev": true,
"requires": {
"tslib": "^2.1.0"
}
},
"safe-array-concat": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
"integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
"requires": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"get-intrinsic": "^1.2.6",
"has-symbols": "^1.1.0",
"isarray": "^2.0.5"
}
},
"safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
},
"safe-regex-test": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
"integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
"requires": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"is-regex": "^1.2.1"
}
},
"safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"sanitize.css": {
"version": "13.0.0",
"resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz",
"integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA=="
},
"sass-loader": {
"version": "12.6.0",
"resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz",
"integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==",
"requires": {
"klona": "^2.0.4",
"neo-async": "^2.6.2"
}
},
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"saxes": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
"requires": {
"xmlchars": "^2.2.0"
}
},
"scheduler": {
"version": "0.23.2",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
"requires": {
"loose-envify": "^1.1.0"
}
},
"schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
"integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
"requires": {
"@types/json-schema": "^7.0.5",
"ajv": "^6.12.4",
"ajv-keywords": "^3.5.2"
}
},
"select-hose": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
"integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg=="
},
"selfsigned": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz",
"integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==",
"requires": {
"@types/node-forge": "^1.3.0",
"node-forge": "^1"
}
},
"semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
},
"send": {
"version": "0.19.0",
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
"requires": {
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
"etag": "~1.8.1",
"fresh": "0.5.2",
"http-errors": "2.0.0",
"mime": "1.6.0",
"ms": "2.1.3",
"on-finished": "2.4.1",
"range-parser": "~1.2.1",
"statuses": "2.0.1"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
},
"dependencies": {
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
}
}
},
"encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
},
"range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
}
}
},
"serialize-javascript": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
"integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"requires": {
"randombytes": "^2.1.0"
}
},
"serve": {
"version": "14.2.4",
"resolved": "https://registry.npmjs.org/serve/-/serve-14.2.4.tgz",
"integrity": "sha512-qy1S34PJ/fcY8gjVGszDB3EXiPSk5FKhUa7tQe0UPRddxRidc2V6cNHPNewbE1D7MAkgLuWEt3Vw56vYy73tzQ==",
"dev": true,
"requires": {
"@zeit/schemas": "2.36.0",
"ajv": "8.12.0",
"arg": "5.0.2",
"boxen": "7.0.0",
"chalk": "5.0.1",
"chalk-template": "0.4.0",
"clipboardy": "3.0.0",
"compression": "1.7.4",
"is-port-reachable": "4.0.0",
"serve-handler": "6.1.6",
"update-check": "1.5.4"
},
"dependencies": {
"ajv": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
}
},
"chalk": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.0.1.tgz",
"integrity": "sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==",
"dev": true
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
}
}
},
"serve-handler": {
"version": "6.1.6",
"resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.6.tgz",
"integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==",
"dev": true,
"requires": {
"bytes": "3.0.0",
"content-disposition": "0.5.2",
"mime-types": "2.1.18",
"minimatch": "3.1.2",
"path-is-inside": "1.0.2",
"path-to-regexp": "3.3.0",
"range-parser": "1.2.0"
},
"dependencies": {
"mime-db": {
"version": "1.33.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
"integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
"dev": true
},
"mime-types": {
"version": "2.1.18",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
"integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
"dev": true,
"requires": {
"mime-db": "~1.33.0"
}
}
}
},
"serve-index": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
"integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==",
"requires": {
"accepts": "~1.3.4",
"batch": "0.6.1",
"debug": "2.6.9",
"escape-html": "~1.0.3",
"http-errors": "~1.6.2",
"mime-types": "~2.1.17",
"parseurl": "~1.3.2"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
"integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="
},
"http-errors": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
"integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==",
"requires": {
"depd": "~1.1.2",
"inherits": "2.0.3",
"setprototypeof": "1.1.0",
"statuses": ">= 1.4.0 < 2"
}
},
"inherits": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
},
"setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
},
"statuses": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
"integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="
}
}
},
"serve-static": {
"version": "1.16.2",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
"requires": {
"encodeurl": "~2.0.0",
"escape-html": "~1.0.3",
"parseurl": "~1.3.3",
"send": "0.19.0"
}
},
"set-blocking": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
"integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
"devOptional": true
},
"set-function-length": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
"integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
"requires": {
"define-data-property": "^1.1.4",
"es-errors": "^1.3.0",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.2.4",
"gopd": "^1.0.1",
"has-property-descriptors": "^1.0.2"
}
},
"set-function-name": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
"integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
"requires": {
"define-data-property": "^1.1.4",
"es-errors": "^1.3.0",
"functions-have-names": "^1.2.3",
"has-property-descriptors": "^1.0.2"
}
},
"setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
},
"shallow-clone": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
"dev": true,
"requires": {
"kind-of": "^6.0.2"
}
},
"shebang-command": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"requires": {
"shebang-regex": "^3.0.0"
}
},
"shebang-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
},
"shell-quote": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz",
"integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA=="
},
"side-channel": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"requires": {
"es-errors": "^1.3.0",
"object-inspect": "^1.13.3",
"side-channel-list": "^1.0.0",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2"
}
},
"side-channel-list": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
"requires": {
"es-errors": "^1.3.0",
"object-inspect": "^1.13.3"
}
},
"side-channel-map": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
"requires": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.5",
"object-inspect": "^1.13.3"
}
},
"side-channel-weakmap": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
"requires": {
"call-bound": "^1.0.2",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.5",
"object-inspect": "^1.13.3",
"side-channel-map": "^1.0.1"
}
},
"signal-exit": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
},
"simple-concat": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
"optional": true
},
"simple-get": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz",
"integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==",
"optional": true,
"requires": {
"decompress-response": "^4.2.0",
"once": "^1.3.1",
"simple-concat": "^1.0.0"
}
},
"sisteransi": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
},
"slash": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
},
"slice-ansi": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz",
"integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
"dev": true,
"requires": {
"ansi-styles": "^4.0.0",
"astral-regex": "^2.0.0",
"is-fullwidth-code-point": "^3.0.0"
}
},
"sockjs": {
"version": "0.3.24",
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
"integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==",
"requires": {
"faye-websocket": "^0.11.3",
"uuid": "^8.3.2",
"websocket-driver": "^0.7.4"
}
},
"source-list-map": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
"integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw=="
},
"source-map": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
"integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="
},
"source-map-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
},
"source-map-loader": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz",
"integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==",
"requires": {
"abab": "^2.0.5",
"iconv-lite": "^0.6.3",
"source-map-js": "^1.0.1"
}
},
"source-map-support": {
"version": "0.5.21",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"requires": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"sourcemap-codec": {
"version": "1.4.8",
"resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
"integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="
},
"space-separated-tokens": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
"integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA=="
},
"spawn-wrap": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz",
"integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==",
"dev": true,
"requires": {
"foreground-child": "^2.0.0",
"is-windows": "^1.0.2",
"make-dir": "^3.0.0",
"rimraf": "^3.0.0",
"signal-exit": "^3.0.2",
"which": "^2.0.1"
}
},
"spdy": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
"requires": {
"debug": "^4.1.0",
"handle-thing": "^2.0.0",
"http-deceiver": "^1.2.7",
"select-hose": "^2.0.0",
"spdy-transport": "^3.0.0"
}
},
"spdy-transport": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
"requires": {
"debug": "^4.1.0",
"detect-node": "^2.0.4",
"hpack.js": "^2.1.6",
"obuf": "^1.1.2",
"readable-stream": "^3.0.6",
"wbuf": "^1.7.3"
}
},
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
},
"sshpk": {
"version": "1.18.0",
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz",
"integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
"dev": true,
"requires": {
"asn1": "~0.2.3",
"assert-plus": "^1.0.0",
"bcrypt-pbkdf": "^1.0.0",
"dashdash": "^1.12.0",
"ecc-jsbn": "~0.1.1",
"getpass": "^0.1.1",
"jsbn": "~0.1.0",
"safer-buffer": "^2.0.2",
"tweetnacl": "~0.14.0"
}
},
"stable": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
},
"stack-utils": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
"integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
"requires": {
"escape-string-regexp": "^2.0.0"
},
"dependencies": {
"escape-string-regexp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="
}
}
},
"stackframe": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
"integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="
},
"state-local": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz",
"integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w=="
},
"static-eval": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz",
"integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==",
"requires": {
"escodegen": "^1.8.1"
},
"dependencies": {
"escodegen": {
"version": "1.14.3",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
"integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
"requires": {
"esprima": "^4.0.1",
"estraverse": "^4.2.0",
"esutils": "^2.0.2",
"optionator": "^0.8.1",
"source-map": "~0.6.1"
}
},
"estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
},
"levn": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
"integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
"requires": {
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2"
}
},
"optionator": {
"version": "0.8.3",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
"requires": {
"deep-is": "~0.1.3",
"fast-levenshtein": "~2.0.6",
"levn": "~0.3.0",
"prelude-ls": "~1.1.2",
"type-check": "~0.3.2",
"word-wrap": "~1.2.3"
}
},
"prelude-ls": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
"integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w=="
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"optional": true
},
"type-check": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
"integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
"requires": {
"prelude-ls": "~1.1.2"
}
}
}
},
"statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
},
"string_decoder": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
"requires": {
"safe-buffer": "~5.2.0"
}
},
"string-length": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
"integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
"requires": {
"char-regex": "^1.0.2",
"strip-ansi": "^6.0.0"
}
},
"string-natural-compare": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz",
"integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw=="
},
"string-width": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"requires": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"dependencies": {
"emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
}
}
},
"string-width-cjs": {
"version": "npm:string-width@4.2.3",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"requires": {
"emoji-regex": "^8.0.0",
"is-fullwidth-code-point": "^3.0.0",
"strip-ansi": "^6.0.1"
},
"dependencies": {
"emoji-regex": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
}
}
},
"string.prototype.includes": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
"integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.3"
}
},
"string.prototype.matchall": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz",
"integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.2",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.0.0",
"get-intrinsic": "^1.2.4",
"gopd": "^1.0.1",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.7",
"regexp.prototype.flags": "^1.5.2",
"set-function-name": "^2.0.2",
"side-channel": "^1.0.6"
}
},
"string.prototype.repeat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
"integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
"requires": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.5"
}
},
"string.prototype.trim": {
"version": "1.2.10",
"resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
"integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
"requires": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"define-data-property": "^1.1.4",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.5",
"es-object-atoms": "^1.0.0",
"has-property-descriptors": "^1.0.2"
}
},
"string.prototype.trimend": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
"integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
"requires": {
"call-bind": "^1.0.8",
"call-bound": "^1.0.2",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
}
},
"string.prototype.trimstart": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
"integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
"requires": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-object-atoms": "^1.0.0"
}
},
"stringify-object": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz",
"integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==",
"requires": {
"get-own-enumerable-property-symbols": "^3.0.0",
"is-obj": "^1.0.1",
"is-regexp": "^1.0.0"
}
},
"strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"requires": {
"ansi-regex": "^5.0.1"
}
},
"strip-ansi-cjs": {
"version": "npm:strip-ansi@6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"requires": {
"ansi-regex": "^5.0.1"
}
},
"strip-bom": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
"integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="
},
"strip-comments": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz",
"integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="
},
"strip-final-newline": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
"integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
},
"strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
},
"style-loader": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz",
"integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==",
"requires": {}
},
"stylehacks": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz",
"integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==",
"dev": true,
"requires": {
"browserslist": "^4.23.0",
"postcss-selector-parser": "^6.0.16"
}
},
"sucrase": {
"version": "3.35.0",
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz",
"integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
"requires": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
"glob": "^10.3.10",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^4.0.1",
"ts-interface-checker": "^0.1.9"
},
"dependencies": {
"brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"requires": {
"balanced-match": "^1.0.0"
}
},
"commander": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
},
"foreground-child": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
"integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
"requires": {
"cross-spawn": "^7.0.0",
"signal-exit": "^4.0.1"
}
},
"glob": {
"version": "10.4.5",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"requires": {
"foreground-child": "^3.1.0",
"jackspeak": "^3.1.2",
"minimatch": "^9.0.4",
"minipass": "^7.1.2",
"package-json-from-dist": "^1.0.0",
"path-scurry": "^1.11.1"
}
},
"minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"requires": {
"brace-expansion": "^2.0.1"
}
},
"minipass": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
},
"signal-exit": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="
}
}
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"requires": {
"has-flag": "^4.0.0"
}
},
"supports-hyperlinks": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
"integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
"requires": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
}
},
"supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
},
"svg-parser": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
"integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
},
"svgo": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz",
"integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
"dev": true,
"requires": {
"@trysound/sax": "0.2.0",
"commander": "^7.2.0",
"css-select": "^5.1.0",
"css-tree": "^2.3.1",
"css-what": "^6.1.0",
"csso": "^5.0.5",
"picocolors": "^1.0.0"
},
"dependencies": {
"commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true
},
"css-select": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
"dev": true,
"requires": {
"boolbase": "^1.0.0",
"css-what": "^6.1.0",
"domhandler": "^5.0.2",
"domutils": "^3.0.1",
"nth-check": "^2.0.1"
}
},
"dom-serializer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
"dev": true,
"requires": {
"domelementtype": "^2.3.0",
"domhandler": "^5.0.2",
"entities": "^4.2.0"
}
},
"domhandler": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
"dev": true,
"requires": {
"domelementtype": "^2.3.0"
}
},
"domutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz",
"integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
"dev": true,
"requires": {
"dom-serializer": "^2.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3"
}
},
"entities": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
"dev": true
}
}
},
"symbol-tree": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
},
"tailwindcss": {
"version": "3.4.16",
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.16.tgz",
"integrity": "sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==",
"requires": {
"@alloc/quick-lru": "^5.2.0",
"arg": "^5.0.2",
"chokidar": "^3.6.0",
"didyoumean": "^1.2.2",
"dlv": "^1.1.3",
"fast-glob": "^3.3.2",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"jiti": "^1.21.6",
"lilconfig": "^3.1.3",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"object-hash": "^3.0.0",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"postcss-import": "^15.1.0",
"postcss-js": "^4.0.1",
"postcss-load-config": "^4.0.2",
"postcss-nested": "^6.2.0",
"postcss-selector-parser": "^6.1.2",
"resolve": "^1.22.8",
"sucrase": "^3.35.0"
},
"dependencies": {
"postcss-load-config": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
"integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
"requires": {
"lilconfig": "^3.0.0",
"yaml": "^2.3.4"
}
},
"yaml": {
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
"integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg=="
}
}
},
"tapable": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="
},
"tar": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
"integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
"optional": true,
"requires": {
"chownr": "^2.0.0",
"fs-minipass": "^2.0.0",
"minipass": "^5.0.0",
"minizlib": "^2.1.1",
"mkdirp": "^1.0.3",
"yallist": "^4.0.0"
},
"dependencies": {
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
}
}
},
"temp-dir": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz",
"integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="
},
"tempy": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz",
"integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==",
"requires": {
"is-stream": "^2.0.0",
"temp-dir": "^2.0.0",
"type-fest": "^0.16.0",
"unique-string": "^2.0.0"
},
"dependencies": {
"type-fest": {
"version": "0.16.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz",
"integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="
}
}
},
"terminal-link": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
"integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
"requires": {
"ansi-escapes": "^4.2.1",
"supports-hyperlinks": "^2.0.0"
}
},
"terser": {
"version": "5.37.0",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz",
"integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",
"requires": {
"@jridgewell/source-map": "^0.3.3",
"acorn": "^8.8.2",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
"dependencies": {
"commander": {
"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=="
}
}
},
"terser-webpack-plugin": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz",
"integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==",
"requires": {
"@jridgewell/trace-mapping": "^0.3.25",
"jest-worker": "^27.4.5",
"schema-utils": "^4.3.0",
"serialize-javascript": "^6.0.2",
"terser": "^5.31.1"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"jest-worker": {
"version": "27.5.1",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"requires": {
"@types/node": "*",
"merge-stream": "^2.0.0",
"supports-color": "^8.0.0"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
},
"supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"test-exclude": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
"integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
"requires": {
"@istanbuljs/schema": "^0.1.2",
"glob": "^7.1.4",
"minimatch": "^3.0.4"
}
},
"text-table": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
},
"thenify": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
"requires": {
"any-promise": "^1.0.0"
}
},
"thenify-all": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
"requires": {
"thenify": ">= 3.1.0 < 4"
}
},
"throat": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz",
"integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ=="
},
"throttleit": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz",
"integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==",
"dev": true
},
"through": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
"dev": true
},
"thunky": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="
},
"tiny-invariant": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="
},
"tldts": {
"version": "6.1.68",
"resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.68.tgz",
"integrity": "sha512-JKF17jROiYkjJPT73hUTEiTp2OBCf+kAlB+1novk8i6Q6dWjHsgEjw9VLiipV4KTJavazXhY1QUXyQFSem2T7w==",
"dev": true,
"requires": {
"tldts-core": "^6.1.68"
}
},
"tldts-core": {
"version": "6.1.68",
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.68.tgz",
"integrity": "sha512-85TdlS/DLW/gVdf2oyyzqp3ocS30WxjaL4la85EArl9cHUR/nizifKAJPziWewSZjDZS71U517/i6ciUeqtB5Q==",
"dev": true
},
"tmp": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
"dev": true
},
"tmpl": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
"integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="
},
"to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"requires": {
"is-number": "^7.0.0"
}
},
"toidentifier": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
},
"tough-cookie": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.0.0.tgz",
"integrity": "sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==",
"dev": true,
"requires": {
"tldts": "^6.1.32"
}
},
"tr46": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
"optional": true
},
"tree-kill": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
"dev": true
},
"tryer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
"integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA=="
},
"ts-interface-checker": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
},
"tsconfig-paths": {
"version": "3.15.0",
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
"integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
"requires": {
"@types/json5": "^0.0.29",
"json5": "^1.0.2",
"minimist": "^1.2.6",
"strip-bom": "^3.0.0"
},
"dependencies": {
"json5": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
"integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
"requires": {
"minimist": "^1.2.0"
}
},
"strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="
}
}
},
"tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"tsutils": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
"requires": {
"tslib": "^1.8.1"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
"dev": true,
"requires": {
"safe-buffer": "^5.0.1"
}
},
"tweetnacl": {
"version": "0.14.5",
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
"dev": true
},
"type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"requires": {
"prelude-ls": "^1.2.1"
}
},
"type-detect": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="
},
"type-fest": {
"version": "0.21.3",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
},
"type-is": {
"version": "1.6.18",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
"requires": {
"media-typer": "0.3.0",
"mime-types": "~2.1.24"
}
},
"typed-array-buffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz",
"integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==",
"requires": {
"call-bind": "^1.0.7",
"es-errors": "^1.3.0",
"is-typed-array": "^1.1.13"
}
},
"typed-array-byte-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz",
"integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==",
"requires": {
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-proto": "^1.0.3",
"is-typed-array": "^1.1.13"
}
},
"typed-array-byte-offset": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz",
"integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==",
"requires": {
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-proto": "^1.0.3",
"is-typed-array": "^1.1.13",
"reflect.getprototypeof": "^1.0.6"
}
},
"typed-array-length": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
"integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
"requires": {
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"is-typed-array": "^1.1.13",
"possible-typed-array-names": "^1.0.0",
"reflect.getprototypeof": "^1.0.6"
}
},
"typedarray-to-buffer": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
"integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
"requires": {
"is-typedarray": "^1.0.0"
}
},
"typescript": {
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
"integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
"peer": true
},
"unbox-primitive": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
"integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
"requires": {
"call-bound": "^1.0.3",
"has-bigints": "^1.0.2",
"has-symbols": "^1.1.0",
"which-boxed-primitive": "^1.1.1"
}
},
"underscore": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz",
"integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw=="
},
"undici-types": {
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="
},
"unicode-canonical-property-names-ecmascript": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz",
"integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg=="
},
"unicode-match-property-ecmascript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
"integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"requires": {
"unicode-canonical-property-names-ecmascript": "^2.0.0",
"unicode-property-aliases-ecmascript": "^2.0.0"
}
},
"unicode-match-property-value-ecmascript": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz",
"integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg=="
},
"unicode-property-aliases-ecmascript": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
"integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="
},
"uniq": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
"integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==",
"dev": true
},
"unique-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
"integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
"requires": {
"crypto-random-string": "^2.0.0"
}
},
"universalify": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw=="
},
"unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
},
"unquote": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
"integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg=="
},
"untildify": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
"integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
"dev": true
},
"upath": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="
},
"update-browserslist-db": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
"integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
"requires": {
"escalade": "^3.2.0",
"picocolors": "^1.1.0"
}
},
"update-check": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.4.tgz",
"integrity": "sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==",
"dev": true,
"requires": {
"registry-auth-token": "3.3.2",
"registry-url": "3.1.0"
}
},
"uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"requires": {
"punycode": "^2.1.0"
}
},
"url-parse": {
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
"requires": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
}
},
"use-memo-one": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz",
"integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==",
"requires": {}
},
"util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
"util.promisify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
"integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==",
"requires": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.2",
"has-symbols": "^1.0.1",
"object.getownpropertydescriptors": "^2.1.0"
}
},
"utila": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
"integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA=="
},
"utils-merge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
},
"uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
},
"v8-to-istanbul": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz",
"integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.1",
"convert-source-map": "^1.6.0",
"source-map": "^0.7.3"
},
"dependencies": {
"convert-source-map": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
}
}
},
"vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
},
"verror": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
"integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
"dev": true,
"requires": {
"assert-plus": "^1.0.0",
"core-util-is": "1.0.2",
"extsprintf": "^1.2.0"
}
},
"w3c-hr-time": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
"requires": {
"browser-process-hrtime": "^1.0.0"
}
},
"w3c-xmlserializer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
"integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
"requires": {
"xml-name-validator": "^3.0.0"
}
},
"walker": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
"integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
"requires": {
"makeerror": "1.0.12"
}
},
"warning": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
"integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
"requires": {
"loose-envify": "^1.0.0"
}
},
"watchpack": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
"integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
"requires": {
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.1.2"
}
},
"wbuf": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
"requires": {
"minimalistic-assert": "^1.0.0"
}
},
"webidl-conversions": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
},
"webpack": {
"version": "5.97.1",
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz",
"integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==",
"requires": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.6",
"@webassemblyjs/ast": "^1.14.1",
"@webassemblyjs/wasm-edit": "^1.14.1",
"@webassemblyjs/wasm-parser": "^1.14.1",
"acorn": "^8.14.0",
"browserslist": "^4.24.0",
"chrome-trace-event": "^1.0.2",
"enhanced-resolve": "^5.17.1",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.2.11",
"json-parse-even-better-errors": "^2.3.1",
"loader-runner": "^4.2.0",
"mime-types": "^2.1.27",
"neo-async": "^2.6.2",
"schema-utils": "^3.2.0",
"tapable": "^2.1.1",
"terser-webpack-plugin": "^5.3.10",
"watchpack": "^2.4.1",
"webpack-sources": "^3.2.3"
},
"dependencies": {
"eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"requires": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
}
},
"estraverse": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
},
"schema-utils": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"requires": {
"@types/json-schema": "^7.0.8",
"ajv": "^6.12.5",
"ajv-keywords": "^3.5.2"
}
},
"webpack-sources": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
"integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="
}
}
},
"webpack-cli": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz",
"integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==",
"dev": true,
"requires": {
"@discoveryjs/json-ext": "^0.5.0",
"@webpack-cli/configtest": "^1.2.0",
"@webpack-cli/info": "^1.5.0",
"@webpack-cli/serve": "^1.7.0",
"colorette": "^2.0.14",
"commander": "^7.0.0",
"cross-spawn": "^7.0.3",
"fastest-levenshtein": "^1.0.12",
"import-local": "^3.0.2",
"interpret": "^2.2.0",
"rechoir": "^0.7.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"commander": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
"dev": true
}
}
},
"webpack-dev-middleware": {
"version": "5.3.4",
"resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz",
"integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==",
"requires": {
"colorette": "^2.0.10",
"memfs": "^3.4.3",
"mime-types": "^2.1.31",
"range-parser": "^1.2.1",
"schema-utils": "^4.0.0"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"range-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
}
}
},
"webpack-dev-server": {
"version": "4.15.2",
"resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz",
"integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==",
"requires": {
"@types/bonjour": "^3.5.9",
"@types/connect-history-api-fallback": "^1.3.5",
"@types/express": "^4.17.13",
"@types/serve-index": "^1.9.1",
"@types/serve-static": "^1.13.10",
"@types/sockjs": "^0.3.33",
"@types/ws": "^8.5.5",
"ansi-html-community": "^0.0.8",
"bonjour-service": "^1.0.11",
"chokidar": "^3.5.3",
"colorette": "^2.0.10",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"default-gateway": "^6.0.3",
"express": "^4.17.3",
"graceful-fs": "^4.2.6",
"html-entities": "^2.3.2",
"http-proxy-middleware": "^2.0.3",
"ipaddr.js": "^2.0.1",
"launch-editor": "^2.6.0",
"open": "^8.0.9",
"p-retry": "^4.5.0",
"rimraf": "^3.0.2",
"schema-utils": "^4.0.0",
"selfsigned": "^2.1.1",
"serve-index": "^1.9.1",
"sockjs": "^0.3.24",
"spdy": "^4.0.2",
"webpack-dev-middleware": "^5.3.4",
"ws": "^8.13.0"
},
"dependencies": {
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"ajv-formats": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"requires": {}
},
"ajv-keywords": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"requires": {
"fast-deep-equal": "^3.1.3"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"schema-utils": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
"integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"requires": {
"@types/json-schema": "^7.0.9",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0"
}
},
"ws": {
"version": "8.18.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
"integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
"requires": {}
}
}
},
"webpack-manifest-plugin": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz",
"integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==",
"requires": {
"tapable": "^2.0.0",
"webpack-sources": "^2.2.0"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"webpack-sources": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz",
"integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==",
"requires": {
"source-list-map": "^2.0.1",
"source-map": "^0.6.1"
}
}
}
},
"webpack-merge": {
"version": "5.10.0",
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz",
"integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==",
"dev": true,
"requires": {
"clone-deep": "^4.0.1",
"flat": "^5.0.2",
"wildcard": "^2.0.0"
}
},
"webpack-sources": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
"integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
"requires": {
"source-list-map": "^2.0.0",
"source-map": "~0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
},
"websocket-driver": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz",
"integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
"requires": {
"http-parser-js": ">=0.5.1",
"safe-buffer": ">=5.1.0",
"websocket-extensions": ">=0.1.1"
}
},
"websocket-extensions": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="
},
"whatwg-encoding": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
"requires": {
"iconv-lite": "0.4.24"
},
"dependencies": {
"iconv-lite": {
"version": "0.4.24",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
}
}
},
"whatwg-fetch": {
"version": "3.6.20",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz",
"integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg=="
},
"whatwg-mimetype": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
"integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
},
"whatwg-url": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
"optional": true,
"requires": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
},
"dependencies": {
"webidl-conversions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
"optional": true
}
}
},
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"requires": {
"isexe": "^2.0.0"
}
},
"which-boxed-primitive": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
"integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
"requires": {
"is-bigint": "^1.1.0",
"is-boolean-object": "^1.2.1",
"is-number-object": "^1.1.1",
"is-string": "^1.1.1",
"is-symbol": "^1.1.1"
}
},
"which-builtin-type": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
"integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
"requires": {
"call-bound": "^1.0.2",
"function.prototype.name": "^1.1.6",
"has-tostringtag": "^1.0.2",
"is-async-function": "^2.0.0",
"is-date-object": "^1.1.0",
"is-finalizationregistry": "^1.1.0",
"is-generator-function": "^1.0.10",
"is-regex": "^1.2.1",
"is-weakref": "^1.0.2",
"isarray": "^2.0.5",
"which-boxed-primitive": "^1.1.0",
"which-collection": "^1.0.2",
"which-typed-array": "^1.1.16"
}
},
"which-collection": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
"integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
"requires": {
"is-map": "^2.0.3",
"is-set": "^2.0.3",
"is-weakmap": "^2.0.2",
"is-weakset": "^2.0.3"
}
},
"which-module": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
"integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
"dev": true
},
"which-typed-array": {
"version": "1.1.16",
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz",
"integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==",
"requires": {
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.7",
"for-each": "^0.3.3",
"gopd": "^1.0.1",
"has-tostringtag": "^1.0.2"
}
},
"wide-align": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
"integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
"optional": true,
"requires": {
"string-width": "^1.0.2 || 2 || 3 || 4"
}
},
"widest-line": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
"integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
"dev": true,
"requires": {
"string-width": "^5.0.1"
},
"dependencies": {
"ansi-regex": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true
},
"string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"requires": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
}
},
"strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"requires": {
"ansi-regex": "^6.0.1"
}
}
}
},
"wildcard": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz",
"integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==",
"dev": true
},
"word-wrap": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="
},
"workbox-background-sync": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz",
"integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==",
"requires": {
"idb": "^7.0.1",
"workbox-core": "6.6.0"
}
},
"workbox-broadcast-update": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz",
"integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-build": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz",
"integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==",
"requires": {
"@apideck/better-ajv-errors": "^0.3.1",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"ajv": "^8.6.0",
"common-tags": "^1.8.0",
"fast-json-stable-stringify": "^2.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"pretty-bytes": "^5.3.0",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.0",
"source-map": "^0.8.0-beta.0",
"stringify-object": "^3.3.0",
"strip-comments": "^2.0.1",
"tempy": "^0.6.0",
"upath": "^1.2.0",
"workbox-background-sync": "6.6.0",
"workbox-broadcast-update": "6.6.0",
"workbox-cacheable-response": "6.6.0",
"workbox-core": "6.6.0",
"workbox-expiration": "6.6.0",
"workbox-google-analytics": "6.6.0",
"workbox-navigation-preload": "6.6.0",
"workbox-precaching": "6.6.0",
"workbox-range-requests": "6.6.0",
"workbox-recipes": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0",
"workbox-streams": "6.6.0",
"workbox-sw": "6.6.0",
"workbox-window": "6.6.0"
},
"dependencies": {
"@apideck/better-ajv-errors": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz",
"integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==",
"requires": {
"json-schema": "^0.4.0",
"jsonpointer": "^5.0.0",
"leven": "^3.1.0"
}
},
"ajv": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"requires": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2"
}
},
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
},
"source-map": {
"version": "0.8.0-beta.0",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz",
"integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==",
"requires": {
"whatwg-url": "^7.0.0"
}
},
"tr46": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
"integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==",
"requires": {
"punycode": "^2.1.0"
}
},
"webidl-conversions": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
"integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
},
"whatwg-url": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
"integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
"requires": {
"lodash.sortby": "^4.7.0",
"tr46": "^1.0.1",
"webidl-conversions": "^4.0.2"
}
}
}
},
"workbox-cacheable-response": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz",
"integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-core": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz",
"integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ=="
},
"workbox-expiration": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz",
"integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==",
"requires": {
"idb": "^7.0.1",
"workbox-core": "6.6.0"
}
},
"workbox-google-analytics": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz",
"integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==",
"requires": {
"workbox-background-sync": "6.6.0",
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"workbox-navigation-preload": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz",
"integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-precaching": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz",
"integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==",
"requires": {
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"workbox-range-requests": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz",
"integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-recipes": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz",
"integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==",
"requires": {
"workbox-cacheable-response": "6.6.0",
"workbox-core": "6.6.0",
"workbox-expiration": "6.6.0",
"workbox-precaching": "6.6.0",
"workbox-routing": "6.6.0",
"workbox-strategies": "6.6.0"
}
},
"workbox-routing": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz",
"integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-strategies": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz",
"integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==",
"requires": {
"workbox-core": "6.6.0"
}
},
"workbox-streams": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz",
"integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==",
"requires": {
"workbox-core": "6.6.0",
"workbox-routing": "6.6.0"
}
},
"workbox-sw": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz",
"integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ=="
},
"workbox-webpack-plugin": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz",
"integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==",
"requires": {
"fast-json-stable-stringify": "^2.1.0",
"pretty-bytes": "^5.4.1",
"upath": "^1.2.0",
"webpack-sources": "^1.4.3",
"workbox-build": "6.6.0"
}
},
"workbox-window": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz",
"integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==",
"requires": {
"@types/trusted-types": "^2.0.2",
"workbox-core": "6.6.0"
}
},
"wrap-ansi": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"requires": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
}
},
"wrap-ansi-cjs": {
"version": "npm:wrap-ansi@7.0.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"requires": {
"ansi-styles": "^4.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^6.0.0"
}
},
"wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
"write-file-atomic": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
"integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
"requires": {
"imurmurhash": "^0.1.4",
"is-typedarray": "^1.0.0",
"signal-exit": "^3.0.2",
"typedarray-to-buffer": "^3.1.5"
}
},
"ws": {
"version": "7.5.10",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz",
"integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
"requires": {}
},
"xml-name-validator": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
},
"xmlchars": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
},
"xtend": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
},
"y18n": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
"integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
"dev": true
},
"yallist": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
},
"yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="
},
"yargs": {
"version": "15.4.1",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
"integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
"dev": true,
"requires": {
"cliui": "^6.0.0",
"decamelize": "^1.2.0",
"find-up": "^4.1.0",
"get-caller-file": "^2.0.1",
"require-directory": "^2.1.1",
"require-main-filename": "^2.0.0",
"set-blocking": "^2.0.0",
"string-width": "^4.2.0",
"which-module": "^2.0.0",
"y18n": "^4.0.0",
"yargs-parser": "^18.1.2"
},
"dependencies": {
"find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"requires": {
"p-locate": "^4.1.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": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"requires": {
"p-limit": "^2.2.0"
}
}
}
},
"yargs-parser": {
"version": "18.1.3",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
"integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
"dev": true,
"requires": {
"camelcase": "^5.0.0",
"decamelize": "^1.2.0"
}
},
"yauzl": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
"dev": true,
"requires": {
"buffer-crc32": "~0.2.3",
"fd-slicer": "~1.1.0"
}
},
"yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
}
}
}
| 723,911 | 9,057 |
hyperswitch-control-center | cog.toml | .toml | tag_prefix = "v"
ignore_merge_commits = true
# the HTML comments (`<!-- N -->`) are a workaround to have sections in custom order, since they are alphabetically sorted
[commit_types]
feat = { changelog_title = "<!-- 0 -->Features" }
fix = { changelog_title = "<!-- 1 -->Bug Fixes" }
perf = { changelog_title = "<!-- 2 -->Performance" }
refactor = { changelog_title = "<!-- 3 -->Refactors" }
test = { changelog_title = "<!-- 4 -->Testing" }
docs = { changelog_title = "<!-- 5 -->Documentation" }
chore = { changelog_title = "<!-- 6 -->Miscellaneous Tasks" }
build = { changelog_title = "<!-- 7 -->Build System / Dependencies" }
ci = { changelog_title = "Continuous Integration", omit_from_changelog = true }
[changelog]
path = "CHANGELOG.md"
template = ".github/cocogitto-changelog-template"
remote = "github.com"
owner = "juspay"
repository = "hyperswitch-control-center"
| 234 | 9,058 |
hyperswitch-control-center | docs/SECURITY.md | .md | # Security Policy
## Reporting a security issue
The hyperswitch project team welcomes security reports and is committed to providing prompt attention to security issues. Security issues should be reported privately via the [advisories page on GitHub](https://github.com/juspay/hyperswitch/security/advisories/new) or by email at hyperswitch@juspay.in. Security issues should not be reported via the public GitHub Issue tracker.
| 87 | 9,059 |
hyperswitch-control-center | docs/CONTRIBUTING.md | .md | # Contributing
We welcome contributions from the community! If you would like to contribute to Hyperswitch, please follow our contribution guidelines.
### Commit Conventions
We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for our commit messages. Each commit message should have a structured format:
`<type>(<subject>): <description>`
The commit message should begin with one of the following keywords followed by a colon: 'feat', 'fix', 'chore', 'refactor', 'docs', 'test' or 'style'. For example, it should be formatted like this: `feat: <subject> - <description>`
### Signing Commits
All commits should be signed to verify the authenticity of contributors. Follow the steps below to sign your commits:
1. Generate a GPG key if you haven't already:
```bash
gpg --gen-key
```
2. List your GPG keys and copy the GPG key ID::
```bash
gpg --list-secret-keys --keyid-format LONG
```
#### Identify the GPG key you want to add to your GitHub account.
a. Run the following command to export your GPG public key in ASCII-armored format:
```bash
gpg --armor --export <GPG_KEY_ID>
```
Replace <GPG_KEY_ID> with the actual key ID.
b. Copy the entire output, including the lines that start with "-----BEGIN PGP PUBLIC KEY BLOCK-----" and "-----END PGP PUBLIC KEY BLOCK-----".
c. Go to your GitHub Settings.
d. Click on "SSH and GPG keys" in the left sidebar.
e. Click the "New GPG key" button.
f. Paste your GPG public key into the provided text box.
g. Click the "Add GPG key" button.
h. Now your GPG public key is associated with your GitHub account, and you can sign your commits for added security.
3. Configure Git to use your GPG key:
```bash
git config --global user.signingkey <GPG_KEY_ID>
```
4. Set Git to sign all your commits by default:
```bash
git config --global commit.gpgSign true
```
5. Commit your changes with the -S option to sign the commit:
```bash
git commit -S -m "your commit message"
```
For further assistance, please refer to the [GitHub documentation on signing commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
---
## Standard Process for Raising a Pull Request (PR) from a Branch
### Introduction
Welcome to the standard process for raising a Pull Request (PR) directly from a branch in our project! Please follow these guidelines to ensure that your contributions align with our project's goals and standards.
### Steps to Raise a PR from a Branch
1. **Clone the Repository**:
- Clone the main repository to your local machine using the following command:
```bash
git clone https://github.com/juspay/hyperswitch-control-center.git
```
2. **Create a New Branch**:
- Create a new branch for your changes directly in the main repository. Please ensure the branch name is descriptive and relates to the feature or bug you're addressing.
```bash
git checkout -b feature/your-feature-name
```
3. **Make Changes**:
- Make the necessary changes in the codebase, ensuring that you follow the project's coding guidelines and standards.
4. **Commit Changes**:
- Commit your changes with a clear and descriptive commit message. Please follow conventional commit [guidelines](https://www.conventionalcommits.org/).
5. **Push Changes**:
- Push your changes to the branch in the main repository.
```bash
git push origin feature/your-feature-name
```
6. **Create a Pull Request**:
- Navigate to the main repository on GitHub and create a new PR from your branch. Provide a detailed description of the changes, along with any relevant context or screenshots.
7. **Respond to Feedback**:
- Be responsive to feedback from reviewers. Address any comments or suggestions promptly and make the necessary changes as required.
### Additional Notes
- Ensure your PR adheres to our coding guidelines, style conventions, and documentation standards.
- Include relevant tests, documentation updates, or screenshots, if applicable.
- Collaborate and communicate effectively with other contributors and maintainers throughout the review process.
| 969 | 9,060 |
hyperswitch-control-center | docs/CODE_OF_CONDUCT.md | .md | # Code of Conduct
The hyperswitch control center project adheres to the [Rescript](https://rescript-lang.org/community/code-of-conduct) and
[React](https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md) code of conduct.
This describes the minimum behavior expected from all contributors.
| 65 | 9,061 |
hyperswitch-control-center | public/hyperswitch/_redirects | none | /api/* https://integ-api.hyperswitch.io/:splat 200
/* /index.html 200 | 32 | 9,062 |
hyperswitch-control-center | public/hyperswitch/index.html | .html | <!doctype html>
<html lang="en">
<head>
<title>Loading...</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet"
/>
<style>
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Bold.woff2") format("woff2");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-BoldItalic.woff2") format("woff2");
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Black.woff2") format("woff2");
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-BlackItalic.woff2") format("woff2");
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-ExtraBold.woff2") format("woff2");
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-ExtraBoldItalic.woff2")
format("woff2");
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-ExtraLight.woff2") format("woff2");
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-ExtraLightItalic.woff2")
format("woff2");
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Italic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-LightItalic.woff2") format("woff2");
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Medium.woff2") format("woff2");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-MediumItalic.woff2")
format("woff2");
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-SemiBold.woff2") format("woff2");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-SemiBoldItalic.woff2")
format("woff2");
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-Thin.woff2") format("woff2");
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: "InterDisplay";
src: url("/assets/fonts/InterDisplay-ThinItalic.woff2") format("woff2");
font-weight: 100;
font-style: italic;
}
</style>
<style>
html,
body {
font-family: "InterDisplay", sans-serif;
font-weight: 400;
font-size: 16px;
-webkit-font-smoothing: antialiased;
padding: 0;
margin: 0;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
#app {
display: flex;
flex-direction: column;
flex: 1;
}
.list-item {
background-color: rgba(255, 255, 255, 1);
padding: 10px;
transition: background-color 0.2s;
}
.list-item:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.clickable {
cursor: pointer;
}
.react-pdf__Page__annotations {
height: auto !important;
width: 0 !important;
}
.linkAnnotation {
width: 20% !important;
}
.linkAnnotation {
position: absolute;
}
.linkAnnotation a {
display: flex;
width: 100%;
height: 100%;
}
@media (prefers-color-scheme: dark) {
body {
color: rgba(229, 231, 235, 1);
background-color: rgba(15, 16, 17, 1);
}
}
</style>
<link rel="stylesheet" href="/app.css" />
<script>
function clearCookiesWithURLs() {
document.cookie.split(";").forEach(function (c) {
c = c.trim();
cookie_name = c.split("=")[0];
cookie_value = c.split("=")[1];
cookie_value = decodeURIComponent(cookie_value);
if (
cookie_value.indexOf("https://") > -1 ||
cookie_value.indexOf("http://") > -1
) {
document.cookie =
cookie_name + "=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;";
}
});
}
</script>
</head>
<body>
<!-- SDK Loader Manager (noscript) -->
<script defer type="module" src="/wasm/euclid.js"></script>
<script defer src="/module.js"></script>
<div id="app"></div>
<img
height="0px"
width="0px"
referrerpolicy="no-referrer-when-downgrade"
src="https://static.scarf.sh/a.png?x-pxid=a89585f4-70c5-4bbe-aab2-0d38c04012e2"
/>
<script defer onload="clearCookiesWithURLs()" src="/app.js"></script>
</body>
</html>
| 1,735 | 9,063 |
hyperswitch-control-center | public/hyperswitch/module.js | .js | let wasm;
async function init() {
try {
wasm = await import("/wasm/euclid.js");
await wasm.default("/wasm/euclid_bg.wasm");
return { status: true, wasm };
} catch (e) {
console.error(e, "FAILED TO LOAD WASM CONFIG");
throw e;
}
}
function getConnectorConfig(connectorName) {
if (wasm) {
return wasm.getConnectorConfig(connectorName);
} else {
return {};
}
}
function getPayoutConnectorConfig(connectorName) {
if (wasm) {
return wasm.getPayoutConnectorConfig(connectorName);
} else {
return {};
}
}
function getDescriptionCategory() {
if (wasm) {
return wasm.getDescriptionCategory();
} else {
return {};
}
}
function getPaymentMethodConfig(connectorName) {
if (wasm) {
return wasm.getPaymentMethodConfig(connectorName);
} else {
return {};
}
}
function getRequestPayload(selectedPaymentMethods, response) {
if (wasm) {
return wasm.getRequestPayload(selectedPaymentMethods, response);
} else {
return [];
}
}
function getResponsePayload(response) {
if (wasm) {
return wasm.getResponsePayload(response);
} else {
return {};
}
}
function getParsedJson(str) {
try {
if (wasm) {
return JSON.parse(wasm.parseToString(str));
} else {
return str;
}
} catch (e) {
console.error(e, "FAILED TO PARSE THE STRING");
throw e;
}
}
function getThreeDsKeys() {
if (wasm) {
return wasm.getThreeDsKeys();
} else {
return [];
}
}
function getSurchargeKeys() {
if (wasm) {
return wasm.getSurchargeKeys();
} else {
return [];
}
}
function getAllKeys() {
if (wasm) {
return wasm.getAllKeys();
} else {
return [];
}
}
function getKeyType(str) {
if (wasm) {
return wasm.getKeyType(str);
} else {
return "";
}
}
function getAllConnectors() {
if (wasm) {
return wasm.getAllConnectors();
} else {
return [];
}
}
function getVariantValues(str) {
if (wasm) {
return wasm.getVariantValues(str);
} else {
return [];
}
}
function payPalCreateAccountWindow() {
(function (d, s, id) {
var js,
ref = d.getElementsByTagName(s)[0];
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.async = true;
js.src =
"https://www.paypal.com/webapps/merchantboarding/js/lib/lightbox/partner.js";
ref.parentNode.insertBefore(js, ref);
}
})(document, "script", "paypal-js");
}
function getAuthenticationConnectorConfig(connectorName) {
if (wasm) {
return wasm.getAuthenticationConnectorConfig(connectorName);
} else {
return {};
}
}
function getPMAuthenticationProcessorConfig(connectorName) {
if (wasm) {
return wasm.getPMAuthenticationProcessorConfig(connectorName);
} else {
return {};
}
}
function getTaxProcessorConfig(connectorName) {
if (wasm) {
return wasm.getTaxProcessorConfig(connectorName);
} else {
return {};
}
}
function getPayoutDescriptionCategory() {
if (wasm) {
return wasm.getPayoutDescriptionCategory();
} else {
return {};
}
}
function getAllPayoutKeys() {
if (wasm) {
return wasm.getAllPayoutKeys();
} else {
return [];
}
}
function getPayoutVariantValues(str) {
if (wasm) {
return wasm.getPayoutVariantValues(str);
} else {
return [];
}
}
const getAccessibleColor = (hex) => {
let color = hex.replace(/#/g, "");
// if shorthand notation is passed in
if (color.length !== 6) {
color = `${color}${color}`;
}
// rgb values
var r = parseInt(color.substr(0, 2), 16);
var g = parseInt(color.substr(2, 2), 16);
var b = parseInt(color.substr(4, 2), 16);
var yiq = (r * 299 + g * 587 + b * 114) / 1000;
return yiq >= 128 ? "#000000" : "#FFFFFF";
};
///////////////////////////////////////////////////////////////////////////////
// Change hex color into RGB
///////////////////////////////////////////////////////////////////////////////
const getRGBColor = (hex, type) => {
let color = hex.replace(/#/g, "");
// if shorthand notation is passed in
if (color.length !== 6) {
color = `${color}${color}`;
}
// rgb values
var r = parseInt(color.substr(0, 2), 16);
var g = parseInt(color.substr(2, 2), 16);
var b = parseInt(color.substr(4, 2), 16);
return `--color-${type}: ${r}, ${g}, ${b};`;
};
const getRGBvalue = (hex) => {
let color = hex.replace(/#/g, "");
if (color.length !== 6) {
color = `${color}${color}`;
}
var r = parseInt(color.substr(0, 2), 16);
var g = parseInt(color.substr(2, 2), 16);
var b = parseInt(color.substr(4, 2), 16);
return `${r}, ${g}, ${b}`;
};
const toSnakeCase = (str) => {
return str
.replace(/([A-Z])/g, "-$1")
.replace(/\s+/g, "-")
.replace(/^-/, "")
.toLowerCase();
};
const generateVariablesForSection = (sectionData, sectionName) => {
return (
Object.entries(sectionData)
.map(([key, value]) => {
const processedValue =
typeof value === "string" && value.startsWith("#")
? getRGBvalue(value)
: value;
return ` --${sectionName}-${toSnakeCase(key)}: ${processedValue};`;
})
.join("\n") + "\n"
);
};
const generateButtonVariables = (buttons) => {
return `
/* Primary Button */
${generateVariablesForSection(buttons.primary, "btn-primary")}
/* Secondary Button */
${generateVariablesForSection(buttons.secondary, "btn-secondary")}
`;
};
function appendStyle(themesConfig) {
const settings = themesConfig.settings;
let cssVariables = `:root{
/* Colors */
${generateVariablesForSection(settings.colors, "colors")}
/* sidebar */
${generateVariablesForSection(settings.sidebar, "sidebar")}
/* Typography */
${generateVariablesForSection(settings.typography, "base")}
/* Buttons */
${generateButtonVariables(settings.buttons)}
/* Borders */
${generateVariablesForSection(settings.borders, "borders")}
/* Spacing */
${generateVariablesForSection(settings.spacing, "spacing")}
}`;
let style = document.getElementById("custom-themes-style");
if (style) {
style.textContent = cssVariables;
} else {
style = document.createElement("style");
style.id = "custom-themes-style";
style.textContent = cssVariables;
document.head.appendChild(style);
}
}
| 1,643 | 9,064 |
hyperswitch-control-center | public/hyperswitch/defaultConfig.js | .js | window._env_ = {
theme: {
primary_color: "",
primary_hover_color: "",
sidebar_color: "",
},
endpoints: {
api_url: "",
},
};
| 40 | 9,065 |
hyperswitch-control-center | public/hyperswitch/wasm/euclid.js | .js | let wasm;
const heap = new Array(128).fill(undefined);
heap.push(undefined, null, true, false);
function getObject(idx) { return heap[idx]; }
let WASM_VECTOR_LEN = 0;
let cachedUint8ArrayMemory0 = null;
function getUint8ArrayMemory0() {
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
}
return cachedUint8ArrayMemory0;
}
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
? function (arg, view) {
return cachedTextEncoder.encodeInto(arg, view);
}
: function (arg, view) {
const buf = cachedTextEncoder.encode(arg);
view.set(buf);
return {
read: arg.length,
written: buf.length
};
});
function passStringToWasm0(arg, malloc, realloc) {
if (realloc === undefined) {
const buf = cachedTextEncoder.encode(arg);
const ptr = malloc(buf.length, 1) >>> 0;
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
WASM_VECTOR_LEN = buf.length;
return ptr;
}
let len = arg.length;
let ptr = malloc(len, 1) >>> 0;
const mem = getUint8ArrayMemory0();
let offset = 0;
for (; offset < len; offset++) {
const code = arg.charCodeAt(offset);
if (code > 0x7F) break;
mem[ptr + offset] = code;
}
if (offset !== len) {
if (offset !== 0) {
arg = arg.slice(offset);
}
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
const ret = encodeString(arg, view);
offset += ret.written;
ptr = realloc(ptr, len, offset, 1) >>> 0;
}
WASM_VECTOR_LEN = offset;
return ptr;
}
let cachedDataViewMemory0 = null;
function getDataViewMemory0() {
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
}
return cachedDataViewMemory0;
}
let heap_next = heap.length;
function addHeapObject(obj) {
if (heap_next === heap.length) heap.push(heap.length + 1);
const idx = heap_next;
heap_next = heap[idx];
heap[idx] = obj;
return idx;
}
function handleError(f, args) {
try {
return f.apply(this, args);
} catch (e) {
wasm.__wbindgen_export_2(addHeapObject(e));
}
}
function dropObject(idx) {
if (idx < 132) return;
heap[idx] = heap_next;
heap_next = idx;
}
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
function isLikeNone(x) {
return x === undefined || x === null;
}
function debugString(val) {
// primitive types
const type = typeof val;
if (type == 'number' || type == 'boolean' || val == null) {
return `${val}`;
}
if (type == 'string') {
return `"${val}"`;
}
if (type == 'symbol') {
const description = val.description;
if (description == null) {
return 'Symbol';
} else {
return `Symbol(${description})`;
}
}
if (type == 'function') {
const name = val.name;
if (typeof name == 'string' && name.length > 0) {
return `Function(${name})`;
} else {
return 'Function';
}
}
// objects
if (Array.isArray(val)) {
const length = val.length;
let debug = '[';
if (length > 0) {
debug += debugString(val[0]);
}
for(let i = 1; i < length; i++) {
debug += ', ' + debugString(val[i]);
}
debug += ']';
return debug;
}
// Test for built-in
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
let className;
if (builtInMatches && builtInMatches.length > 1) {
className = builtInMatches[1];
} else {
// Failed to match the standard '[object ClassName]'
return toString.call(val);
}
if (className == 'Object') {
// we're a user defined class or Object
// JSON.stringify avoids problems with cycles, and is generally much
// easier than looping through ownProperties of `val`.
try {
return 'Object(' + JSON.stringify(val) + ')';
} catch (_) {
return 'Object';
}
}
// errors
if (val instanceof Error) {
return `${val.name}: ${val.message}\n${val.stack}`;
}
// TODO we could test for more things here, like `Set`s and `Map`s.
return className;
}
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
function getStringFromWasm0(ptr, len) {
ptr = ptr >>> 0;
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
}
/**
* This function can be used by the frontend to educate wasm about the forex rates data.
* The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency
* to all different currencies present.
* @param {any} forex
* @returns {any}
*/
export function setForexData(forex) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.setForexData(retptr, addHeapObject(forex));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* This function can be used to perform currency_conversion on the input amount, from_currency,
* to_currency which are all expected to be one of currencies we already have in our Currency
* enum.
* @param {bigint} amount
* @param {any} from_currency
* @param {any} to_currency
* @returns {any}
*/
export function convertCurrency(amount, from_currency, to_currency) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.convertCurrency(retptr, amount, addHeapObject(from_currency), addHeapObject(to_currency));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* This function can be used by the frontend to provide the WASM with information about
* all the merchant's connector accounts. The input argument is a vector of all the merchant's
* connector accounts from the API.
* @param {any} mcas
* @returns {any}
*/
export function seedKnowledgeGraph(mcas) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.seedKnowledgeGraph(retptr, addHeapObject(mcas));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* This function allows the frontend to get all the merchant's configured
* connectors that are valid for a rule based on the conditions specified in
* the rule
* @param {any} rule
* @returns {any}
*/
export function getValidConnectorsForRule(rule) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getValidConnectorsForRule(retptr, addHeapObject(rule));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {any} js_program
* @returns {any}
*/
export function analyzeProgram(js_program) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.analyzeProgram(retptr, addHeapObject(js_program));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {any} program
* @param {any} input
* @returns {any}
*/
export function runProgram(program, input) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.runProgram(retptr, addHeapObject(program), addHeapObject(input));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @returns {any}
*/
export function getAllConnectors() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getAllConnectors(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @returns {any}
*/
export function getAllKeys() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getAllKeys(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {string}
*/
export function getKeyType(key) {
let deferred3_0;
let deferred3_1;
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getKeyType(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
var r3 = getDataViewMemory0().getInt32(retptr + 4 * 3, true);
var ptr2 = r0;
var len2 = r1;
if (r3) {
ptr2 = 0; len2 = 0;
throw takeObject(r2);
}
deferred3_0 = ptr2;
deferred3_1 = len2;
return getStringFromWasm0(ptr2, len2);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_export_3(deferred3_0, deferred3_1, 1);
}
}
/**
* @returns {any}
*/
export function getThreeDsKeys() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getThreeDsKeys(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @returns {any}
*/
export function getSurchargeKeys() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getSurchargeKeys(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} val
* @returns {string}
*/
export function parseToString(val) {
let deferred2_0;
let deferred2_1;
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(val, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.parse(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
deferred2_0 = r0;
deferred2_1 = r1;
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_export_3(deferred2_0, deferred2_1, 1);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getVariantValues(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getVariantValues(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {bigint} n1
* @param {bigint} n2
* @returns {bigint}
*/
export function addTwo(n1, n2) {
const ret = wasm.addTwo(n1, n2);
return ret;
}
/**
* @returns {any}
*/
export function getDescriptionCategory() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getDescriptionCategory(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getConnectorConfig(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getConnectorConfig(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getPayoutConnectorConfig(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getPayoutConnectorConfig(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getAuthenticationConnectorConfig(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getAuthenticationConnectorConfig(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getTaxProcessorConfig(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getTaxProcessorConfig(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getPMAuthenticationProcessorConfig(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getPMAuthenticationProcessorConfig(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {any} input
* @param {any} response
* @returns {any}
*/
export function getRequestPayload(input, response) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getRequestPayload(retptr, addHeapObject(input), addHeapObject(response));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {any} input
* @returns {any}
*/
export function getResponsePayload(input) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getResponsePayload(retptr, addHeapObject(input));
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @returns {any}
*/
export function getAllPayoutKeys() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getAllPayoutKeys(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @param {string} key
* @returns {any}
*/
export function getPayoutVariantValues(key) {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(key, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.getPayoutVariantValues(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
* @returns {any}
*/
export function getPayoutDescriptionCategory() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.getPayoutDescriptionCategory(retptr);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
if (r2) {
throw takeObject(r1);
}
return takeObject(r0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
}
}
/**
*
* Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and
* usage for web
* @param {string} val
* @returns {string}
*/
export function parse(val) {
let deferred2_0;
let deferred2_1;
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
const ptr0 = passStringToWasm0(val, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len0 = WASM_VECTOR_LEN;
wasm.parse(retptr, ptr0, len0);
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
deferred2_0 = r0;
deferred2_1 = r1;
return getStringFromWasm0(r0, r1);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_export_3(deferred2_0, deferred2_1, 1);
}
}
async function __wbg_load(module, imports) {
if (typeof Response === 'function' && module instanceof Response) {
if (typeof WebAssembly.instantiateStreaming === 'function') {
try {
return await WebAssembly.instantiateStreaming(module, imports);
} catch (e) {
if (module.headers.get('Content-Type') != 'application/wasm') {
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
} else {
throw e;
}
}
}
const bytes = await module.arrayBuffer();
return await WebAssembly.instantiate(bytes, imports);
} else {
const instance = await WebAssembly.instantiate(module, imports);
if (instance instanceof WebAssembly.Instance) {
return { instance, module };
} else {
return instance;
}
}
}
function __wbg_get_imports() {
const imports = {};
imports.wbg = {};
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
const ret = String(getObject(arg1));
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len1 = WASM_VECTOR_LEN;
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
};
imports.wbg.__wbg_buffer_aa30bbb65cb44323 = function(arg0) {
const ret = getObject(arg0).buffer;
return addHeapObject(ret);
};
imports.wbg.__wbg_call_c45d13337ffb12ac = function() { return handleError(function (arg0, arg1) {
const ret = getObject(arg0).call(getObject(arg1));
return addHeapObject(ret);
}, arguments) };
imports.wbg.__wbg_done_362f78ab584a24b5 = function(arg0) {
const ret = getObject(arg0).done;
return ret;
};
imports.wbg.__wbg_entries_27a445ca6b702f8d = function(arg0) {
const ret = Object.entries(getObject(arg0));
return addHeapObject(ret);
};
imports.wbg.__wbg_fromCodePoint_447660524a288ed4 = function() { return handleError(function (arg0) {
const ret = String.fromCodePoint(arg0 >>> 0);
return addHeapObject(ret);
}, arguments) };
imports.wbg.__wbg_from_b4bd31c02b6d179c = function(arg0) {
const ret = Array.from(getObject(arg0));
return addHeapObject(ret);
};
imports.wbg.__wbg_get_01203e6a4116a116 = function(arg0, arg1) {
const ret = getObject(arg0)[arg1 >>> 0];
return addHeapObject(ret);
};
imports.wbg.__wbg_get_e7114b7bf3d9d5f5 = function() { return handleError(function (arg0, arg1) {
const ret = Reflect.get(getObject(arg0), getObject(arg1));
return addHeapObject(ret);
}, arguments) };
imports.wbg.__wbg_getwithrefkey_1dc361bd10053bfe = function(arg0, arg1) {
const ret = getObject(arg0)[getObject(arg1)];
return addHeapObject(ret);
};
imports.wbg.__wbg_instanceof_ArrayBuffer_8b96bf6c71691dc9 = function(arg0) {
let result;
try {
result = getObject(arg0) instanceof ArrayBuffer;
} catch (_) {
result = false;
}
const ret = result;
return ret;
};
imports.wbg.__wbg_instanceof_Map_cd976ea4854c21db = function(arg0) {
let result;
try {
result = getObject(arg0) instanceof Map;
} catch (_) {
result = false;
}
const ret = result;
return ret;
};
imports.wbg.__wbg_instanceof_Uint8Array_faa8901ba56cb8e9 = function(arg0) {
let result;
try {
result = getObject(arg0) instanceof Uint8Array;
} catch (_) {
result = false;
}
const ret = result;
return ret;
};
imports.wbg.__wbg_isArray_6836d46c89daf1b6 = function(arg0) {
const ret = Array.isArray(getObject(arg0));
return ret;
};
imports.wbg.__wbg_isSafeInteger_2fb2b4f942993af4 = function(arg0) {
const ret = Number.isSafeInteger(getObject(arg0));
return ret;
};
imports.wbg.__wbg_iterator_773e0b022e7009f4 = function() {
const ret = Symbol.iterator;
return addHeapObject(ret);
};
imports.wbg.__wbg_length_0a11127664108286 = function(arg0) {
const ret = getObject(arg0).length;
return ret;
};
imports.wbg.__wbg_length_9aaa2867670f533a = function(arg0) {
const ret = getObject(arg0).length;
return ret;
};
imports.wbg.__wbg_new_4c16aab09d1eb450 = function() {
const ret = new Object();
return addHeapObject(ret);
};
imports.wbg.__wbg_new_6e254ba4a466646d = function() {
const ret = new Array();
return addHeapObject(ret);
};
imports.wbg.__wbg_new_820d2bbee2d13ba3 = function() {
const ret = new Map();
return addHeapObject(ret);
};
imports.wbg.__wbg_new_db41cf29086ce106 = function(arg0) {
const ret = new Uint8Array(getObject(arg0));
return addHeapObject(ret);
};
imports.wbg.__wbg_newwithbyteoffsetandlength_c8ea72df7687880b = function(arg0, arg1, arg2) {
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
return addHeapObject(ret);
};
imports.wbg.__wbg_next_95ee887e1f50209d = function() { return handleError(function (arg0) {
const ret = getObject(arg0).next();
return addHeapObject(ret);
}, arguments) };
imports.wbg.__wbg_next_b2690a2dab163f0f = function(arg0) {
const ret = getObject(arg0).next;
return addHeapObject(ret);
};
imports.wbg.__wbg_set_1f2956726252aaf4 = function(arg0, arg1, arg2) {
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
return addHeapObject(ret);
};
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
};
imports.wbg.__wbg_set_e1b9d9ffeee30338 = function(arg0, arg1, arg2) {
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
};
imports.wbg.__wbg_set_e97d203fd145cdae = function(arg0, arg1, arg2) {
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
};
imports.wbg.__wbg_value_87c720f6568103d1 = function(arg0) {
const ret = getObject(arg0).value;
return addHeapObject(ret);
};
imports.wbg.__wbindgen_as_number = function(arg0) {
const ret = +getObject(arg0);
return ret;
};
imports.wbg.__wbindgen_bigint_from_i128 = function(arg0, arg1) {
const ret = arg0 << BigInt(64) | BigInt.asUintN(64, arg1);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
const ret = arg0;
return addHeapObject(ret);
};
imports.wbg.__wbindgen_bigint_from_u128 = function(arg0, arg1) {
const ret = BigInt.asUintN(64, arg0) << BigInt(64) | BigInt.asUintN(64, arg1);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
const ret = BigInt.asUintN(64, arg0);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
const v = getObject(arg1);
const ret = typeof(v) === 'bigint' ? v : undefined;
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
};
imports.wbg.__wbindgen_boolean_get = function(arg0) {
const v = getObject(arg0);
const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2;
return ret;
};
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
const ret = debugString(getObject(arg1));
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
const len1 = WASM_VECTOR_LEN;
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
};
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
const ret = new Error(getStringFromWasm0(arg0, arg1));
return addHeapObject(ret);
};
imports.wbg.__wbindgen_in = function(arg0, arg1) {
const ret = getObject(arg0) in getObject(arg1);
return ret;
};
imports.wbg.__wbindgen_is_bigint = function(arg0) {
const ret = typeof(getObject(arg0)) === 'bigint';
return ret;
};
imports.wbg.__wbindgen_is_function = function(arg0) {
const ret = typeof(getObject(arg0)) === 'function';
return ret;
};
imports.wbg.__wbindgen_is_object = function(arg0) {
const val = getObject(arg0);
const ret = typeof(val) === 'object' && val !== null;
return ret;
};
imports.wbg.__wbindgen_is_string = function(arg0) {
const ret = typeof(getObject(arg0)) === 'string';
return ret;
};
imports.wbg.__wbindgen_is_undefined = function(arg0) {
const ret = getObject(arg0) === undefined;
return ret;
};
imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
const ret = getObject(arg0) === getObject(arg1);
return ret;
};
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
const ret = getObject(arg0) == getObject(arg1);
return ret;
};
imports.wbg.__wbindgen_memory = function() {
const ret = wasm.memory;
return addHeapObject(ret);
};
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
const obj = getObject(arg1);
const ret = typeof(obj) === 'number' ? obj : undefined;
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
};
imports.wbg.__wbindgen_number_new = function(arg0) {
const ret = arg0;
return addHeapObject(ret);
};
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
const ret = getObject(arg0);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
const obj = getObject(arg1);
const ret = typeof(obj) === 'string' ? obj : undefined;
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
var len1 = WASM_VECTOR_LEN;
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
};
imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
const ret = getStringFromWasm0(arg0, arg1);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
throw new Error(getStringFromWasm0(arg0, arg1));
};
return imports;
}
function __wbg_init_memory(imports, memory) {
}
function __wbg_finalize_init(instance, module) {
wasm = instance.exports;
__wbg_init.__wbindgen_wasm_module = module;
cachedDataViewMemory0 = null;
cachedUint8ArrayMemory0 = null;
return wasm;
}
function initSync(module) {
if (wasm !== undefined) return wasm;
if (typeof module !== 'undefined') {
if (Object.getPrototypeOf(module) === Object.prototype) {
({module} = module)
} else {
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
}
}
const imports = __wbg_get_imports();
__wbg_init_memory(imports);
if (!(module instanceof WebAssembly.Module)) {
module = new WebAssembly.Module(module);
}
const instance = new WebAssembly.Instance(module, imports);
return __wbg_finalize_init(instance, module);
}
async function __wbg_init(module_or_path) {
if (wasm !== undefined) return wasm;
if (typeof module_or_path !== 'undefined') {
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
({module_or_path} = module_or_path)
} else {
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
}
}
if (typeof module_or_path === 'undefined') {
module_or_path = new URL('euclid_bg.wasm', import.meta.url);
}
const imports = __wbg_get_imports();
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
module_or_path = fetch(module_or_path);
}
__wbg_init_memory(imports);
const { instance, module } = await __wbg_load(await module_or_path, imports);
return __wbg_finalize_init(instance, module);
}
export { initSync };
export default __wbg_init;
| 10,332 | 9,278 |
hyperswitch-control-center | public/hyperswitch/wasm/package.json | .json | {
"name": "euclid_wasm",
"description": "WASM bindings for Euclid DSL",
"version": "0.1.0",
"license": "Apache-2.0",
"files": [
"euclid_bg.wasm",
"euclid.js",
"euclid.d.ts"
],
"module": "euclid.js",
"types": "euclid.d.ts",
"sideEffects": [
"./snippets/*"
]
}
| 108 | 9,279 |
hyperswitch-control-center | public/hyperswitch/wasm/euclid_bg.wasm.d.ts | .ts | /* tslint:disable */
/* eslint-disable */
export const memory: WebAssembly.Memory;
export const setForexData: (a: number, b: number) => void;
export const convertCurrency: (a: number, b: bigint, c: number, d: number) => void;
export const seedKnowledgeGraph: (a: number, b: number) => void;
export const getValidConnectorsForRule: (a: number, b: number) => void;
export const analyzeProgram: (a: number, b: number) => void;
export const runProgram: (a: number, b: number, c: number) => void;
export const getAllConnectors: (a: number) => void;
export const getAllKeys: (a: number) => void;
export const getKeyType: (a: number, b: number, c: number) => void;
export const getThreeDsKeys: (a: number) => void;
export const getSurchargeKeys: (a: number) => void;
export const getVariantValues: (a: number, b: number, c: number) => void;
export const addTwo: (a: bigint, b: bigint) => bigint;
export const getDescriptionCategory: (a: number) => void;
export const getConnectorConfig: (a: number, b: number, c: number) => void;
export const getPayoutConnectorConfig: (a: number, b: number, c: number) => void;
export const getAuthenticationConnectorConfig: (a: number, b: number, c: number) => void;
export const getTaxProcessorConfig: (a: number, b: number, c: number) => void;
export const getPMAuthenticationProcessorConfig: (a: number, b: number, c: number) => void;
export const getRequestPayload: (a: number, b: number, c: number) => void;
export const getResponsePayload: (a: number, b: number) => void;
export const getAllPayoutKeys: (a: number) => void;
export const getPayoutVariantValues: (a: number, b: number, c: number) => void;
export const getPayoutDescriptionCategory: (a: number) => void;
export const ring_core_0_17_8_bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
export const parse: (a: number, b: number, c: number) => void;
export const parseToString: (a: number, b: number, c: number) => void;
export const __wbindgen_export_0: (a: number, b: number) => number;
export const __wbindgen_export_1: (a: number, b: number, c: number, d: number) => number;
export const __wbindgen_export_2: (a: number) => void;
export const __wbindgen_add_to_stack_pointer: (a: number) => number;
export const __wbindgen_export_3: (a: number, b: number, c: number) => void;
| 675 | 9,280 |
hyperswitch-control-center | public/hyperswitch/wasm/euclid.d.ts | .ts | /* tslint:disable */
/* eslint-disable */
/**
* This function can be used by the frontend to educate wasm about the forex rates data.
* The input argument is a struct fields base_currency and conversion where later is all the conversions associated with the base_currency
* to all different currencies present.
*/
export function setForexData(forex: any): any;
/**
* This function can be used to perform currency_conversion on the input amount, from_currency,
* to_currency which are all expected to be one of currencies we already have in our Currency
* enum.
*/
export function convertCurrency(amount: bigint, from_currency: any, to_currency: any): any;
/**
* This function can be used by the frontend to provide the WASM with information about
* all the merchant's connector accounts. The input argument is a vector of all the merchant's
* connector accounts from the API.
*/
export function seedKnowledgeGraph(mcas: any): any;
/**
* This function allows the frontend to get all the merchant's configured
* connectors that are valid for a rule based on the conditions specified in
* the rule
*/
export function getValidConnectorsForRule(rule: any): any;
export function analyzeProgram(js_program: any): any;
export function runProgram(program: any, input: any): any;
export function getAllConnectors(): any;
export function getAllKeys(): any;
export function getKeyType(key: string): string;
export function getThreeDsKeys(): any;
export function getSurchargeKeys(): any;
export function parseToString(val: string): string;
export function getVariantValues(key: string): any;
export function addTwo(n1: bigint, n2: bigint): bigint;
export function getDescriptionCategory(): any;
export function getConnectorConfig(key: string): any;
export function getPayoutConnectorConfig(key: string): any;
export function getAuthenticationConnectorConfig(key: string): any;
export function getTaxProcessorConfig(key: string): any;
export function getPMAuthenticationProcessorConfig(key: string): any;
export function getRequestPayload(input: any, response: any): any;
export function getResponsePayload(input: any): any;
export function getAllPayoutKeys(): any;
export function getPayoutVariantValues(key: string): any;
export function getPayoutDescriptionCategory(): any;
/**
*
* Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and
* usage for web
*/
export function parse(val: string): string;
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
export interface InitOutput {
readonly memory: WebAssembly.Memory;
readonly setForexData: (a: number, b: number) => void;
readonly convertCurrency: (a: number, b: bigint, c: number, d: number) => void;
readonly seedKnowledgeGraph: (a: number, b: number) => void;
readonly getValidConnectorsForRule: (a: number, b: number) => void;
readonly analyzeProgram: (a: number, b: number) => void;
readonly runProgram: (a: number, b: number, c: number) => void;
readonly getAllConnectors: (a: number) => void;
readonly getAllKeys: (a: number) => void;
readonly getKeyType: (a: number, b: number, c: number) => void;
readonly getThreeDsKeys: (a: number) => void;
readonly getSurchargeKeys: (a: number) => void;
readonly getVariantValues: (a: number, b: number, c: number) => void;
readonly addTwo: (a: bigint, b: bigint) => bigint;
readonly getDescriptionCategory: (a: number) => void;
readonly getConnectorConfig: (a: number, b: number, c: number) => void;
readonly getPayoutConnectorConfig: (a: number, b: number, c: number) => void;
readonly getAuthenticationConnectorConfig: (a: number, b: number, c: number) => void;
readonly getTaxProcessorConfig: (a: number, b: number, c: number) => void;
readonly getPMAuthenticationProcessorConfig: (a: number, b: number, c: number) => void;
readonly getRequestPayload: (a: number, b: number, c: number) => void;
readonly getResponsePayload: (a: number, b: number) => void;
readonly getAllPayoutKeys: (a: number) => void;
readonly getPayoutVariantValues: (a: number, b: number, c: number) => void;
readonly getPayoutDescriptionCategory: (a: number) => void;
readonly ring_core_0_17_8_bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
readonly parse: (a: number, b: number, c: number) => void;
readonly parseToString: (a: number, b: number, c: number) => void;
readonly __wbindgen_export_0: (a: number, b: number) => number;
readonly __wbindgen_export_1: (a: number, b: number, c: number, d: number) => number;
readonly __wbindgen_export_2: (a: number) => void;
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
readonly __wbindgen_export_3: (a: number, b: number, c: number) => void;
}
export type SyncInitInput = BufferSource | WebAssembly.Module;
/**
* Instantiates the given `module`, which can either be bytes or
* a precompiled `WebAssembly.Module`.
*
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
*
* @returns {InitOutput}
*/
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
/**
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
* for everything else, calls `WebAssembly.instantiate` directly.
*
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
*
* @returns {Promise<InitOutput>}
*/
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
| 1,412 | 9,281 |
hyperswitch-control-center | public/common/NewThemeOnboarding.css | .css | .introjs-overlay {
display: block;
}
.introjs-showElement {
z-index: 1100 !important;
}
tr.introjs-showElement > td {
z-index: 1100 !important;
position: relative;
}
tr.introjs-showElement > th {
z-index: 1100 !important;
position: relative;
}
.introjs-disableInteraction {
z-index: 1100 !important;
position: absolute;
background-color: #fff;
opacity: 0;
}
.introjs-relativePosition {
position: relative;
}
.introjs-helperLayer {
box-sizing: content-box;
position: absolute;
z-index: 1050;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
border-radius: 8px;
border: 2px solid var(--color-blue-600, #1b85ff);
background: #fff;
box-shadow: 0px 0px 2px 4px rgba(27, 133, 255, 0.12) !important;
}
.introjs-helperLayer * {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-helperLayer :before {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-helperLayer :after {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-tooltipReferenceLayer {
font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
Helvetica, Arial, sans-serif;
-webkit-box-sizing: content-box;
box-sizing: content-box;
position: absolute;
visibility: hidden;
z-index: 1200;
background-color: transparent;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-tooltipReferenceLayer * {
font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
Helvetica, Arial, sans-serif;
}
.introjs-helperNumberLayer {
font-family: Inter !important;
font-size: 13px !important;
color: #797979 !important;
font-weight: normal;
display: flex;
float: right;
bottom: 0px;
margin-bottom: 18px;
position: absolute;
}
.introjs-tooltip {
-webkit-box-sizing: content-box;
box-sizing: content-box;
visibility: visible;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
position: absolute;
box-sizing: content-box;
background: white;
box-sizing: border-box;
margin-top: 6px;
padding: 16px 16px 12px 16px;
min-width: 300px;
max-width: 300px;
-webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%);
box-shadow:
0px 10px 15px -3px rgba(16, 24, 40, 0.1),
0px 4px 6px 0px rgba(0, 0, 0, 0.05);
-webkit-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
border-radius: 4px;
border: 1px solid #e1e1e1;
}
.introjs-tooltiptext {
margin-top: 5px;
margin-bottom: 10px;
line-height: 18px;
font-family: Inter;
font-size: 12px;
color: #111;
font-weight: normal;
margin: 12px 0 32px;
}
.introjs-tooltip-title {
font-family: Inter;
font-weight: 600 !important;
font-size: 16px !important;
color: #111;
}
.introjs-tooltip-header:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
.introjs-tooltipbuttons {
height: 34px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
float: right;
}
.introjs-skipbutton {
box-sizing: content-box;
position: absolute;
top: 10px;
right: 20px;
font-size: 20px;
font-weight: 700;
color: #000000;
display: none;
}
.stepCount {
font-family: Inter;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 18px;
color: #000000;
order: 0;
opacity: 0.5;
}
.introjs-prevbutton {
justify-content: center;
align-items: center;
text-align: center;
flex: none;
order: 1;
flex-grow: 0;
text-shadow: none !important;
background-image: none !important;
font-family: Inter !important;
font-style: normal !important;
font-weight: 500 !important;
color: #525252;
box-shadow: none !important;
padding: 7px 16px !important;
font-size: 12px !important;
background: #f2f2f2 !important;
box-sizing: border-box;
text-align: center;
flex: none;
flex-grow: 0;
margin-left: auto;
border-radius: 6px;
}
.introjs-nextbutton {
text-shadow: none !important;
font-family: Inter !important;
font-style: normal !important;
font-weight: 600 !important;
padding: 7px 16px !important;
font-size: 12px !important;
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
--tw-gradient-from: #1b85ff;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
--tw-gradient-to: #1b85ff;
background-image: linear-gradient(to top, var(--tw-gradient-stops));
border-color: rgb(5 133 218 / var(--tw-border-opacity));
border-width: 1px;
border-radius: 0.375rem;
flex: none;
order: 2;
margin-left: 10px;
}
.introjs-prevbutton.introjs-disabled {
display: none;
}
.introjs-hidden {
display: none;
}
.introjs-bullets {
display: none;
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}
.introjs-fixedTooltip {
position: fixed;
}
@-webkit-keyframes introjspulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
@keyframes introjspulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
| 2,090 | 9,286 |
hyperswitch-control-center | public/common/serve.json | .json | {
"rewrites": [{ "source": "**", "destination": "/index.html" }]
}
| 21 | 9,287 |
hyperswitch-control-center | public/common/_redirects_for_prod | none | /api/ec/* https://dashboard.expresscheckout.juspay.in/api/ec/:splat 200
/api-proxy/* https://api.juspay.in/:splat 200
/api/* https://api.yesbank.upi.juspay.in/api/:splat 200
/* /index.html 200
| 81 | 9,291 |
hyperswitch-control-center | public/common/Onboarding.css | .css | .introjs-overlay {
display: block;
}
.introjs-showElement {
z-index: 1100 !important;
}
tr.introjs-showElement > td {
z-index: 1100 !important;
position: relative;
}
tr.introjs-showElement > th {
z-index: 1100 !important;
position: relative;
}
.introjs-disableInteraction {
z-index: 1100 !important;
position: absolute;
background-color: #fff;
opacity: 0;
}
.introjs-relativePosition {
position: relative;
}
.introjs-helperLayer {
box-shadow: rgb(0 153 255 / 50%) 0px 0px 2px 5px !important;
/* -webkit-box-sizing: content-box; */
box-sizing: content-box;
position: absolute;
z-index: 1050;
border-radius: 4px;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperLayer * {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-helperLayer :before {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-helperLayer :after {
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.introjs-tooltipReferenceLayer {
font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
Helvetica, Arial, sans-serif;
-webkit-box-sizing: content-box;
box-sizing: content-box;
position: absolute;
visibility: hidden;
z-index: 1200;
background-color: transparent;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-tooltipReferenceLayer * {
font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji",
Helvetica, Arial, sans-serif;
}
.introjs-helperNumberLayer {
font-family: IBM Plex Sans !important;
font-size: 13px !important;
color: #354052 !important;
font-weight: normal;
display: flex;
float: right;
bottom: 0px;
margin-top: 18px;
top: 0px;
position: absolute;
right: 50px;
}
.introjs-tooltip {
-webkit-box-sizing: content-box;
box-sizing: content-box;
visibility: visible;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
position: absolute;
box-sizing: content-box;
background: white;
box-sizing: border-box;
padding: 10px;
min-width: 300px;
max-width: 300px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 10px rgb(33 33 33 / 40%);
box-shadow: 0 1px 10px rgb(33 33 33 / 40%);
-webkit-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
}
.introjs-tooltiptext {
margin-top: 5px;
margin-bottom: 10px;
line-height: 20px;
font-family: IBM Plex Sans;
font-size: 13px;
color: #354052;
font-weight: normal;
margin: 5px 0 10px;
}
.introjs-tooltip-title {
font-family: IBM Plex Sans;
font-weight: 600 !important;
font-size: 13px !important;
color: #354052;
}
.introjs-tooltip-header:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
.introjs-tooltipbuttons {
height: 34px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
float: right;
}
.introjs-skipbutton {
box-sizing: content-box;
position: absolute;
top: 10px;
right: 20px;
font-size: 20px;
font-weight: 700;
color: #000000;
}
.stepCount {
font-family: IBM Plex Sans;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 18px;
color: #000000;
order: 0;
opacity: 0.5;
}
.introjs-prevbutton {
justify-content: center;
align-items: center;
text-align: center;
flex: none;
order: 1;
flex-grow: 0;
text-shadow: none !important;
background-image: none !important;
font-family: IBM Plex Sans !important;
font-style: normal !important;
font-weight: 500 !important;
color: rgba(53, 64, 82, 0.5);
box-shadow: none !important;
padding: 5px 12px !important;
font-size: 12px !important;
background: #f7f8fa !important;
border: 1px solid #d8dde9;
box-sizing: border-box;
text-align: center;
color: #000000;
flex: none;
flex-grow: 0;
margin-left: auto;
border-radius: 0.375rem;
}
.introjs-nextbutton {
text-shadow: none !important;
/* background-image: none !important; */
font-family: IBM Plex Sans !important;
font-style: normal !important;
font-weight: 500 !important;
padding: 5px 12px !important;
font-size: 12px !important;
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
--tw-gradient-from: #0585da;
--tw-gradient-to: rgb(5 133 218 / 0);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
--tw-gradient-to: #0099ff;
background-image: linear-gradient(to top, var(--tw-gradient-stops));
border-color: rgb(5 133 218 / var(--tw-border-opacity));
border-width: 1px;
border-radius: 0.375rem;
flex: none;
order: 2;
margin-left: 10px;
}
.introjs-prevbutton.introjs-disabled {
display: none;
}
.introjs-hidden {
display: none;
}
.introjs-bullets {
display: none;
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}
.introjs-fixedTooltip {
position: fixed;
}
@-webkit-keyframes introjspulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
@keyframes introjspulse {
0% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-box-shadow: 0 0 0 10px transparent;
box-shadow: 0 0 0 10px transparent;
}
100% {
-webkit-transform: scale(0.95);
transform: scale(0.95);
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
| 2,089 | 9,292 |
hyperswitch-control-center | public/common/lottie-files/checkbox.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 8,
"w": 1080,
"h": 1080,
"nm": "Blue_Check",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 5,
"ty": 4,
"nm": "Enter_White_Check_Tick",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [0]
},
{
"t": 4,
"s": [100]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667, 0.667, 0.667],
"y": [1, 1, 1]
},
"o": {
"x": [0.333, 0.333, 0.333],
"y": [0, 0, 0]
},
"t": 0,
"s": [25, 25, 100]
},
{
"t": 8,
"s": [50, 50, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 188,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [50]
},
{
"t": 8,
"s": [100]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 19,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Enter_Bg_Checkbox",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [0]
},
{
"t": 4,
"s": [100]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667, 0.667, 0.667],
"y": [1, 1, 1]
},
"o": {
"x": [0.333, 0.333, 0.333],
"y": [0, 0, 0]
},
"t": 0,
"s": [96, 96, 100]
},
{
"t": 8,
"s": [100, 100, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ty": "rc",
"d": 1,
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"r": {
"a": 0,
"k": 280,
"ix": 4
},
"nm": "Rectangle Path 1",
"mn": "ADBE Vector Shape - Rect",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.054901960784, 0.690196078431, 0.145098039216, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Rectangle 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 2,570 | 9,293 |
hyperswitch-control-center | public/common/lottie-files/deselectTick.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 7,
"w": 1080,
"h": 1080,
"nm": "Blue_Check",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Exit_Blue_Tick",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [1]
},
"o": {
"x": [0.167],
"y": [0]
},
"t": 4,
"s": [100]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.833, 0.833, 0.833],
"y": [1, 1, 1]
},
"o": {
"x": [0.167, 0.167, 0.167],
"y": [0, 0, 0]
},
"t": 0,
"s": [100, 100, 100]
},
{
"t": 6,
"s": [50, 50, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.6, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 155,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"e": {
"a": 0,
"k": 100,
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 143,
"st": -7,
"bm": 0
}
],
"markers": []
}
| 1,395 | 9,294 |
hyperswitch-control-center | public/common/lottie-files/enterCross.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 8,
"w": 1080,
"h": 1080,
"nm": "Blue_Check",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Cross 2",
"parent": 3,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": -45,
"ix": 10
},
"p": {
"a": 0,
"k": [0, 0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [6.515, 2.536, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [-100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[6.686, -258.728],
[6.343, 263.8]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 58,
"ix": 5
},
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Cross 1",
"parent": 3,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 45,
"ix": 10
},
"p": {
"a": 0,
"k": [0, 0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [6.515, 2.536, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[6.686, -258.728],
[6.343, 263.8]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 58,
"ix": 5
},
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Bg_ic_cross",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.167],
"y": [0.167]
},
"t": 0,
"s": [0]
},
{
"t": 8,
"s": [25]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667, 0.667, 0.667],
"y": [1, 1, 1]
},
"o": {
"x": [0.167, 0.167, 0.167],
"y": [0.167, 0.167, 8.333]
},
"t": 0,
"s": [50, 50, 100]
},
{
"t": 8,
"s": [100, 100, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"nm": "Ellipse Path 1",
"mn": "ADBE Vector Shape - Ellipse",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.207843137255, 0.250980392157, 0.321568627451, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Ellipse 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 3,017 | 9,295 |
hyperswitch-control-center | public/common/lottie-files/spinner.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 2.0.4",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 61,
"w": 512,
"h": 512,
"nm": "Rander",
"ddd": 0,
"assets": [
{
"id": "comp_0",
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "4rh Mask 2",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 30,
"s": [303, 424, 0],
"to": [37.667, 0, 0],
"ti": [-37.667, 0, 0]
},
{
"t": 60,
"s": [529, 424, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "4rh 2",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 424, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "4rh Mask",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 0,
"s": [303, 424, 0],
"to": [37.667, 0, 0],
"ti": [-37.667, 0, 0]
},
{
"t": 30,
"s": [529, 424, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "4rh",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 424, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 5,
"ty": 4,
"nm": "3rd Mask 2",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 30,
"s": [303, 392, 0],
"to": [38.833, 0, 0],
"ti": [-38.833, 0, 0]
},
{
"t": 60,
"s": [536, 392, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "3rd 2",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 392, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 4,
"nm": "3rd Mask",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 0,
"s": [303, 392, 0],
"to": [38.833, 0, 0],
"ti": [-38.833, 0, 0]
},
{
"t": 30,
"s": [536, 392, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 8,
"ty": 4,
"nm": "3rd",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 392, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 9,
"ty": 4,
"nm": "2nd mask 2",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 30,
"s": [304, 360, 0],
"to": [37.333, 0, 0],
"ti": [-37.333, 0, 0]
},
{
"t": 60,
"s": [528, 360, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 10,
"ty": 4,
"nm": "2nd 2",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 360, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 11,
"ty": 4,
"nm": "2nd mask",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 0,
"s": [304, 360, 0],
"to": [37.333, 0, 0],
"ti": [-37.333, 0, 0]
},
{
"t": 30,
"s": [528, 360, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 12,
"ty": 4,
"nm": "2nd",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 360, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-56, -8],
[56, -8],
[56, 8],
[-56, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 13,
"ty": 4,
"nm": "1s mask 2",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [432, 328, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40, -8],
[40, -8],
[40, 8],
[-40, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 14,
"ty": 4,
"nm": "1s 2",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 30,
"s": [350, 328, 0],
"to": [27.5, 0, 0],
"ti": [-27.5, 0, 0]
},
{
"t": 60,
"s": [515, 328, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40, -8],
[40, -8],
[40, 8],
[-40, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 30,
"op": 61,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 15,
"ty": 4,
"nm": "1s mask",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [432, 328, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40, -8],
[40, -8],
[40, 8],
[-40, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 16,
"ty": 4,
"nm": "1s",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.667,
"y": 1
},
"o": {
"x": 0.333,
"y": 0
},
"t": 0,
"s": [350, 328, 0],
"to": [27.5, 0, 0],
"ti": [-27.5, 0, 0]
},
{
"t": 30,
"s": [515, 328, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40, -8],
[40, -8],
[40, 8],
[-40, 8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 17,
"ty": 4,
"nm": "Paper 5",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 45,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 0,
"s": [414.75, 391, 0],
"to": [-4.083, -2.917, 0],
"ti": [4.083, 2.917, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 16,
"s": [390.25, 373.5, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 45,
"s": [390.25, 373.5, 0],
"to": [4.083, 2.917, 0],
"ti": [-4.083, -2.917, 0]
},
{
"t": 60,
"s": [414.75, 391, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [166.291, 124.477, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[3.598, 0],
[0, 0],
[0, 3.598],
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0]
],
"o": [
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0],
[3.598, 0],
[0, 0],
[0, 3.598]
],
"v": [
[73.485, 104],
[-73.485, 104],
[-80, 97.485],
[-80, -97.485],
[-73.485, -104],
[73.485, -104],
[80, -97.485],
[80, 97.485]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.75686275959, 0.811764717102, 0.909803926945, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 18,
"ty": 4,
"nm": "Paper Fold",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 0,
"s": [520, 518.5, 0],
"to": [-7.333, -7.167, 0],
"ti": [7.333, 7.167, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 16,
"s": [476, 475.5, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 45,
"s": [476, 475.5, 0],
"to": [7.333, 7.167, 0],
"ti": [-7.333, -7.167, 0]
},
{
"t": 60,
"s": [520, 518.5, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[20, -20],
[-20, -20],
[-20, 20]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.647058844566, 0.729411780834, 0.858823537827, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 19,
"ty": 4,
"nm": "Paper 3",
"td": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 45,
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 0,
"s": [414.75, 391, 0],
"to": [-4.083, -2.917, 0],
"ti": [4.083, 2.917, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 16,
"s": [390.25, 373.5, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": {
"x": 0.833,
"y": 0.833
},
"o": {
"x": 0.167,
"y": 0.167
},
"t": 45,
"s": [390.25, 373.5, 0],
"to": [4.083, 2.917, 0],
"ti": [-4.083, -2.917, 0]
},
{
"t": 60,
"s": [414.75, 391, 0]
}
],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [166.291, 136.715, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[3.598, 0],
[0, 0],
[0, 3.598],
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0]
],
"o": [
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0],
[3.598, 0],
[0, 0],
[0, 3.598]
],
"v": [
[73.485, 104],
[-73.485, 104],
[-80, 97.485],
[-80, -97.485],
[-73.485, -104],
[73.485, -104],
[80, -97.485],
[80, 97.485]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.75686275959, 0.811764717102, 0.909803926945, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 20,
"ty": 4,
"nm": "Paper 4",
"tt": 1,
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [416, 392, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[3.598, 0],
[0, 0],
[0, 3.598],
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0]
],
"o": [
[0, 0],
[-3.598, 0],
[0, 0],
[0, -3.598],
[0, 0],
[3.598, 0],
[0, 0],
[0, 3.598]
],
"v": [
[73.485, 104],
[-73.485, 104],
[-80, 97.485],
[-80, -97.485],
[-73.485, -104],
[73.485, -104],
[80, -97.485],
[80, 97.485]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.75686275959, 0.811764717102, 0.909803926945, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
}
]
}
],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 0,
"nm": "Paper",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [-59, 256, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [256, 256, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"w": 512,
"h": 512,
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 0,
"nm": "Paper",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [256, 256, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [256, 256, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"w": 512,
"h": 512,
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Layer 5",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [0.833]
},
"o": {
"x": [0.167],
"y": [0.167]
},
"t": 0,
"s": [0]
},
{
"t": 60,
"s": [360]
}
],
"ix": 10
},
"p": {
"a": 0,
"k": [256, 104, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [256, 104, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[26.51, 0],
[0, 26.51],
[-26.51, 0],
[0, -26.51]
],
"o": [
[-26.51, 0],
[0, -26.51],
[26.51, 0],
[0, 26.51]
],
"v": [
[-8.001, 55.996],
[-56.001, 7.996],
[-8.001, -40.004],
[39.999, 7.996]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 1,
"ty": "sh",
"ix": 2,
"ks": {
"a": 0,
"k": {
"i": [
[-0.41, 1.1],
[-0.36, 1.12],
[0, 0],
[0, 0],
[0, 0],
[2.19, 4.16],
[0, 0],
[0, 0],
[0, 0],
[4.47, 1.43],
[0, 0],
[0, 0],
[0, 0],
[4.16, -2.19],
[0, 0],
[0.32, -0.33],
[-34.36, -34.37],
[-34.36, 34.37],
[0, 0],
[-0.32, 0.33],
[0, 0],
[0, 0],
[-0.9, 2.16]
],
"o": [
[0.4, -1.1],
[0, 0],
[0, 0],
[0, 0],
[-1.43, -4.47],
[0, 0],
[0, 0],
[0, 0],
[-4.16, -2.19],
[0, 0],
[0, 0],
[0, 0],
[-4.47, 1.43],
[0, 0],
[-0.33, 0.32],
[-34.37, 34.36],
[34.37, 34.37],
[0, 0],
[0.32, -0.32],
[0, 0],
[0, 0],
[1.1, -2.08],
[0.45, -1.08]
],
"v": [
[67.189, 35.326],
[68.329, 31.996],
[79.999, 31.996],
[79.999, -16.004],
[68.329, -16.004],
[62.899, -28.974],
[71.199, -37.264],
[37.259, -71.204],
[28.969, -62.904],
[15.999, -68.334],
[15.999, -80.004],
[-32.001, -80.004],
[-32.001, -68.334],
[-44.971, -62.904],
[-53.211, -71.154],
[-54.221, -70.224],
[-54.231, 54.226],
[70.219, 54.226],
[70.229, 54.216],
[71.149, 53.206],
[62.909, 44.966],
[62.899, 44.966],
[65.899, 38.596]
],
"c": true
},
"ix": 2
},
"nm": "Path 2",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.419607847929, 0.858823537827, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [264.001, 96.004],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-26.51, 0],
[0, -26.51],
[26.51, 0],
[0, 26.51]
],
"o": [
[26.51, 0],
[0, 26.51],
[-26.51, 0],
[0, -26.51]
],
"v": [
[0, -48],
[48, 0],
[0, 48],
[-48, 0]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 1,
"ty": "sh",
"ix": 2,
"ks": {
"a": 0,
"k": {
"i": [
[-0.4, 1.1],
[-0.36, 1.12],
[0, 0],
[0, 0],
[0, 0],
[2.19, 4.16],
[0, 0],
[0, 0],
[0, 0],
[4.47, 1.43],
[0, 0],
[0, 0],
[0, 0],
[4.16, -2.19],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[1.42, -4.47],
[0, 0],
[0, 0],
[0, 0],
[-2.19, -4.16],
[0, 0],
[0, 0],
[0, 0],
[-4.47, -1.42],
[0, 0],
[0, 0],
[0, 0],
[-4.16, 2.19],
[0, 0],
[0, 0],
[0, 0],
[-0.9, 2.16]
],
"o": [
[0.4, -1.1],
[0, 0],
[0, 0],
[0, 0],
[-1.43, -4.47],
[0, 0],
[0, 0],
[0, 0],
[-4.16, -2.19],
[0, 0],
[0, 0],
[0, 0],
[-4.47, 1.43],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-2.18, 4.16],
[0, 0],
[0, 0],
[0, 0],
[1.43, 4.47],
[0, 0],
[0, 0],
[0, 0],
[4.16, 2.18],
[0, 0],
[0, 0],
[0, 0],
[4.47, -1.43],
[0, 0],
[0, 0],
[0, 0],
[1.09, -2.08],
[0.46, -1.08]
],
"v": [
[75.19, 27.33],
[76.33, 24],
[88, 24],
[88, -24],
[76.33, -24],
[70.9, -36.97],
[79.2, -45.26],
[45.26, -79.2],
[36.97, -70.9],
[24, -76.33],
[24, -88],
[-24, -88],
[-24, -76.33],
[-36.97, -70.9],
[-45.21, -79.15],
[-45.26, -79.2],
[-79.2, -45.26],
[-70.91, -36.97],
[-76.33, -24],
[-88, -24],
[-88, 24],
[-76.33, 24],
[-70.9, 36.97],
[-79.2, 45.26],
[-45.26, 79.2],
[-36.97, 70.91],
[-24, 76.33],
[-24, 88],
[24, 88],
[24, 76.33],
[36.97, 70.9],
[45.26, 79.2],
[79.2, 45.26],
[70.91, 36.97],
[73.9, 30.6]
],
"c": true
},
"ix": 2
},
"nm": "Path 2",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.419607843137, 0.858823529412, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [256, 104],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 2",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 2,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Layer 7",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [372.515, 204.658, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[46.797, 100.658],
[46.797, -100.658],
[-46.797, -100.658]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.988235294819, 0.717647075653, 0.196078434587, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 16,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 30,
"s": [100]
},
{
"t": 45,
"s": [0]
}
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 45,
"s": [100]
},
{
"t": 60,
"s": [0]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 30,
"op": 60,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 5,
"ty": 4,
"nm": "Layer 6",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [142.797, 204.658, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-46.797, 100.658],
[-46.797, -100.658],
[46.797, -100.658]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.988235294819, 0.717647075653, 0.196078434587, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 16,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 30,
"s": [100]
},
{
"t": 45,
"s": [1]
}
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 45,
"s": [100]
},
{
"t": 60,
"s": [1]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 30,
"op": 60,
"st": 30,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Layer 4",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [372.515, 204.658, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[46.797, 100.658],
[46.797, -100.658],
[-46.797, -100.658]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.988235294819, 0.717647075653, 0.196078434587, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 16,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [100]
},
{
"t": 15,
"s": [0]
}
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 15,
"s": [100]
},
{
"t": 30,
"s": [0]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 30,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 4,
"nm": "Layer 3",
"sr": 1,
"ks": {
"o": {
"a": 0,
"k": 100,
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [142.797, 204.658, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-46.797, 100.658],
[-46.797, -100.658],
[46.797, -100.658]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.988235294819, 0.717647075653, 0.196078434587, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 16,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [100]
},
{
"t": 15,
"s": [1]
}
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 15,
"s": [100]
},
{
"t": 30,
"s": [1]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 30,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 30,363 | 9,296 |
hyperswitch-control-center | public/common/lottie-files/uncheckbox.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 7,
"w": 1080,
"h": 1080,
"nm": "Blue_Check",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Exit_White_Check_Tick",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [1]
},
"o": {
"x": [0.167],
"y": [0]
},
"t": 4,
"s": [100]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.833, 0.833, 0.833],
"y": [1, 1, 1]
},
"o": {
"x": [0.167, 0.167, 0.167],
"y": [0, 0, 0]
},
"t": 0,
"s": [50, 50, 100]
},
{
"t": 6,
"s": [25, 25, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 194,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"e": {
"a": 0,
"k": 100,
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [100]
},
{
"t": 6,
"s": [50]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 3,
"nm": "Trim Paths 2",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 143,
"st": -7,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Exit_Bg_Checkbox",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [100]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667, 0.667, 0.667],
"y": [1, 1, 1]
},
"o": {
"x": [0.333, 0.333, 0.333],
"y": [0, 0, 0]
},
"t": 0,
"s": [100, 100, 100]
},
{
"t": 6,
"s": [96, 96, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ty": "rc",
"d": 1,
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"r": {
"a": 0,
"k": 280,
"ix": 4
},
"nm": "Rectangle Path 1",
"mn": "ADBE Vector Shape - Rect",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.054901960784, 0.690196078431, 0.145098039216, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Rectangle 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 2,710 | 9,297 |
hyperswitch-control-center | public/common/lottie-files/checkboxPurple.json | .json | {
"nm": "Purple_check",
"ddd": 0,
"h": 1080,
"w": 1080,
"meta": {
"g": "LottieFiles AE 3.1.1"
},
"layers": [
{
"ty": 4,
"nm": "Enter_White_Check_Tick",
"sr": 1,
"st": 0,
"op": 19,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [25, 25, 100],
"t": 0
},
{
"s": [50, 50, 100],
"t": 8
}
],
"ix": 6
},
"sk": {
"a": 0,
"k": 0
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"sa": {
"a": 0,
"k": 0
},
"o": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [0],
"t": 0
},
{
"s": [100],
"t": 4
}
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 2,
"ml": 1,
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 188,
"ix": 5
},
"c": {
"a": 0,
"k": [1, 1, 1],
"ix": 3
}
},
{
"ty": "tr",
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"o": {
"a": 0,
"k": 100,
"ix": 7
}
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [50],
"t": 0
},
{
"s": [100],
"t": 8
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"m": 1
}
],
"ind": 1
},
{
"ty": 4,
"nm": "Enter_Bg_Checkbox",
"sr": 1,
"st": 0,
"op": 150,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [96, 96, 100],
"t": 0
},
{
"s": [100, 100, 100],
"t": 8
}
],
"ix": 6
},
"sk": {
"a": 0,
"k": 0
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"sa": {
"a": 0,
"k": 0
},
"o": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [0],
"t": 0
},
{
"s": [100],
"t": 4
}
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "rc",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Rect",
"nm": "Rectangle Path 1",
"d": 1,
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"r": {
"a": 0,
"k": 280,
"ix": 4
},
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": {
"a": 0,
"k": [0.3098, 0.3294, 0.9373],
"ix": 4
},
"r": 1,
"o": {
"a": 0,
"k": 100,
"ix": 5
}
},
{
"ty": "tr",
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"o": {
"a": 0,
"k": 100,
"ix": 7
}
}
]
}
],
"ind": 2
}
],
"v": "4.8.0",
"fr": 30,
"op": 8,
"ip": 0,
"assets": []
}
| 2,569 | 9,298 |
hyperswitch-control-center | public/common/lottie-files/successConfetti.json | .json | {
"nm": "Confetti 1",
"ddd": 0,
"h": 300,
"w": 250,
"meta": { "g": "@lottiefiles/toolkit-js 0.26.1" },
"layers": [
{
"ty": 3,
"nm": "Null 3",
"sr": 1,
"st": 0,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
"s": { "a": 0, "k": [49.8, 59.77, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 260, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 0, "ix": 11 }
},
"ef": [],
"ind": 1
},
{
"ty": 4,
"nm": "Shape Layer 50",
"sr": 1,
"st": 14,
"op": 60,
"ip": 14,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [41, 41, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
"r": { "a": 0, "k": 487, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 14
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 19
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 41
},
{ "s": [0], "t": 57 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-19.362, 34.498],
[7.899, -25.433],
[37.607, 53.867],
[11.905, 108.592]
],
"o": [
[0, 0],
[42.457, -75.648],
[-9.025, 29.061],
[-47.221, -67.637],
[-3.807, -34.72]
],
"v": [
[1, 2],
[-48.536, -23.607],
[-76.476, -100.021],
[27.098, -130.112],
[-120.809, -222.715]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.4745, 1, 0.1137], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 14
},
{ "s": [100], "t": 49 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 17
},
{ "s": [100], "t": 54 }
],
"ix": 1
},
"m": 1
}
],
"ind": 2,
"parent": 1
},
{
"ty": 4,
"nm": "Shape Layer 49",
"sr": 1,
"st": 13,
"op": 60,
"ip": 13,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [70, 70, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
"r": { "a": 0, "k": 353, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 18
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 40
},
{ "s": [0], "t": 56 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[8.506, -58.529],
[28.328, 67.272],
[11.905, 108.592]
],
"o": [
[0, 0],
[9.966, -26.338],
[-12.365, 85.083],
[-32.013, -76.024],
[-3.807, -34.72]
],
"v": [
[1, 2],
[-48.536, -23.607],
[-76.476, -100.021],
[27.098, -130.112],
[-120.809, -222.715]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.7294, 0.1137, 1], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 13
},
{ "s": [100], "t": 48 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 16
},
{ "s": [100], "t": 53 }
],
"ix": 1
},
"m": 1
}
],
"ind": 3,
"parent": 1
},
{
"ty": 4,
"nm": "Shape Layer 48",
"sr": 1,
"st": 12,
"op": 60,
"ip": 12,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [70, 70, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
"r": { "a": 0, "k": 187, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 17
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 39
},
{ "s": [0], "t": 55 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[8.254, -31.239],
[20.685, 70.001],
[17.795, 30.055]
],
"o": [
[0, 0],
[9.966, -26.338],
[-7.439, 28.154],
[-10.769, -36.442],
[-17.795, -30.055]
],
"v": [
[1, 2],
[2.692, -79.782],
[-49.416, -90.653],
[-14.589, -135.23],
[-105.31, -168.421]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [1, 0.898, 0.1137], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 12
},
{ "s": [100], "t": 47 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 15
},
{ "s": [100], "t": 52 }
],
"ix": 1
},
"m": 1
}
],
"ind": 4,
"parent": 1
},
{
"ty": 4,
"nm": "Shape Layer 47",
"sr": 1,
"st": 11,
"op": 60,
"ip": 11,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [58, 58, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
"r": { "a": 0, "k": 203, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 16
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 38
},
{ "s": [0], "t": 54 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[-1, 38],
[35.009, -27.828],
[-11, 31]
],
"o": [
[0, 0],
[9.966, -26.338],
[1, -38],
[-39, 31],
[11, -31]
],
"v": [
[1, 2],
[48, -39],
[29, -112],
[136, -107],
[103, -176]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [1, 0.1059, 0.3843], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 11
},
{ "s": [100], "t": 46 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 14
},
{ "s": [100], "t": 51 }
],
"ix": 1
},
"m": 1
}
],
"ind": 5,
"parent": 1
},
{
"ty": 4,
"nm": "Shape Layer 46",
"sr": 1,
"st": 10,
"op": 60,
"ip": 10,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 15
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 37
},
{ "s": [0], "t": 53 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[-1, 38],
[35.009, -27.828],
[-11, 31]
],
"o": [
[0, 0],
[9.966, -26.338],
[1, -38],
[-39, 31],
[11, -31]
],
"v": [
[1, 2],
[48, -39],
[29, -112],
[136, -107],
[103, -176]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.0627, 0.2471, 0.7373], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 10
},
{ "s": [100], "t": 45 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 13
},
{ "s": [100], "t": 50 }
],
"ix": 1
},
"m": 1
}
],
"ind": 6,
"parent": 1
},
{
"ty": 4,
"nm": "Shape Layer 45",
"sr": 1,
"st": 9,
"op": 60,
"ip": 9,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [20.02, 24.02, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 487, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 14
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 36
},
{ "s": [0], "t": 52 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-19.362, 34.498],
[7.899, -25.433],
[37.607, 53.867],
[11.905, 108.592]
],
"o": [
[0, 0],
[42.457, -75.648],
[-9.025, 29.061],
[-47.221, -67.637],
[-3.807, -34.72]
],
"v": [
[1, 2],
[-48.536, -23.607],
[-76.476, -100.021],
[27.098, -130.112],
[-120.809, -222.715]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.4745, 1, 0.1137], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 9
},
{ "s": [100], "t": 44 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 12
},
{ "s": [100], "t": 49 }
],
"ix": 1
},
"m": 1
}
],
"ind": 7
},
{
"ty": 4,
"nm": "Shape Layer 43",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [34.18, 41.02, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 353, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[8.506, -58.529],
[28.328, 67.272],
[11.905, 108.592]
],
"o": [
[0, 0],
[9.966, -26.338],
[-12.365, 85.083],
[-32.013, -76.024],
[-3.807, -34.72]
],
"v": [
[1, 2],
[-48.536, -23.607],
[-76.476, -100.021],
[27.098, -130.112],
[-120.809, -222.715]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.7294, 0.1137, 1], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 8
},
{ "s": [100], "t": 43 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 11
},
{ "s": [100], "t": 48 }
],
"ix": 1
},
"m": 1
}
],
"ind": 8
},
{
"ty": 4,
"nm": "Shape Layer 42",
"sr": 1,
"st": 7,
"op": 60,
"ip": 7,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [34.18, 41.02, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 187, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 34
},
{ "s": [0], "t": 50 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[8.254, -31.239],
[20.685, 70.001],
[17.795, 30.055]
],
"o": [
[0, 0],
[9.966, -26.338],
[-7.439, 28.154],
[-10.769, -36.442],
[-17.795, -30.055]
],
"v": [
[1, 2],
[2.692, -79.782],
[-49.416, -90.653],
[-14.589, -135.23],
[-105.31, -168.421]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [1, 0.898, 0.1137], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 7
},
{ "s": [100], "t": 42 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 10
},
{ "s": [100], "t": 47 }
],
"ix": 1
},
"m": 1
}
],
"ind": 9
},
{
"ty": 4,
"nm": "Shape Layer 44",
"sr": 1,
"st": 6,
"op": 60,
"ip": 6,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [28.32, 33.98, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 203, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 33
},
{ "s": [0], "t": 49 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[-1, 38],
[35.009, -27.828],
[-11, 31]
],
"o": [
[0, 0],
[9.966, -26.338],
[1, -38],
[-39, 31],
[11, -31]
],
"v": [
[1, 2],
[48, -39],
[29, -112],
[136, -107],
[103, -176]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [1, 0.1059, 0.3843], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 6
},
{ "s": [100], "t": 41 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 9
},
{ "s": [100], "t": 46 }
],
"ix": 1
},
"m": 1
}
],
"ind": 10
},
{
"ty": 4,
"nm": "Shape Layer 41",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [48.83, 58.59, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [125, 150, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[-14, 37],
[-1, 38],
[35.009, -27.828],
[-11, 31]
],
"o": [
[0, 0],
[9.966, -26.338],
[1, -38],
[-39, 31],
[11, -31]
],
"v": [
[1, 2],
[48, -39],
[29, -112],
[136, -107],
[103, -176]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 5, "ix": 5 },
"c": { "a": 0, "k": [0.0627, 0.2471, 0.7373], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 5
},
{ "s": [100], "t": 40 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.139, "y": 0 },
"i": { "x": 0, "y": 1 },
"s": [0],
"t": 8
},
{ "s": [100], "t": 45 }
],
"ix": 1
},
"m": 1
}
],
"ind": 11
},
{
"ty": 4,
"nm": "Shape Layer 40",
"sr": 1,
"st": 6,
"op": 60,
"ip": 6,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.27 },
"s": [68.37, 51.44, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.945 },
"s": [73.11, 47.71, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.158 },
"i": { "x": 0.833, "y": 1.242 },
"s": [53.05, 47.07, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.932 },
"s": [59.99, 73.8, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.361 },
"i": { "x": 0.833, "y": 0.849 },
"s": [32.93, 66.8, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.46 },
"s": [38, 81.89, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.921 },
"s": [42.13, 69.28, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -1.604 },
"i": { "x": 0.833, "y": -0.039 },
"s": [64.71, 49.48, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 0.895 },
"s": [63.59, 49.88, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.399 },
"i": { "x": 0.833, "y": 1.337 },
"s": [50.81, 61.28, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.903 },
"s": [47.44, 39.78, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.607 },
"i": { "x": 0.833, "y": 1.652 },
"s": [64.45, 72.77, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.86 },
"s": [67.15, 42.98, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.207 },
"i": { "x": 0.833, "y": 1.036 },
"s": [43.27, 62.38, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.926 },
"s": [27.16, 76.08, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.634 },
"i": { "x": 0.833, "y": 0.262 },
"s": [50.25, 54.94, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.946 },
"s": [47.57, 54.58, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.154 },
"i": { "x": 0.833, "y": 0.703 },
"s": [26.5, 72.01, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.116 },
"i": { "x": 0.833, "y": 0.998 },
"s": [33.88, 65.98, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.002 },
"i": { "x": 0.833, "y": 0.949 },
"s": [52.83, 35.71, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.135 },
"i": { "x": 0.833, "y": 0.912 },
"s": [34.38, 28.97, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 1.486 },
"i": { "x": 0.833, "y": 0.585 },
"s": [41.43, 56.93, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 1.234 },
"s": [41.85, 65.54, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.975 },
"s": [43.52, 57.06, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 1.375 },
"s": [37.15, 37.07, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 1.021 },
"s": [41.61, 37.58, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.877 },
"s": [17.08, 42.25, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.257 },
"i": { "x": 0.833, "y": 0.984 },
"s": [47.78, 48.79, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 0.901 },
"s": [62.47, 39.51, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.536 },
"i": { "x": 0.833, "y": 0.553 },
"s": [50.63, 39.15, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.782 },
"s": [48.45, 47.7, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.859 },
"s": [38.93, 41.1, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.203 },
"i": { "x": 0.833, "y": 0.953 },
"s": [23.51, 23.99, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.106 },
"i": { "x": 0.833, "y": 0.831 },
"s": [12.81, 0.96, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 1.052 },
"s": [17.52, 10.71, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.032 },
"i": { "x": 0.833, "y": 0.639 },
"s": [22.36, 35.43, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.99 },
"s": [14.52, 21.92, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.011 },
"i": { "x": 0.833, "y": 0.965 },
"s": [-11.63, 8.12, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.06 },
"i": { "x": 0.833, "y": 0.893 },
"s": [11.37, 9.29, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.379 },
"i": { "x": 0.833, "y": 1.57 },
"s": [-1.99, 30.27, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.965 },
"s": [-5.76, 41.83, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.061 },
"i": { "x": 0.833, "y": 0.84 },
"s": [23.75, 25.28, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 1.129 },
"s": [6.66, 1.33, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.979 },
"s": [-8.98, 19.31, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.028 },
"i": { "x": 0.833, "y": 0.947 },
"s": [30.85, 39.09, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.146 },
"i": { "x": 0.833, "y": 0.844 },
"s": [1.1, 14.24, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.934 },
"s": [11.9, -1.38, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.314 },
"i": { "x": 0.833, "y": 0.521 },
"s": [21.32, 31.82, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 0.932 },
"s": [19.34, 7.82, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.359 },
"i": { "x": 0.833, "y": 0.265 },
"s": [9.94, 31.4, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.823 },
"s": [11.71, 10.71, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 1.068 },
"s": [25.58, 4.72, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.833 },
"s": [41.21, -0.28, 100],
"t": 58
},
{ "s": [12.74, 8.21, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.647 },
"s": [131.81, 179.95, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.109 },
"i": { "x": 0.833, "y": 0.769 },
"s": [130.86, 178.68, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.824 },
"s": [127.87, 174.53, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [123.66, 166.23, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [121.33, 155.85, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [121.79, 146.45, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [124.03, 139.02, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [127.05, 133.42, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [130.32, 129.23, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [133.55, 126.08, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.841 },
"s": [136.65, 123.68, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [139.57, 121.85, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [142.3, 120.46, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [144.84, 119.39, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [147.18, 118.57, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [149.33, 117.93, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [151.29, 117.44, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [153.08, 117.08, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [154.72, 116.81, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [156.21, 116.63, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [157.56, 116.51, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [158.79, 116.46, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.89, 116.45, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [160.87, 116.49, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [161.75, 116.56, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [162.53, 116.66, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [163.21, 116.78, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [163.8, 116.93, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [164.3, 117.08, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.846 },
"s": [164.73, 117.25, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.847 },
"s": [165.09, 117.42, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.848 },
"s": [165.38, 117.6, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.849 },
"s": [165.61, 117.77, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.85 },
"s": [165.79, 117.94, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.85 },
"s": [165.91, 118.1, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.851 },
"s": [166, 118.25, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.852 },
"s": [166.04, 118.38, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.852 },
"s": [166.05, 118.49, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.847 },
"s": [166.04, 118.57, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.855 },
"s": [166.01, 118.63, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.197 },
"i": { "x": 0.833, "y": 0.799 },
"s": [165.97, 118.65, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.143 },
"i": { "x": 0.833, "y": 0.778 },
"s": [165.94, 118.63, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.133 },
"i": { "x": 0.833, "y": 0.821 },
"s": [165.95, 118.58, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.823 },
"s": [165.97, 118.49, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [165.98, 118.38, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [165.97, 118.26, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [165.96, 118.12, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.832 },
"s": [165.92, 117.99, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [165.88, 117.85, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [165.83, 117.71, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [165.76, 117.58, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [165.69, 117.46, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.833 },
"s": [165.61, 117.34, 0],
"t": 58
},
{ "s": [165.53, 117.24, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 33
},
{ "s": [0], "t": 49 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 12
},
{
"ty": 4,
"nm": "Shape Layer 39",
"sr": 1,
"st": 11,
"op": 60,
"ip": 11,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.877 },
"s": [28.98, 56.32, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.259 },
"i": { "x": 0.833, "y": 0.969 },
"s": [43.82, 25.22, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.05 },
"i": { "x": 0.833, "y": 0.861 },
"s": [50.88, 38.85, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 1.424 },
"s": [46.48, 52.63, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.819 },
"s": [43.53, 24.5, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.993 },
"s": [61.5, 43.69, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.815 },
"s": [82.58, 46.68, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.937 },
"s": [63.35, 59.94, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.266 },
"i": { "x": 0.833, "y": 0.747 },
"s": [39.91, 58.47, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 1.055 },
"s": [45.51, 68.98, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.922 },
"s": [56.93, 49.53, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -1.179 },
"i": { "x": 0.833, "y": 0.473 },
"s": [37.98, 45.39, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.932 },
"s": [39.23, 65.66, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.364 },
"i": { "x": 0.833, "y": 1.026 },
"s": [45.89, 32.42, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 1.832 },
"s": [44.65, 26.73, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 1.069 },
"s": [46.28, 39.82, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.954 },
"s": [28.37, 69.42, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.102 },
"i": { "x": 0.833, "y": 0.954 },
"s": [61.07, 57.04, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.104 },
"i": { "x": 0.833, "y": 1.408 },
"s": [46.39, 54.53, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.982 },
"s": [52.91, 37.46, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.022 },
"i": { "x": 0.833, "y": 0.838 },
"s": [14.51, 54.06, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.943 },
"s": [44.82, 53, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.177 },
"i": { "x": 0.833, "y": 0.84 },
"s": [73.36, 32.6, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.842 },
"s": [64.22, 46.8, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.948 },
"s": [55.87, 60.94, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.141 },
"i": { "x": 0.833, "y": 1.464 },
"s": [48.41, 65.8, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.912 },
"s": [51.18, 57.87, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 1.54 },
"i": { "x": 0.833, "y": 1.398 },
"s": [32.95, 39.74, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.924 },
"s": [31.91, 6.16, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.911 },
"i": { "x": 0.833, "y": -3.208 },
"s": [37.93, 42.17, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.93 },
"s": [37.42, 59.4, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.443 },
"i": { "x": 0.833, "y": 0.96 },
"s": [12.47, 22.98, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.077 },
"i": { "x": 0.833, "y": 1.134 },
"s": [16.42, 17.9, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.683 },
"s": [14.36, 37.53, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 1.008 },
"s": [19.71, 31.64, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 0.787 },
"s": [34.73, 17.34, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.137 },
"i": { "x": 0.833, "y": 1.078 },
"s": [18.25, 22.75, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.948 },
"s": [-7.48, -6.03, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.139 },
"i": { "x": 0.833, "y": 0.912 },
"s": [42.34, 23.4, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 1.669 },
"i": { "x": 0.833, "y": 1.314 },
"s": [23.68, 16.14, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.73 },
"s": [22.7, -3.19, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.12 },
"i": { "x": 0.833, "y": 1.035 },
"s": [27.37, 19.39, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.934 },
"s": [37.85, 36.43, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.324 },
"i": { "x": 0.833, "y": 0.866 },
"s": [22.9, 43.01, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.222 },
"i": { "x": 0.833, "y": 0.037 },
"s": [25.96, 15.14, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.024 },
"s": [27.81, -6.96, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.019 },
"i": { "x": 0.833, "y": 0.891 },
"s": [47.26, -8.09, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.356 },
"i": { "x": 0.833, "y": 0.833 },
"s": [22.24, -1.21, 100],
"t": 58
},
{ "s": [14.61, 19.56, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.587 },
"s": [130.23, 175.56, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.764 },
"s": [130.19, 176.89, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [129.63, 182.08, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [127.37, 191.27, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [123.18, 200.66, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [118.16, 207.75, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [113.1, 212.6, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [108.34, 215.81, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [104, 217.9, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [100.07, 219.23, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [96.54, 220.04, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [93.37, 220.5, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [90.51, 220.71, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [87.94, 220.74, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [85.6, 220.65, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [83.48, 220.47, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [81.56, 220.22, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [79.81, 219.92, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [78.23, 219.59, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [76.79, 219.23, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [75.5, 218.84, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.33, 218.44, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [73.27, 218.03, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [72.32, 217.6, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [71.46, 217.18, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [70.68, 216.76, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [69.98, 216.36, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [69.35, 215.99, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [68.79, 215.65, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [68.3, 215.34, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [67.86, 215.08, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [67.49, 214.86, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.851 },
"s": [67.17, 214.69, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.854 },
"s": [66.9, 214.57, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.194 },
"i": { "x": 0.833, "y": 0.854 },
"s": [66.68, 214.49, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.846 },
"s": [66.51, 214.48, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.824 },
"s": [66.39, 214.51, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.81 },
"s": [66.31, 214.6, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.81 },
"s": [66.27, 214.73, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.819 },
"s": [66.28, 214.92, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.825 },
"s": [66.32, 215.15, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.827 },
"s": [66.38, 215.41, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.829 },
"s": [66.45, 215.7, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [66.52, 216.02, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [66.58, 216.35, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.834 },
"s": [66.65, 216.7, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.836 },
"s": [66.73, 217.04, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.833 },
"s": [66.79, 217.39, 0],
"t": 58
},
{ "s": [66.86, 217.73, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 16
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 38
},
{ "s": [0], "t": 54 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 13
},
{
"ty": 4,
"nm": "Shape Layer 38",
"sr": 1,
"st": 7,
"op": 60,
"ip": 7,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.684 },
"s": [49.14, 40.81, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 1.351 },
"s": [51.03, 40.46, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.905 },
"s": [56.32, 40.91, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.695 },
"i": { "x": 0.833, "y": 1.398 },
"s": [28.75, 51.66, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.965 },
"s": [24.99, 21.19, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.06 },
"i": { "x": 0.833, "y": 0.972 },
"s": [46.7, 32.71, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.042 },
"i": { "x": 0.833, "y": 0.882 },
"s": [34.05, 57.34, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.285 },
"i": { "x": 0.833, "y": 0.246 },
"s": [42.46, 48.18, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.96 },
"s": [45.95, 33.18, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.077 },
"i": { "x": 0.833, "y": 0.833 },
"s": [73.98, 61.17, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.845 },
"s": [59.4, 72.45, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.987 },
"s": [44.76, 43.03, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.015 },
"i": { "x": 0.833, "y": 0.867 },
"s": [32.25, 58.17, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.223 },
"i": { "x": 0.833, "y": 0.952 },
"s": [42.84, 38.84, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.113 },
"i": { "x": 0.833, "y": 0.929 },
"s": [49.15, 28.43, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.477 },
"i": { "x": 0.833, "y": 1.102 },
"s": [46.47, 63.8, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 2.575 },
"s": [46.87, 52.7, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 1.108 },
"s": [45.98, 34.22, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.975 },
"s": [63.58, 38.58, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.897 },
"s": [23.19, 73.1, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.43 },
"i": { "x": 0.833, "y": 0.822 },
"s": [51.3, 48.65, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 1.17 },
"s": [58.06, 63.16, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 0.86 },
"s": [65.73, 44.48, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.205 },
"i": { "x": 0.833, "y": 1.094 },
"s": [42.42, 58.43, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.948 },
"s": [26.5, 56.26, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.139 },
"i": { "x": 0.833, "y": 0.9 },
"s": [60.47, 37.72, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.496 },
"i": { "x": 0.833, "y": 0.39 },
"s": [47.72, 23.27, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.097 },
"i": { "x": 0.833, "y": 0.984 },
"s": [45.15, 44.02, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.019 },
"i": { "x": 0.833, "y": 0.931 },
"s": [28.88, 63.38, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.405 },
"i": { "x": 0.833, "y": 0.407 },
"s": [42.12, 74.01, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.097 },
"i": { "x": 0.833, "y": 0.957 },
"s": [39.86, 55.99, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.089 },
"i": { "x": 0.833, "y": 0.83 },
"s": [26.03, 18.19, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 1.098 },
"s": [32.72, 24.83, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.867 },
"s": [39.65, 45.94, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 0.908 },
"s": [24.55, 8.13, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.933 },
"i": { "x": 0.833, "y": 1.43 },
"s": [15.62, 33.42, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.97 },
"s": [14.74, 31.66, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.046 },
"i": { "x": 0.833, "y": 0.919 },
"s": [20.14, 26.55, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -2.661 },
"i": { "x": 0.833, "y": 17.435 },
"s": [16.67, -6.68, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 0.997 },
"s": [16.78, 5.29, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.004 },
"i": { "x": 0.833, "y": 0.893 },
"s": [-4.08, -14.07, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.375 },
"i": { "x": 0.833, "y": 0.892 },
"s": [15.93, -9.18, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.364 },
"i": { "x": 0.833, "y": 0.847 },
"s": [21.65, -4.07, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.476 },
"s": [23.34, -8.54, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 1.098 },
"s": [24.76, 5.03, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.912 },
"s": [32.25, 38.4, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 1.665 },
"i": { "x": 0.833, "y": 1.638 },
"s": [15.98, 45.77, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.718 },
"s": [15.13, 7.61, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 0.934 },
"s": [22.54, -23.66, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.313 },
"i": { "x": 0.833, "y": 0.25 },
"s": [40.25, -16.96, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.952 },
"s": [36.53, 1.15, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.112 },
"i": { "x": 0.833, "y": 0.833 },
"s": [6.75, 12.93, 100],
"t": 58
},
{ "s": [19.42, 5.37, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.591 },
"s": [128.14, 175.39, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.764 },
"s": [129.58, 174.73, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [135.02, 171.71, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [144.32, 164.7, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [153.11, 154.55, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [158.73, 143.7, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [161.3, 133.47, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [161.53, 124.48, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [160.18, 116.92, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [157.84, 110.79, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [155, 105.92, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [151.98, 102.07, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [148.96, 99.02, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [146.05, 96.61, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [143.3, 94.68, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [140.73, 93.13, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [138.35, 91.88, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [136.15, 90.87, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [134.14, 90.05, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [132.3, 89.41, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.62, 88.89, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [129.09, 88.5, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [127.71, 88.21, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [126.46, 88.01, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [125.34, 87.89, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [124.34, 87.85, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [123.45, 87.86, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [122.67, 87.93, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [121.98, 88.06, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [121.39, 88.22, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [120.88, 88.42, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [120.44, 88.66, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [120.09, 88.92, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [119.8, 89.2, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.58, 89.49, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.42, 89.79, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.31, 90.09, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.25, 90.37, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.24, 90.64, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [119.27, 90.88, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.826 },
"s": [119.33, 91.09, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [119.41, 91.27, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.829 },
"s": [119.48, 91.47, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.831 },
"s": [119.55, 91.69, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [119.61, 91.93, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [119.67, 92.17, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [119.73, 92.42, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [119.78, 92.67, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.839 },
"s": [119.83, 92.91, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [119.87, 93.13, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.842 },
"s": [119.92, 93.35, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.833 },
"s": [119.96, 93.54, 0],
"t": 58
},
{ "s": [120, 93.71, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 34
},
{ "s": [0], "t": 50 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 14
},
{
"ty": 4,
"nm": "Shape Layer 37",
"sr": 1,
"st": 9,
"op": 60,
"ip": 9,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 2.237 },
"s": [29.51, 40.9, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 0.948 },
"s": [27.85, 37.45, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.136 },
"i": { "x": 0.833, "y": 0.869 },
"s": [54.13, 41.48, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.23 },
"i": { "x": 0.833, "y": 0.993 },
"s": [44.13, 68.69, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.615 },
"s": [38.45, 69.53, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.957 },
"s": [43.63, 53.32, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.09 },
"i": { "x": 0.833, "y": 0.759 },
"s": [62.38, 73.61, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.85 },
"s": [53.37, 83.01, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.93 },
"s": [36.36, 38.16, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.45 },
"i": { "x": 0.833, "y": 0.468 },
"s": [22.66, 55.36, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.94 },
"s": [24.8, 36.09, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.209 },
"i": { "x": 0.833, "y": 1.179 },
"s": [36.32, 35.27, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 0.903 },
"s": [33.04, 52.54, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.577 },
"i": { "x": 0.833, "y": -0.318 },
"s": [43.37, 69.93, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 1.032 },
"s": [45.11, 41.54, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 0.912 },
"s": [70.98, 57.16, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 1.509 },
"i": { "x": 0.833, "y": 1.702 },
"s": [35.13, 67.3, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.886 },
"s": [33.04, 56.88, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.312 },
"i": { "x": 0.833, "y": 0.837 },
"s": [52.77, 54.2, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 1.302 },
"s": [59.97, 63.36, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.944 },
"s": [66.84, 62.09, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.168 },
"i": { "x": 0.833, "y": 0.917 },
"s": [35.04, 67.26, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -10.728 },
"i": { "x": 0.833, "y": 4.698 },
"s": [45.57, 47.43, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 1.281 },
"s": [45.49, 27.63, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.918 },
"s": [49.17, 25.82, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -7.898 },
"i": { "x": 0.833, "y": -6.847 },
"s": [33.05, 51.7, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.084 },
"i": { "x": 0.833, "y": 0.94 },
"s": [33.22, 89.12, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.209 },
"i": { "x": 0.833, "y": 0.562 },
"s": [48.9, 80.42, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.999 },
"s": [44.43, 55.86, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.918 },
"s": [25.4, 51, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -3.839 },
"i": { "x": 0.833, "y": -2.601 },
"s": [44.12, 50.14, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.926 },
"s": [43.72, 19, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.669 },
"i": { "x": 0.833, "y": 1.446 },
"s": [26.94, 49.21, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.934 },
"s": [28.8, 51.72, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.325 },
"i": { "x": 0.833, "y": 1.109 },
"s": [16.99, 47.46, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.922 },
"s": [19.4, 1.59, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -1.292 },
"i": { "x": 0.833, "y": 4.228 },
"s": [13.84, -0.58, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.984 },
"s": [14.18, 7.14, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 0.923 },
"s": [0.8, -11.83, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.991 },
"i": { "x": 0.833, "y": 2.207 },
"s": [11.62, 0.95, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 0.933 },
"s": [10.78, 0.23, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.338 },
"i": { "x": 0.833, "y": 0.444 },
"s": [23.78, 24.48, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.843 },
"s": [21.21, 26.83, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 1.042 },
"s": [6.63, 42.73, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.846 },
"s": [-6.27, 24.69, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.907 },
"s": [13.12, -13.38, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.832 },
"i": { "x": 0.833, "y": 2.014 },
"s": [29.64, -16.63, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.956 },
"s": [31.48, 5.02, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.093 },
"i": { "x": 0.833, "y": 0.945 },
"s": [7.27, 5.19, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.162 },
"i": { "x": 0.833, "y": 0.833 },
"s": [18.71, -4.88, 100],
"t": 58
},
{ "s": [14.83, 5.82, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.583 },
"s": [128.94, 175.87, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.763 },
"s": [128.74, 177.51, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [127.9, 184.1, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [127.11, 196.33, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [127.89, 209.96, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [130.66, 221.44, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [134.91, 230.07, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [139.9, 236.09, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [145, 240.09, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [149.87, 242.68, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [154.37, 244.33, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [158.48, 245.38, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [162.2, 246.03, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [165.59, 246.4, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [168.67, 246.6, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [171.47, 246.67, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [174.02, 246.67, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [176.35, 246.6, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [178.47, 246.49, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [180.41, 246.36, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [182.17, 246.2, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [183.78, 246.02, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [185.24, 245.83, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [186.55, 245.61, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [187.74, 245.39, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [188.82, 245.19, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [189.79, 245.02, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [190.65, 244.85, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [191.43, 244.71, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [192.12, 244.57, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [192.73, 244.45, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [193.26, 244.34, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [193.72, 244.24, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.847 },
"s": [194.12, 244.14, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.849 },
"s": [194.45, 244.05, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [194.72, 243.97, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.854 },
"s": [194.94, 243.88, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.857 },
"s": [195.11, 243.8, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.2 },
"i": { "x": 0.833, "y": 0.857 },
"s": [195.23, 243.72, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.2 },
"i": { "x": 0.833, "y": 0.835 },
"s": [195.3, 243.65, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.82 },
"s": [195.33, 243.57, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.823 },
"s": [195.33, 243.49, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.825 },
"s": [195.34, 243.4, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.827 },
"s": [195.36, 243.3, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.829 },
"s": [195.38, 243.18, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [195.4, 243.06, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [195.43, 242.94, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [195.46, 242.81, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [195.5, 242.68, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.833 },
"s": [195.54, 242.55, 0],
"t": 58
},
{ "s": [195.6, 242.43, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 14
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 36
},
{ "s": [0], "t": 52 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 15
},
{
"ty": 4,
"nm": "Shape Layer 36",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.896 },
"s": [54.6, 64.09, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.414 },
"i": { "x": 0.833, "y": 0.087 },
"s": [48.85, 62.36, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.951 },
"s": [47.41, 23.99, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.117 },
"i": { "x": 0.833, "y": 0.773 },
"s": [33.01, 41.75, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.132 },
"i": { "x": 0.833, "y": 0.893 },
"s": [39, 64.07, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.381 },
"i": { "x": 0.833, "y": 1.215 },
"s": [49.34, 55.33, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.929 },
"s": [52.24, 80.56, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.477 },
"i": { "x": 0.833, "y": 0.974 },
"s": [41.89, 59.28, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.039 },
"i": { "x": 0.833, "y": 1.674 },
"s": [43.43, 66.45, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.924 },
"s": [42.38, 77.11, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.914 },
"i": { "x": 0.833, "y": -0.583 },
"s": [51.94, 64.81, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 0.868 },
"s": [51.14, 29.41, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.225 },
"i": { "x": 0.833, "y": 0.873 },
"s": [36.76, 54.86, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.244 },
"i": { "x": 0.833, "y": 0.914 },
"s": [28.31, 60.33, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 2.53 },
"i": { "x": 0.833, "y": 6.07 },
"s": [23.92, 61.29, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 0.801 },
"s": [23.77, 60.76, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.143 },
"i": { "x": 0.833, "y": 0.786 },
"s": [33.01, 63.02, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.136 },
"i": { "x": 0.833, "y": 0.999 },
"s": [45.88, 36.11, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.898 },
"s": [66.1, 68.63, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.448 },
"i": { "x": 0.833, "y": 0.936 },
"s": [46.22, 48.49, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.276 },
"i": { "x": 0.833, "y": 0.146 },
"s": [41.68, 50.16, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.778 },
"s": [42.73, 41.28, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.973 },
"s": [52.46, 61.11, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.792 },
"s": [68.59, 62.34, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.967 },
"s": [57.69, 75.26, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 0.974 },
"s": [41.39, 38.34, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.038 },
"i": { "x": 0.833, "y": 0.673 },
"s": [51.28, 45.29, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 0.925 },
"s": [44.47, 28.28, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.747 },
"i": { "x": 0.833, "y": 0.647 },
"s": [24.53, 22.05, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.109 },
"i": { "x": 0.833, "y": 0.827 },
"s": [26.53, 58.79, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 1.244 },
"s": [33.01, 53.3, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.954 },
"s": [39.99, 54.79, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.101 },
"i": { "x": 0.833, "y": 0.785 },
"s": [12.55, 52.65, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.136 },
"i": { "x": 0.833, "y": 0.976 },
"s": [24.98, 44.38, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.034 },
"i": { "x": 0.833, "y": 0.939 },
"s": [44.6, 35.72, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.231 },
"i": { "x": 0.833, "y": 1.534 },
"s": [30.63, 33.64, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.938 },
"s": [34.34, 39.44, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.24 },
"i": { "x": 0.833, "y": 0.896 },
"s": [6.92, 34.48, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.419 },
"i": { "x": 0.833, "y": 1.32 },
"s": [13.98, 11.2, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.869 },
"s": [15.74, 13.09, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.228 },
"i": { "x": 0.833, "y": 1.092 },
"s": [7.25, 18.25, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.899 },
"s": [2.35, 6.03, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.472 },
"i": { "x": 0.833, "y": 1.075 },
"s": [12.66, 19.09, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.799 },
"s": [14.87, 5.8, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.842 },
"s": [10.66, 50.17, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.674 },
"s": [4.69, 14.43, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 1.022 },
"s": [-0.63, 38.73, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.018 },
"i": { "x": 0.833, "y": 0.84 },
"s": [-16.14, 35.01, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.926 },
"s": [3.53, 8.58, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.683 },
"i": { "x": 0.833, "y": 0.273 },
"s": [21.75, 7.35, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.913 },
"s": [19.77, 10.07, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 1.953 },
"i": { "x": 0.833, "y": 2.637 },
"s": [4.47, -4.51, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.935 },
"s": [3.79, 9.64, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.3 },
"i": { "x": 0.833, "y": 0.833 },
"s": [17.87, -15.55, 100],
"t": 58
},
{ "s": [14.81, 6.91, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.604 },
"s": [131.1, 178.06, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.775 },
"s": [132.2, 177.12, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.133 },
"i": { "x": 0.833, "y": 0.821 },
"s": [135.01, 172.43, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.844 },
"s": [126.48, 170.91, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [116.52, 171.85, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [107.83, 172.67, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [100.59, 173.14, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [94.51, 173.3, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [89.31, 173.19, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [84.8, 172.88, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [80.85, 172.41, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [77.37, 171.79, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.27, 171.06, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [71.5, 170.24, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [69.03, 169.36, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [66.81, 168.42, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [64.83, 167.44, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [63.05, 166.44, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [61.46, 165.43, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [60.04, 164.41, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [58.77, 163.4, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [57.65, 162.41, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [56.66, 161.44, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [55.79, 160.51, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [55.02, 159.6, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [54.35, 158.74, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [53.77, 157.92, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [53.27, 157.15, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [52.84, 156.43, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [52.48, 155.75, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [52.18, 155.12, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [51.93, 154.55, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [51.74, 154.02, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [51.59, 153.55, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [51.49, 153.13, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [51.42, 152.76, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.849 },
"s": [51.39, 152.45, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.849 },
"s": [51.4, 152.19, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.845 },
"s": [51.43, 151.98, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.838 },
"s": [51.5, 151.82, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [51.59, 151.72, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.849 },
"s": [51.69, 151.64, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.856 },
"s": [51.79, 151.59, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.197 },
"i": { "x": 0.833, "y": 0.863 },
"s": [51.87, 151.54, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.214 },
"i": { "x": 0.833, "y": 0.876 },
"s": [51.93, 151.5, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.252 },
"i": { "x": 0.833, "y": 0.85 },
"s": [51.96, 151.47, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.742 },
"s": [51.97, 151.45, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.123 },
"i": { "x": 0.833, "y": 0.781 },
"s": [51.96, 151.44, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.801 },
"s": [51.93, 151.44, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 0.811 },
"s": [51.87, 151.45, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.817 },
"s": [51.79, 151.47, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.82 },
"s": [51.7, 151.5, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.823 },
"s": [51.58, 151.54, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.833 },
"s": [51.45, 151.59, 0],
"t": 58
},
{ "s": [51.3, 151.65, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 16
},
{
"ty": 4,
"nm": "Shape Layer 35",
"sr": 1,
"st": 4,
"op": 60,
"ip": 4,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.112 },
"s": [50.09, 66.74, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.048 },
"i": { "x": 0.833, "y": 0.982 },
"s": [43.62, 63.13, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": -0.023 },
"i": { "x": 0.833, "y": 0.826 },
"s": [58.79, 25.9, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.974 },
"s": [46.9, 47.12, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.038 },
"i": { "x": 0.833, "y": 1.007 },
"s": [34.02, 79.55, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 1.054 },
"s": [42.83, 60.79, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.958 },
"s": [33.23, 69.02, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.085 },
"i": { "x": 0.833, "y": 0.847 },
"s": [49.1, 48.54, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.903 },
"s": [41.23, 51.94, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.581 },
"i": { "x": 0.833, "y": 2.653 },
"s": [34.69, 71.1, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.928 },
"s": [33.6, 57.43, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.52 },
"i": { "x": 0.833, "y": 0.876 },
"s": [56.39, 24.93, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.255 },
"i": { "x": 0.833, "y": -0.015 },
"s": [53.24, 28.19, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 0.942 },
"s": [51.71, 78.92, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.189 },
"i": { "x": 0.833, "y": 0.984 },
"s": [34.66, 71.86, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.021 },
"i": { "x": 0.833, "y": 1.191 },
"s": [39.88, 71.14, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.88 },
"s": [35.69, 63.11, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.271 },
"i": { "x": 0.833, "y": 1.105 },
"s": [49.47, 33.91, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 1.034 },
"s": [55.6, 62.7, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.024 },
"i": { "x": 0.833, "y": 0.956 },
"s": [41.77, 31.49, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.094 },
"i": { "x": 0.833, "y": 0.812 },
"s": [61.24, 29.96, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 1.021 },
"s": [52.11, 30.72, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.926 },
"s": [40.58, 47.77, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.689 },
"i": { "x": 0.833, "y": 0.571 },
"s": [54.98, 68.86, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 1.176 },
"s": [53.43, 72.69, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 0.971 },
"s": [46.99, 45.08, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.044 },
"i": { "x": 0.833, "y": 0.758 },
"s": [67, 49.93, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 0.901 },
"s": [53.91, 50.31, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.527 },
"i": { "x": 0.833, "y": 1.016 },
"s": [29.02, 29.97, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 0.802 },
"s": [24.34, 42.14, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 1.11 },
"s": [29.91, 31.66, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.954 },
"s": [37.59, 48.44, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.103 },
"i": { "x": 0.833, "y": 0.849 },
"s": [19.81, 38.59, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 1.016 },
"s": [27.78, 34.29, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 1.025 },
"s": [34.2, 46.29, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.019 },
"i": { "x": 0.833, "y": 1.03 },
"s": [26.54, 28.62, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 0.85 },
"s": [36.5, 28.83, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 1.102 },
"s": [22.91, 24.56, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 1.008 },
"s": [12.04, 13.44, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 0.923 },
"s": [36.17, 34.27, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -1.08 },
"i": { "x": 0.833, "y": 0.782 },
"s": [9.64, 20.3, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.772 },
"s": [11.54, 24.36, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.131 },
"i": { "x": 0.833, "y": 1.128 },
"s": [14.6, 28.89, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 0.837 },
"s": [19.91, 15.27, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.946 },
"s": [6.43, 46.74, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.153 },
"i": { "x": 0.833, "y": 0.934 },
"s": [-6.43, 5.42, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.32 },
"i": { "x": 0.833, "y": 1.831 },
"s": [-1.9, 34.25, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 0.879 },
"s": [-2.83, 30.19, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.266 },
"i": { "x": 0.833, "y": 0.861 },
"s": [7.45, 17.93, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 1.125 },
"s": [12.14, 12.97, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 0.882 },
"s": [15.28, 13.83, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.282 },
"i": { "x": 0.833, "y": 1.155 },
"s": [7.42, 1.25, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 1.018 },
"s": [4.13, 9.04, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.015 },
"i": { "x": 0.833, "y": 1.07 },
"s": [13.53, -15.61, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.833 },
"s": [2.15, -18.75, 100],
"t": 58
},
{ "s": [23.08, 30.58, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.58 },
"s": [131.76, 176.93, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.763 },
"s": [132.26, 176.41, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [134.27, 174.32, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [137.81, 170.29, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [141.55, 165.56, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [144.65, 161.27, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [147.15, 157.61, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [149.22, 154.53, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [151.03, 151.92, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [152.69, 149.76, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.837 },
"s": [154.39, 148.15, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.842 },
"s": [156.22, 148.15, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [157.18, 149.93, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [157.69, 151.77, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [158.04, 153.46, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [158.32, 155.01, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [158.57, 156.41, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [158.79, 157.68, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [159, 158.84, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [159.21, 159.89, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [159.41, 160.84, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.61, 161.7, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.8, 162.46, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.99, 163.15, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [160.18, 163.76, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [160.35, 164.3, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [160.52, 164.77, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [160.67, 165.18, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [160.8, 165.53, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.842 },
"s": [160.86, 165.84, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.836 },
"s": [160.87, 166.11, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.83 },
"s": [160.82, 166.35, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.826 },
"s": [160.72, 166.56, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.825 },
"s": [160.58, 166.73, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.825 },
"s": [160.39, 166.88, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.826 },
"s": [160.17, 167, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [159.91, 167.1, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.828 },
"s": [159.62, 167.18, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [159.31, 167.24, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [158.97, 167.27, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [158.62, 167.29, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [158.25, 167.3, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [157.88, 167.32, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [157.51, 167.34, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.835 },
"s": [157.13, 167.37, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [156.76, 167.4, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [156.41, 167.44, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.839 },
"s": [156.06, 167.48, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.841 },
"s": [155.73, 167.52, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.843 },
"s": [155.43, 167.56, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.846 },
"s": [155.16, 167.6, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.85 },
"s": [154.92, 167.64, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.857 },
"s": [154.71, 167.67, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.2 },
"i": { "x": 0.833, "y": 0.87 },
"s": [154.55, 167.7, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.232 },
"i": { "x": 0.833, "y": 0.833 },
"s": [154.43, 167.72, 0],
"t": 58
},
{ "s": [154.36, 167.73, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 4
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 31
},
{ "s": [0], "t": 47 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 17
},
{
"ty": 4,
"nm": "Shape Layer 34",
"sr": 1,
"st": 10,
"op": 60,
"ip": 10,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.023 },
"s": [45.09, 47.22, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.018 },
"i": { "x": 0.833, "y": 1.063 },
"s": [30.88, 48.72, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.953 },
"s": [49.09, 65.71, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.11 },
"i": { "x": 0.833, "y": 0.799 },
"s": [17.01, 69.74, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.908 },
"s": [30.85, 43.07, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.917 },
"i": { "x": 0.833, "y": 1.12 },
"s": [50.4, 15.31, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 1.04 },
"s": [52.36, 58.38, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.987 },
"s": [47.59, 58.74, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.016 },
"i": { "x": 0.833, "y": 1.007 },
"s": [54.64, 72.52, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 1.079 },
"s": [48.7, 63.68, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.885 },
"s": [55.14, 50.51, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.304 },
"i": { "x": 0.833, "y": 1.27 },
"s": [42.63, 47.05, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.89 },
"s": [37.89, 27.18, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.348 },
"i": { "x": 0.833, "y": 1.303 },
"s": [57.98, 24.19, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.938 },
"s": [64.3, 32.94, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.244 },
"i": { "x": 0.833, "y": 0.997 },
"s": [34.97, 34.15, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.003 },
"i": { "x": 0.833, "y": 0.977 },
"s": [42.45, 79.93, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.032 },
"i": { "x": 0.833, "y": 0.554 },
"s": [35.25, 76.92, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.904 },
"s": [40.43, 64.03, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.64 },
"i": { "x": 0.833, "y": 1.416 },
"s": [63.02, 54.97, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.845 },
"s": [66.4, 61.43, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.974 },
"s": [46.12, 55.12, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.038 },
"i": { "x": 0.833, "y": 0.873 },
"s": [28.7, 43.61, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.243 },
"i": { "x": 0.833, "y": 0.889 },
"s": [40.69, 41.74, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.338 },
"i": { "x": 0.833, "y": 0.695 },
"s": [46.93, 57.38, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 1.062 },
"s": [48.98, 51.38, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.795 },
"s": [54.42, 43.1, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.993 },
"s": [44.91, 56.84, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.007 },
"i": { "x": 0.833, "y": 0.87 },
"s": [31.06, 43.34, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.232 },
"i": { "x": 0.833, "y": 1.09 },
"s": [43.81, 40.24, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 0.977 },
"s": [50.95, 52.67, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.032 },
"i": { "x": 0.833, "y": 0.984 },
"s": [36.14, 31.29, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 0.81 },
"s": [46.8, 52.78, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.816 },
"s": [38.24, 22.51, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.899 },
"s": [27.28, 31.96, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.487 },
"i": { "x": 0.833, "y": 0.701 },
"s": [14.07, 49.37, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.904 },
"s": [11.34, 33.35, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.611 },
"i": { "x": 0.833, "y": 0.701 },
"s": [4.28, 47.48, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.116 },
"i": { "x": 0.833, "y": 1.089 },
"s": [3.16, 7.17, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 0.758 },
"s": [0.27, 27.42, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 0.984 },
"s": [6.25, 22.93, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 0.938 },
"s": [17.66, 29.17, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.242 },
"i": { "x": 0.833, "y": 0.867 },
"s": [8.5, 2.47, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 0.67 },
"s": [10.84, 13.98, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 0.825 },
"s": [12.23, 8.8, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 1.216 },
"s": [16.32, 10.21, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.985 },
"s": [20.81, 2.12, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.019 },
"i": { "x": 0.833, "y": 1.012 },
"s": [4.72, -21.1, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.01 },
"i": { "x": 0.833, "y": 0.833 },
"s": [17.88, 24.32, 100],
"t": 58
},
{ "s": [2.87, 19.36, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.622 },
"s": [132.45, 178.02, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.107 },
"i": { "x": 0.833, "y": 0.767 },
"s": [133.28, 177.34, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.824 },
"s": [135.81, 174.31, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [139.21, 167.74, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [141.41, 159.58, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [142.29, 152.14, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.846 },
"s": [142.46, 145.82, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [142.23, 140.51, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [141.76, 136, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [141.14, 132.14, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [140.4, 128.8, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [139.59, 125.91, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [138.71, 123.38, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [137.78, 121.18, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [136.77, 119.28, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.836 },
"s": [135.7, 117.64, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.836 },
"s": [134.51, 116.32, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.839 },
"s": [133.11, 115.49, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.842 },
"s": [131.67, 115.99, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.79, 117.29, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.16, 118.62, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [129.65, 119.88, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [129.19, 121.05, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [128.79, 122.13, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [128.41, 123.13, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [128.07, 124.05, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [127.75, 124.88, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [127.46, 125.63, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [127.21, 126.31, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [126.98, 126.9, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.85 },
"s": [126.8, 127.41, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.854 },
"s": [126.65, 127.84, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.194 },
"i": { "x": 0.833, "y": 0.86 },
"s": [126.54, 128.2, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.205 },
"i": { "x": 0.833, "y": 0.862 },
"s": [126.49, 128.47, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.21 },
"i": { "x": 0.833, "y": 0.829 },
"s": [126.48, 128.66, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.802 },
"s": [126.53, 128.77, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 0.818 },
"s": [126.64, 128.8, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.823 },
"s": [126.79, 128.78, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.826 },
"s": [126.97, 128.76, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.83 },
"s": [127.18, 128.72, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.832 },
"s": [127.4, 128.67, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [127.63, 128.63, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [127.86, 128.61, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [128.1, 128.61, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [128.33, 128.63, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [128.56, 128.66, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.839 },
"s": [128.77, 128.71, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [128.98, 128.77, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.833 },
"s": [129.16, 128.84, 0],
"t": 58
},
{ "s": [129.32, 128.91, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 15
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 37
},
{ "s": [0], "t": 53 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 18
},
{
"ty": 4,
"nm": "Shape Layer 33",
"sr": 1,
"st": 1,
"op": 60,
"ip": 1,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.161 },
"s": [43.31, 73.42, 100],
"t": 1
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.987 },
"s": [49.34, 38.47, 100],
"t": 2
},
{
"o": { "x": 0.167, "y": -0.015 },
"i": { "x": 0.833, "y": 0.822 },
"s": [31.65, 70.09, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 1.03 },
"s": [46.57, 50.38, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 0.939 },
"s": [63.59, 37.37, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": -0.229 },
"i": { "x": 0.833, "y": 0.866 },
"s": [40.41, 80.72, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.219 },
"i": { "x": 0.833, "y": 1.05 },
"s": [46.6, 67.25, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.544 },
"s": [50.39, 47.22, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 1.032 },
"s": [44.34, 57.97, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 0.967 },
"s": [17.31, 64.33, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.056 },
"i": { "x": 0.833, "y": 0.842 },
"s": [54.6, 65.99, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 1.085 },
"s": [32.28, 77.58, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 0.934 },
"s": [12.24, 51.41, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.328 },
"i": { "x": 0.833, "y": 0.884 },
"s": [52.73, 38.14, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.298 },
"i": { "x": 0.833, "y": 1.34 },
"s": [44.54, 39.35, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.92 },
"s": [41.36, 30.96, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -2.065 },
"i": { "x": 0.833, "y": 1.04 },
"s": [57.52, 67.73, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 2.695 },
"s": [56.9, 54.42, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.902 },
"s": [57.83, 56.16, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.556 },
"i": { "x": 0.833, "y": 1.407 },
"s": [37.97, 33.84, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.863 },
"s": [34.47, 35.62, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.213 },
"i": { "x": 0.833, "y": 1.073 },
"s": [55.09, 38.46, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 0.871 },
"s": [68.34, 48.62, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.235 },
"i": { "x": 0.833, "y": 0.858 },
"s": [43.48, 23.41, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.202 },
"i": { "x": 0.833, "y": 1.03 },
"s": [29.84, 67.4, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 0.926 },
"s": [20.27, 82.82, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.674 },
"i": { "x": 0.833, "y": 2.086 },
"s": [33.33, 62.84, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.999 },
"s": [31.89, 49.58, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.919 },
"s": [52.08, 33.87, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -3.288 },
"i": { "x": 0.833, "y": 0.947 },
"s": [32.23, 38.24, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.143 },
"i": { "x": 0.833, "y": -1.723 },
"s": [32.72, 27.2, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.991 },
"s": [32.54, 30.04, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.778 },
"s": [26.82, 41.73, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.133 },
"i": { "x": 0.833, "y": 1.071 },
"s": [31.95, 20.64, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.878 },
"s": [40.48, 21.79, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.264 },
"i": { "x": 0.833, "y": 0.906 },
"s": [24.67, 24.22, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.747 },
"i": { "x": 0.833, "y": 2.063 },
"s": [17.36, 19.14, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.889 },
"s": [16.45, 13.72, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.331 },
"i": { "x": 0.833, "y": 1.055 },
"s": [29.06, 41.5, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.967 },
"s": [33.31, 13, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.055 },
"i": { "x": 0.833, "y": 1.215 },
"s": [26.24, 15.41, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.832 },
"s": [30.52, -4.62, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.925 },
"s": [15.2, 2.17, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.72 },
"i": { "x": 0.833, "y": 1.261 },
"s": [-0.29, 34.98, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.063 },
"i": { "x": 0.833, "y": 1.131 },
"s": [1.32, 14.84, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.938 },
"s": [-5.32, 29.02, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.242 },
"i": { "x": 0.833, "y": 0.851 },
"s": [11.77, 7.4, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 1.541 },
"s": [7.4, 12.4, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.973 },
"s": [3.94, 9.66, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.881 },
"s": [29.87, 16.33, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.278 },
"i": { "x": 0.833, "y": 1.037 },
"s": [12.41, -8.38, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.026 },
"i": { "x": 0.833, "y": 0.927 },
"s": [4.93, 5.01, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.597 },
"i": { "x": 0.833, "y": 0.809 },
"s": [15.74, 2.96, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.896 },
"s": [14.42, 21.54, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.422 },
"i": { "x": 0.833, "y": 0.876 },
"s": [12.7, 17.71, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.252 },
"i": { "x": 0.833, "y": 0.716 },
"s": [12.28, 10.76, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 1.719 },
"s": [12.07, 31.98, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 0.833 },
"s": [11.57, 20.74, 100],
"t": 58
},
{ "s": [16.41, 6.68, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.635 },
"s": [132.04, 178.1, 0],
"t": 1
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.798 },
"s": [132.93, 177.16, 0],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.803 },
"s": [136.11, 174.37, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 0.844 },
"s": [141.47, 175.39, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [140.66, 184.57, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [139.1, 192.5, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [137.68, 199.13, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.843 },
"s": [136.45, 204.76, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [135.4, 209.63, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [134.5, 213.92, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [133.71, 217.76, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [133.02, 221.21, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [132.41, 224.35, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [131.87, 227.22, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [131.39, 229.84, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.96, 232.26, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.58, 234.48, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.25, 236.53, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [129.96, 238.41, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [129.71, 240.14, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [129.5, 241.72, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [129.32, 243.16, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [129.19, 244.46, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [129.09, 245.63, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [129.04, 246.66, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [129.02, 247.56, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [129.05, 248.33, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.85 },
"s": [129.12, 248.97, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.848 },
"s": [129.23, 249.48, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.839 },
"s": [129.39, 249.85, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.837 },
"s": [129.59, 250.11, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [129.81, 250.29, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.837 },
"s": [130.04, 250.43, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [130.28, 250.53, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [130.51, 250.6, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [130.73, 250.63, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [130.94, 250.63, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [131.14, 250.6, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [131.32, 250.55, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.845 },
"s": [131.47, 250.48, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.852 },
"s": [131.6, 250.39, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.858 },
"s": [131.71, 250.3, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.202 },
"i": { "x": 0.833, "y": 0.868 },
"s": [131.79, 250.23, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.227 },
"i": { "x": 0.833, "y": 0.882 },
"s": [131.85, 250.18, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.281 },
"i": { "x": 0.833, "y": 0.799 },
"s": [131.87, 250.14, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.748 },
"s": [131.88, 250.12, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.125 },
"i": { "x": 0.833, "y": 0.791 },
"s": [131.85, 250.12, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.808 },
"s": [131.8, 250.13, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 0.816 },
"s": [131.73, 250.15, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.822 },
"s": [131.64, 250.18, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.826 },
"s": [131.53, 250.22, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.829 },
"s": [131.4, 250.26, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.831 },
"s": [131.26, 250.3, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.834 },
"s": [131.11, 250.34, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.837 },
"s": [130.95, 250.37, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.839 },
"s": [130.8, 250.39, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.65, 250.4, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.833 },
"s": [130.51, 250.38, 0],
"t": 58
},
{ "s": [130.39, 250.35, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 1
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 28
},
{ "s": [0], "t": 44 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 19
},
{
"ty": 4,
"nm": "Shape Layer 32",
"sr": 1,
"st": 4,
"op": 60,
"ip": 4,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.916 },
"s": [71.56, 33.39, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 7.109 },
"i": { "x": 0.833, "y": 2.984 },
"s": [50.12, 66.67, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 1.082 },
"s": [49.87, 67.11, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.769 },
"s": [56.18, 39.67, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.979 },
"s": [43.68, 61.04, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.029 },
"i": { "x": 0.833, "y": 0.843 },
"s": [21.51, 70.5, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 1.068 },
"s": [38, 69.63, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 1.009 },
"s": [52.61, 70.16, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 0.92 },
"s": [26.11, 39.72, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -2.064 },
"i": { "x": 0.833, "y": -1.061 },
"s": [55.63, 58.24, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 0.981 },
"s": [54.48, 51.89, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.025 },
"i": { "x": 0.833, "y": 0.95 },
"s": [27.29, 21.31, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.128 },
"i": { "x": 0.833, "y": 1.094 },
"s": [48.23, 58.83, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.97 },
"s": [39.98, 63.61, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.047 },
"i": { "x": 0.833, "y": 0.853 },
"s": [57.56, 50.32, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.192 },
"i": { "x": 0.833, "y": 1.034 },
"s": [46.31, 34.32, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.024 },
"i": { "x": 0.833, "y": 0.781 },
"s": [37.68, 47.54, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.98 },
"s": [49.87, 56.19, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.026 },
"i": { "x": 0.833, "y": 0.835 },
"s": [69.66, 64.58, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.797 },
"s": [54.63, 28.92, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 1.009 },
"s": [39.86, 54.35, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 0.947 },
"s": [18.57, 77.37, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.143 },
"i": { "x": 0.833, "y": 1.012 },
"s": [42.05, 51.68, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 1.088 },
"s": [33.41, 44.75, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 1.042 },
"s": [43.31, 36.7, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.935 },
"s": [22.94, 35.16, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.298 },
"i": { "x": 0.833, "y": 0.851 },
"s": [53.65, 41.58, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.881 },
"s": [46.93, 32.31, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.278 },
"i": { "x": 0.833, "y": 1.231 },
"s": [41.61, 53.05, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 1.189 },
"s": [39.33, 20.59, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.94 },
"s": [47.94, 38.1, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.209 },
"i": { "x": 0.833, "y": 0.966 },
"s": [19.79, 35.16, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.059 },
"i": { "x": 0.833, "y": 0.938 },
"s": [27.82, 30.9, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.244 },
"i": { "x": 0.833, "y": 0.747 },
"s": [23.11, 15.02, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 0.818 },
"s": [24.31, 34.81, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 1.061 },
"s": [26.74, 11.11, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.035 },
"i": { "x": 0.833, "y": 0.894 },
"s": [29.61, 8, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.384 },
"i": { "x": 0.833, "y": -0.945 },
"s": [24.64, 4.14, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 0.973 },
"s": [23.27, 10.7, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.927 },
"s": [-7.53, 34.17, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.604 },
"i": { "x": 0.833, "y": 1.52 },
"s": [13.26, 15.85, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.928 },
"s": [10.74, 7.87, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.54 },
"i": { "x": 0.833, "y": 0.588 },
"s": [28.98, 5.49, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 1.055 },
"s": [26.54, 5.06, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.999 },
"s": [16.92, 6.19, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.881 },
"s": [32.94, -5.02, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.276 },
"i": { "x": 0.833, "y": 0.92 },
"s": [17.09, -16.8, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -1.801 },
"i": { "x": 0.833, "y": 3.321 },
"s": [10.21, -8.87, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 0.876 },
"s": [10.51, -1.76, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.256 },
"i": { "x": 0.833, "y": 1.331 },
"s": [1.74, 21.91, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.912 },
"s": [-2.5, 28.33, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 1.482 },
"i": { "x": 0.833, "y": 0.837 },
"s": [18.53, 38.31, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.163 },
"s": [19.79, 34.97, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 1.082 },
"s": [20.98, 31.49, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.833 },
"s": [31.79, -0.76, 100],
"t": 58
},
{ "s": [10.3, 3.35, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.569 },
"s": [130.81, 180.6, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.761 },
"s": [130.63, 179.25, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [132, 173.52, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [137.16, 164.21, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [143.88, 154.66, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [150.03, 146.57, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [155.22, 139.85, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.843 },
"s": [159.57, 134.13, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [163.28, 129.13, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.46, 124.67, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [169.2, 120.6, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [171.59, 116.83, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [173.65, 113.32, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [175.42, 110.05, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [176.89, 107, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [178.09, 104.14, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179, 101.45, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.63, 98.94, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.94, 96.61, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.96, 94.49, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.7, 92.63, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [179.22, 91.05, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [178.58, 89.75, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [177.86, 88.7, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [177.1, 87.86, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [176.34, 87.18, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [175.58, 86.65, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [174.86, 86.23, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [174.16, 85.89, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [173.49, 85.63, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [172.87, 85.43, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [172.28, 85.28, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [171.73, 85.16, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [171.22, 85.08, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [170.76, 85.02, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.846 },
"s": [170.35, 84.98, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.849 },
"s": [169.99, 84.96, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.855 },
"s": [169.69, 84.94, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.196 },
"i": { "x": 0.833, "y": 0.865 },
"s": [169.44, 84.92, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.218 },
"i": { "x": 0.833, "y": 0.867 },
"s": [169.26, 84.9, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 0.836 },
"s": [169.15, 84.87, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.816 },
"s": [169.09, 84.82, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.817 },
"s": [169.06, 84.75, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.82 },
"s": [169, 84.69, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.822 },
"s": [168.93, 84.62, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.824 },
"s": [168.83, 84.56, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [168.72, 84.5, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [168.59, 84.44, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.828 },
"s": [168.44, 84.38, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [168.29, 84.33, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [168.12, 84.28, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [167.94, 84.24, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [167.76, 84.2, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [167.57, 84.16, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [167.38, 84.13, 0],
"t": 58
},
{ "s": [167.18, 84.1, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 4
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 31
},
{ "s": [0], "t": 47 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 20
},
{
"ty": 4,
"nm": "Shape Layer 31",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.272 },
"s": [43.07, 57.45, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.933 },
"s": [48.18, 29.25, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": -0.333 },
"i": { "x": 0.833, "y": 0.952 },
"s": [26.42, 41.99, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.111 },
"i": { "x": 0.833, "y": 1.856 },
"s": [30.77, 61.78, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 0.962 },
"s": [28.9, 69.88, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.071 },
"i": { "x": 0.833, "y": 0.999 },
"s": [49.98, 61.65, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.903 },
"s": [38.61, 42.08, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.579 },
"i": { "x": 0.833, "y": 1.893 },
"s": [49.8, 67.91, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 0.972 },
"s": [51.68, 66.67, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.042 },
"i": { "x": 0.833, "y": 1.033 },
"s": [29.63, 26.32, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.024 },
"i": { "x": 0.833, "y": 1.04 },
"s": [44.3, 36.27, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.924 },
"s": [23.75, 62.42, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.867 },
"i": { "x": 0.833, "y": 1.029 },
"s": [54.1, 61.39, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 1.309 },
"s": [51.44, 53.36, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 1.026 },
"s": [55.04, 59.99, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.929 },
"s": [38.1, 69.52, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.493 },
"i": { "x": 0.833, "y": 0.73 },
"s": [60.3, 75.44, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.12 },
"i": { "x": 0.833, "y": 0.684 },
"s": [57.09, 48.39, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.991 },
"s": [49.89, 55.91, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.886 },
"s": [29.83, 77.16, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.309 },
"i": { "x": 0.833, "y": 0.995 },
"s": [47.73, 46.45, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.561 },
"s": [54.33, 29.98, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.977 },
"s": [48.14, 50.02, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.031 },
"i": { "x": 0.833, "y": 0.896 },
"s": [21.76, 39.85, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.425 },
"i": { "x": 0.833, "y": 1.03 },
"s": [40.91, 38.85, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 1.079 },
"s": [45.59, 31.02, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.872 },
"s": [39.23, 45.69, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.24 },
"i": { "x": 0.833, "y": 1.459 },
"s": [51.63, 27.31, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.918 },
"s": [58.22, 39.02, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -4.839 },
"i": { "x": 0.833, "y": -0.338 },
"s": [15.3, 39.94, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.923 },
"s": [16.03, 37.22, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -1.049 },
"i": { "x": 0.833, "y": 0.316 },
"s": [26.97, 20.6, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.095 },
"i": { "x": 0.833, "y": 1.082 },
"s": [26.16, 25.63, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 1.008 },
"s": [20.35, 5.82, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 1.021 },
"s": [31.9, 14.83, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 1.135 },
"s": [19.19, 20.64, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.942 },
"s": [35.11, 13.16, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.192 },
"i": { "x": 0.833, "y": 0.84 },
"s": [-6.7, 29.36, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.78 },
"s": [5.94, 32.18, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.932 },
"s": [17.6, 4.11, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.369 },
"i": { "x": 0.833, "y": 0.981 },
"s": [36.75, -6.49, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.024 },
"i": { "x": 0.833, "y": 0.976 },
"s": [33.23, 10.4, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.033 },
"i": { "x": 0.833, "y": 0.142 },
"s": [35.96, 18.93, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.915 },
"s": [34, -9.24, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 4.378 },
"i": { "x": 0.833, "y": 0.919 },
"s": [15.81, -14.25, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -3.24 },
"i": { "x": 0.833, "y": 216.656 },
"s": [15.46, -13.31, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 0.938 },
"s": [15.47, 0.25, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.235 },
"i": { "x": 0.833, "y": 0.616 },
"s": [-7.44, 15.71, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.903 },
"s": [-1.44, 23.34, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.581 },
"i": { "x": 0.833, "y": 0.946 },
"s": [20.21, 53.71, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.15 },
"i": { "x": 0.833, "y": 1.754 },
"s": [23.84, 28.32, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 1.071 },
"s": [22.55, 14.48, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.871 },
"s": [35.56, 4.82, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.235 },
"i": { "x": 0.833, "y": 0.833 },
"s": [11.44, 6.15, 100],
"t": 58
},
{ "s": [-1.84, 14.24, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.6 },
"s": [134.09, 179.44, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.765 },
"s": [133.75, 177.37, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [131.68, 169.7, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [127.36, 155.94, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [122.11, 140.89, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [117.15, 127.94, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [112.74, 117.31, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [108.8, 108.51, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [105.23, 101.09, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [101.96, 94.77, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [98.94, 89.32, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [96.13, 84.58, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [93.49, 80.44, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [91, 76.81, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [88.64, 73.62, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [86.42, 70.81, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [84.3, 68.34, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [82.31, 66.17, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [80.41, 64.27, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [78.63, 62.61, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [76.95, 61.16, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [75.37, 59.9, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [73.91, 58.81, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [72.55, 57.87, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [71.31, 57.07, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [70.18, 56.38, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [69.14, 55.81, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [68.17, 55.32, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [67.27, 54.91, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [66.43, 54.57, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [65.66, 54.28, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [64.96, 54.05, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [64.32, 53.85, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [63.74, 53.68, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [63.21, 53.55, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [62.74, 53.44, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [62.33, 53.34, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [61.97, 53.26, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [61.66, 53.2, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.842 },
"s": [61.41, 53.14, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.832 },
"s": [61.2, 53.1, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [61.02, 53.05, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [60.83, 53, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [60.64, 52.95, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [60.46, 52.88, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.835 },
"s": [60.27, 52.82, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.836 },
"s": [60.09, 52.74, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.837 },
"s": [59.92, 52.67, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [59.75, 52.59, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [59.6, 52.51, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.841 },
"s": [59.45, 52.43, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.843 },
"s": [59.32, 52.35, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [59.2, 52.27, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.833 },
"s": [59.1, 52.19, 0],
"t": 58
},
{ "s": [59.02, 52.12, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 21
},
{
"ty": 4,
"nm": "Shape Layer 30",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.949 },
"s": [30.35, 56.57, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.13 },
"i": { "x": 0.833, "y": 0.907 },
"s": [48.9, 65.8, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.78 },
"i": { "x": 0.833, "y": -0.255 },
"s": [41.67, 42.02, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.914 },
"s": [40.8, 65.51, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 2.881 },
"i": { "x": 0.833, "y": 3.317 },
"s": [28.63, 58.89, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 0.968 },
"s": [28.26, 44.63, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.051 },
"i": { "x": 0.833, "y": 1.128 },
"s": [38.71, 40.83, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.956 },
"s": [32.25, 33.66, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.092 },
"i": { "x": 0.833, "y": 1.189 },
"s": [48.67, 56.02, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 1.016 },
"s": [40.85, 66.54, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 0.924 },
"s": [66.41, 65.06, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.873 },
"i": { "x": 0.833, "y": 0.746 },
"s": [36.03, 68, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 0.967 },
"s": [38.67, 60.78, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.055 },
"i": { "x": 0.833, "y": 1.027 },
"s": [44.08, 58.72, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.852 },
"s": [40.83, 49.11, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.603 },
"s": [45.14, 69.32, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.909 },
"s": [48.47, 52.66, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 1.02 },
"i": { "x": 0.833, "y": 3.481 },
"s": [60.97, 15.23, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.92 },
"s": [62.08, 52.41, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -2.332 },
"i": { "x": 0.833, "y": 0.841 },
"s": [27.87, 46.51, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.572 },
"s": [29.05, 26.07, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.638 },
"s": [30.12, 31.26, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.822 },
"s": [34.57, 39.08, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 1.094 },
"s": [49.45, 41.13, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.89 },
"s": [66.36, 36.49, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.345 },
"i": { "x": 0.833, "y": 1.08 },
"s": [30.32, 37.02, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.94 },
"s": [18.84, 52.37, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.213 },
"i": { "x": 0.833, "y": 0.898 },
"s": [41.37, 47.27, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.457 },
"i": { "x": 0.833, "y": 1.645 },
"s": [35.03, 47.18, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.967 },
"s": [33.61, 11.88, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.053 },
"i": { "x": 0.833, "y": 0.963 },
"s": [46, 37.03, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.065 },
"i": { "x": 0.833, "y": 1.499 },
"s": [38.45, 41.4, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.912 },
"s": [42.69, 36.79, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 1.658 },
"i": { "x": 0.833, "y": 0.903 },
"s": [13.05, 26.13, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.609 },
"i": { "x": 0.833, "y": 8.954 },
"s": [11.48, 38.34, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 0.931 },
"s": [11.24, 28.42, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.407 },
"i": { "x": 0.833, "y": 1.153 },
"s": [35.24, 8.28, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.994 },
"s": [31.15, 27.61, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.742 },
"s": [42.72, 49.65, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.123 },
"i": { "x": 0.833, "y": 0.929 },
"s": [31.92, 7.88, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.497 },
"i": { "x": 0.833, "y": 0.536 },
"s": [9.29, 9.62, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 1.076 },
"s": [12.54, 1.74, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.924 },
"s": [27.4, 17.13, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.906 },
"i": { "x": 0.833, "y": 0.444 },
"s": [-0.92, 9.72, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.986 },
"s": [1.46, 5.54, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.017 },
"i": { "x": 0.833, "y": 0.952 },
"s": [15, 41.5, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.111 },
"i": { "x": 0.833, "y": 0.484 },
"s": [3.7, 22.39, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.947 },
"s": [8.54, -3.99, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.143 },
"i": { "x": 0.833, "y": 0.773 },
"s": [33.66, 11.98, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.132 },
"i": { "x": 0.833, "y": 0.98 },
"s": [24.43, 6.72, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.027 },
"i": { "x": 0.833, "y": 0.833 },
"s": [8.54, 16.99, 100],
"t": 58
},
{ "s": [20.58, 40.66, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.613 },
"s": [133.54, 176.14, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.766 },
"s": [133.32, 175.2, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [132.38, 171.82, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [130.48, 165.78, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.852 },
"s": [127.93, 159.31, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.84 },
"s": [124.67, 154.54, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.845 },
"s": [120.92, 155.77, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [119.09, 159.6, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [117.91, 163.13, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [117.01, 166.28, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [116.27, 169.08, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [115.62, 171.59, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [115.03, 173.84, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [114.48, 175.87, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [113.95, 177.7, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [113.44, 179.35, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [112.94, 180.85, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [112.43, 182.19, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [111.92, 183.4, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [111.4, 184.47, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [110.86, 185.42, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [110.31, 186.24, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [109.75, 186.95, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [109.17, 187.53, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [108.57, 187.99, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [107.97, 188.35, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [107.36, 188.58, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [106.76, 188.72, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [106.18, 188.76, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [105.63, 188.73, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [105.12, 188.64, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [104.63, 188.52, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [104.19, 188.37, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [103.78, 188.21, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [103.41, 188.06, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [103.08, 187.9, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.833 },
"s": [102.79, 187.76, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [102.54, 187.64, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [102.28, 187.53, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [102.02, 187.43, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.831 },
"s": [101.75, 187.35, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [101.49, 187.28, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [101.21, 187.22, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [100.93, 187.17, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [100.65, 187.13, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [100.38, 187.11, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [100.11, 187.09, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.839 },
"s": [99.85, 187.09, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [99.61, 187.09, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [99.38, 187.12, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.833 },
"s": [99.17, 187.15, 0],
"t": 58
},
{ "s": [98.98, 187.2, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 22
},
{
"ty": 4,
"nm": "Shape Layer 29",
"sr": 1,
"st": 12,
"op": 60,
"ip": 12,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.332 },
"s": [31.53, 50.06, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.095 },
"i": { "x": 0.833, "y": 0.875 },
"s": [34.15, 63.84, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.249 },
"i": { "x": 0.833, "y": 1.206 },
"s": [52.54, 19.24, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 0.969 },
"s": [61.78, 35.59, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.048 },
"i": { "x": 0.833, "y": 1 },
"s": [29.67, 50.25, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 0.908 },
"s": [50, 64.36, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.877 },
"i": { "x": 0.833, "y": 1.333 },
"s": [29.73, 72.81, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.949 },
"s": [27.6, 48.86, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.133 },
"i": { "x": 0.833, "y": 1.322 },
"s": [38.22, 56.99, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.976 },
"s": [34.13, 43.62, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.033 },
"i": { "x": 0.833, "y": 0.923 },
"s": [54.06, 51.96, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.984 },
"i": { "x": 0.833, "y": 0.066 },
"s": [39.77, 65, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.003 },
"s": [40.89, 23.58, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.002 },
"i": { "x": 0.833, "y": 0.86 },
"s": [52.28, 36.07, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.206 },
"i": { "x": 0.833, "y": 0.865 },
"s": [40.54, 33.09, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.217 },
"i": { "x": 0.833, "y": 0.851 },
"s": [32.53, 19.47, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 1.158 },
"s": [27.56, 33.71, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.865 },
"s": [23.63, 42.04, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.218 },
"i": { "x": 0.833, "y": 0.754 },
"s": [35.01, 47.84, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 1.096 },
"s": [42.03, 23.43, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.99 },
"s": [55.7, 30.54, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.012 },
"i": { "x": 0.833, "y": 0.96 },
"s": [26.25, 50.46, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.077 },
"i": { "x": 0.833, "y": 0.928 },
"s": [52.12, 77.28, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.532 },
"i": { "x": 0.833, "y": 0.204 },
"s": [38.68, 62.29, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 0.915 },
"s": [40.5, 39.48, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 3.696 },
"i": { "x": 0.833, "y": 0.454 },
"s": [56.07, 57.26, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 1.872 },
"s": [56.43, 63.1, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 0.944 },
"s": [58.42, 61.42, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.17 },
"i": { "x": 0.833, "y": 1.157 },
"s": [35.56, 44.73, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.962 },
"s": [43.08, 42.67, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.07 },
"i": { "x": 0.833, "y": 0.853 },
"s": [21.45, 34.3, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.193 },
"i": { "x": 0.833, "y": 0.885 },
"s": [33.17, 39.54, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.3 },
"i": { "x": 0.833, "y": 1.471 },
"s": [42.05, 41.34, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.904 },
"s": [45.47, 65.85, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.633 },
"i": { "x": 0.833, "y": 0.526 },
"s": [22.76, 27.45, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 1.045 },
"s": [19.32, 35.58, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.969 },
"s": [3.19, 26.07, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.05 },
"i": { "x": 0.833, "y": 0.929 },
"s": [28.06, 47.68, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.48 },
"i": { "x": 0.833, "y": 0.854 },
"s": [12.46, 18.98, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 1.966 },
"s": [14.77, 18.31, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.921 },
"s": [16.5, 21.78, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -1.48 },
"i": { "x": 0.833, "y": -0.996 },
"s": [-5.26, 25.99, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 0.91 },
"s": [-4.1, 5.77, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 1.177 },
"i": { "x": 0.833, "y": 1.194 },
"s": [22.51, 20.73, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 1.01 },
"s": [24.53, 7.68, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 0.876 },
"s": [17.79, 17.3, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.252 },
"i": { "x": 0.833, "y": 0.833 },
"s": [25.34, 37.33, 100],
"t": 58
},
{ "s": [29.07, 21.98, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.577 },
"s": [132.24, 179.27, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.762 },
"s": [131.98, 178.1, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.84, 173.36, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.826 },
"s": [129.52, 164.43, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.848 },
"s": [134.84, 159.9, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.847 },
"s": [141.33, 163.96, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [146.41, 167.96, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [150.59, 171.37, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [154.15, 174.25, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [157.23, 176.65, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [159.94, 178.67, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [162.34, 180.35, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [164.5, 181.73, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [166.45, 182.86, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [168.21, 183.75, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [169.81, 184.43, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [171.27, 184.92, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [172.6, 185.23, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [173.81, 185.38, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [174.89, 185.35, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [175.84, 185.19, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [176.67, 184.89, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [177.38, 184.49, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [177.97, 184.02, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [178.47, 183.51, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [178.88, 182.97, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [179.21, 182.44, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [179.49, 181.92, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.72, 181.43, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [179.91, 180.98, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [180.07, 180.58, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [180.22, 180.21, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [180.36, 179.9, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [180.49, 179.63, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [180.61, 179.41, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [180.74, 179.24, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [180.86, 179.11, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.841 },
"s": [180.98, 179.02, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.838 },
"s": [181.1, 178.97, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.833 },
"s": [181.21, 178.96, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [181.32, 178.98, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.837 },
"s": [181.42, 179.02, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.842 },
"s": [181.52, 179.06, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.849 },
"s": [181.62, 179.1, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.859 },
"s": [181.71, 179.12, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.204 },
"i": { "x": 0.833, "y": 0.882 },
"s": [181.78, 179.15, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.285 },
"i": { "x": 0.833, "y": 0.833 },
"s": [181.84, 179.16, 0],
"t": 58
},
{ "s": [181.86, 179.16, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 17
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 39
},
{ "s": [0], "t": 55 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 23
},
{
"ty": 4,
"nm": "Shape Layer 28",
"sr": 1,
"st": 3,
"op": 60,
"ip": 3,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.903 },
"s": [46.24, 71.87, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.6 },
"i": { "x": 0.833, "y": 1.272 },
"s": [62.15, 76.16, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.732 },
"s": [64.72, 50.15, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 0.963 },
"s": [53.77, 29.31, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": -0.066 },
"i": { "x": 0.833, "y": 0.861 },
"s": [29.55, 79.31, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.209 },
"i": { "x": 0.833, "y": 1.066 },
"s": [43.05, 79.97, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.966 },
"s": [52, 64.77, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.056 },
"i": { "x": 0.833, "y": 0.936 },
"s": [35.95, 33.53, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.27 },
"i": { "x": 0.833, "y": 1.484 },
"s": [45.52, 39.41, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.866 },
"s": [43.27, 73.99, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.221 },
"i": { "x": 0.833, "y": 1.185 },
"s": [58.63, 31, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 0.916 },
"s": [67.92, 40.53, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 6.732 },
"i": { "x": 0.833, "y": -1.441 },
"s": [38.04, 46.93, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.941 },
"s": [37.67, 63.1, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.198 },
"i": { "x": 0.833, "y": 0.598 },
"s": [27.07, 81.97, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.889 },
"s": [30.2, 60.14, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.337 },
"i": { "x": 0.833, "y": 0.557 },
"s": [42.18, 45.08, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 1.048 },
"s": [46.11, 54.88, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 0.894 },
"s": [63.07, 46.51, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.385 },
"i": { "x": 0.833, "y": 1.003 },
"s": [36.44, 74.2, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.003 },
"i": { "x": 0.833, "y": 0.783 },
"s": [29.07, 56.78, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.987 },
"s": [36.7, 42.06, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.016 },
"i": { "x": 0.833, "y": 0.98 },
"s": [48.94, 29.08, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.026 },
"i": { "x": 0.833, "y": 1.196 },
"s": [38.66, 31.05, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.937 },
"s": [46.51, 48.95, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.251 },
"i": { "x": 0.833, "y": 0.998 },
"s": [20.18, 53.91, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.002 },
"i": { "x": 0.833, "y": 1.333 },
"s": [26.74, 48.31, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.996 },
"s": [20.31, 16.32, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.004 },
"i": { "x": 0.833, "y": 0.941 },
"s": [52.45, 30.31, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.201 },
"i": { "x": 0.833, "y": 0.942 },
"s": [21.69, 34.67, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.19 },
"i": { "x": 0.833, "y": 0.637 },
"s": [30.7, 70.69, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.914 },
"s": [27.95, 37.42, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 2.63 },
"i": { "x": 0.833, "y": 3.767 },
"s": [18.74, 29.71, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.822 },
"s": [18.43, 40.46, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.994 },
"s": [28.75, 50.24, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.007 },
"i": { "x": 0.833, "y": 0.943 },
"s": [40.53, 32.72, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.184 },
"i": { "x": 0.833, "y": 1.235 },
"s": [29.66, 17.49, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.881 },
"s": [33.04, 34.28, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.279 },
"i": { "x": 0.833, "y": 1.257 },
"s": [20.13, 0.79, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.063 },
"i": { "x": 0.833, "y": 0.914 },
"s": [14.63, 19.95, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 2.356 },
"i": { "x": 0.833, "y": 3.558 },
"s": [37.11, 24.29, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.923 },
"s": [37.93, 20.45, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -1.086 },
"i": { "x": 0.833, "y": 1.665 },
"s": [11.82, 19.19, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 1.007 },
"s": [13.68, 16.79, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.981 },
"s": [-3.04, 23.01, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.024 },
"i": { "x": 0.833, "y": 1 },
"s": [15.01, 43.86, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 0.934 },
"s": [0.99, 29.49, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.326 },
"i": { "x": 0.833, "y": 0.727 },
"s": [15.02, 40.67, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.12 },
"i": { "x": 0.833, "y": 0.902 },
"s": [12.17, 14.36, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.55 },
"i": { "x": 0.833, "y": 2.108 },
"s": [5.67, 3.84, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 0.948 },
"s": [4.51, 20.02, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.138 },
"i": { "x": 0.833, "y": 0.825 },
"s": [21.09, 21.55, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.973 },
"s": [14.86, 21.79, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.039 },
"i": { "x": 0.833, "y": 0.903 },
"s": [7.97, 25.65, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.6 },
"i": { "x": 0.833, "y": -0.408 },
"s": [12.66, 30.33, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.833 },
"s": [13.42, 23.76, 100],
"t": 58
},
{ "s": [25.45, 11.82, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.613 },
"s": [132.11, 178.94, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.766 },
"s": [131.6, 177.3, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.825 },
"s": [129.39, 171.49, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.843 },
"s": [123.2, 162.77, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [113.07, 159.78, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [104.3, 163.28, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [97.91, 168.51, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [93.17, 173.89, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [89.56, 179.01, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [86.79, 183.81, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [84.67, 188.29, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [83.07, 192.48, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [81.94, 196.37, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [81.2, 199.98, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [80.84, 203.31, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [80.82, 206.32, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [81.1, 209.03, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [81.64, 211.41, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [82.37, 213.44, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [83.24, 215.15, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.19, 216.56, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [85.18, 217.72, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [86.16, 218.66, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [87.13, 219.42, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [88.06, 220.03, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [88.94, 220.52, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [89.78, 220.91, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [90.57, 221.22, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [91.32, 221.46, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [92.01, 221.63, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [92.65, 221.76, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [93.25, 221.84, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [93.79, 221.88, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [94.28, 221.89, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [94.71, 221.87, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.848 },
"s": [95.09, 221.83, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.851 },
"s": [95.41, 221.77, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.856 },
"s": [95.67, 221.7, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 0.86 },
"s": [95.87, 221.61, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.206 },
"i": { "x": 0.833, "y": 0.845 },
"s": [96, 221.51, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.817 },
"s": [96.05, 221.4, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.816 },
"s": [96.05, 221.3, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.821 },
"s": [96.04, 221.17, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [96.05, 221.02, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [96.07, 220.84, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [96.1, 220.65, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [96.15, 220.45, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [96.22, 220.24, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [96.3, 220.02, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [96.39, 219.8, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [96.5, 219.58, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [96.62, 219.37, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [96.76, 219.16, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [96.91, 218.97, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [97.08, 218.78, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [97.25, 218.61, 0],
"t": 58
},
{ "s": [97.44, 218.45, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 3
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 30
},
{ "s": [0], "t": 46 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 24
},
{
"ty": 4,
"nm": "Shape Layer 27",
"sr": 1,
"st": 1,
"op": 60,
"ip": 1,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": -0.282 },
"s": [35.24, 60.25, 100],
"t": 1
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.885 },
"s": [36.88, 66.21, 100],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.304 },
"i": { "x": 0.833, "y": 1.019 },
"s": [60.42, 90.02, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.693 },
"s": [69.3, 55.03, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.114 },
"i": { "x": 0.833, "y": 0.936 },
"s": [58.39, 38.17, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": -0.276 },
"i": { "x": 0.833, "y": 0.769 },
"s": [29.13, 61.64, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 1.003 },
"s": [35.92, 71.14, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.003 },
"i": { "x": 0.833, "y": 1.032 },
"s": [47.94, 73.72, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 0.887 },
"s": [35.47, 39.21, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.315 },
"i": { "x": 0.833, "y": 0.904 },
"s": [52.78, 34.31, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.612 },
"i": { "x": 0.833, "y": 1.479 },
"s": [59.01, 68.77, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.764 },
"s": [60, 47.3, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.916 },
"s": [53.35, 60.54, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 12.53 },
"i": { "x": 0.833, "y": 3.633 },
"s": [41.18, 66.37, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.72 },
"s": [41.1, 59.69, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.119 },
"i": { "x": 0.833, "y": 0.993 },
"s": [43.75, 80.11, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.007 },
"i": { "x": 0.833, "y": 0.905 },
"s": [50.01, 71.51, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.667 },
"i": { "x": 0.833, "y": 2.566 },
"s": [44.26, 36.21, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 1.025 },
"s": [43.44, 48.83, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.019 },
"i": { "x": 0.833, "y": 0.879 },
"s": [59.71, 45.89, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.27 },
"i": { "x": 0.833, "y": 1.099 },
"s": [38.47, 59.84, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.927 },
"s": [28.98, 65.71, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.587 },
"i": { "x": 0.833, "y": 1.136 },
"s": [49.81, 66.27, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.943 },
"s": [47.22, 37.69, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.183 },
"i": { "x": 0.833, "y": 0.841 },
"s": [54.03, 57.66, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.252 },
"s": [51.89, 56.71, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.859 },
"s": [49.97, 70.9, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.205 },
"i": { "x": 0.833, "y": 0.964 },
"s": [34.59, 53.34, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.063 },
"i": { "x": 0.833, "y": 1.045 },
"s": [24.02, 30.32, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.816 },
"s": [30.06, 33.74, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 1.115 },
"s": [20.76, 47.01, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.048 },
"i": { "x": 0.833, "y": 0.93 },
"s": [9.52, 36.53, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.45 },
"i": { "x": 0.833, "y": 0.463 },
"s": [36.33, 27.38, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.951 },
"s": [32.14, 18.27, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.12 },
"i": { "x": 0.833, "y": 0.744 },
"s": [9.39, 30.53, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 0.91 },
"s": [18.72, 40.03, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 1.166 },
"i": { "x": 0.833, "y": 1.615 },
"s": [38.02, 22.83, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.84 },
"s": [39.5, 1.09, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.914 },
"s": [27.06, 40.78, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 2.748 },
"i": { "x": 0.833, "y": 4.375 },
"s": [15.57, 3.65, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.903 },
"s": [15.21, 6.73, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.59 },
"i": { "x": 0.833, "y": 1.257 },
"s": [30.12, 32.92, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.063 },
"i": { "x": 0.833, "y": 0.875 },
"s": [32.57, -9.03, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.252 },
"i": { "x": 0.833, "y": 0.777 },
"s": [22.54, 18.9, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.133 },
"i": { "x": 0.833, "y": 1.071 },
"s": [17.58, -5.4, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 1.042 },
"s": [9.27, 9.97, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.967 },
"s": [24.7, 25.45, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 0.951 },
"s": [1.56, 29.4, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.121 },
"i": { "x": 0.833, "y": 0.826 },
"s": [15.61, 42.53, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.958 },
"s": [9.88, 25.36, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.084 },
"i": { "x": 0.833, "y": 0.531 },
"s": [3.63, -21.93, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 0.924 },
"s": [6.74, 16.68, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.872 },
"i": { "x": 0.833, "y": -0.207 },
"s": [21.16, 24.88, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.09 },
"i": { "x": 0.833, "y": 0.956 },
"s": [19.9, 28.01, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.092 },
"i": { "x": 0.833, "y": 1.074 },
"s": [2.93, 35.31, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 0.951 },
"s": [10.99, 32.97, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.12 },
"i": { "x": 0.833, "y": 0.823 },
"s": [-4.23, 35.21, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.833 },
"s": [2.02, 5.62, 100],
"t": 58
},
{ "s": [9.04, 32.11, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.551 },
"s": [129.19, 177.77, 0],
"t": 1
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.762 },
"s": [129.64, 176.68, 0],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [131.34, 171.78, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [133.63, 162.29, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [135.57, 151.53, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [137.23, 142.15, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [138.86, 134.41, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [140.59, 128.04, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [142.45, 122.76, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [144.47, 118.38, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [146.61, 114.78, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [148.84, 111.86, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [151.11, 109.52, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [153.36, 107.69, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [155.54, 106.26, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [157.63, 105.16, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [159.61, 104.3, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [161.46, 103.64, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [163.18, 103.12, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [164.77, 102.69, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.23, 102.35, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [167.58, 102.06, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [168.8, 101.8, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [169.91, 101.58, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [170.91, 101.39, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [171.8, 101.21, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [172.58, 101.05, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.839 },
"s": [173.26, 100.92, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [173.84, 100.79, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [174.37, 100.63, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [174.85, 100.43, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [175.3, 100.21, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [175.71, 99.96, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [176.08, 99.7, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [176.41, 99.43, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [176.71, 99.16, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [176.97, 98.88, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [177.21, 98.62, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [177.42, 98.36, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.841 },
"s": [177.59, 98.11, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.839 },
"s": [177.74, 97.89, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [177.87, 97.68, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [178.01, 97.5, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [178.15, 97.35, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [178.3, 97.24, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [178.44, 97.15, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [178.59, 97.09, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.835 },
"s": [178.73, 97.07, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.834 },
"s": [178.87, 97.07, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.834 },
"s": [179.01, 97.11, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [179.13, 97.16, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [179.25, 97.25, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [179.35, 97.35, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [179.43, 97.47, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [179.5, 97.6, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [179.56, 97.74, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.836 },
"s": [179.59, 97.88, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.833 },
"s": [179.59, 98.02, 0],
"t": 58
},
{ "s": [179.58, 98.15, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 1
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 28
},
{ "s": [0], "t": 44 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 25
},
{
"ty": 4,
"nm": "Shape Layer 26",
"sr": 1,
"st": 4,
"op": 60,
"ip": 4,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.947 },
"s": [47.56, 38.7, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": -0.148 },
"i": { "x": 0.833, "y": 0.753 },
"s": [21.76, 44.62, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 1.004 },
"s": [31.06, 42.81, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.004 },
"i": { "x": 0.833, "y": 0.971 },
"s": [49.29, 57.21, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.045 },
"i": { "x": 0.833, "y": 0.792 },
"s": [30.18, 41.13, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.951 },
"s": [42.63, 37.86, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.12 },
"i": { "x": 0.833, "y": 0.68 },
"s": [61.27, 65.4, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.883 },
"s": [53.62, 60.98, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.289 },
"i": { "x": 0.833, "y": 1.123 },
"s": [31.9, 61.34, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 0.897 },
"s": [23.07, 78.54, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.445 },
"i": { "x": 0.833, "y": 0.754 },
"s": [44.88, 63.73, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 0.965 },
"s": [49.9, 82.22, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.059 },
"i": { "x": 0.833, "y": 0.598 },
"s": [59.72, 64.67, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.954 },
"s": [53.98, 36.42, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.102 },
"i": { "x": 0.833, "y": 0.992 },
"s": [32.06, 45.39, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.009 },
"i": { "x": 0.833, "y": 0.964 },
"s": [41.93, 38.27, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.062 },
"i": { "x": 0.833, "y": 0.389 },
"s": [33.06, 29.25, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 0.983 },
"s": [38.14, 57.14, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.021 },
"i": { "x": 0.833, "y": 0.976 },
"s": [70.3, 66.39, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.034 },
"i": { "x": 0.833, "y": 1.021 },
"s": [44.53, 47.39, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 1.004 },
"s": [62.76, 69.12, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.004 },
"i": { "x": 0.833, "y": 0.938 },
"s": [39.96, 43.85, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.245 },
"i": { "x": 0.833, "y": 0.701 },
"s": [63.77, 60.91, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.848 },
"s": [57.73, 68.9, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.924 },
"s": [42.08, 53.64, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.857 },
"i": { "x": 0.833, "y": 2.239 },
"s": [29.2, 47.68, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 1.06 },
"s": [30.34, 59.69, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.035 },
"i": { "x": 0.833, "y": 0.904 },
"s": [12.23, 36.3, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.64 },
"i": { "x": 0.833, "y": 1.113 },
"s": [43.38, 37.57, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.048 },
"i": { "x": 0.833, "y": 0.878 },
"s": [48.04, 35.18, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.265 },
"i": { "x": 0.833, "y": 0.973 },
"s": [37.07, 26.53, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.487 },
"s": [32.03, 28.34, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.1 },
"i": { "x": 0.833, "y": 1.02 },
"s": [35.44, 18.59, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.839 },
"s": [52.97, 15.72, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.939 },
"s": [31.28, 43.91, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.226 },
"i": { "x": 0.833, "y": 0.807 },
"s": [11.13, 15.05, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 1.039 },
"s": [16.56, 3.75, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.952 },
"s": [23.7, 31.58, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.114 },
"i": { "x": 0.833, "y": 0.843 },
"s": [13.19, -5.77, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 1.415 },
"s": [17.64, 18.38, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 1.042 },
"s": [21.57, -6.19, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.979 },
"s": [-1.97, -2.52, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.027 },
"i": { "x": 0.833, "y": 0.945 },
"s": [33.33, 15.62, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.164 },
"i": { "x": 0.833, "y": 0.863 },
"s": [6.72, 24.81, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.213 },
"i": { "x": 0.833, "y": 1.171 },
"s": [15.68, 28.38, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 0.938 },
"s": [21.46, 26.47, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.238 },
"i": { "x": 0.833, "y": 0.907 },
"s": [3.84, -24.49, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.767 },
"i": { "x": 0.833, "y": -0.765 },
"s": [8.41, -3.17, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 0.963 },
"s": [8.97, 21.63, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.066 },
"i": { "x": 0.833, "y": 1.047 },
"s": [20.22, 24.34, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 1.142 },
"s": [13.93, 29.07, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.053 },
"i": { "x": 0.833, "y": 0.933 },
"s": [23.74, 28.53, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.344 },
"i": { "x": 0.833, "y": 0.831 },
"s": [-2.8, 30.75, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.959 },
"s": [2.37, 12.7, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.082 },
"i": { "x": 0.833, "y": 0.833 },
"s": [7.69, 27.62, 100],
"t": 58
},
{ "s": [5.01, 10.67, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.589 },
"s": [131.59, 179.3, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.764 },
"s": [132.66, 180.22, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [136.75, 184.07, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [144.54, 190.63, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [153.63, 197.12, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [161.85, 202.09, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [168.86, 205.77, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [174.85, 208.54, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [180, 210.68, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [184.49, 212.38, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [188.46, 213.73, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [192.01, 214.8, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [195.21, 215.64, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [198.12, 216.31, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [200.76, 216.84, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [203.18, 217.27, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [205.4, 217.61, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [207.44, 217.88, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [209.31, 218.1, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [211.04, 218.28, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [212.62, 218.43, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [214.09, 218.56, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [215.43, 218.68, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [216.66, 218.79, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [217.79, 218.9, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [218.83, 219.01, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [219.77, 219.13, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [220.62, 219.25, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [221.38, 219.39, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [222.07, 219.53, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [222.67, 219.67, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [223.2, 219.83, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [223.66, 219.99, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [224.04, 220.15, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [224.35, 220.32, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.855 },
"s": [224.59, 220.48, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.857 },
"s": [224.77, 220.63, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.2 },
"i": { "x": 0.833, "y": 0.85 },
"s": [224.88, 220.78, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.811 },
"s": [224.92, 220.91, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.813 },
"s": [224.9, 221.01, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 0.825 },
"s": [224.83, 221.12, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.827 },
"s": [224.74, 221.25, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [224.65, 221.41, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.829 },
"s": [224.57, 221.6, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [224.51, 221.8, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [224.45, 222.02, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [224.41, 222.26, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [224.38, 222.51, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [224.36, 222.77, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [224.36, 223.04, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [224.38, 223.31, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [224.42, 223.59, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.832 },
"s": [224.47, 223.87, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [224.53, 224.15, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [224.61, 224.42, 0],
"t": 58
},
{ "s": [224.7, 224.69, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 4
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 31
},
{ "s": [0], "t": 47 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 26
},
{
"ty": 4,
"nm": "Shape Layer 25",
"sr": 1,
"st": 10,
"op": 60,
"ip": 10,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.872 },
"s": [54.04, 68.18, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.239 },
"i": { "x": 0.833, "y": 1.04 },
"s": [29.19, 57.72, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.934 },
"s": [15.9, 69.72, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.327 },
"i": { "x": 0.833, "y": 1.283 },
"s": [35.64, 63.53, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.904 },
"s": [31.63, 82.18, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.643 },
"i": { "x": 0.833, "y": 1.471 },
"s": [49.24, 67.42, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.917 },
"s": [51.87, 37.81, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -10.254 },
"i": { "x": 0.833, "y": 7.839 },
"s": [34.4, 62.9, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 1.07 },
"s": [34.55, 52.57, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.822 },
"s": [22.85, 20.91, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 1.002 },
"s": [44.38, 47.61, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.002 },
"i": { "x": 0.833, "y": 0.942 },
"s": [68.8, 61.01, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.196 },
"i": { "x": 0.833, "y": 1.056 },
"s": [43.73, 56.72, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.034 },
"i": { "x": 0.833, "y": 0.972 },
"s": [51.22, 69.74, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.041 },
"i": { "x": 0.833, "y": 0.839 },
"s": [38.66, 45.63, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 1.075 },
"s": [47.05, 32.45, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.864 },
"s": [54.9, 65.23, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.216 },
"i": { "x": 0.833, "y": 0.964 },
"s": [39.98, 46.64, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.063 },
"i": { "x": 0.833, "y": 1.136 },
"s": [30.6, 61.65, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 1.04 },
"s": [35.94, 53.79, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.897 },
"s": [21.92, 52.82, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.445 },
"i": { "x": 0.833, "y": 0.864 },
"s": [42.7, 45.97, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.216 },
"i": { "x": 0.833, "y": 0.687 },
"s": [47.49, 52.12, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.114 },
"i": { "x": 0.833, "y": 1.172 },
"s": [50.49, 45.44, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 1.025 },
"s": [58.77, 37.41, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.019 },
"i": { "x": 0.833, "y": 0.939 },
"s": [33.44, 24.21, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.226 },
"i": { "x": 0.833, "y": 0.781 },
"s": [66.33, 36.61, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.836 },
"s": [57.48, 57.49, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.955 },
"s": [43.1, 36.18, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.097 },
"i": { "x": 0.833, "y": 1.161 },
"s": [29.19, 31.34, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.92 },
"s": [35.6, 20.62, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -1.932 },
"i": { "x": 0.833, "y": 0.014 },
"s": [16.77, 15.79, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.166 },
"s": [17.55, 21.22, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 1.01 },
"s": [25.99, 15.08, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 0.967 },
"s": [0.79, 6.4, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 0.916 },
"s": [28.9, 15.89, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 28.082 },
"i": { "x": 0.833, "y": 32.334 },
"s": [11.9, 28.77, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 0.963 },
"s": [11.85, 28.38, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.066 },
"i": { "x": 0.833, "y": 0.911 },
"s": [30.93, 33.27, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 1.325 },
"i": { "x": 0.833, "y": -0.402 },
"s": [20.29, -7.17, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.891 },
"s": [19.58, -8.42, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.357 },
"i": { "x": 0.833, "y": 1.348 },
"s": [8.29, 6.59, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.893 },
"s": [4.85, 15.51, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.372 },
"i": { "x": 0.833, "y": 1.223 },
"s": [22.63, 9.13, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.949 },
"s": [27.75, 20, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.133 },
"i": { "x": 0.833, "y": 0.872 },
"s": [8.89, 3.76, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.239 },
"i": { "x": 0.833, "y": 1.098 },
"s": [16.17, 15.47, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.855 },
"s": [20.06, 30.86, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.833 },
"s": [11.59, 30.84, 100],
"t": 58
},
{ "s": [5.28, -10.95, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.59 },
"s": [131.72, 174.91, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.764 },
"s": [132.8, 174.36, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [136.97, 171.96, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [144.26, 166.77, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [152.05, 160.43, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [158.83, 154.9, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [164.61, 150.59, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [169.63, 147.33, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [174.05, 144.88, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [177.98, 143.06, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [181.49, 141.73, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [184.65, 140.76, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [187.49, 140.06, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [190.05, 139.57, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [192.37, 139.24, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [194.46, 139.01, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [196.35, 138.86, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [198.06, 138.75, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [199.61, 138.68, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [201.02, 138.68, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [202.32, 138.75, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [203.52, 138.89, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [204.63, 139.07, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [205.66, 139.3, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [206.61, 139.56, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [207.51, 139.85, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [208.34, 140.16, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [209.12, 140.48, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [209.86, 140.81, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [210.55, 141.15, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [211.21, 141.49, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [211.82, 141.82, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [212.4, 142.15, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [212.95, 142.47, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [213.46, 142.77, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [213.93, 143.06, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [214.38, 143.33, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [214.78, 143.58, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [215.15, 143.81, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.842 },
"s": [215.48, 144.01, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.839 },
"s": [215.77, 144.18, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [216.03, 144.33, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.843 },
"s": [216.29, 144.45, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.845 },
"s": [216.52, 144.54, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.849 },
"s": [216.74, 144.61, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.853 },
"s": [216.92, 144.64, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.192 },
"i": { "x": 0.833, "y": 0.85 },
"s": [217.08, 144.65, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.809 },
"s": [217.19, 144.62, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.833 },
"s": [217.27, 144.55, 0],
"t": 58
},
{ "s": [217.35, 144.44, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 15
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 37
},
{ "s": [0], "t": 53 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 27
},
{
"ty": 4,
"nm": "Shape Layer 24",
"sr": 1,
"st": 7,
"op": 60,
"ip": 7,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.856 },
"s": [32.99, 59.33, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.076 },
"i": { "x": 0.833, "y": 0.965 },
"s": [30.31, 35.49, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.062 },
"i": { "x": 0.833, "y": 0.899 },
"s": [60.45, 52.5, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.485 },
"i": { "x": 0.833, "y": 0.652 },
"s": [43.14, 64.93, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.11 },
"i": { "x": 0.833, "y": 0.902 },
"s": [39.54, 52.54, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.569 },
"i": { "x": 0.833, "y": 1.494 },
"s": [28.11, 51.6, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.815 },
"s": [26.15, 59.25, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 1.035 },
"s": [39.73, 67.14, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.939 },
"s": [56.22, 48.16, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.235 },
"i": { "x": 0.833, "y": 1.154 },
"s": [32.76, 64.9, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 1.037 },
"s": [38.9, 68.33, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.026 },
"i": { "x": 0.833, "y": 0.885 },
"s": [21.43, 46.61, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.301 },
"i": { "x": 0.833, "y": 0.972 },
"s": [46.73, 29.13, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.043 },
"i": { "x": 0.833, "y": 0.783 },
"s": [56.44, 59.55, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.957 },
"s": [50.02, 62.51, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.087 },
"i": { "x": 0.833, "y": 0.875 },
"s": [39.75, 80.53, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.25 },
"i": { "x": 0.833, "y": 0.844 },
"s": [44.77, 63.62, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 1.4 },
"s": [47.27, 38.61, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.924 },
"s": [49.46, 57.95, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.902 },
"i": { "x": 0.833, "y": 1.186 },
"s": [36.75, 36.4, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.894 },
"s": [37.83, 61.76, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.393 },
"i": { "x": 0.833, "y": 1.167 },
"s": [34.35, 65.06, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 0.394 },
"s": [33.41, 66.25, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.097 },
"i": { "x": 0.833, "y": 0.999 },
"s": [36.23, 46.61, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.979 },
"s": [53.89, 44.99, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.029 },
"i": { "x": 0.833, "y": 1.071 },
"s": [36.42, 57.83, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 1.005 },
"s": [49.43, 48.31, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.004 },
"i": { "x": 0.833, "y": 0.897 },
"s": [25.29, 29.04, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.43 },
"i": { "x": 0.833, "y": 0.916 },
"s": [50.77, 23.98, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 6.077 },
"i": { "x": 0.833, "y": 22.316 },
"s": [56.89, 34.88, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 0.868 },
"s": [56.98, 26.36, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.226 },
"i": { "x": 0.833, "y": 0.915 },
"s": [35.13, 49.46, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 4.525 },
"i": { "x": 0.833, "y": -0.19 },
"s": [22.33, 12.33, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.09 },
"i": { "x": 0.833, "y": 0.945 },
"s": [22.09, 18.94, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.16 },
"i": { "x": 0.833, "y": 2.147 },
"s": [18.9, 8.74, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 1.02 },
"s": [19.99, 5.87, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.96 },
"s": [3.91, 2.66, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.078 },
"i": { "x": 0.833, "y": 0.811 },
"s": [23.9, -0.53, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.977 },
"s": [13.56, 13.91, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.033 },
"i": { "x": 0.833, "y": 0.789 },
"s": [0.46, 12.49, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.138 },
"i": { "x": 0.833, "y": 0.934 },
"s": [9.89, 32.46, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.317 },
"i": { "x": 0.833, "y": 0.839 },
"s": [24.36, 3.88, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.533 },
"s": [21.35, -1.04, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 0.939 },
"s": [18.54, 8.08, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.234 },
"i": { "x": 0.833, "y": 0.517 },
"s": [5.61, 9.61, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 0.963 },
"s": [9.01, -5.24, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.068 },
"i": { "x": 0.833, "y": 1.022 },
"s": [25.3, 17.2, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.996 },
"s": [16.3, 0.8, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.004 },
"i": { "x": 0.833, "y": 0.888 },
"s": [27.66, -1.77, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.324 },
"i": { "x": 0.833, "y": 0.486 },
"s": [16.83, 22.26, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 1.009 },
"s": [13.07, 37.05, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 0.833 },
"s": [-6.35, 24.9, 100],
"t": 58
},
{ "s": [15.21, 18.72, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.604 },
"s": [129.41, 176.62, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.765 },
"s": [128.41, 176.12, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [124.94, 173.54, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [119.35, 167.67, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [114.29, 159.82, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [110.62, 152.31, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [107.8, 145.84, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [105.44, 140.42, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [103.35, 135.86, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [101.45, 132, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [99.7, 128.69, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [98.09, 125.85, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [96.61, 123.39, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [95.26, 121.25, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [94.03, 119.38, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [92.92, 117.75, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [91.92, 116.31, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [91.04, 115.04, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [90.27, 113.91, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [89.6, 112.92, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [89.02, 112.03, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [88.54, 111.23, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [88.14, 110.52, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [87.82, 109.88, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [87.58, 109.31, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [87.4, 108.79, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.841 },
"s": [87.28, 108.31, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [87.21, 107.88, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [87.18, 107.48, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [87.18, 107.1, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [87.21, 106.76, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [87.25, 106.43, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [87.3, 106.13, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.837 },
"s": [87.35, 105.83, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.833 },
"s": [87.38, 105.55, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.829 },
"s": [87.39, 105.28, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [87.39, 105.01, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [87.43, 104.73, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.835 },
"s": [87.49, 104.44, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [87.58, 104.16, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [87.68, 103.89, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [87.78, 103.64, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.843 },
"s": [87.86, 103.39, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.845 },
"s": [87.91, 103.16, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [87.94, 102.95, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.842 },
"s": [87.94, 102.76, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.833 },
"s": [87.9, 102.61, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.821 },
"s": [87.84, 102.49, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.815 },
"s": [87.74, 102.42, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.815 },
"s": [87.6, 102.38, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.817 },
"s": [87.44, 102.39, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.833 },
"s": [87.24, 102.44, 0],
"t": 58
},
{ "s": [87.01, 102.54, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 34
},
{ "s": [0], "t": 50 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 28
},
{
"ty": 4,
"nm": "Shape Layer 23",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.657 },
"s": [59.66, 55.34, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.11 },
"i": { "x": 0.833, "y": 0.995 },
"s": [49.89, 66.7, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": -0.005 },
"i": { "x": 0.833, "y": 0.918 },
"s": [19.43, 58.47, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -5.85 },
"i": { "x": 0.833, "y": 3.373 },
"s": [48.08, 34.4, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 1.007 },
"s": [47.67, 57.55, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.861 },
"s": [59.53, 50.29, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 0.953 },
"s": [46.7, 49.99, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.109 },
"i": { "x": 0.833, "y": 0.37 },
"s": [38.11, 45, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 1.019 },
"s": [41.84, 60.14, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.951 },
"s": [66.31, 60.81, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.12 },
"i": { "x": 0.833, "y": 0.984 },
"s": [36.22, 57.51, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.019 },
"i": { "x": 0.833, "y": 1.067 },
"s": [48.58, 67.79, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.975 },
"s": [38.55, 70.36, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.978 },
"s": [56.61, 27.91, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.029 },
"i": { "x": 0.833, "y": 1.04 },
"s": [44, 40.53, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 1.011 },
"s": [53.32, 76.38, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.01 },
"i": { "x": 0.833, "y": 0.972 },
"s": [39.52, 86.22, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.043 },
"i": { "x": 0.833, "y": 1.048 },
"s": [55.11, 68.6, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 1.002 },
"s": [44.8, 66.34, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.002 },
"i": { "x": 0.833, "y": 0.913 },
"s": [61.01, 62.93, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 1.871 },
"i": { "x": 0.833, "y": -0.03 },
"s": [44.38, 50.72, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.06 },
"s": [43.61, 56.73, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.035 },
"i": { "x": 0.833, "y": 0.994 },
"s": [34.8, 74.54, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.007 },
"i": { "x": 0.833, "y": 1.064 },
"s": [49.93, 86.57, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 1.023 },
"s": [35.91, 46.14, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.018 },
"i": { "x": 0.833, "y": 0.89 },
"s": [60.77, 42.51, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.347 },
"i": { "x": 0.833, "y": 0.937 },
"s": [29.06, 52.79, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.254 },
"i": { "x": 0.833, "y": 0.122 },
"s": [19.04, 52.78, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.937 },
"s": [21.51, 42.32, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.262 },
"i": { "x": 0.833, "y": 1.05 },
"s": [45.09, 22.5, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 1.058 },
"s": [39.41, 23.85, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.034 },
"i": { "x": 0.833, "y": 0.872 },
"s": [48.5, 25.33, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.238 },
"i": { "x": 0.833, "y": 0.945 },
"s": [33.08, 56.35, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.16 },
"i": { "x": 0.833, "y": 0.837 },
"s": [24.77, 40.49, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.787 },
"s": [27.61, 42.06, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.137 },
"i": { "x": 0.833, "y": 1.453 },
"s": [30.34, 29.68, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.984 },
"s": [34.56, 11.18, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 0.921 },
"s": [7.35, -6.83, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -1.554 },
"i": { "x": 0.833, "y": -0.296 },
"s": [29.23, -12.83, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.84 },
"s": [28.12, -5.24, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 1.049 },
"s": [11.92, -11.91, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.912 },
"s": [-2.99, 14.66, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 1.626 },
"i": { "x": 0.833, "y": 0.989 },
"s": [20.7, 6.48, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.013 },
"i": { "x": 0.833, "y": 1.274 },
"s": [21.98, -0.98, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 1.577 },
"s": [20.87, 14.42, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.975 },
"s": [25.63, 23.52, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.91 },
"s": [-12.12, 10.67, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 1.154 },
"i": { "x": 0.833, "y": 0.149 },
"s": [14.29, 13.28, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 1.047 },
"s": [16.34, 14.88, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 0.891 },
"s": [35.28, -0.79, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.355 },
"i": { "x": 0.833, "y": 0.937 },
"s": [5.62, 7.71, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.26 },
"i": { "x": 0.833, "y": 0.127 },
"s": [-3.49, 21.03, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.908 },
"s": [-1.28, 37.29, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.867 },
"i": { "x": 0.833, "y": 0.833 },
"s": [19.69, 37, 100],
"t": 58
},
{ "s": [21.92, 27.45, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.598 },
"s": [127.83, 176.96, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.765 },
"s": [127.3, 175.33, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [125.75, 168.9, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [124.36, 156.81, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [125.44, 143.33, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [128.79, 132.19, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [133, 123.65, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [137.26, 116.99, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [141.25, 111.58, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [144.89, 107, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [148.15, 102.99, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [151.03, 99.36, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [153.56, 96.02, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [155.72, 92.87, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [157.51, 89.87, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [158.94, 87, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.99, 84.26, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [160.69, 81.67, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [161.07, 79.28, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [161.19, 77.1, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [161.11, 75.14, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [160.88, 73.39, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [160.53, 71.83, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [160.16, 70.43, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.79, 69.17, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.45, 68.04, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [159.13, 67.02, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [158.83, 66.12, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [158.55, 65.32, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [158.29, 64.62, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [158.05, 64.02, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [157.81, 63.5, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [157.58, 63.08, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [157.36, 62.74, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.841 },
"s": [157.13, 62.49, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.835 },
"s": [156.9, 62.32, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.83 },
"s": [156.67, 62.22, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.826 },
"s": [156.43, 62.21, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.824 },
"s": [156.19, 62.26, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.823 },
"s": [155.94, 62.39, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.824 },
"s": [155.68, 62.59, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.826 },
"s": [155.41, 62.83, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [155.11, 63.09, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [154.78, 63.38, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.831 },
"s": [154.42, 63.68, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [154.06, 64, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [153.68, 64.33, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.836 },
"s": [153.3, 64.66, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.838 },
"s": [152.92, 64.99, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [152.56, 65.32, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.844 },
"s": [152.23, 65.63, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [151.92, 65.93, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [151.66, 66.19, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.833 },
"s": [151.44, 66.43, 0],
"t": 58
},
{ "s": [151.25, 66.63, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 29
},
{
"ty": 4,
"nm": "Shape Layer 22",
"sr": 1,
"st": 2,
"op": 60,
"ip": 2,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.986 },
"s": [38.09, 58.16, 100],
"t": 2
},
{
"o": { "x": 0.167, "y": -0.017 },
"i": { "x": 0.833, "y": 0.926 },
"s": [62.61, 42.75, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": -0.687 },
"i": { "x": 0.833, "y": 1.337 },
"s": [42.33, 46.32, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.838 },
"s": [44.53, 62.85, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 1.041 },
"s": [33.47, 71.37, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.872 },
"s": [23.04, 50.35, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.24 },
"i": { "x": 0.833, "y": 0.787 },
"s": [38.6, 31.64, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.137 },
"i": { "x": 0.833, "y": 1.016 },
"s": [46.86, 40.43, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 0.952 },
"s": [59.69, 46.55, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.111 },
"i": { "x": 0.833, "y": 0.768 },
"s": [44.45, 56.24, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 1.026 },
"s": [51, 67.17, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.962 },
"s": [62.69, 59.25, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.071 },
"i": { "x": 0.833, "y": 0.99 },
"s": [47.32, 48.76, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.011 },
"i": { "x": 0.833, "y": 1.026 },
"s": [55.6, 66.47, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.96 },
"s": [48.3, 68.52, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.077 },
"i": { "x": 0.833, "y": 0.845 },
"s": [57.88, 49.13, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.612 },
"s": [52.9, 30.25, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 1.07 },
"s": [48.6, 70.36, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.987 },
"s": [32.9, 84.68, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.016 },
"i": { "x": 0.833, "y": 0.993 },
"s": [61.71, 50.33, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.911 },
"s": [37.42, 60.81, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 1.349 },
"i": { "x": 0.833, "y": 1.779 },
"s": [59.59, 69.03, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 0.843 },
"s": [61.05, 59.81, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 1.135 },
"s": [45.94, 65.73, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.981 },
"s": [32.56, 53.73, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.024 },
"i": { "x": 0.833, "y": 0.946 },
"s": [67.69, 88.97, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.153 },
"i": { "x": 0.833, "y": 1.1 },
"s": [40.43, 60.71, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.825 },
"s": [50.06, 50.05, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.959 },
"s": [28.89, 50.11, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.081 },
"i": { "x": 0.833, "y": 0.781 },
"s": [5.5, 33.46, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.97 },
"s": [17.37, 44.16, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.047 },
"i": { "x": 0.833, "y": 0.91 },
"s": [36.75, 25.79, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 1.081 },
"i": { "x": 0.833, "y": -0.16 },
"s": [24.34, 31.24, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.09 },
"i": { "x": 0.833, "y": 1.019 },
"s": [23.3, 27.49, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.937 },
"s": [9.91, 51.07, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.252 },
"i": { "x": 0.833, "y": 0.992 },
"s": [26.41, 42.35, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.683 },
"s": [22.32, 45.74, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 1.156 },
"s": [26.04, 41.94, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.955 },
"s": [36.49, 30.73, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.096 },
"i": { "x": 0.833, "y": 0.831 },
"s": [6.45, -3.25, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.979 },
"s": [20.44, -10.39, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.027 },
"i": { "x": 0.833, "y": 0.774 },
"s": [34.83, -4.36, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.132 },
"i": { "x": 0.833, "y": 0.967 },
"s": [23.99, -14.11, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.056 },
"i": { "x": 0.833, "y": 0.882 },
"s": [5.48, -2.49, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.282 },
"i": { "x": 0.833, "y": 0.917 },
"s": [16.56, 9.38, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -41.355 },
"i": { "x": 0.833, "y": 26.628 },
"s": [21.21, 6.31, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 2.023 },
"s": [21.2, 1.89, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.937 },
"s": [24.08, 33.57, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.255 },
"i": { "x": 0.833, "y": 0.757 },
"s": [-14.17, 26.4, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 0.807 },
"s": [-4.73, 12.89, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 1.012 },
"s": [13.31, 8.3, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.01 },
"i": { "x": 0.833, "y": 0.85 },
"s": [37.08, 19.27, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.972 },
"s": [9.94, 17.95, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.041 },
"i": { "x": 0.833, "y": 0.765 },
"s": [-11.8, 16.07, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.956 },
"s": [2.75, 13.33, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.092 },
"i": { "x": 0.833, "y": 0.972 },
"s": [29.19, 42.48, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.043 },
"i": { "x": 0.833, "y": 0.833 },
"s": [16.64, 37.39, 100],
"t": 58
},
{ "s": [24.91, 22.58, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.555 },
"s": [128.51, 175.47, 0],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.762 },
"s": [127.44, 175.56, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [122.8, 176.1, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [114.26, 177.85, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [105, 181.11, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [97.33, 185.26, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [91.41, 189.76, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [86.89, 194.34, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [83.45, 198.84, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [80.84, 203.19, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [78.87, 207.32, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [77.43, 211.2, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [76.4, 214.81, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [75.69, 218.16, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [75.22, 221.27, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.93, 224.13, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.77, 226.77, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.7, 229.2, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.7, 231.43, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.74, 233.49, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.8, 235.38, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.86, 237.12, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.93, 238.72, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.98, 240.18, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [75.01, 241.52, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [75.02, 242.74, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.99, 243.86, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.94, 244.88, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.86, 245.8, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [74.75, 246.64, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.61, 247.39, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.44, 248.07, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.25, 248.67, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.04, 249.21, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [73.81, 249.68, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [73.58, 250.09, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [73.34, 250.44, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [73.11, 250.74, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [72.88, 250.99, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.85 },
"s": [72.68, 251.2, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.85 },
"s": [72.5, 251.36, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.853 },
"s": [72.35, 251.46, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.193 },
"i": { "x": 0.833, "y": 0.858 },
"s": [72.23, 251.54, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.202 },
"i": { "x": 0.833, "y": 0.864 },
"s": [72.13, 251.59, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.214 },
"i": { "x": 0.833, "y": 0.858 },
"s": [72.06, 251.61, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.201 },
"i": { "x": 0.833, "y": 0.811 },
"s": [72.01, 251.6, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.791 },
"s": [71.99, 251.58, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.803 },
"s": [71.99, 251.53, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 0.812 },
"s": [72.01, 251.45, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.817 },
"s": [72.05, 251.36, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.821 },
"s": [72.12, 251.26, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [72.2, 251.13, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [72.3, 251, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [72.41, 250.85, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [72.54, 250.7, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.831 },
"s": [72.67, 250.54, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [72.81, 250.37, 0],
"t": 58
},
{ "s": [72.96, 250.2, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 2
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 29
},
{ "s": [0], "t": 45 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 30
},
{
"ty": 4,
"nm": "Shape Layer 21",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": -5.266 },
"s": [49.43, 28.25, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.084 },
"i": { "x": 0.833, "y": 0.994 },
"s": [49.25, 33.1, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.87 },
"s": [35.65, 58.73, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.233 },
"i": { "x": 0.833, "y": 0.943 },
"s": [48.32, 69.64, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.185 },
"i": { "x": 0.833, "y": 0.692 },
"s": [55.38, 58.22, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.114 },
"i": { "x": 0.833, "y": 0.962 },
"s": [53.18, 30.67, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.07 },
"i": { "x": 0.833, "y": 1.185 },
"s": [47.25, 55.82, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 1.076 },
"s": [50.47, 45.9, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.937 },
"s": [40.07, 45.68, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.254 },
"i": { "x": 0.833, "y": 0.435 },
"s": [60.01, 47.35, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.986 },
"s": [55.09, 52.32, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.016 },
"i": { "x": 0.833, "y": 0.908 },
"s": [26.67, 78.49, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.871 },
"i": { "x": 0.833, "y": 0.977 },
"s": [50.4, 49.07, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.032 },
"i": { "x": 0.833, "y": 1.079 },
"s": [52.91, 39.92, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.812 },
"s": [51.1, 62.55, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 1.481 },
"s": [54.62, 63.45, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 1.008 },
"s": [59.04, 77.64, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 0.948 },
"s": [29.11, 35.84, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.141 },
"i": { "x": 0.833, "y": 0.83 },
"s": [61.91, 61.65, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.965 },
"s": [49.75, 69.29, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": -0.059 },
"i": { "x": 0.833, "y": 1.119 },
"s": [37.1, 53.03, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.983 },
"s": [44.48, 75.77, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.022 },
"i": { "x": 0.833, "y": 0.873 },
"s": [26.57, 28.21, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.244 },
"i": { "x": 0.833, "y": 1.036 },
"s": [40.72, 47.93, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.914 },
"s": [48.08, 57.09, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 3.172 },
"i": { "x": 0.833, "y": -4.522 },
"s": [37.59, 57.69, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.977 },
"s": [37.3, 44.13, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.032 },
"i": { "x": 0.833, "y": 0.837 },
"s": [18.82, 58.39, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.978 },
"s": [32.17, 43.2, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.03 },
"i": { "x": 0.833, "y": 1.051 },
"s": [44.91, 43.46, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.032 },
"i": { "x": 0.833, "y": 1.063 },
"s": [35.51, 39.77, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.933 },
"s": [50.68, 50.18, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.353 },
"i": { "x": 0.833, "y": 0.65 },
"s": [24.01, 22.8, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.109 },
"i": { "x": 0.833, "y": 0.946 },
"s": [29.1, 20.84, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.154 },
"i": { "x": 0.833, "y": 0.678 },
"s": [45.4, 32.6, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 0.84 },
"s": [39.67, 28.51, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.985 },
"s": [23.25, 14.33, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.018 },
"i": { "x": 0.833, "y": 0.939 },
"s": [8.13, 25.6, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.225 },
"i": { "x": 0.833, "y": 0.962 },
"s": [20.6, 28.01, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.07 },
"i": { "x": 0.833, "y": 1.962 },
"s": [17.23, 7.5, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.877 },
"s": [19.06, 23.51, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.257 },
"i": { "x": 0.833, "y": 1.027 },
"s": [-3.88, 14.6, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.741 },
"s": [-14.87, 3.68, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.123 },
"i": { "x": 0.833, "y": 0.947 },
"s": [-0.38, -2.84, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.147 },
"i": { "x": 0.833, "y": 0.692 },
"s": [30.23, 30.35, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.114 },
"i": { "x": 0.833, "y": 0.975 },
"s": [19.16, 39.26, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.035 },
"i": { "x": 0.833, "y": 0.829 },
"s": [-10.69, 32.32, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.981 },
"s": [10.35, -5.06, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.025 },
"i": { "x": 0.833, "y": 0.959 },
"s": [32.4, 17.82, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.08 },
"i": { "x": 0.833, "y": 0.943 },
"s": [15.5, 27.7, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.182 },
"i": { "x": 0.833, "y": 0.833 },
"s": [24.14, 15.19, 100],
"t": 58
},
{ "s": [21.42, 9.98, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.611 },
"s": [130.99, 179.4, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.766 },
"s": [131, 181.13, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.825 },
"s": [131.35, 187.5, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [133, 198.88, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [136.89, 210.72, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [142.64, 219.35, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [148.94, 224.51, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [154.85, 227.43, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [160.09, 229.17, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [164.69, 230.35, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [168.74, 231.28, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [172.31, 232.14, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [175.46, 233.02, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [178.26, 233.98, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [180.74, 235.05, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [182.92, 236.24, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [184.81, 237.55, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [186.46, 238.96, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.841 },
"s": [187.88, 240.44, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [189.09, 241.95, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [190.1, 243.42, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [190.95, 244.83, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [191.65, 246.15, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [192.24, 247.39, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [192.74, 248.53, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [193.16, 249.58, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [193.51, 250.53, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [193.81, 251.39, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [194.07, 252.17, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [194.3, 252.87, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [194.49, 253.48, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [194.66, 254.03, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [194.81, 254.5, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [194.95, 254.92, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [195.06, 255.27, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.848 },
"s": [195.17, 255.57, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.851 },
"s": [195.26, 255.82, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.854 },
"s": [195.34, 256.03, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.194 },
"i": { "x": 0.833, "y": 0.858 },
"s": [195.4, 256.19, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.203 },
"i": { "x": 0.833, "y": 0.847 },
"s": [195.46, 256.3, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.824 },
"s": [195.5, 256.38, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.824 },
"s": [195.54, 256.44, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.824 },
"s": [195.58, 256.52, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.825 },
"s": [195.61, 256.61, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.826 },
"s": [195.63, 256.71, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [195.65, 256.83, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [195.67, 256.96, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.823 },
"s": [195.68, 257.09, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.821 },
"s": [195.68, 257.24, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.826 },
"s": [195.67, 257.41, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.833 },
"s": [195.65, 257.6, 0],
"t": 58
},
{ "s": [195.62, 257.81, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 92, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 31
},
{
"ty": 4,
"nm": "Shape Layer 20",
"sr": 1,
"st": 6,
"op": 60,
"ip": 6,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.05 },
"s": [55.54, 55.25, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.873 },
"s": [69.49, 24.9, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.241 },
"i": { "x": 0.833, "y": 0.888 },
"s": [47.11, 28.13, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.325 },
"i": { "x": 0.833, "y": 1.204 },
"s": [35.3, 54.84, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 0.921 },
"s": [31.23, 49.89, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -1.529 },
"i": { "x": 0.833, "y": -0.459 },
"s": [45.3, 43.32, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 0.995 },
"s": [44.57, 16.76, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.992 },
"s": [32.56, 33.63, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.995 },
"s": [43.79, 41.87, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.005 },
"i": { "x": 0.833, "y": 0.731 },
"s": [33.58, 30.43, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 1.035 },
"s": [43.17, 43.71, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.935 },
"s": [64.57, 52.18, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.305 },
"i": { "x": 0.833, "y": 0.575 },
"s": [34.17, 74.01, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.931 },
"s": [40.69, 57.5, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.391 },
"i": { "x": 0.833, "y": 0.313 },
"s": [67.44, 43.23, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.095 },
"i": { "x": 0.833, "y": 0.993 },
"s": [62.74, 54.06, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 0.953 },
"s": [28.65, 71.46, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.109 },
"i": { "x": 0.833, "y": 0.815 },
"s": [59.82, 85.99, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.991 },
"s": [46.32, 46.1, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 1.02 },
"s": [29.82, 45.91, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.963 },
"s": [44.47, 55.65, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.068 },
"i": { "x": 0.833, "y": 0.849 },
"s": [26.28, 25.25, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.888 },
"s": [36.31, 61.89, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.324 },
"i": { "x": 0.833, "y": 0.814 },
"s": [44.48, 39.09, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 1.498 },
"s": [47.3, 32.49, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.992 },
"s": [50.79, 50.67, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.009 },
"i": { "x": 0.833, "y": 0.986 },
"s": [26.43, 53.37, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.017 },
"i": { "x": 0.833, "y": 0.906 },
"s": [48.51, 24.01, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.764 },
"i": { "x": 0.833, "y": 1.666 },
"s": [30.17, 29.15, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.993 },
"s": [27.93, 27.44, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.008 },
"i": { "x": 0.833, "y": 1.011 },
"s": [48.12, 22.05, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 1.007 },
"s": [29.63, 18.04, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 0.882 },
"s": [50.46, 30.99, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.282 },
"i": { "x": 0.833, "y": 1.098 },
"s": [27.81, 13.16, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 0.953 },
"s": [18.3, 17.16, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.106 },
"i": { "x": 0.833, "y": 0.913 },
"s": [39.03, 29.63, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 1.804 },
"i": { "x": 0.833, "y": -5.816 },
"s": [29.93, 42.54, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.084 },
"i": { "x": 0.833, "y": 0.946 },
"s": [29.48, 31.81, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.155 },
"i": { "x": 0.833, "y": 0.87 },
"s": [-6.16, 43.62, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.231 },
"i": { "x": 0.833, "y": 0.795 },
"s": [6.31, 25.84, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 1.094 },
"s": [13.36, 22.52, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.924 },
"s": [23.63, 24.82, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.898 },
"i": { "x": 0.833, "y": 1.231 },
"s": [1.81, 1.91, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 1.188 },
"s": [3.66, -7.85, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.899 },
"s": [-3.33, -6.63, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.485 },
"i": { "x": 0.833, "y": 1.382 },
"s": [19.4, 18.17, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.967 },
"s": [24.11, 33.99, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.055 },
"i": { "x": 0.833, "y": 0.795 },
"s": [-2.21, 38.34, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.999 },
"s": [13.6, 4.09, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.947 },
"s": [36.63, 3.17, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.146 },
"i": { "x": 0.833, "y": 0.867 },
"s": [13.9, 11.75, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 1.164 },
"s": [22.17, 12.79, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.833 },
"s": [27.07, 18.42, 100],
"t": 58
},
{ "s": [12.53, -13.57, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.574 },
"s": [133.78, 151.3, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.763 },
"s": [133.12, 152.22, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [130.17, 155.73, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [123.83, 160.91, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [115.73, 163.95, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [108.36, 163.68, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [102.56, 161.24, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [98.23, 157.8, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [95.02, 154.04, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [92.63, 150.3, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [90.83, 146.73, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [89.45, 143.38, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [88.36, 140.28, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [87.5, 137.41, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [86.81, 134.77, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [86.23, 132.34, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [85.75, 130.1, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [85.34, 128.06, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.98, 126.18, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.66, 124.46, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.38, 122.9, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.12, 121.47, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [83.88, 120.18, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [83.66, 119.01, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [83.46, 117.96, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [83.28, 117.03, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [83.11, 116.19, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [82.96, 115.46, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [82.83, 114.83, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [82.71, 114.28, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.851 },
"s": [82.62, 113.82, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.854 },
"s": [82.55, 113.44, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.193 },
"i": { "x": 0.833, "y": 0.856 },
"s": [82.51, 113.13, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 0.855 },
"s": [82.5, 112.9, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.852 },
"s": [82.52, 112.74, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.821 },
"s": [82.58, 112.63, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.805 },
"s": [82.66, 112.61, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.812 },
"s": [82.74, 112.65, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.819 },
"s": [82.83, 112.76, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.831 },
"s": [82.93, 112.91, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.84 },
"s": [83.02, 113.1, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.842 },
"s": [83.12, 113.3, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.845 },
"s": [83.22, 113.47, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [83.31, 113.62, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [83.41, 113.75, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.845 },
"s": [83.5, 113.83, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.832 },
"s": [83.58, 113.88, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.816 },
"s": [83.66, 113.88, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.811 },
"s": [83.73, 113.84, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.812 },
"s": [83.8, 113.75, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.816 },
"s": [83.86, 113.62, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.819 },
"s": [83.91, 113.45, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.833 },
"s": [83.96, 113.23, 0],
"t": 58
},
{ "s": [83.99, 112.97, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 33
},
{ "s": [0], "t": 49 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 32
},
{
"ty": 4,
"nm": "Shape Layer 19",
"sr": 1,
"st": 11,
"op": 60,
"ip": 11,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 2.45 },
"s": [31.58, 17.33, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.851 },
"s": [31.06, 18.55, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 1.096 },
"s": [40.57, 55.65, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 1.044 },
"s": [48.06, 40.05, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.951 },
"s": [31.9, 27.36, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.117 },
"i": { "x": 0.833, "y": 0.846 },
"s": [56.63, 47.92, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 1.191 },
"s": [46.32, 78.83, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.903 },
"s": [37.55, 48.32, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.576 },
"i": { "x": 0.833, "y": 1.592 },
"s": [66.45, 42.28, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.95 },
"s": [71.33, 55.3, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.126 },
"i": { "x": 0.833, "y": 0.84 },
"s": [31.74, 77.61, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 1.163 },
"s": [47.48, 89.12, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.936 },
"s": [61.92, 69.29, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.273 },
"i": { "x": 0.833, "y": 0.87 },
"s": [19.25, 59.86, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.231 },
"i": { "x": 0.833, "y": 1.013 },
"s": [29.22, 55.01, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 1.068 },
"s": [34.83, 27.85, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.87 },
"s": [28.37, 26.26, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.234 },
"i": { "x": 0.833, "y": 0.848 },
"s": [40.1, 52, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 1.37 },
"s": [46.61, 41.42, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.991 },
"s": [51.95, 24.22, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.931 },
"s": [22.87, 55.7, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.417 },
"i": { "x": 0.833, "y": 0.867 },
"s": [48.95, 44.75, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 1.202 },
"s": [44.6, 27.32, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 0.962 },
"s": [42.03, 42.35, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.069 },
"i": { "x": 0.833, "y": 1.193 },
"s": [50.84, 29.9, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.964 },
"s": [46.04, 36.4, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.063 },
"i": { "x": 0.833, "y": 0.717 },
"s": [61.98, 54.54, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 0.99 },
"s": [52.9, 38.64, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.012 },
"i": { "x": 0.833, "y": 0.969 },
"s": [31.11, 25.86, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.049 },
"i": { "x": 0.833, "y": 0.947 },
"s": [50.25, 28.52, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.147 },
"i": { "x": 0.833, "y": 1.464 },
"s": [38.22, 41.99, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.902 },
"s": [42.57, 44.15, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.554 },
"i": { "x": 0.833, "y": 1.234 },
"s": [14.02, 64.95, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.845 },
"s": [8.96, 27.23, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 1.091 },
"s": [28.2, 23.39, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.948 },
"s": [44.67, 47.59, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.137 },
"i": { "x": 0.833, "y": 0.953 },
"s": [10.19, 28.62, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.108 },
"i": { "x": 0.833, "y": 0.976 },
"s": [23.23, 2.24, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.035 },
"i": { "x": 0.833, "y": 0.831 },
"s": [17.56, 7, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 1.412 },
"s": [21.57, 2.58, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.937 },
"s": [25.67, 9.24, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.254 },
"i": { "x": 0.833, "y": 0.454 },
"s": [1.25, 35.24, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.959 },
"s": [7.27, 16.17, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.082 },
"i": { "x": 0.833, "y": 0.849 },
"s": [40.74, 18.42, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 1.046 },
"s": [23.83, 5.22, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 0.963 },
"s": [10.16, 28.82, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.065 },
"i": { "x": 0.833, "y": 0.959 },
"s": [31.4, 23.98, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.079 },
"i": { "x": 0.833, "y": 0.833 },
"s": [19.49, 11.05, 100],
"t": 58
},
{ "s": [25.59, -2.08, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.51 },
"s": [133.65, 148.59, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.1 },
"i": { "x": 0.833, "y": 0.759 },
"s": [134.47, 148.49, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 0.823 },
"s": [138.53, 148.88, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [145.96, 151.19, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [153.64, 155.82, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [159.44, 161.55, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [163.39, 167.41, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.843 },
"s": [165.98, 172.98, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [167.65, 178.12, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [168.71, 182.79, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [169.36, 187.02, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [169.74, 190.85, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [169.96, 194.33, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [170.08, 197.49, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.15, 200.37, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.2, 203.02, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.23, 205.48, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.25, 207.77, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.28, 209.89, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [170.3, 211.87, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [170.34, 213.7, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [170.39, 215.38, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [170.45, 216.94, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [170.51, 218.35, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [170.59, 219.64, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [170.68, 220.79, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [170.77, 221.82, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [170.87, 222.73, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [170.98, 223.51, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [171.09, 224.18, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.852 },
"s": [171.2, 224.74, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.855 },
"s": [171.31, 225.18, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.196 },
"i": { "x": 0.833, "y": 0.859 },
"s": [171.42, 225.52, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.204 },
"i": { "x": 0.833, "y": 0.86 },
"s": [171.52, 225.75, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.205 },
"i": { "x": 0.833, "y": 0.84 },
"s": [171.62, 225.89, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.806 },
"s": [171.72, 225.94, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.146 },
"i": { "x": 0.833, "y": 0.804 },
"s": [171.81, 225.9, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.811 },
"s": [171.89, 225.78, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.817 },
"s": [171.97, 225.59, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.827 },
"s": [172.04, 225.33, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.835 },
"s": [172.09, 225.02, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [172.14, 224.68, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.839 },
"s": [172.17, 224.35, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.841 },
"s": [172.18, 224.02, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [172.17, 223.72, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [172.16, 223.44, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [172.16, 223.2, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.833 },
"s": [172.19, 222.98, 0],
"t": 58
},
{ "s": [172.23, 222.78, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 16
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 38
},
{ "s": [0], "t": 54 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 33
},
{
"ty": 4,
"nm": "Shape Layer 18",
"sr": 1,
"st": 12,
"op": 60,
"ip": 12,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.085 },
"s": [46.84, 57.24, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 0.959 },
"s": [58.52, 59.07, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.082 },
"i": { "x": 0.833, "y": 0.846 },
"s": [34.97, 27.86, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 1.108 },
"s": [46.83, 43.47, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.971 },
"s": [56.9, 73.95, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.046 },
"i": { "x": 0.833, "y": 0.765 },
"s": [33.83, 48.22, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 1.014 },
"s": [48.73, 36.88, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.012 },
"i": { "x": 0.833, "y": 0.925 },
"s": [75.91, 59.3, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.787 },
"i": { "x": 0.833, "y": 0.797 },
"s": [44.11, 83.73, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 1.16 },
"s": [47.15, 83.73, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.834 },
"s": [51.52, 84.93, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.994 },
"s": [38.76, 73.04, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.007 },
"i": { "x": 0.833, "y": 0.849 },
"s": [26.17, 70.9, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 1.006 },
"s": [37.81, 55.32, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.991 },
"s": [47.2, 27.88, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.869 },
"s": [37.09, 45.84, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.23 },
"i": { "x": 0.833, "y": 1.159 },
"s": [46.11, 68.32, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.918 },
"s": [51.22, 24.1, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -4.52 },
"i": { "x": 0.833, "y": -2.162 },
"s": [36.38, 50.19, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.955 },
"s": [36.64, 80.48, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.097 },
"i": { "x": 0.833, "y": 0.922 },
"s": [46.58, 45.77, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -1.248 },
"i": { "x": 0.833, "y": 3.564 },
"s": [41.99, 62.31, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 1.138 },
"s": [42.27, 34.61, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.92 },
"s": [33.15, 45.28, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -1.951 },
"i": { "x": 0.833, "y": 0.048 },
"s": [57.4, 66.01, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 0.968 },
"s": [56.41, 68.85, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.052 },
"i": { "x": 0.833, "y": 1.028 },
"s": [46.06, 42.14, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.911 },
"s": [52.45, 34.14, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 1.225 },
"i": { "x": 0.833, "y": -1.313 },
"s": [43.91, 29.45, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.885 },
"s": [43.28, 33.15, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.303 },
"i": { "x": 0.833, "y": 1.028 },
"s": [26.6, 43.27, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.806 },
"s": [20.28, 37.42, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.146 },
"i": { "x": 0.833, "y": 1.052 },
"s": [28.75, 7.22, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.032 },
"i": { "x": 0.833, "y": 0.928 },
"s": [39.97, 47.89, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.543 },
"i": { "x": 0.833, "y": 0.858 },
"s": [21.73, 57.01, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.202 },
"i": { "x": 0.833, "y": 1.018 },
"s": [24.16, 17.37, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.015 },
"i": { "x": 0.833, "y": 1.415 },
"s": [25.87, 11.61, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 1.126 },
"s": [23.8, 11.6, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 0.939 },
"s": [36.18, 0.47, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.229 },
"i": { "x": 0.833, "y": 0.788 },
"s": [5.01, 36.82, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.137 },
"i": { "x": 0.833, "y": 0.913 },
"s": [13.34, 27.23, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 2.212 },
"i": { "x": 0.833, "y": 3.588 },
"s": [26.18, 40.42, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.93 },
"s": [26.68, 4.95, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.428 },
"i": { "x": 0.833, "y": 0.974 },
"s": [10.57, 24.39, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.037 },
"i": { "x": 0.833, "y": 1.031 },
"s": [13.2, 12.23, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 1.011 },
"s": [11.38, 15.26, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.01 },
"i": { "x": 0.833, "y": 0.833 },
"s": [13.87, 15.66, 100],
"t": 58
},
{ "s": [11.04, 18.88, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.544 },
"s": [130.79, 149.57, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.761 },
"s": [130.32, 148.16, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [127.79, 142.06, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [121.83, 131.5, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [113.31, 121.67, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [104.36, 115.68, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [96.07, 113.32, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [88.9, 113.7, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [83.02, 115.92, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [78.39, 119.24, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [74.84, 123.09, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [72.16, 127.08, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [70.16, 131.01, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [68.68, 134.74, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [67.58, 138.24, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [66.78, 141.47, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [66.19, 144.42, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [65.76, 147.11, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [65.46, 149.55, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [65.24, 151.74, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [65.09, 153.7, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [64.98, 155.46, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [64.91, 157.01, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [64.85, 158.39, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [64.8, 159.6, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [64.76, 160.67, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [64.71, 161.6, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [64.66, 162.41, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [64.6, 163.12, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [64.53, 163.74, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.846 },
"s": [64.49, 164.27, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.847 },
"s": [64.46, 164.73, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.849 },
"s": [64.44, 165.12, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [64.43, 165.44, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.854 },
"s": [64.43, 165.7, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.859 },
"s": [64.44, 165.9, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.204 },
"i": { "x": 0.833, "y": 0.866 },
"s": [64.45, 166.06, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.222 },
"i": { "x": 0.833, "y": 0.869 },
"s": [64.47, 166.16, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.23 },
"i": { "x": 0.833, "y": 0.811 },
"s": [64.49, 166.22, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.815 },
"s": [64.52, 166.23, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.845 },
"s": [64.55, 166.2, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.838 },
"s": [64.58, 166.16, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.83 },
"s": [64.61, 166.14, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.826 },
"s": [64.65, 166.13, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.826 },
"s": [64.69, 166.14, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [64.73, 166.16, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.833 },
"s": [64.77, 166.19, 0],
"t": 58
},
{ "s": [64.81, 166.23, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 17
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 39
},
{ "s": [0], "t": 55 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 34
},
{
"ty": 4,
"nm": "Shape Layer 17",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.944 },
"s": [24.03, 60.83, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.166 },
"i": { "x": 0.833, "y": 1.111 },
"s": [47.32, 54.38, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.048 },
"i": { "x": 0.833, "y": 0.903 },
"s": [39.55, 36, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.607 },
"i": { "x": 0.833, "y": 1.606 },
"s": [57.71, 35.93, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.989 },
"s": [60.6, 63.08, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.013 },
"i": { "x": 0.833, "y": 0.917 },
"s": [36.71, 34.68, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -62.917 },
"i": { "x": 0.833, "y": -66.49 },
"s": [57.46, 50.97, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 0.946 },
"s": [57.43, 55.09, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.154 },
"i": { "x": 0.833, "y": 0.649 },
"s": [35.23, 52.58, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.109 },
"i": { "x": 0.833, "y": 0.994 },
"s": [43.02, 39.99, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.926 },
"s": [68.09, 46.81, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.681 },
"i": { "x": 0.833, "y": 1.246 },
"s": [44.72, 71.44, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 1.031 },
"s": [47.27, 63.9, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 0.909 },
"s": [37.19, 71.31, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 1.035 },
"i": { "x": 0.833, "y": 2.265 },
"s": [51.03, 55.46, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 1.009 },
"s": [52.24, 67.2, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 0.918 },
"s": [32.64, 62.35, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -4.987 },
"i": { "x": 0.833, "y": -2.408 },
"s": [54.43, 62.57, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.975 },
"s": [54.07, 46.25, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.884 },
"s": [39.78, 69.48, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.293 },
"i": { "x": 0.833, "y": 1.215 },
"s": [49.72, 33.37, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.963 },
"s": [53.66, 45.85, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.066 },
"i": { "x": 0.833, "y": 0.916 },
"s": [39.52, 80.42, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 12.816 },
"i": { "x": 0.833, "y": -6.827 },
"s": [47.42, 59.73, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.084 },
"i": { "x": 0.833, "y": 1.453 },
"s": [47.47, 75.23, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.989 },
"s": [52.28, 45.52, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.013 },
"i": { "x": 0.833, "y": 0.947 },
"s": [21.37, 47.95, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.143 },
"i": { "x": 0.833, "y": 0.92 },
"s": [48.13, 56.64, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -2.31 },
"i": { "x": 0.833, "y": 2.435 },
"s": [38.26, 55.86, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.931 },
"s": [38.61, 36.24, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.407 },
"i": { "x": 0.833, "y": 0.227 },
"s": [32.35, 36.7, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 1.092 },
"s": [33.41, 25.99, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.901 },
"s": [42.23, 25.45, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.541 },
"i": { "x": 0.833, "y": 0.779 },
"s": [23.72, 5.62, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.776 },
"s": [20.34, 29.97, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.133 },
"i": { "x": 0.833, "y": 1.092 },
"s": [14.77, -4.8, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.935 },
"s": [5.36, 33.65, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.287 },
"i": { "x": 0.833, "y": 0.606 },
"s": [25.16, 33.81, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.918 },
"s": [20.71, 17.29, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -5.253 },
"i": { "x": 0.833, "y": -8.496 },
"s": [4.1, -14.2, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.084 },
"i": { "x": 0.833, "y": 0.961 },
"s": [4.36, 12.75, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.072 },
"i": { "x": 0.833, "y": 0.956 },
"s": [33.65, 17.25, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.094 },
"i": { "x": 0.833, "y": 1.049 },
"s": [17.93, 30.63, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.899 },
"s": [25.32, 31.23, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.481 },
"i": { "x": 0.833, "y": 1.136 },
"s": [13.54, 34.66, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 1.062 },
"s": [11.08, 5.31, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.035 },
"i": { "x": 0.833, "y": 0.882 },
"s": [17.56, 2.41, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.285 },
"i": { "x": 0.833, "y": 1.028 },
"s": [6.27, -18.23, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.846 },
"s": [1.6, -2.9, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.815 },
"s": [7.84, 16.27, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.833 },
"s": [13.1, 26.39, 100],
"t": 58
},
{ "s": [19.5, 20.64, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.628 },
"s": [134.5, 152.08, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.107 },
"i": { "x": 0.833, "y": 0.767 },
"s": [136.1, 152.64, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.825 },
"s": [141.8, 153.78, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [152.18, 154.65, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [163.64, 153.56, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [173.19, 150.14, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [180.29, 145.02, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [185.16, 139.08, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [188.3, 133.05, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [190.24, 127.32, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [191.39, 122.04, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [192.01, 117.24, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [192.28, 112.88, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [192.32, 108.91, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [192.19, 105.29, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [191.96, 101.99, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [191.65, 98.97, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [191.29, 96.21, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [190.91, 93.68, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [190.53, 91.37, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [190.15, 89.25, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [189.78, 87.3, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [189.42, 85.53, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [189.09, 83.91, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [188.79, 82.43, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [188.51, 81.08, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [188.26, 79.87, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [188.04, 78.77, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [187.86, 77.78, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [187.7, 76.9, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [187.57, 76.12, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [187.48, 75.43, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [187.41, 74.84, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.848 },
"s": [187.37, 74.33, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.85 },
"s": [187.36, 73.9, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.851 },
"s": [187.38, 73.55, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.852 },
"s": [187.41, 73.27, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.849 },
"s": [187.47, 73.06, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.839 },
"s": [187.55, 72.92, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.833 },
"s": [187.64, 72.83, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.838 },
"s": [187.74, 72.8, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [187.85, 72.8, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.843 },
"s": [187.96, 72.8, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.846 },
"s": [188.05, 72.79, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [188.14, 72.77, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.844 },
"s": [188.2, 72.75, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.838 },
"s": [188.25, 72.71, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.817 },
"s": [188.29, 72.67, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.813 },
"s": [188.33, 72.64, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.817 },
"s": [188.39, 72.65, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.833 },
"s": [188.46, 72.68, 0],
"t": 58
},
{ "s": [188.53, 72.73, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 35
},
{
"ty": 4,
"nm": "Shape Layer 16",
"sr": 1,
"st": 9,
"op": 60,
"ip": 9,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.563 },
"s": [45.08, 55.03, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 1.109 },
"s": [46.51, 24.66, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 1.054 },
"s": [52.58, 62.36, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.929 },
"s": [38.59, 48.31, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.475 },
"i": { "x": 0.833, "y": 0.393 },
"s": [61.72, 43.79, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.097 },
"i": { "x": 0.833, "y": 0.968 },
"s": [58.27, 33.4, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.053 },
"i": { "x": 0.833, "y": 0.834 },
"s": [36.56, 47.96, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.042 },
"s": [49.83, 54.82, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.894 },
"s": [63.05, 30.4, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.389 },
"i": { "x": 0.833, "y": 0.863 },
"s": [43.15, 47.6, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.212 },
"i": { "x": 0.833, "y": 1.102 },
"s": [37.72, 35.13, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 0.698 },
"s": [34.2, 51.54, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.995 },
"s": [42.04, 41.33, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.904 },
"s": [62.6, 55.18, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.627 },
"i": { "x": 0.833, "y": 1.376 },
"s": [43.38, 33.2, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.999 },
"s": [40.43, 73.76, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.002 },
"i": { "x": 0.833, "y": 0.976 },
"s": [56.66, 49.08, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.033 },
"i": { "x": 0.833, "y": 0.9 },
"s": [40.72, 67.08, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.508 },
"i": { "x": 0.833, "y": 1.069 },
"s": [52.13, 28.07, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.758 },
"s": [54.37, 45.88, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 1.163 },
"s": [50.27, 49.47, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.9 },
"s": [42.46, 47.9, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.493 },
"i": { "x": 0.833, "y": 1.429 },
"s": [65.56, 60.25, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.944 },
"s": [70.26, 60.83, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.171 },
"i": { "x": 0.833, "y": 0.922 },
"s": [41.34, 56.55, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -1.171 },
"i": { "x": 0.833, "y": -0.547 },
"s": [50.82, 68.82, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 0.772 },
"s": [50.19, 39.54, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.131 },
"i": { "x": 0.833, "y": 0.975 },
"s": [39.13, 32.68, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.822 },
"s": [19.92, 32.38, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.966 },
"s": [33.37, 34.33, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.058 },
"i": { "x": 0.833, "y": 0.795 },
"s": [48.61, 30.46, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.792 },
"s": [39.64, 13.71, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.896 },
"s": [26.6, 39.24, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.427 },
"i": { "x": 0.833, "y": 1.334 },
"s": [7.11, 2.07, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.853 },
"s": [2.39, 36.6, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.192 },
"i": { "x": 0.833, "y": 1.066 },
"s": [26.02, 6.02, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.882 },
"s": [44.19, 27.24, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.284 },
"i": { "x": 0.833, "y": 1.078 },
"s": [11.64, -3.39, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.862 },
"s": [-1.84, 5.53, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.211 },
"i": { "x": 0.833, "y": 0.96 },
"s": [24.34, 24.66, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.077 },
"i": { "x": 0.833, "y": 0.76 },
"s": [41.44, 28.97, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.867 },
"s": [32.53, 17.64, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.222 },
"i": { "x": 0.833, "y": 0.951 },
"s": [15.77, 15.74, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.117 },
"i": { "x": 0.833, "y": 0.916 },
"s": [5.7, -0.32, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 10.387 },
"i": { "x": 0.833, "y": 2.198 },
"s": [9.89, 10.27, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 0.475 },
"s": [9.92, -26.76, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 1.442 },
"s": [9.4, -5.24, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.962 },
"s": [6.64, 19.02, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.071 },
"i": { "x": 0.833, "y": 1.007 },
"s": [24.01, 8.08, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.833 },
"s": [14.61, 20.58, 100],
"t": 58
},
{ "s": [24.78, 43.2, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.587 },
"s": [134.53, 152.99, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.774 },
"s": [133.63, 151.89, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.132 },
"i": { "x": 0.833, "y": 0.821 },
"s": [129.56, 148.82, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.844 },
"s": [128.52, 159.21, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [129.6, 171.2, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [130.54, 181.63, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [131.16, 190.31, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [131.48, 197.6, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [131.58, 203.81, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [131.5, 209.17, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [131.28, 213.85, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.96, 217.96, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.54, 221.58, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [130.06, 224.8, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [129.52, 227.66, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [128.95, 230.2, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [128.36, 232.46, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [127.74, 234.47, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [127.12, 236.26, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [126.51, 237.85, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [125.91, 239.27, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [125.32, 240.52, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [124.75, 241.64, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [124.21, 242.63, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [123.69, 243.52, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [123.2, 244.31, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [122.74, 245.02, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [122.31, 245.66, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [121.91, 246.24, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [121.53, 246.77, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.844 },
"s": [121.17, 247.26, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [120.84, 247.7, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [120.56, 248.1, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.846 },
"s": [120.33, 248.46, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [120.14, 248.77, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.849 },
"s": [119.98, 249.04, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.852 },
"s": [119.86, 249.26, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.856 },
"s": [119.77, 249.45, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.197 },
"i": { "x": 0.833, "y": 0.862 },
"s": [119.7, 249.6, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.211 },
"i": { "x": 0.833, "y": 0.853 },
"s": [119.65, 249.71, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.193 },
"i": { "x": 0.833, "y": 0.822 },
"s": [119.62, 249.79, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.815 },
"s": [119.6, 249.84, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.814 },
"s": [119.55, 249.88, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 0.816 },
"s": [119.48, 249.91, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.818 },
"s": [119.4, 249.94, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.821 },
"s": [119.29, 249.95, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.823 },
"s": [119.17, 249.95, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.824 },
"s": [119.02, 249.94, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.826 },
"s": [118.86, 249.93, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.833 },
"s": [118.68, 249.9, 0],
"t": 58
},
{ "s": [118.48, 249.87, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 14
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 36
},
{ "s": [0], "t": 52 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 36
},
{
"ty": 4,
"nm": "Shape Layer 15",
"sr": 1,
"st": 6,
"op": 60,
"ip": 6,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.755 },
"s": [40.28, 48.85, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 1.13 },
"s": [45.2, 71.43, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.954 },
"s": [54.71, 47.36, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.103 },
"i": { "x": 0.833, "y": 0.879 },
"s": [30.34, 30.06, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.269 },
"i": { "x": 0.833, "y": 0.612 },
"s": [41.25, 56.36, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.946 },
"s": [46.16, 69.72, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.155 },
"i": { "x": 0.833, "y": 0.7 },
"s": [64.09, 36.17, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.907 },
"s": [57.82, 16.99, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.826 },
"i": { "x": 0.833, "y": 1.355 },
"s": [41.54, 37.68, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.982 },
"s": [39.71, 72.8, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.023 },
"i": { "x": 0.833, "y": 0.912 },
"s": [49.32, 38.14, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 1.722 },
"i": { "x": 0.833, "y": -1.675 },
"s": [41.78, 30.58, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.895 },
"s": [41.4, 26.67, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.406 },
"i": { "x": 0.833, "y": 1.611 },
"s": [29.48, 44.78, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.931 },
"s": [26.4, 50.92, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.399 },
"i": { "x": 0.833, "y": 0.849 },
"s": [52.06, 60.09, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.815 },
"s": [47.63, 20.78, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.903 },
"s": [44.05, 48.84, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.578 },
"i": { "x": 0.833, "y": 3.319 },
"s": [39.69, 47.33, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 0.951 },
"s": [38.96, 70.46, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.122 },
"i": { "x": 0.833, "y": 0.962 },
"s": [60.1, 33.89, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.07 },
"i": { "x": 0.833, "y": 1.232 },
"s": [51.51, 56.15, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 1.055 },
"s": [56.16, 41.67, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.912 },
"s": [38.55, 34.16, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 1.606 },
"i": { "x": 0.833, "y": 1.622 },
"s": [67.72, 31.31, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.84 },
"s": [69.32, 56.57, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 1.001 },
"s": [55.8, 61.45, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.001 },
"i": { "x": 0.833, "y": 1.034 },
"s": [43.42, 71.12, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.024 },
"i": { "x": 0.833, "y": 0.803 },
"s": [55.94, 27.71, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.958 },
"s": [38.31, 32.76, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.086 },
"i": { "x": 0.833, "y": 0.8 },
"s": [14.33, 17.3, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.143 },
"i": { "x": 0.833, "y": 0.943 },
"s": [26.11, 23.93, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.176 },
"i": { "x": 0.833, "y": 0.752 },
"s": [42.65, 12.15, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 0.766 },
"s": [37.33, 22.05, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.931 },
"s": [26.85, 51.44, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.403 },
"i": { "x": 0.833, "y": 1.044 },
"s": [7.93, 14.91, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 1.502 },
"s": [11.17, 33.3, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.932 },
"s": [6.21, -4.62, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.373 },
"i": { "x": 0.833, "y": 0.475 },
"s": [41.04, 22.49, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.099 },
"i": { "x": 0.833, "y": 0.949 },
"s": [34.68, 20.8, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.133 },
"i": { "x": 0.833, "y": 0.795 },
"s": [0.95, 9.26, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.14 },
"i": { "x": 0.833, "y": 0.93 },
"s": [13.95, 4.7, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.452 },
"i": { "x": 0.833, "y": 0.248 },
"s": [32.97, 29.22, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.928 },
"s": [30.01, 0.43, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.542 },
"i": { "x": 0.833, "y": 0.813 },
"s": [6.27, 2.3, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 1.066 },
"s": [9.43, -16.38, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 1.028 },
"s": [13.39, 19.7, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 1.067 },
"s": [6.31, -5.64, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.982 },
"s": [15.78, 0.85, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.022 },
"i": { "x": 0.833, "y": 0.849 },
"s": [-1.33, 35.47, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.975 },
"s": [12.18, -3.5, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.035 },
"i": { "x": 0.833, "y": 0.875 },
"s": [23.18, -0.88, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.25 },
"i": { "x": 0.833, "y": 0.833 },
"s": [15.42, 35.64, 100],
"t": 58
},
{ "s": [11.53, 12.02, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.63 },
"s": [134.51, 150.92, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.767 },
"s": [134.19, 150.04, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.824 },
"s": [132.5, 147.4, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [129.13, 142.97, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [125.16, 138.35, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [121.57, 134.49, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [118.53, 131.35, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [115.97, 128.72, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.842 },
"s": [113.82, 126.42, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [112.03, 124.3, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.837 },
"s": [110.71, 122.17, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.843 },
"s": [110.71, 119.85, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [112.23, 118.56, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [113.8, 117.87, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [115.26, 117.42, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [116.59, 117.11, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [117.8, 116.91, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [118.9, 116.8, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [119.9, 116.78, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [120.81, 116.79, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [121.66, 116.81, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [122.43, 116.83, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [123.13, 116.86, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [123.77, 116.88, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [124.34, 116.9, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [124.85, 116.91, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [125.29, 116.9, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [125.67, 116.89, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [125.99, 116.86, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.854 },
"s": [126.24, 116.82, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.194 },
"i": { "x": 0.833, "y": 0.856 },
"s": [126.44, 116.77, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 0.852 },
"s": [126.59, 116.7, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.83 },
"s": [126.67, 116.62, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.809 },
"s": [126.71, 116.53, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.808 },
"s": [126.69, 116.43, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 0.813 },
"s": [126.63, 116.31, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.818 },
"s": [126.52, 116.19, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.821 },
"s": [126.37, 116.06, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [126.18, 115.93, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.829 },
"s": [125.95, 115.8, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.833 },
"s": [125.69, 115.67, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [125.42, 115.54, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [125.14, 115.41, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [124.87, 115.3, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [124.6, 115.2, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.842 },
"s": [124.35, 115.11, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.845 },
"s": [124.11, 115.04, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.848 },
"s": [123.9, 115, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.842 },
"s": [123.71, 114.99, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.83 },
"s": [123.56, 115.03, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.821 },
"s": [123.45, 115.13, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.82 },
"s": [123.38, 115.28, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.833 },
"s": [123.34, 115.47, 0],
"t": 58
},
{ "s": [123.34, 115.7, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 33
},
{ "s": [0], "t": 49 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Polystar 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Star",
"nm": "Polystar Path 1",
"ix": 1,
"d": 1,
"pt": { "a": 0, "k": 3, "ix": 3 },
"p": { "a": 0, "k": [6, 32], "ix": 4 },
"or": { "a": 0, "k": 6.599, "ix": 7 },
"os": { "a": 0, "k": 0, "ix": 9 },
"r": { "a": 0, "k": 0, "ix": 5 },
"sy": 2
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 0.7176, 1], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-7.382, -25.677], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 37
},
{
"ty": 4,
"nm": "Shape Layer 14",
"sr": 1,
"st": 7,
"op": 60,
"ip": 7,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.973 },
"s": [48.17, 41.46, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.848 },
"s": [25.59, 42.53, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.779 },
"s": [40.9, 47.33, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.134 },
"i": { "x": 0.833, "y": 0.979 },
"s": [53.6, 70.37, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.028 },
"i": { "x": 0.833, "y": 0.877 },
"s": [74.66, 48.14, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.257 },
"i": { "x": 0.833, "y": 0.679 },
"s": [58.92, 34.82, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.91 },
"s": [51.37, 40.27, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 1.14 },
"i": { "x": 0.833, "y": 1.545 },
"s": [29.87, 59.3, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.937 },
"s": [28.17, 49.75, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.256 },
"i": { "x": 0.833, "y": 0.643 },
"s": [40.96, 36.79, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.109 },
"i": { "x": 0.833, "y": 0.821 },
"s": [37.82, 50.26, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 1.087 },
"s": [27.48, 59.55, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 0.943 },
"s": [15.68, 72.83, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.178 },
"i": { "x": 0.833, "y": 1.091 },
"s": [39.76, 75.81, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 1.009 },
"s": [32.07, 39.68, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.008 },
"i": { "x": 0.833, "y": 0.955 },
"s": [48.14, 22.55, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.096 },
"i": { "x": 0.833, "y": 0.732 },
"s": [30.43, 32.94, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 0.936 },
"s": [38.66, 47.62, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.276 },
"i": { "x": 0.833, "y": 0.932 },
"s": [56.91, 50.27, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.377 },
"i": { "x": 0.833, "y": 1.592 },
"s": [52.68, 70.78, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 1.083 },
"s": [53.45, 65.43, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 0.998 },
"s": [47.24, 54.38, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.002 },
"i": { "x": 0.833, "y": 0.958 },
"s": [59.62, 34.41, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.084 },
"i": { "x": 0.833, "y": 1.192 },
"s": [47.51, 41.18, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.964 },
"s": [53.53, 59.86, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.063 },
"i": { "x": 0.833, "y": 0.897 },
"s": [33.66, 71.29, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.428 },
"i": { "x": 0.833, "y": 1.514 },
"s": [45.01, 43.87, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.944 },
"s": [47.76, 58.68, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.175 },
"i": { "x": 0.833, "y": 0.734 },
"s": [28.08, 53.25, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 1.006 },
"s": [34.44, 36.13, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.907 },
"s": [48.35, 13.05, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.773 },
"i": { "x": 0.833, "y": 1.045 },
"s": [33.39, 20.16, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.907 },
"s": [31.59, 43.91, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.82 },
"i": { "x": 0.833, "y": 8.194 },
"s": [34.37, 55.84, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 0.944 },
"s": [34.68, 48.43, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.168 },
"i": { "x": 0.833, "y": 0.654 },
"s": [7.22, 13.39, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.11 },
"i": { "x": 0.833, "y": 1.026 },
"s": [16.33, 14.76, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.908 },
"s": [45.06, 27.15, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.884 },
"i": { "x": 0.833, "y": 0.981 },
"s": [7.35, 28.69, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.024 },
"i": { "x": 0.833, "y": 0.761 },
"s": [3.42, 18.31, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 1.054 },
"s": [6.47, 22.6, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 0.957 },
"s": [12.15, 1.91, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.09 },
"i": { "x": 0.833, "y": 0.6 },
"s": [2.8, 7.23, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.956 },
"s": [7.31, -0.96, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.091 },
"i": { "x": 0.833, "y": 0.929 },
"s": [24.42, 8.13, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.46 },
"i": { "x": 0.833, "y": 2.185 },
"s": [16.25, 6.02, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.078 },
"i": { "x": 0.833, "y": 0.869 },
"s": [17.5, -1.01, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.228 },
"i": { "x": 0.833, "y": 1.164 },
"s": [-1.6, 32.84, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.948 },
"s": [-12.63, 11.48, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.139 },
"i": { "x": 0.833, "y": 0.951 },
"s": [20.15, -7.6, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.118 },
"i": { "x": 0.833, "y": 1.325 },
"s": [7.84, 26.11, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.833 },
"s": [12.92, 17.61, 100],
"t": 58
},
{ "s": [-11.99, -1.28, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.588 },
"s": [135.19, 146.97, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.763 },
"s": [134.64, 146.19, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [132.09, 143.5, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [126.62, 139.92, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [119.92, 137.82, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [113.89, 137.26, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [108.88, 137.5, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [104.7, 138.13, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [101.16, 138.95, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [98.13, 139.86, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [95.51, 140.81, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [93.2, 141.78, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [91.17, 142.76, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [89.37, 143.75, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [87.77, 144.75, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [86.37, 145.79, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.847 },
"s": [85.18, 146.92, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.842 },
"s": [84.38, 148.24, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [84.65, 149.55, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [85.54, 150.13, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [86.41, 150.39, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [87.19, 150.51, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [87.88, 150.54, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [88.48, 150.53, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.846 },
"s": [88.99, 150.49, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.847 },
"s": [89.43, 150.44, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.848 },
"s": [89.79, 150.37, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.848 },
"s": [90.1, 150.29, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.85 },
"s": [90.35, 150.22, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.85 },
"s": [90.56, 150.15, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.848 },
"s": [90.72, 150.09, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.838 },
"s": [90.85, 150.04, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.822 },
"s": [90.96, 150.02, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.817 },
"s": [91.06, 150.04, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.818 },
"s": [91.16, 150.12, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.821 },
"s": [91.26, 150.25, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [91.35, 150.42, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [91.44, 150.62, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [91.53, 150.86, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [91.62, 151.12, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [91.7, 151.4, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [91.79, 151.69, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [91.9, 151.99, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [92.04, 152.29, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [92.19, 152.59, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [92.35, 152.88, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [92.53, 153.17, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [92.72, 153.44, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [92.91, 153.7, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [93.11, 153.94, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [93.31, 154.16, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.833 },
"s": [93.51, 154.35, 0],
"t": 58
},
{ "s": [93.7, 154.52, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 34
},
{ "s": [0], "t": 50 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 38
},
{
"ty": 4,
"nm": "Shape Layer 13",
"sr": 1,
"st": 10,
"op": 60,
"ip": 10,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.884 },
"s": [73.25, 49.4, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.295 },
"i": { "x": 0.833, "y": 0.718 },
"s": [56.41, 55.53, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 0.873 },
"s": [49.78, 49.45, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.243 },
"i": { "x": 0.833, "y": 1.035 },
"s": [33.93, 39.31, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.989 },
"s": [25.66, 37.09, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.012 },
"i": { "x": 0.833, "y": 0.856 },
"s": [37.44, 47.06, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.197 },
"i": { "x": 0.833, "y": 0.805 },
"s": [27.2, 59.42, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 1.152 },
"s": [19.72, 70.83, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.954 },
"s": [9.68, 65.59, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.102 },
"i": { "x": 0.833, "y": 1.016 },
"s": [38.09, 73.68, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 0.949 },
"s": [25.29, 44.3, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.135 },
"i": { "x": 0.833, "y": 1.062 },
"s": [40.5, 28.04, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.035 },
"i": { "x": 0.833, "y": 0.885 },
"s": [34.69, 27.04, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.302 },
"i": { "x": 0.833, "y": 0.784 },
"s": [44.81, 27.5, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.136 },
"i": { "x": 0.833, "y": 0.922 },
"s": [48.66, 33.76, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -1.133 },
"i": { "x": 0.833, "y": 0.883 },
"s": [54.8, 71.53, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.289 },
"i": { "x": 0.833, "y": 4.25 },
"s": [54.38, 70.51, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 1.223 },
"s": [54.21, 68.94, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.926 },
"s": [61.02, 56.31, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": -0.648 },
"i": { "x": 0.833, "y": 1.488 },
"s": [35.95, 43.8, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.933 },
"s": [38.81, 56.79, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.337 },
"i": { "x": 0.833, "y": 0.44 },
"s": [19.22, 48.83, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.955 },
"s": [23.11, 52.75, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.099 },
"i": { "x": 0.833, "y": 0.968 },
"s": [45.34, 57.15, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.051 },
"i": { "x": 0.833, "y": 0.719 },
"s": [35.16, 86.83, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 1.036 },
"s": [41.47, 67.33, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.917 },
"s": [56.46, 33.26, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -14.6 },
"i": { "x": 0.833, "y": -3.33 },
"s": [35.03, 37.09, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.842 },
"s": [35.15, 31.35, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 1.296 },
"s": [41.35, 65.04, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.873 },
"s": [46.89, 73.03, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.241 },
"i": { "x": 0.833, "y": 1.082 },
"s": [21.66, 39.91, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.979 },
"s": [8.3, 19.44, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.028 },
"i": { "x": 0.833, "y": 0.848 },
"s": [34.82, 18.53, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.963 },
"s": [14.92, 29.89, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.066 },
"i": { "x": 0.833, "y": 0.958 },
"s": [-1.39, 48.87, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.084 },
"i": { "x": 0.833, "y": 1.188 },
"s": [7.7, 21.46, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.924 },
"s": [3.19, 15.2, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.823 },
"i": { "x": 0.833, "y": 1.308 },
"s": [17.87, 16.75, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.857 },
"s": [16.52, 34.35, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 1.022 },
"s": [22.86, 11.51, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.018 },
"i": { "x": 0.833, "y": 0.667 },
"s": [27.42, -2.03, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.111 },
"i": { "x": 0.833, "y": 0.868 },
"s": [21.65, 4.95, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.227 },
"i": { "x": 0.833, "y": 1.071 },
"s": [4.34, 17.8, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 1.016 },
"s": [-5.68, 29.81, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.013 },
"i": { "x": 0.833, "y": 1.012 },
"s": [12.88, 5.18, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 0.938 },
"s": [-9.26, 20.71, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.244 },
"i": { "x": 0.833, "y": 1.128 },
"s": [16.14, 38.12, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.833 },
"s": [9.66, -9.84, 100],
"t": 58
},
{ "s": [26.11, -0.81, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.569 },
"s": [135.91, 149.97, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.103 },
"i": { "x": 0.833, "y": 0.794 },
"s": [135.31, 149.15, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.14 },
"i": { "x": 0.833, "y": 0.801 },
"s": [133.01, 145.58, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.143 },
"i": { "x": 0.833, "y": 0.845 },
"s": [133.74, 139.23, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.848 },
"s": [141.43, 139.94, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [148.03, 141.54, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [153.49, 142.99, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [158.06, 144.2, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [161.96, 145.18, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [165.32, 145.99, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [168.27, 146.64, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [170.87, 147.16, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.841 },
"s": [173.18, 147.57, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.84 },
"s": [175.24, 147.89, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [177.11, 148.14, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [178.84, 148.37, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [180.43, 148.59, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [181.91, 148.78, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [183.3, 148.97, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [184.59, 149.14, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [185.79, 149.29, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [186.92, 149.44, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [187.97, 149.56, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [188.96, 149.67, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [189.88, 149.77, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [190.74, 149.85, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [191.54, 149.91, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [192.29, 149.95, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [192.97, 149.98, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [193.6, 149.98, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [194.18, 149.97, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [194.7, 149.93, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [195.17, 149.88, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [195.58, 149.81, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [195.94, 149.72, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [196.25, 149.61, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [196.5, 149.48, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [196.69, 149.34, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.838 },
"s": [196.83, 149.18, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.828 },
"s": [196.91, 149.01, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.825 },
"s": [196.93, 148.82, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.825 },
"s": [196.9, 148.63, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.831 },
"s": [196.85, 148.42, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.842 },
"s": [196.75, 148.21, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [196.64, 148.01, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [196.52, 147.85, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.838 },
"s": [196.39, 147.73, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.835 },
"s": [196.26, 147.64, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [196.13, 147.59, 0],
"t": 58
},
{ "s": [196, 147.58, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 15
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 37
},
{ "s": [0], "t": 53 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 39
},
{
"ty": 4,
"nm": "Shape Layer 12",
"sr": 1,
"st": 11,
"op": 60,
"ip": 11,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.894 },
"s": [34.36, 42.83, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.387 },
"i": { "x": 0.833, "y": 1.011 },
"s": [39.77, 29.16, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 0.535 },
"s": [41.25, 35.59, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.814 },
"s": [39.58, 47.95, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 0.818 },
"s": [31.93, 42.67, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 1.16 },
"s": [22.5, 57.9, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.958 },
"s": [11.35, 39.64, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.086 },
"i": { "x": 0.833, "y": 0.924 },
"s": [43.98, 49.8, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.806 },
"i": { "x": 0.833, "y": -0.171 },
"s": [27.93, 39.97, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.09 },
"i": { "x": 0.833, "y": 0.965 },
"s": [29.44, 39.29, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.06 },
"i": { "x": 0.833, "y": 0.989 },
"s": [49.06, 46.52, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.013 },
"i": { "x": 0.833, "y": 0.87 },
"s": [37.68, 36.76, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.233 },
"i": { "x": 0.833, "y": 0.823 },
"s": [47.55, 20.07, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 1.123 },
"s": [53.03, 59.5, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 0.977 },
"s": [59.18, 65.36, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.031 },
"i": { "x": 0.833, "y": 0.983 },
"s": [43.96, 57.48, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.021 },
"i": { "x": 0.833, "y": 0.835 },
"s": [55.06, 49.66, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.751 },
"s": [46.2, 60.4, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.125 },
"i": { "x": 0.833, "y": 0.906 },
"s": [37.49, 65.41, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.74 },
"i": { "x": 0.833, "y": 1.547 },
"s": [20.16, 45.98, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.914 },
"s": [17.95, 45.21, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 2.649 },
"i": { "x": 0.833, "y": 0.441 },
"s": [34.61, 34.31, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 0.52 },
"s": [35.15, 69.84, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.101 },
"i": { "x": 0.833, "y": 0.977 },
"s": [38.24, 79.92, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.031 },
"i": { "x": 0.833, "y": 0.766 },
"s": [52.96, 44.45, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.959 },
"s": [42.24, 59.37, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.079 },
"i": { "x": 0.833, "y": 0.84 },
"s": [22.84, 43.72, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.98 },
"s": [32.81, 52.7, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.027 },
"i": { "x": 0.833, "y": 0.699 },
"s": [41.95, 62.61, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.914 },
"s": [35.02, 63.49, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 2.984 },
"i": { "x": 0.833, "y": 2.929 },
"s": [16.94, 35.8, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 1.084 },
"s": [16.42, 28.55, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 1.001 },
"s": [28.97, 21.36, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.001 },
"i": { "x": 0.833, "y": 0.944 },
"s": [3.81, 54.35, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.168 },
"i": { "x": 0.833, "y": 0.889 },
"s": [29.27, 21.81, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.335 },
"i": { "x": 0.833, "y": 1.33 },
"s": [20.82, 26.17, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.973 },
"s": [18.01, 23.98, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.04 },
"i": { "x": 0.833, "y": 0.915 },
"s": [31.91, 34.94, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 3.347 },
"i": { "x": 0.833, "y": 0.366 },
"s": [22.5, 25.07, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 0.284 },
"s": [22.25, -6.61, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 0.976 },
"s": [20.66, 18.22, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.033 },
"i": { "x": 0.833, "y": 0.91 },
"s": [8.58, 18.5, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 1.171 },
"i": { "x": 0.833, "y": 4.784 },
"s": [17.21, 41.13, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 0.95 },
"s": [17.87, 23.89, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.123 },
"i": { "x": 0.833, "y": 0.762 },
"s": [-12.8, 7.55, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.889 },
"s": [-0.39, 42.58, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.335 },
"i": { "x": 0.833, "y": 0.804 },
"s": [22.69, -1.06, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.833 },
"s": [30.33, 11.29, 100],
"t": 58
},
{ "s": [40.66, 12.24, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.583 },
"s": [136.17, 154.16, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.762 },
"s": [135.01, 154.49, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [130.18, 153.13, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [122.25, 147.36, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [114.09, 139.74, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [107.19, 132.77, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [101.48, 126.92, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [96.67, 122.04, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [92.51, 117.93, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [88.83, 114.43, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [85.53, 111.45, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [82.53, 108.9, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [79.76, 106.72, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [77.18, 104.89, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [74.77, 103.37, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [72.49, 102.15, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [70.34, 101.24, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [68.31, 100.64, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [66.41, 100.36, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [64.67, 100.39, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [63.12, 100.7, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [61.78, 101.24, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [60.65, 101.91, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [59.7, 102.63, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [58.9, 103.36, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [58.23, 104.06, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [57.66, 104.72, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [57.17, 105.33, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [56.75, 105.88, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [56.38, 106.37, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [56.05, 106.82, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [55.77, 107.21, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [55.52, 107.55, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [55.29, 107.84, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.847 },
"s": [55.1, 108.09, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [54.94, 108.3, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [54.79, 108.47, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.855 },
"s": [54.67, 108.6, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.197 },
"i": { "x": 0.833, "y": 0.861 },
"s": [54.58, 108.7, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 0.855 },
"s": [54.5, 108.77, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.196 },
"i": { "x": 0.833, "y": 0.838 },
"s": [54.44, 108.79, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.831 },
"s": [54.4, 108.81, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.827 },
"s": [54.36, 108.84, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.827 },
"s": [54.34, 108.89, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [54.32, 108.94, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.831 },
"s": [54.31, 109, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.834 },
"s": [54.3, 109.07, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [54.3, 109.14, 0],
"t": 58
},
{ "s": [54.3, 109.21, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 16
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 38
},
{ "s": [0], "t": 54 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 40
},
{
"ty": 4,
"nm": "Shape Layer 11",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.938 },
"s": [24.15, 86.88, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": -0.246 },
"i": { "x": 0.833, "y": 1.038 },
"s": [46.99, 34.74, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.026 },
"i": { "x": 0.833, "y": 0.894 },
"s": [41.21, 22.81, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.391 },
"i": { "x": 0.833, "y": 1.66 },
"s": [49.59, 36.78, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.929 },
"s": [51.87, 33.89, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.472 },
"i": { "x": 0.833, "y": 0.162 },
"s": [31.59, 20.67, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 0.955 },
"s": [34.63, 33.78, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.098 },
"i": { "x": 0.833, "y": 0.827 },
"s": [62.17, 43.79, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.934 },
"s": [49.54, 58.36, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.314 },
"i": { "x": 0.833, "y": 1.386 },
"s": [35.98, 39.87, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 1.064 },
"s": [38.83, 45.37, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.928 },
"s": [22.79, 25.2, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.543 },
"i": { "x": 0.833, "y": 0.358 },
"s": [51.19, 22.39, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 1.006 },
"s": [47.41, 39.13, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.947 },
"s": [22.05, 34.21, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.142 },
"i": { "x": 0.833, "y": 0.954 },
"s": [49.31, 53.89, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.105 },
"i": { "x": 0.833, "y": 0.782 },
"s": [39.24, 58.77, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.813 },
"s": [43.7, 36.6, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 1.187 },
"s": [50.9, 40.06, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.922 },
"s": [59.85, 51.5, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -1.303 },
"i": { "x": 0.833, "y": -0.546 },
"s": [30.79, 41.24, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 0.939 },
"s": [32.54, 20.43, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.233 },
"i": { "x": 0.833, "y": 0.782 },
"s": [63.19, 42.19, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.806 },
"s": [55.11, 52.8, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.146 },
"i": { "x": 0.833, "y": 0.928 },
"s": [42.1, 67.03, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.514 },
"i": { "x": 0.833, "y": 1.021 },
"s": [24.85, 48.3, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 1.248 },
"s": [27.26, 25.81, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.895 },
"s": [24.23, 31.41, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.404 },
"i": { "x": 0.833, "y": 0.992 },
"s": [36.26, 66.95, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.009 },
"i": { "x": 0.833, "y": 0.123 },
"s": [39.38, 45.93, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.943 },
"s": [36.55, 44.42, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.176 },
"i": { "x": 0.833, "y": 0.802 },
"s": [9.62, 44.69, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.144 },
"i": { "x": 0.833, "y": 0.938 },
"s": [18.26, 47.03, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.243 },
"i": { "x": 0.833, "y": 0.507 },
"s": [30.13, 24.34, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.1 },
"i": { "x": 0.833, "y": 0.85 },
"s": [27.09, 58.7, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 1.039 },
"s": [12.19, 45.48, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.026 },
"i": { "x": 0.833, "y": 1.03 },
"s": [0.18, 39.86, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 1.01 },
"s": [17.76, 19.43, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.009 },
"i": { "x": 0.833, "y": 0.865 },
"s": [-6.11, 33.23, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.219 },
"i": { "x": 0.833, "y": 1.071 },
"s": [20.74, -2.52, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.953 },
"s": [37.29, 19.58, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.108 },
"i": { "x": 0.833, "y": 0.979 },
"s": [6.55, 21.73, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.028 },
"i": { "x": 0.833, "y": 0.943 },
"s": [19.94, 9.79, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.176 },
"i": { "x": 0.833, "y": 0.911 },
"s": [9.95, 20, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 1.367 },
"i": { "x": 0.833, "y": 3.32 },
"s": [13.16, 0.99, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 1.176 },
"s": [13.37, 21.63, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 0.984 },
"s": [7.36, 24.19, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.019 },
"i": { "x": 0.833, "y": 0.862 },
"s": [26.05, 38.9, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.21 },
"i": { "x": 0.833, "y": 0.873 },
"s": [10.85, 47.51, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.242 },
"i": { "x": 0.833, "y": 1.145 },
"s": [0.84, -5.3, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.053 },
"i": { "x": 0.833, "y": 0.874 },
"s": [-4.41, 16.3, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.245 },
"i": { "x": 0.833, "y": 0.791 },
"s": [10.01, 2.19, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 1.021 },
"s": [17.45, 2.56, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.833 },
"s": [28.62, 21.82, 100],
"t": 58
},
{ "s": [14.66, 18.78, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.595 },
"s": [137.16, 154.28, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.764 },
"s": [135.49, 154.9, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [129.21, 157.77, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [117.89, 163.51, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [105.5, 170.39, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [94.83, 176.8, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [86.03, 182.46, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [78.71, 187.44, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [72.51, 191.89, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [67.18, 195.9, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [62.55, 199.56, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [58.49, 202.91, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [54.91, 206, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [51.74, 208.86, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [48.94, 211.52, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [46.46, 213.99, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [44.28, 216.3, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [42.36, 218.46, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [40.69, 220.48, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [39.22, 222.36, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [37.94, 224.1, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [36.83, 225.73, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [35.86, 227.23, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [35.04, 228.62, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [34.33, 229.89, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [33.74, 231.07, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [33.25, 232.13, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [32.85, 233.1, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [32.53, 233.98, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [32.28, 234.76, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [32.1, 235.45, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [31.98, 236.06, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.848 },
"s": [31.9, 236.59, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.849 },
"s": [31.87, 237.03, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.851 },
"s": [31.87, 237.4, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.852 },
"s": [31.91, 237.69, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.849 },
"s": [31.97, 237.91, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.838 },
"s": [32.06, 238.06, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.824 },
"s": [32.16, 238.14, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.827 },
"s": [32.27, 238.16, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.839 },
"s": [32.4, 238.11, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [32.52, 238.03, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [32.63, 237.94, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [32.72, 237.85, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.835 },
"s": [32.79, 237.75, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.825 },
"s": [32.84, 237.64, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.82 },
"s": [32.86, 237.53, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.833 },
"s": [32.84, 237.4, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.832 },
"s": [32.79, 237.26, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.831 },
"s": [32.71, 237.14, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.831 },
"s": [32.61, 237.05, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [32.49, 236.98, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.831 },
"s": [32.36, 236.94, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [32.22, 236.92, 0],
"t": 58
},
{ "s": [32.07, 236.94, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 41
},
{
"ty": 4,
"nm": "Shape Layer 10",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.866 },
"s": [62.23, 53.08, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.22 },
"i": { "x": 0.833, "y": 1.119 },
"s": [43.99, 16.42, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.948 },
"s": [32.87, 47.69, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.141 },
"i": { "x": 0.833, "y": 0.746 },
"s": [59.83, 40.88, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 0.94 },
"s": [49.81, 57.95, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.21 },
"i": { "x": 0.833, "y": 0.968 },
"s": [29.31, 52.76, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.051 },
"i": { "x": 0.833, "y": 1.429 },
"s": [35.14, 68.23, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 0.886 },
"s": [31.54, 37.17, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.307 },
"i": { "x": 0.833, "y": 1.12 },
"s": [53.71, 26.15, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.887 },
"s": [61.98, 35.05, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.316 },
"i": { "x": 0.833, "y": 0.971 },
"s": [41.8, 43.03, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.045 },
"i": { "x": 0.833, "y": 0.831 },
"s": [34.56, 41.49, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.913 },
"s": [39.25, 56.68, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 1.79 },
"i": { "x": 0.833, "y": 0.179 },
"s": [44.09, 51.52, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 1.589 },
"s": [44.32, 34.32, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.073 },
"i": { "x": 0.833, "y": 0.878 },
"s": [46.41, 31.89, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.262 },
"i": { "x": 0.833, "y": 1.33 },
"s": [29.56, 40.13, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.901 },
"s": [21.7, 21.22, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.525 },
"i": { "x": 0.833, "y": 0.929 },
"s": [60.68, 28.03, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.486 },
"i": { "x": 0.833, "y": -1.352 },
"s": [68.04, 27.21, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.883 },
"s": [66.97, 59.27, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.29 },
"i": { "x": 0.833, "y": 0.867 },
"s": [37.65, 60.72, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.222 },
"i": { "x": 0.833, "y": 1.16 },
"s": [25.84, 39.61, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.876 },
"s": [18.75, 38.87, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.255 },
"i": { "x": 0.833, "y": 1.058 },
"s": [39.48, 51.81, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.034 },
"i": { "x": 0.833, "y": 0.897 },
"s": [49.57, 63.88, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.446 },
"i": { "x": 0.833, "y": 1.242 },
"s": [32.42, 55.69, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.892 },
"s": [28.47, 39.52, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.364 },
"i": { "x": 0.833, "y": 1.044 },
"s": [43.88, 66.87, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.587 },
"s": [48.45, 31.25, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.104 },
"i": { "x": 0.833, "y": 0.912 },
"s": [41.47, 55.64, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 1.495 },
"i": { "x": 0.833, "y": 1.439 },
"s": [13.8, 64.27, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 1.035 },
"s": [12.17, 44.86, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 0.948 },
"s": [22.4, 33.25, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.138 },
"i": { "x": 0.833, "y": 0.603 },
"s": [7.86, 38.17, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 1.028 },
"s": [13.34, -3.22, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.923 },
"s": [33.95, 30.52, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -1.056 },
"i": { "x": 0.833, "y": 1.395 },
"s": [6.52, 32.75, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.991 },
"s": [8.52, 15.54, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.906 },
"s": [-2.99, 27.05, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.74 },
"i": { "x": 0.833, "y": 1.079 },
"s": [7.3, 21.07, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 1.225 },
"s": [8.6, 26.22, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 1.151 },
"s": [6.06, 13.02, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.952 },
"s": [15.46, 14.61, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.115 },
"i": { "x": 0.833, "y": 0.879 },
"s": [-10.93, 39.1, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.269 },
"i": { "x": 0.833, "y": 0.835 },
"s": [0.13, 18.04, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.829 },
"s": [5.09, 4.68, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.817 },
"s": [9.94, 15.32, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 1.012 },
"s": [15.07, -4.05, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 0.986 },
"s": [21.22, 11.44, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.017 },
"i": { "x": 0.833, "y": 0.833 },
"s": [14.18, 14.55, 100],
"t": 58
},
{ "s": [20.03, 9.34, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.609 },
"s": [132.87, 149.46, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.765 },
"s": [132.09, 149.64, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [129.31, 150.8, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [124.34, 153.22, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.852 },
"s": [119.05, 156.44, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.84 },
"s": [115.18, 160.46, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.845 },
"s": [116.33, 164.88, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [119.55, 166.91, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [122.52, 168.19, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [125.15, 169.17, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [127.49, 169.99, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [129.59, 170.71, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [131.48, 171.37, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [133.19, 171.98, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [134.74, 172.57, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [136.16, 173.13, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [137.44, 173.67, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [138.61, 174.2, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [139.67, 174.72, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [140.63, 175.23, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [141.49, 175.73, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [142.25, 176.23, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [142.92, 176.71, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [143.48, 177.19, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [143.95, 177.65, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [144.31, 178.1, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.851 },
"s": [144.58, 178.51, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.852 },
"s": [144.74, 178.89, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.844 },
"s": [144.82, 179.21, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.831 },
"s": [144.81, 179.46, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.829 },
"s": [144.74, 179.67, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [144.61, 179.84, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.832 },
"s": [144.45, 179.99, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.834 },
"s": [144.27, 180.11, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.836 },
"s": [144.08, 180.22, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.838 },
"s": [143.88, 180.31, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.84 },
"s": [143.69, 180.4, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.842 },
"s": [143.5, 180.48, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.844 },
"s": [143.34, 180.55, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.84 },
"s": [143.19, 180.62, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.833 },
"s": [143.06, 180.69, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.831 },
"s": [142.95, 180.78, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.829 },
"s": [142.86, 180.89, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.828 },
"s": [142.79, 181.02, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.827 },
"s": [142.73, 181.17, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.827 },
"s": [142.7, 181.35, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.827 },
"s": [142.69, 181.54, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.828 },
"s": [142.7, 181.75, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [142.73, 181.97, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [142.78, 182.2, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [142.85, 182.43, 0],
"t": 58
},
{ "s": [142.94, 182.67, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 42
},
{
"ty": 4,
"nm": "Shape Layer 9",
"sr": 1,
"st": 10,
"op": 60,
"ip": 10,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.838 },
"s": [53.64, 41.07, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.856 },
"s": [42.35, 39.99, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 1.028 },
"s": [31.7, 52.37, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.797 },
"s": [24.01, 86.13, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.92 },
"s": [34.25, 55.37, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -1.941 },
"i": { "x": 0.833, "y": 2.944 },
"s": [49, 49.35, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 1.003 },
"s": [48.39, 37.69, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.002 },
"i": { "x": 0.833, "y": 0.843 },
"s": [63.15, 60.5, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.977 },
"s": [47.94, 42.79, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.032 },
"i": { "x": 0.833, "y": 0.969 },
"s": [34.43, 42.86, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.048 },
"i": { "x": 0.833, "y": 0.819 },
"s": [44.18, 44.41, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.879 },
"s": [38.01, 43.49, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.269 },
"i": { "x": 0.833, "y": 1.071 },
"s": [30.79, 37.75, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.698 },
"s": [27.55, 42.77, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.807 },
"s": [33.56, 46.36, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 0.911 },
"s": [49.36, 44.15, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 1.265 },
"i": { "x": 0.833, "y": 1.698 },
"s": [70.12, 31.92, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 0.73 },
"s": [71.59, 37.48, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 0.888 },
"s": [57.85, 54.37, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.324 },
"i": { "x": 0.833, "y": 1.05 },
"s": [27.05, 34.68, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.866 },
"s": [16.37, 60.74, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.22 },
"i": { "x": 0.833, "y": 1.028 },
"s": [33.47, 44.6, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.021 },
"i": { "x": 0.833, "y": 0.9 },
"s": [43.93, 49.19, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.497 },
"i": { "x": 0.833, "y": 2.007 },
"s": [29.98, 64.89, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.077 },
"i": { "x": 0.833, "y": 0.966 },
"s": [27.17, 33.36, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.058 },
"i": { "x": 0.833, "y": 0.958 },
"s": [63.93, 66.64, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.086 },
"i": { "x": 0.833, "y": 1.106 },
"s": [42.21, 45.1, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.866 },
"s": [52.88, 55.76, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.221 },
"i": { "x": 0.833, "y": 1.04 },
"s": [28.59, 52.23, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.947 },
"s": [13.86, 38.75, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.148 },
"i": { "x": 0.833, "y": 0.89 },
"s": [35.64, 25.77, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.339 },
"i": { "x": 0.833, "y": 1.128 },
"s": [27.8, 32.44, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 1.199 },
"s": [25.25, 7.56, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 0.938 },
"s": [31.71, 38.63, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.238 },
"i": { "x": 0.833, "y": 1.252 },
"s": [9.83, 42.38, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.063 },
"i": { "x": 0.833, "y": 0.97 },
"s": [15.5, 22.02, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.046 },
"i": { "x": 0.833, "y": 0.893 },
"s": [-7.31, 42.7, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.373 },
"i": { "x": 0.833, "y": 1.07 },
"s": [7.34, 34.59, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 1.075 },
"s": [11.56, 44.55, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 1.071 },
"s": [3.8, 9.88, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.941 },
"s": [18.52, 0.64, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.205 },
"i": { "x": 0.833, "y": 0.813 },
"s": [-8.66, 6.83, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.814 },
"s": [-0.79, 33.02, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 0.897 },
"s": [8.99, 20.44, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.441 },
"i": { "x": 0.833, "y": 0.817 },
"s": [21.01, 34.29, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.877 },
"s": [23.81, 10.17, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.259 },
"i": { "x": 0.833, "y": 1.206 },
"s": [27.15, 10.44, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 0.986 },
"s": [28.74, 2.77, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.017 },
"i": { "x": 0.833, "y": 0.833 },
"s": [23.23, -10.21, 100],
"t": 58
},
{ "s": [27.8, 12.25, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.607 },
"s": [136.65, 149.57, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.106 },
"i": { "x": 0.833, "y": 0.764 },
"s": [135.65, 150.2, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.843 },
"s": [131.7, 151.96, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.826 },
"s": [124.26, 154.03, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.848 },
"s": [120.26, 147.91, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [123.37, 140.04, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [126.48, 133.79, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [129.14, 128.56, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [131.37, 124.04, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [133.23, 120.03, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [134.79, 116.41, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [136.09, 113.1, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [137.15, 110.02, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [137.97, 107.17, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [138.56, 104.54, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [138.95, 102.1, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [139.14, 99.84, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [139.17, 97.75, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [139.03, 95.83, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [138.76, 94.08, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [138.36, 92.5, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [137.87, 91.1, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [137.3, 89.87, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [136.68, 88.82, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [136.05, 87.93, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [135.41, 87.19, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [134.8, 86.58, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [134.23, 86.1, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [133.71, 85.72, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.849 },
"s": [133.25, 85.43, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.852 },
"s": [132.85, 85.22, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.855 },
"s": [132.52, 85.08, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.196 },
"i": { "x": 0.833, "y": 0.861 },
"s": [132.25, 85, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 0.868 },
"s": [132.05, 84.96, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.226 },
"i": { "x": 0.833, "y": 0.86 },
"s": [131.91, 84.96, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.205 },
"i": { "x": 0.833, "y": 0.798 },
"s": [131.84, 85, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.789 },
"s": [131.83, 85.06, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.138 },
"i": { "x": 0.833, "y": 0.804 },
"s": [131.87, 85.14, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.814 },
"s": [131.96, 85.22, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.151 },
"i": { "x": 0.833, "y": 0.827 },
"s": [132.1, 85.31, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.835 },
"s": [132.29, 85.4, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [132.49, 85.46, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.831 },
"s": [132.7, 85.49, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [132.91, 85.47, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [133.12, 85.42, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.833 },
"s": [133.32, 85.33, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.834 },
"s": [133.52, 85.2, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.835 },
"s": [133.71, 85.05, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [133.87, 84.88, 0],
"t": 58
},
{ "s": [134.02, 84.69, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 15
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 37
},
{ "s": [0], "t": 53 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.012, 10.621],
[-5.695, 5.34],
[-2.557, -7.377],
[3.15, -2.096]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.7922, 0.0196], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [-3.421, 4.043], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 43
},
{
"ty": 4,
"nm": "Shape Layer 8",
"sr": 1,
"st": 9,
"op": 60,
"ip": 9,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.872 },
"s": [59.22, 40.56, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.239 },
"i": { "x": 0.833, "y": 0.683 },
"s": [49.99, 44.04, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.98 },
"s": [45.05, 36.32, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.026 },
"i": { "x": 0.833, "y": 0.931 },
"s": [31.18, 61.39, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.401 },
"i": { "x": 0.833, "y": 0.274 },
"s": [41.71, 49.81, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 1.092 },
"s": [39.9, 63.33, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.882 },
"s": [25.93, 57.74, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.286 },
"i": { "x": 0.833, "y": 1.078 },
"s": [55.32, 77.15, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 0.91 },
"s": [67.4, 59.37, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 1.209 },
"i": { "x": 0.833, "y": 0.965 },
"s": [43.99, 48.96, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.061 },
"i": { "x": 0.833, "y": 2.383 },
"s": [42.25, 36.76, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.943 },
"s": [43.25, 50.38, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.181 },
"i": { "x": 0.833, "y": 0.633 },
"s": [25.68, 70.15, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.913 },
"s": [31.23, 44.38, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 1.9 },
"i": { "x": 0.833, "y": -0.114 },
"s": [50.12, 64.43, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.09 },
"i": { "x": 0.833, "y": 0.968 },
"s": [50.99, 65.46, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.051 },
"i": { "x": 0.833, "y": 0.984 },
"s": [61.7, 50.78, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.02 },
"i": { "x": 0.833, "y": 1.465 },
"s": [55.05, 50.31, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.895 },
"s": [60.41, 51.89, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.407 },
"i": { "x": 0.833, "y": 1.153 },
"s": [25.19, 27.99, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.924 },
"s": [16.11, 60.14, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.892 },
"i": { "x": 0.833, "y": 1.199 },
"s": [41.85, 62.26, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 1.078 },
"s": [39.65, 34.27, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 1.008 },
"s": [47.08, 66.64, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 1.02 },
"s": [32.72, 47.6, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.963 },
"s": [48.49, 64.62, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.067 },
"i": { "x": 0.833, "y": 0.823 },
"s": [28.98, 62.56, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 1.189 },
"s": [39.77, 58.95, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.058 },
"i": { "x": 0.833, "y": 0.974 },
"s": [51.87, 32.32, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.038 },
"i": { "x": 0.833, "y": 0.965 },
"s": [12.28, 34.15, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": -0.061 },
"i": { "x": 0.833, "y": 0.948 },
"s": [39.46, 26.29, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.137 },
"i": { "x": 0.833, "y": 0.833 },
"s": [23.79, 7.68, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.058 },
"s": [29.72, 17, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.034 },
"i": { "x": 0.833, "y": 0.967 },
"s": [35.65, 25.68, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 1.288 },
"s": [25.58, 30.38, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.942 },
"s": [31.68, 5.56, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.193 },
"i": { "x": 0.833, "y": 0.756 },
"s": [4.56, 34.1, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 1.038 },
"s": [12.75, 37.77, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.026 },
"i": { "x": 0.833, "y": 1.014 },
"s": [28.52, 43.99, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.012 },
"i": { "x": 0.833, "y": 0.98 },
"s": [5.62, 20.66, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.026 },
"i": { "x": 0.833, "y": 0.932 },
"s": [32.35, 9.79, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.377 },
"i": { "x": 0.833, "y": 0.825 },
"s": [12.03, -9.37, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.942 },
"s": [15.71, 23.51, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.193 },
"i": { "x": 0.833, "y": 1.214 },
"s": [19.76, 43.45, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.906 },
"s": [18.54, 39.54, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.711 },
"i": { "x": 0.833, "y": -0.566 },
"s": [22.89, 14.2, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 1.073 },
"s": [23.47, 26.81, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 0.938 },
"s": [33.76, 4.55, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": -0.247 },
"i": { "x": 0.833, "y": 1.021 },
"s": [14.41, -18.79, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.833 },
"s": [19.29, 9.99, 100],
"t": 58
},
{ "s": [13.19, 20.28, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.626 },
"s": [136.16, 149.89, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.107 },
"i": { "x": 0.833, "y": 0.768 },
"s": [134.67, 150.39, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.827 },
"s": [129.74, 153.03, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.844 },
"s": [122.49, 160.51, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [120.13, 172.51, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.847 },
"s": [123.11, 182.61, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.846 },
"s": [127.44, 189.78, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [131.81, 194.95, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [135.92, 198.76, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [139.72, 201.58, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [143.23, 203.63, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [146.46, 205.07, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [149.44, 205.98, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [152.18, 206.43, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [154.7, 206.46, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [156.97, 206.12, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [159, 205.45, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [160.79, 204.51, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [162.33, 203.37, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [163.63, 202.11, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [164.72, 200.8, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [165.64, 199.49, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.43, 198.22, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [167.1, 197.01, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [167.69, 195.88, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [168.22, 194.83, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [168.7, 193.85, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.837 },
"s": [169.15, 192.97, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.837 },
"s": [169.56, 192.14, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.837 },
"s": [169.96, 191.36, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [170.36, 190.62, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [170.74, 189.91, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.84 },
"s": [171.11, 189.26, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.841 },
"s": [171.45, 188.64, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [171.78, 188.08, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [172.07, 187.57, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.845 },
"s": [172.34, 187.1, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [172.58, 186.69, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.85 },
"s": [172.79, 186.33, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.848 },
"s": [172.95, 186.03, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.842 },
"s": [173.08, 185.78, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [173.17, 185.57, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.84 },
"s": [173.22, 185.37, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.836 },
"s": [173.24, 185.18, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.832 },
"s": [173.22, 185, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.828 },
"s": [173.17, 184.84, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.826 },
"s": [173.08, 184.71, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.826 },
"s": [172.96, 184.59, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [172.81, 184.5, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.833 },
"s": [172.64, 184.43, 0],
"t": 58
},
{ "s": [172.45, 184.38, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 9
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 14
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 36
},
{ "s": [0], "t": 52 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 44
},
{
"ty": 4,
"nm": "Shape Layer 7",
"sr": 1,
"st": 5,
"op": 60,
"ip": 5,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.747 },
"s": [32.76, 76.03, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 0.927 },
"s": [30.43, 63.98, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": -0.593 },
"i": { "x": 0.833, "y": 1.16 },
"s": [53.57, 48.57, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.95 },
"s": [50.72, 37.02, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": -0.126 },
"i": { "x": 0.833, "y": 0.652 },
"s": [59.04, 63.56, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.11 },
"i": { "x": 0.833, "y": 0.996 },
"s": [55.73, 33.61, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": -0.004 },
"i": { "x": 0.833, "y": 0.991 },
"s": [45.23, 45.15, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.717 },
"s": [55.2, 37.95, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 0.956 },
"s": [46.3, 61.37, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": -0.095 },
"i": { "x": 0.833, "y": 0.686 },
"s": [24.92, 68.19, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.935 },
"s": [34.92, 72.69, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.292 },
"i": { "x": 0.833, "y": 0.826 },
"s": [62.58, 56.21, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.867 },
"s": [56.44, 48.4, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.223 },
"i": { "x": 0.833, "y": 0.512 },
"s": [49.75, 43.97, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.1 },
"i": { "x": 0.833, "y": 0.973 },
"s": [45.78, 55.02, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.041 },
"i": { "x": 0.833, "y": 0.898 },
"s": [26.49, 76.97, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.465 },
"i": { "x": 0.833, "y": 0.724 },
"s": [39.43, 51.43, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.119 },
"i": { "x": 0.833, "y": 0.924 },
"s": [42.26, 53.38, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.912 },
"i": { "x": 0.833, "y": 0.904 },
"s": [48.79, 71.51, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.63 },
"i": { "x": 0.833, "y": 11.64 },
"s": [48.24, 50.33, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 1.179 },
"s": [48.16, 70.15, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.057 },
"i": { "x": 0.833, "y": 0.897 },
"s": [58.9, 58.43, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.428 },
"i": { "x": 0.833, "y": 1.129 },
"s": [25.13, 36.88, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.842 },
"s": [16.97, 58.5, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.887 },
"s": [37.7, 76.84, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.319 },
"i": { "x": 0.833, "y": 1.072 },
"s": [56.26, 46, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 0.783 },
"s": [62.81, 66.15, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.135 },
"i": { "x": 0.833, "y": 0.926 },
"s": [50.63, 45.96, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.662 },
"i": { "x": 0.833, "y": 1.008 },
"s": [31.09, 45.55, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 1.628 },
"s": [33.27, 64.28, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.074 },
"i": { "x": 0.833, "y": 1.039 },
"s": [30.89, 48.49, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.925 },
"s": [51.22, 30.15, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.727 },
"i": { "x": 0.833, "y": 1.219 },
"s": [21.31, 15.25, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.892 },
"s": [24.38, 42.59, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.367 },
"i": { "x": 0.833, "y": 1.243 },
"s": [13.22, 5.7, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.832 },
"s": [9.94, 27.71, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.936 },
"s": [22.77, 8.96, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.284 },
"i": { "x": 0.833, "y": 0.362 },
"s": [35.85, 9.71, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 0.887 },
"s": [32.88, -13.42, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.315 },
"i": { "x": 0.833, "y": 1.174 },
"s": [13.14, 3.71, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 0.937 },
"s": [6.06, 30.01, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.264 },
"i": { "x": 0.833, "y": 1.142 },
"s": [27.91, 10.79, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.933 },
"s": [22.66, 7.86, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.344 },
"i": { "x": 0.833, "y": 0.849 },
"s": [36.83, 19.21, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 1.055 },
"s": [34.07, -7.08, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.033 },
"i": { "x": 0.833, "y": 1.398 },
"s": [31.81, 7.89, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.884 },
"s": [35.56, 34.44, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.296 },
"i": { "x": 0.833, "y": 0.911 },
"s": [13.86, 36.02, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 1.317 },
"i": { "x": 0.833, "y": 3.369 },
"s": [5.36, 6.65, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 1.072 },
"s": [4.78, 16.1, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.039 },
"i": { "x": 0.833, "y": 0.975 },
"s": [21.68, 24.12, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.912 },
"s": [-9.85, -8.29, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 1.504 },
"i": { "x": 0.833, "y": 0.193 },
"s": [12.23, 11.68, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 0.833 },
"s": [13.53, 8.25, 100],
"t": 58
},
{ "s": [24.76, 29.12, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.638 },
"s": [131.81, 150.55, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.768 },
"s": [130.5, 149.81, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.825 },
"s": [125.98, 147.72, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [117.64, 145.08, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [108.28, 142.92, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [100.12, 141.07, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.845 },
"s": [93.37, 139.22, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [87.8, 137.22, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.844 },
"s": [83.17, 135.04, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [79.34, 132.68, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [76.21, 130.16, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [73.68, 127.54, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [71.69, 124.88, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [70.17, 122.27, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [69.04, 119.75, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [68.22, 117.37, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [67.66, 115.16, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [67.3, 113.1, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [67.12, 111.16, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [67.07, 109.36, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [67.11, 107.68, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [67.23, 106.13, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [67.39, 104.7, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [67.6, 103.38, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [67.82, 102.18, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [68.05, 101.09, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [68.29, 100.1, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [68.51, 99.21, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [68.73, 98.42, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [68.92, 97.73, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [69.09, 97.13, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.85 },
"s": [69.24, 96.61, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.853 },
"s": [69.36, 96.18, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.192 },
"i": { "x": 0.833, "y": 0.858 },
"s": [69.45, 95.83, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.201 },
"i": { "x": 0.833, "y": 0.865 },
"s": [69.51, 95.56, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.218 },
"i": { "x": 0.833, "y": 0.873 },
"s": [69.54, 95.36, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.243 },
"i": { "x": 0.833, "y": 0.833 },
"s": [69.55, 95.24, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.765 },
"s": [69.52, 95.19, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.791 },
"s": [69.47, 95.2, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.139 },
"i": { "x": 0.833, "y": 0.816 },
"s": [69.4, 95.27, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.828 },
"s": [69.3, 95.41, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [69.19, 95.57, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [69.08, 95.75, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.835 },
"s": [68.95, 95.93, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.837 },
"s": [68.83, 96.11, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.829 },
"s": [68.71, 96.29, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.824 },
"s": [68.6, 96.47, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.828 },
"s": [68.47, 96.65, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.831 },
"s": [68.32, 96.84, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [68.14, 97.01, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.835 },
"s": [67.95, 97.18, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.837 },
"s": [67.75, 97.34, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.839 },
"s": [67.55, 97.47, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.833 },
"s": [67.34, 97.59, 0],
"t": 58
},
{ "s": [67.15, 97.68, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 5
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 10
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 32
},
{ "s": [0], "t": 48 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 45
},
{
"ty": 4,
"nm": "Shape Layer 6",
"sr": 1,
"st": 12,
"op": 60,
"ip": 12,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.887 },
"s": [58.37, 60.8, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.32 },
"i": { "x": 0.833, "y": 1.117 },
"s": [36.86, 57.14, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.839 },
"s": [29.27, 54.56, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.919 },
"s": [47.55, 39, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -2.464 },
"i": { "x": 0.833, "y": -2.744 },
"s": [64.67, 27.91, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 0.896 },
"s": [64.11, 47.68, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.42 },
"i": { "x": 0.833, "y": 1.123 },
"s": [39.5, 69.09, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.05 },
"i": { "x": 0.833, "y": 1.005 },
"s": [33.4, 52.3, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.004 },
"i": { "x": 0.833, "y": 0.919 },
"s": [48.49, 56.97, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -3.282 },
"i": { "x": 0.833, "y": -0.384 },
"s": [32.56, 35.85, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.766 },
"s": [32.96, 56.95, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.858 },
"s": [39.11, 42.14, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.201 },
"i": { "x": 0.833, "y": 1.241 },
"s": [50.27, 72.38, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.932 },
"s": [58.14, 48.42, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.378 },
"i": { "x": 0.833, "y": 0.957 },
"s": [27.45, 42.62, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.089 },
"i": { "x": 0.833, "y": 1.764 },
"s": [33, 65.95, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 0.911 },
"s": [30.32, 75.39, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 1.415 },
"i": { "x": 0.833, "y": 1.018 },
"s": [57.55, 67.95, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.015 },
"i": { "x": 0.833, "y": 0.145 },
"s": [59.26, 76.31, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 1.007 },
"s": [57.18, 48.5, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 0.944 },
"s": [37.9, 29.54, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.172 },
"i": { "x": 0.833, "y": 0.856 },
"s": [58.87, 57.62, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 1 },
"s": [52.02, 55.73, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 1.217 },
"s": [47.07, 51.01, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.943 },
"s": [51.99, 26.53, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.179 },
"i": { "x": 0.833, "y": 1.104 },
"s": [34.23, 69.38, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 1.008 },
"s": [39.86, 50.25, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 0.912 },
"s": [27.17, 68.49, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 1.675 },
"i": { "x": 0.833, "y": -0.011 },
"s": [41.01, 31.16, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.17 },
"s": [41.73, 28.8, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 0.916 },
"s": [49.81, 16.04, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 7.85 },
"i": { "x": 0.833, "y": 1.131 },
"s": [25.31, 13.26, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": -1.033 },
"s": [25.05, 41.5, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 0.9 },
"s": [25.72, 5.88, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.491 },
"i": { "x": 0.833, "y": 0.828 },
"s": [41.52, 4.11, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 1.048 },
"s": [44.75, 22.85, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.854 },
"s": [48.16, 7.3, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 0.425 },
"s": [42.77, 2.28, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.097 },
"i": { "x": 0.833, "y": 0.84 },
"s": [38.74, 15, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.932 },
"s": [14.98, 24.15, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.362 },
"i": { "x": 0.833, "y": 0.381 },
"s": [-6.84, 16.62, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 1.031 },
"s": [-2.76, 2.13, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 0.941 },
"s": [23.52, 23.09, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.197 },
"i": { "x": 0.833, "y": 0.726 },
"s": [-12.46, 18.61, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.12 },
"i": { "x": 0.833, "y": 0.914 },
"s": [-1.76, 14.75, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 2.415 },
"i": { "x": 0.833, "y": 2.387 },
"s": [22.71, -4.94, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.079 },
"i": { "x": 0.833, "y": 0.833 },
"s": [23.59, 27.01, 100],
"t": 58
},
{ "s": [8.15, -2.66, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.603 },
"s": [131.36, 148.34, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.765 },
"s": [132.34, 147.13, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [135.67, 142.21, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [141.16, 132.75, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [146.54, 121.74, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [150.71, 111.82, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [153.84, 103.4, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.845 },
"s": [156.25, 96.23, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [158.15, 90.07, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [159.69, 84.72, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [160.96, 80.03, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [162.02, 75.89, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [162.91, 72.21, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [163.67, 68.93, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [164.31, 65.99, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [164.87, 63.35, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [165.34, 60.98, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [165.75, 58.84, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.09, 56.92, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.38, 55.18, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.62, 53.6, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.82, 52.17, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.97, 50.86, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [167.09, 49.67, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [167.17, 48.58, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [167.2, 47.6, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [167.19, 46.72, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [167.13, 45.92, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [167.04, 45.19, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.92, 44.54, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.8, 43.94, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.66, 43.4, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.52, 42.9, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.38, 42.44, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [166.24, 42.02, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.12, 41.63, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.01, 41.28, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [165.92, 40.95, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [165.84, 40.64, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.834 },
"s": [165.79, 40.37, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.826 },
"s": [165.76, 40.11, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.826 },
"s": [165.76, 39.86, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [165.79, 39.59, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.828 },
"s": [165.84, 39.3, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.829 },
"s": [165.93, 39, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.831 },
"s": [166.03, 38.68, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.833 },
"s": [166.17, 38.36, 0],
"t": 58
},
{ "s": [166.32, 38.05, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 17
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 39
},
{ "s": [0], "t": 55 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 46
},
{
"ty": 4,
"nm": "Shape Layer 5",
"sr": 1,
"st": 8,
"op": 60,
"ip": 8,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.87 },
"s": [58.33, 32.55, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.231 },
"i": { "x": 0.833, "y": 0.948 },
"s": [52.22, 40.84, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.135 },
"i": { "x": 0.833, "y": 1.287 },
"s": [48.76, 55.27, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.885 },
"s": [50.08, 53.48, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.301 },
"i": { "x": 0.833, "y": 0.741 },
"s": [44.22, 46.24, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.123 },
"i": { "x": 0.833, "y": 1.394 },
"s": [41.98, 41.29, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.896 },
"s": [37.26, 44.51, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.413 },
"i": { "x": 0.833, "y": 1.334 },
"s": [64.3, 23.19, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.067 },
"i": { "x": 0.833, "y": 0.923 },
"s": [71.14, 37.61, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.941 },
"i": { "x": 0.833, "y": 0.286 },
"s": [36.9, 67.97, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.094 },
"i": { "x": 0.833, "y": 1.026 },
"s": [39.69, 52.95, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.88 },
"s": [60.78, 53.85, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.275 },
"i": { "x": 0.833, "y": 1.062 },
"s": [32.98, 24.9, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.861 },
"s": [20.86, 40.45, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.208 },
"i": { "x": 0.833, "y": 0.922 },
"s": [41.99, 39.23, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -1.187 },
"i": { "x": 0.833, "y": -1.537 },
"s": [56.13, 47.16, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.086 },
"i": { "x": 0.833, "y": 0.967 },
"s": [55.2, 47.17, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 0.925 },
"s": [27.91, 52.37, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.754 },
"i": { "x": 0.833, "y": 1.098 },
"s": [44.49, 74.25, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.045 },
"i": { "x": 0.833, "y": 1.09 },
"s": [42.84, 74.04, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 0.908 },
"s": [46.43, 86.32, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.913 },
"i": { "x": 0.833, "y": -0.56 },
"s": [38.97, 75.14, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.088 },
"i": { "x": 0.833, "y": 1.128 },
"s": [38.23, 68.55, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.051 },
"i": { "x": 0.833, "y": 0.943 },
"s": [24.95, 36.9, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.177 },
"i": { "x": 0.833, "y": 0.755 },
"s": [58.64, 41.73, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 0.967 },
"s": [47.84, 59.39, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.054 },
"i": { "x": 0.833, "y": 0.958 },
"s": [26.93, 49.78, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.086 },
"i": { "x": 0.833, "y": 0.921 },
"s": [39.58, 34.04, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -1.655 },
"i": { "x": 0.833, "y": 1.51 },
"s": [33.34, 36.59, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 1.243 },
"s": [33.64, 34.06, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 1.116 },
"s": [31.52, 53.69, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.048 },
"i": { "x": 0.833, "y": 1.007 },
"s": [39.85, 24.32, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.007 },
"i": { "x": 0.833, "y": 1.027 },
"s": [19.93, 28.58, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.952 },
"s": [41.61, 27.26, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.112 },
"i": { "x": 0.833, "y": 0.945 },
"s": [12.95, 0.16, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.158 },
"i": { "x": 0.833, "y": 0.934 },
"s": [25.16, 21.03, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.318 },
"i": { "x": 0.833, "y": -0.358 },
"s": [20.95, -5.76, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.956 },
"s": [21.82, -6.25, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.095 },
"i": { "x": 0.833, "y": 0.922 },
"s": [35.21, -2.16, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -1.25 },
"i": { "x": 0.833, "y": 2.789 },
"s": [28.95, 8.66, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.08 },
"i": { "x": 0.833, "y": 0.827 },
"s": [29.34, 4.89, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.698 },
"s": [20.54, 0.31, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.115 },
"i": { "x": 0.833, "y": 0.95 },
"s": [11.04, 1.92, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.126 },
"i": { "x": 0.833, "y": 0.627 },
"s": [-13.94, 27.4, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.107 },
"i": { "x": 0.833, "y": 0.957 },
"s": [-4.01, 6.07, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.089 },
"i": { "x": 0.833, "y": 0.796 },
"s": [30.55, 8.43, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.988 },
"s": [13.83, 29.22, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.015 },
"i": { "x": 0.833, "y": 0.858 },
"s": [-10.34, 24.33, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.202 },
"i": { "x": 0.833, "y": 1.006 },
"s": [10.24, 2.59, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.005 },
"i": { "x": 0.833, "y": 0.939 },
"s": [24.72, 24.2, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.223 },
"i": { "x": 0.833, "y": 0.833 },
"s": [9.25, 12.5, 100],
"t": 58
},
{ "s": [13.45, 9.97, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.549 },
"s": [132.93, 150.64, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.761 },
"s": [132.57, 149.51, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [130.54, 144.76, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [126.07, 136.36, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [120.59, 127.4, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.847 },
"s": [115.81, 119.62, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [112.06, 113, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [109.18, 107.23, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [106.98, 102.14, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [105.3, 97.6, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [104.01, 93.51, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [103.01, 89.81, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [102.23, 86.45, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [101.61, 83.38, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [101.08, 80.61, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [100.64, 78.1, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [100.26, 75.83, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [99.93, 73.76, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [99.64, 71.88, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [99.38, 70.17, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [99.16, 68.6, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.96, 67.17, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.79, 65.86, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.64, 64.66, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.53, 63.56, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.43, 62.56, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.37, 61.63, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.33, 60.78, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.31, 60, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.33, 59.28, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.37, 58.62, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.44, 58.02, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [98.53, 57.47, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [98.65, 56.97, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [98.79, 56.53, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [98.96, 56.13, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [99.14, 55.78, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [99.34, 55.47, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.838 },
"s": [99.55, 55.22, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.835 },
"s": [99.78, 55.02, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.834 },
"s": [100.01, 54.86, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [100.25, 54.74, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.831 },
"s": [100.49, 54.63, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.832 },
"s": [100.74, 54.54, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [101, 54.48, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.834 },
"s": [101.26, 54.45, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.836 },
"s": [101.53, 54.45, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [101.79, 54.47, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.838 },
"s": [102.04, 54.51, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [102.28, 54.56, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.833 },
"s": [102.51, 54.64, 0],
"t": 58
},
{ "s": [102.71, 54.73, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 13
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 35
},
{ "s": [0], "t": 51 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 47
},
{
"ty": 4,
"nm": "Shape Layer 4",
"sr": 1,
"st": 2,
"op": 60,
"ip": 2,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.052 },
"s": [44.63, 43.3, 100],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.032 },
"i": { "x": 0.833, "y": 0.827 },
"s": [32.14, 53.86, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 1.046 },
"s": [52.46, 54.43, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 0.942 },
"s": [74.26, 58.07, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": -0.195 },
"i": { "x": 0.833, "y": 0.847 },
"s": [40.38, 29.51, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 1.029 },
"s": [50.53, 31.77, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.022 },
"i": { "x": 0.833, "y": 0.79 },
"s": [59.03, 38.36, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.138 },
"i": { "x": 0.833, "y": 0.94 },
"s": [47.54, 53.24, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": -0.209 },
"i": { "x": 0.833, "y": 0.855 },
"s": [30.06, 47.55, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.196 },
"i": { "x": 0.833, "y": 1.023 },
"s": [35.05, 49.83, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.018 },
"i": { "x": 0.833, "y": 1.369 },
"s": [38.73, 27.36, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.894 },
"s": [34.01, 57.95, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.384 },
"i": { "x": 0.833, "y": 1.223 },
"s": [59.66, 52.22, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.061 },
"i": { "x": 0.833, "y": 0.92 },
"s": [66.78, 47.2, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -1.772 },
"i": { "x": 0.833, "y": -0.268 },
"s": [40.64, 56.76, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 1.041 },
"s": [41.81, 61.05, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 0.882 },
"s": [58.52, 50.41, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.286 },
"i": { "x": 0.833, "y": 1.101 },
"s": [33.5, 24.7, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.046 },
"i": { "x": 0.833, "y": 0.862 },
"s": [23.2, 25.57, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.21 },
"i": { "x": 0.833, "y": 0.951 },
"s": [45.94, 49.11, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": -0.12 },
"i": { "x": 0.833, "y": 0.63 },
"s": [60.85, 26.63, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.959 },
"s": [54.75, 43.41, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": -0.082 },
"i": { "x": 0.833, "y": 0.798 },
"s": [33.77, 61.6, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.142 },
"i": { "x": 0.833, "y": 0.989 },
"s": [44.34, 72.39, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": -0.013 },
"i": { "x": 0.833, "y": 0.836 },
"s": [59.37, 56.1, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.88 },
"s": [46.41, 83.39, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.275 },
"i": { "x": 0.833, "y": 0.702 },
"s": [33.94, 66.74, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.116 },
"i": { "x": 0.833, "y": 0.962 },
"s": [28.52, 65.07, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.069 },
"i": { "x": 0.833, "y": 0.975 },
"s": [14.54, 57.81, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 0.682 },
"s": [22.17, 32.89, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.99 },
"s": [16.84, 48.99, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.012 },
"i": { "x": 0.833, "y": 0.867 },
"s": [1.85, 40.01, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 0.991 },
"s": [14.99, 47.09, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 1.11 },
"s": [22.78, 18.97, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 0.919 },
"s": [15.79, 0.66, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -2.466 },
"i": { "x": 0.833, "y": -0.962 },
"s": [32.01, 21.69, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.087 },
"i": { "x": 0.833, "y": 1.026 },
"s": [31.48, 7.14, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 1.059 },
"s": [19.53, 21.89, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.034 },
"i": { "x": 0.833, "y": 0.936 },
"s": [35.27, 19.68, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": -0.269 },
"i": { "x": 0.833, "y": 0.744 },
"s": [8.41, -5.06, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.124 },
"i": { "x": 0.833, "y": 1.021 },
"s": [14.77, -1.13, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.017 },
"i": { "x": 0.833, "y": 0.994 },
"s": [27.92, -2.64, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": -0.006 },
"i": { "x": 0.833, "y": 0.998 },
"s": [11.5, 1.56, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.002 },
"i": { "x": 0.833, "y": 0.948 },
"s": [26.81, -1.43, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.138 },
"i": { "x": 0.833, "y": 1.044 },
"s": [11.83, 17.73, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.029 },
"i": { "x": 0.833, "y": 0.98 },
"s": [17.46, 29.79, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": -0.027 },
"i": { "x": 0.833, "y": 1.284 },
"s": [8.88, 6.14, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.93 },
"s": [15.35, 9.58, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": -0.427 },
"i": { "x": 0.833, "y": 0.369 },
"s": [-13.2, 32.91, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 0.885 },
"s": [-8.53, 16.23, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.306 },
"i": { "x": 0.833, "y": 1.145 },
"s": [22.1, -4.03, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.053 },
"i": { "x": 0.833, "y": 0.872 },
"s": [33.58, 15.19, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.239 },
"i": { "x": 0.833, "y": 1.048 },
"s": [2.18, 26.32, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 0.954 },
"s": [-14.68, 4.34, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": -0.101 },
"i": { "x": 0.833, "y": 1.082 },
"s": [11.9, 36.5, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.041 },
"i": { "x": 0.833, "y": 0.894 },
"s": [-0.11, 20.14, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.394 },
"i": { "x": 0.833, "y": 0.833 },
"s": [23.74, 21.21, 100],
"t": 58
},
{ "s": [30.13, 0.14, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.599 },
"s": [133.76, 152.55, 0],
"t": 2
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.765 },
"s": [133.23, 153.65, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [131.08, 157.74, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [126.28, 164.43, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.847 },
"s": [119.83, 170.52, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [113.63, 174.93, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [108.29, 178.3, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [103.76, 181.12, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [99.92, 183.62, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [96.63, 185.92, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [93.79, 188.05, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [91.33, 190.05, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [89.18, 191.93, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [87.3, 193.69, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [85.65, 195.35, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [84.2, 196.9, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [82.93, 198.34, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [81.82, 199.7, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [80.85, 200.96, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [80, 202.13, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [79.27, 203.22, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [78.64, 204.22, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [78.11, 205.14, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [77.66, 205.99, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [77.29, 206.76, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [76.98, 207.46, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [76.74, 208.1, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.845 },
"s": [76.56, 208.66, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.847 },
"s": [76.42, 209.15, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [76.32, 209.58, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.851 },
"s": [76.26, 209.95, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.854 },
"s": [76.23, 210.26, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.194 },
"i": { "x": 0.833, "y": 0.842 },
"s": [76.21, 210.5, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.828 },
"s": [76.21, 210.68, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.826 },
"s": [76.23, 210.84, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.826 },
"s": [76.3, 211, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.827 },
"s": [76.41, 211.14, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.829 },
"s": [76.54, 211.27, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [76.69, 211.39, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.833 },
"s": [76.87, 211.49, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.836 },
"s": [77.06, 211.58, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.837 },
"s": [77.25, 211.66, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.171 },
"i": { "x": 0.833, "y": 0.838 },
"s": [77.43, 211.76, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.839 },
"s": [77.59, 211.86, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [77.74, 211.97, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.842 },
"s": [77.88, 212.08, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [78, 212.19, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [78.1, 212.3, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.847 },
"s": [78.18, 212.41, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.849 },
"s": [78.24, 212.51, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.185 },
"i": { "x": 0.833, "y": 0.85 },
"s": [78.28, 212.6, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.85 },
"s": [78.31, 212.67, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.844 },
"s": [78.32, 212.74, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.831 },
"s": [78.31, 212.8, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.82 },
"s": [78.28, 212.83, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.816 },
"s": [78.25, 212.85, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.152 },
"i": { "x": 0.833, "y": 0.833 },
"s": [78.2, 212.86, 0],
"t": 58
},
{ "s": [78.14, 212.84, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 2
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 29
},
{ "s": [0], "t": 45 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 48
},
{
"ty": 4,
"nm": "Shape Layer 3",
"sr": 1,
"st": 7,
"op": 60,
"ip": 7,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.852 },
"s": [59.32, 51.99, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.91 },
"s": [44.47, 51.66, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 1.162 },
"i": { "x": 0.833, "y": 0.429 },
"s": [32.92, 63.32, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.098 },
"i": { "x": 0.833, "y": 1.033 },
"s": [32.02, 62.67, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.024 },
"i": { "x": 0.833, "y": 0.841 },
"s": [26.79, 28.4, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.733 },
"s": [34.12, 43.47, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.121 },
"i": { "x": 0.833, "y": 1.032 },
"s": [40.74, 63.36, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.023 },
"i": { "x": 0.833, "y": 0.978 },
"s": [55.29, 73.54, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.03 },
"i": { "x": 0.833, "y": 0.937 },
"s": [35.2, 63.28, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.261 },
"i": { "x": 0.833, "y": 0.63 },
"s": [49.99, 57.33, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.108 },
"i": { "x": 0.833, "y": 0.922 },
"s": [46.41, 43.8, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -1.116 },
"i": { "x": 0.833, "y": 0.758 },
"s": [34.1, 32.57, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": -0.253 },
"s": [34.95, 19.46, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 0.962 },
"s": [36.58, 48.87, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.069 },
"i": { "x": 0.833, "y": 0.895 },
"s": [59.46, 43.03, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.41 },
"i": { "x": 0.833, "y": 0.929 },
"s": [46.91, 37.99, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": -0.493 },
"i": { "x": 0.833, "y": -2.344 },
"s": [43.7, 53.83, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.085 },
"i": { "x": 0.833, "y": 1 },
"s": [44.17, 56.33, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 0.913 },
"s": [62.27, 38.68, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 1.831 },
"i": { "x": 0.833, "y": 1.203 },
"s": [44.08, 56.82, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.059 },
"i": { "x": 0.833, "y": 1.094 },
"s": [43.21, 71.67, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.044 },
"i": { "x": 0.833, "y": 0.722 },
"s": [46.19, 53.48, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.119 },
"i": { "x": 0.833, "y": 0.905 },
"s": [39.84, 64.96, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.689 },
"i": { "x": 0.833, "y": 0.81 },
"s": [24.98, 44.28, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.817 },
"s": [22.94, 54.54, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 1.272 },
"s": [20.32, 50.73, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.064 },
"i": { "x": 0.833, "y": 0.928 },
"s": [17.18, 72.85, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.532 },
"i": { "x": 0.833, "y": 1.499 },
"s": [30.56, 51.72, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.071 },
"i": { "x": 0.833, "y": 0.951 },
"s": [28.75, 15.42, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -0.121 },
"i": { "x": 0.833, "y": 1.072 },
"s": [41.42, 28.19, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.038 },
"i": { "x": 0.833, "y": 0.946 },
"s": [36.26, 27.52, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -0.15 },
"i": { "x": 0.833, "y": 0.594 },
"s": [45.84, 34.86, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.867 },
"s": [42.42, 34.9, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.224 },
"i": { "x": 0.833, "y": 1.076 },
"s": [29.18, 14.24, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 1.02 },
"s": [21.31, 16.61, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.928 },
"s": [36.33, 25.79, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": -0.523 },
"i": { "x": 0.833, "y": 1.401 },
"s": [17.67, 20.01, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.069 },
"i": { "x": 0.833, "y": 0.943 },
"s": [20.24, 29.87, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": -0.183 },
"i": { "x": 0.833, "y": 1.109 },
"s": [5.33, 31.6, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.047 },
"i": { "x": 0.833, "y": 1.042 },
"s": [9.99, 45.8, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.028 },
"i": { "x": 0.833, "y": 1.003 },
"s": [-0.77, 7.9, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.003 },
"i": { "x": 0.833, "y": 0.927 },
"s": [15.36, 23.22, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": -0.568 },
"i": { "x": 0.833, "y": 0.201 },
"s": [-1.38, 44.41, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.093 },
"i": { "x": 0.833, "y": 0.885 },
"s": [0.76, 29.75, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.302 },
"i": { "x": 0.833, "y": 0.966 },
"s": [19.17, -14.98, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.057 },
"i": { "x": 0.833, "y": 0.108 },
"s": [26.17, 2.03, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.092 },
"i": { "x": 0.833, "y": 0.962 },
"s": [22, 19.7, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.07 },
"i": { "x": 0.833, "y": 0.964 },
"s": [-18.48, -4.86, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": -0.063 },
"i": { "x": 0.833, "y": 1.116 },
"s": [3.52, 33.26, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.896 },
"s": [-9.05, 22.3, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.416 },
"i": { "x": 0.833, "y": 0.835 },
"s": [21.08, 32.94, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.168 },
"i": { "x": 0.833, "y": 0.833 },
"s": [28.63, -8.51, 100],
"t": 58
},
{ "s": [36.02, 0.58, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.551 },
"s": [133, 151.22, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.762 },
"s": [131.84, 151.7, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.128 },
"i": { "x": 0.833, "y": 0.824 },
"s": [126.73, 153.62, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [116.91, 155.58, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [105.84, 154.68, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [96.64, 151.03, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [89.57, 146.3, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [84.06, 141.5, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [79.57, 137.01, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [75.78, 132.97, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [72.45, 129.39, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [69.44, 126.28, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [66.63, 123.62, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [63.97, 121.41, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [61.45, 119.71, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [59.06, 118.5, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [56.79, 117.79, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [54.68, 117.53, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [52.75, 117.67, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.839 },
"s": [51.01, 118.12, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [49.46, 118.8, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [48.11, 119.63, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.839 },
"s": [46.92, 120.54, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.173 },
"i": { "x": 0.833, "y": 0.84 },
"s": [45.88, 121.5, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [44.98, 122.47, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [44.19, 123.42, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [43.51, 124.35, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [42.91, 125.23, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [42.4, 126.06, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [41.97, 126.84, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [41.59, 127.56, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.845 },
"s": [41.28, 128.2, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [41.02, 128.78, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.849 },
"s": [40.81, 129.29, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.186 },
"i": { "x": 0.833, "y": 0.852 },
"s": [40.64, 129.73, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.19 },
"i": { "x": 0.833, "y": 0.857 },
"s": [40.52, 130.09, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.199 },
"i": { "x": 0.833, "y": 0.865 },
"s": [40.43, 130.37, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.219 },
"i": { "x": 0.833, "y": 0.882 },
"s": [40.38, 130.58, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.284 },
"i": { "x": 0.833, "y": 0.84 },
"s": [40.36, 130.71, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.751 },
"s": [40.36, 130.77, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.125 },
"i": { "x": 0.833, "y": 0.805 },
"s": [40.4, 130.74, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.812 },
"s": [40.44, 130.65, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.149 },
"i": { "x": 0.833, "y": 0.827 },
"s": [40.48, 130.52, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.161 },
"i": { "x": 0.833, "y": 0.831 },
"s": [40.51, 130.35, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.834 },
"s": [40.55, 130.17, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.836 },
"s": [40.6, 129.99, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.17 },
"i": { "x": 0.833, "y": 0.839 },
"s": [40.66, 129.82, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.172 },
"i": { "x": 0.833, "y": 0.841 },
"s": [40.72, 129.65, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.844 },
"s": [40.77, 129.49, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.848 },
"s": [40.82, 129.35, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.853 },
"s": [40.86, 129.23, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.192 },
"i": { "x": 0.833, "y": 0.833 },
"s": [40.89, 129.12, 0],
"t": 58
},
{ "s": [40.91, 129.04, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 7
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 12
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 34
},
{ "s": [0], "t": 50 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.1686, 1, 0.1608], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 49
},
{
"ty": 4,
"nm": "Shape Layer 2",
"sr": 1,
"st": 6,
"op": 60,
"ip": 6,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.867 },
"s": [58.18, 62.01, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.222 },
"i": { "x": 0.833, "y": 0.795 },
"s": [53.18, 52.55, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.141 },
"i": { "x": 0.833, "y": 0.672 },
"s": [50.18, 72.01, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 0.908 },
"s": [45.8, 81.35, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.904 },
"i": { "x": 0.833, "y": 0.347 },
"s": [32.96, 51.92, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 1.047 },
"s": [31.66, 26.38, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.03 },
"i": { "x": 0.833, "y": 1.006 },
"s": [22.76, 31.82, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 1.068 },
"s": [36.74, 91.36, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.037 },
"i": { "x": 0.833, "y": 0.917 },
"s": [21.73, 82.04, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": 270.204 },
"i": { "x": 0.833, "y": 152.322 },
"s": [48.91, 55.76, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.083 },
"i": { "x": 0.833, "y": 1.025 },
"s": [48.92, 37.91, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 1.006 },
"s": [33.69, 48.62, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.006 },
"i": { "x": 0.833, "y": 0.991 },
"s": [53.58, 45.11, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": -0.01 },
"i": { "x": 0.833, "y": 0.999 },
"s": [32.22, 25.95, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.001 },
"i": { "x": 0.833, "y": 0.952 },
"s": [51.29, 51.01, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": -0.115 },
"i": { "x": 0.833, "y": 0.907 },
"s": [32.35, 51.99, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.774 },
"i": { "x": 0.833, "y": -0.395 },
"s": [40.29, 31.4, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.089 },
"i": { "x": 0.833, "y": 1.013 },
"s": [41.25, 29.16, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 0.914 },
"s": [56.32, 32.33, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 2.433 },
"i": { "x": 0.833, "y": 3.517 },
"s": [38.97, 40.36, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.081 },
"i": { "x": 0.833, "y": 0.948 },
"s": [38.35, 74.44, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.137 },
"i": { "x": 0.833, "y": 0.885 },
"s": [57.56, 52.33, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.305 },
"i": { "x": 0.833, "y": 0.672 },
"s": [50.31, 58.21, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.112 },
"i": { "x": 0.833, "y": 0.965 },
"s": [47.59, 43.12, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": -0.06 },
"i": { "x": 0.833, "y": 1.366 },
"s": [39.59, 39.22, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.944 },
"s": [44.24, 48.12, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": -0.173 },
"i": { "x": 0.833, "y": 0.794 },
"s": [19.2, 47.45, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.14 },
"i": { "x": 0.833, "y": 0.967 },
"s": [27.34, 58.58, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": -0.055 },
"i": { "x": 0.833, "y": 0.774 },
"s": [39.34, 41.71, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.132 },
"i": { "x": 0.833, "y": 1.053 },
"s": [32.1, 29.56, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.032 },
"i": { "x": 0.833, "y": 0.93 },
"s": [19.71, 45.79, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": -0.444 },
"i": { "x": 0.833, "y": 0.919 },
"s": [39.99, 45.87, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": -2.408 },
"i": { "x": 0.833, "y": 8.691 },
"s": [36.79, 44.45, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.082 },
"i": { "x": 0.833, "y": 0.962 },
"s": [36.89, 27.92, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": -0.069 },
"i": { "x": 0.833, "y": 1.151 },
"s": [26.89, 30.74, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.054 },
"i": { "x": 0.833, "y": 0.832 },
"s": [32.38, 47.46, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.912 },
"s": [16.97, 23.6, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 1.584 },
"i": { "x": 0.833, "y": 1.421 },
"s": [1.27, 34.76, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.07 },
"i": { "x": 0.833, "y": 1.174 },
"s": [0.39, 35.87, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.056 },
"i": { "x": 0.833, "y": 1.039 },
"s": [5.67, 32.43, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.027 },
"i": { "x": 0.833, "y": 0.955 },
"s": [-10.63, -11.46, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": -0.096 },
"i": { "x": 0.833, "y": 1.083 },
"s": [13.39, 4.94, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.042 },
"i": { "x": 0.833, "y": 0.896 },
"s": [2.24, 38.97, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.425 },
"i": { "x": 0.833, "y": 1.087 },
"s": [24.47, 32.56, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.043 },
"i": { "x": 0.833, "y": 0.942 },
"s": [29.89, -11.16, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": -0.186 },
"i": { "x": 0.833, "y": 1.717 },
"s": [18.78, -2.83, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.075 },
"i": { "x": 0.833, "y": 0.956 },
"s": [22.22, 10.44, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": -0.092 },
"i": { "x": 0.833, "y": 0.926 },
"s": [-10.75, -3.88, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.679 },
"i": { "x": 0.833, "y": 1.362 },
"s": [4.89, 22.76, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.068 },
"i": { "x": 0.833, "y": 0.873 },
"s": [3.18, 24.69, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.243 },
"i": { "x": 0.833, "y": 0.708 },
"s": [12.33, 24.63, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.117 },
"i": { "x": 0.833, "y": 0.976 },
"s": [17.1, 1.23, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": -0.034 },
"i": { "x": 0.833, "y": 0.833 },
"s": [29.04, 3.46, 100],
"t": 58
},
{ "s": [20.59, 33.38, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.592 },
"s": [133.18, 150.97, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.105 },
"i": { "x": 0.833, "y": 0.764 },
"s": [133.24, 152.47, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.129 },
"i": { "x": 0.833, "y": 0.824 },
"s": [133.79, 158.28, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.844 },
"s": [135.48, 168.76, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [138.45, 180.09, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [142.1, 189.51, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.845 },
"s": [145.97, 196.84, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [149.86, 202.48, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.843 },
"s": [153.65, 206.83, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.842 },
"s": [157.28, 210.17, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [160.7, 212.73, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [163.91, 214.69, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [166.9, 216.18, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [169.68, 217.31, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [172.25, 218.16, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [174.62, 218.8, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [176.82, 219.27, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [178.85, 219.61, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [180.72, 219.84, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [182.45, 220, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [184.05, 220.08, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [185.52, 220.12, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [186.87, 220.11, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [188.11, 220.06, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [189.24, 219.98, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [190.26, 219.87, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [191.19, 219.74, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [192.01, 219.58, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.84 },
"s": [192.74, 219.4, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [193.39, 219.21, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [193.99, 219.01, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.843 },
"s": [194.53, 218.82, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.844 },
"s": [195.01, 218.64, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.846 },
"s": [195.43, 218.47, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.848 },
"s": [195.8, 218.31, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.851 },
"s": [196.12, 218.16, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.189 },
"i": { "x": 0.833, "y": 0.856 },
"s": [196.37, 218.04, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.198 },
"i": { "x": 0.833, "y": 0.864 },
"s": [196.58, 217.94, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.215 },
"i": { "x": 0.833, "y": 0.881 },
"s": [196.72, 217.86, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.276 },
"i": { "x": 0.833, "y": 0.888 },
"s": [196.81, 217.8, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.327 },
"i": { "x": 0.833, "y": 0.805 },
"s": [196.84, 217.77, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.754 },
"s": [196.84, 217.75, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 0.789 },
"s": [196.82, 217.75, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.138 },
"i": { "x": 0.833, "y": 0.805 },
"s": [196.78, 217.77, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.145 },
"i": { "x": 0.833, "y": 0.813 },
"s": [196.73, 217.8, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.818 },
"s": [196.66, 217.85, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.154 },
"i": { "x": 0.833, "y": 0.821 },
"s": [196.57, 217.91, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [196.47, 217.98, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.158 },
"i": { "x": 0.833, "y": 0.826 },
"s": [196.35, 218.07, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.828 },
"s": [196.23, 218.16, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.162 },
"i": { "x": 0.833, "y": 0.83 },
"s": [196.09, 218.27, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.832 },
"s": [195.94, 218.38, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [195.79, 218.5, 0],
"t": 58
},
{ "s": [195.63, 218.61, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 6
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 11
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 33
},
{ "s": [0], "t": 49 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 50
},
{
"ty": 4,
"nm": "Shape Layer 1",
"sr": 1,
"st": 3,
"op": 60,
"ip": 3,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 1.013 },
"s": [45.98, 51.96, 100],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.011 },
"i": { "x": 0.833, "y": 0.854 },
"s": [30.59, 60.79, 100],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.195 },
"i": { "x": 0.833, "y": 1 },
"s": [48.3, 52.88, 100],
"t": 5
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 0.962 },
"s": [61.55, 48.58, 100],
"t": 6
},
{
"o": { "x": 0.167, "y": -0.071 },
"i": { "x": 0.833, "y": 1.12 },
"s": [48.35, 46.39, 100],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.049 },
"i": { "x": 0.833, "y": 0.877 },
"s": [55.48, 70.95, 100],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.258 },
"i": { "x": 0.833, "y": 0.808 },
"s": [38.04, 62.77, 100],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.147 },
"i": { "x": 0.833, "y": 1.024 },
"s": [29.73, 43.33, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.019 },
"i": { "x": 0.833, "y": 1.02 },
"s": [18.92, 23.82, 100],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.997 },
"s": [32.91, 64.08, 100],
"t": 12
},
{
"o": { "x": 0.167, "y": -0.003 },
"i": { "x": 0.833, "y": 0.787 },
"s": [15.49, 89.29, 100],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.137 },
"i": { "x": 0.833, "y": 0.983 },
"s": [32.35, 51.95, 100],
"t": 14
},
{
"o": { "x": 0.167, "y": -0.021 },
"i": { "x": 0.833, "y": 0.996 },
"s": [58.5, 35.29, 100],
"t": 15
},
{
"o": { "x": 0.167, "y": -0.004 },
"i": { "x": 0.833, "y": 0.949 },
"s": [37.56, 47.83, 100],
"t": 16
},
{
"o": { "x": 0.167, "y": -0.135 },
"i": { "x": 0.833, "y": 0.975 },
"s": [57.47, 72.71, 100],
"t": 17
},
{
"o": { "x": 0.167, "y": -0.036 },
"i": { "x": 0.833, "y": 1.215 },
"s": [49.85, 30.37, 100],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.06 },
"i": { "x": 0.833, "y": 0.928 },
"s": [55.19, 27.07, 100],
"t": 19
},
{
"o": { "x": 0.167, "y": -0.543 },
"i": { "x": 0.833, "y": 0.706 },
"s": [36.06, 58.54, 100],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.116 },
"i": { "x": 0.833, "y": 0.753 },
"s": [38.6, 36.6, 100],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.126 },
"i": { "x": 0.833, "y": 1.064 },
"s": [45.04, 29.52, 100],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.883 },
"s": [57.69, 34.52, 100],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.287 },
"i": { "x": 0.833, "y": 1.141 },
"s": [35.34, 59.65, 100],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.052 },
"i": { "x": 0.833, "y": 0.893 },
"s": [26.21, 69.32, 100],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.378 },
"i": { "x": 0.833, "y": 0.925 },
"s": [50.76, 61.13, 100],
"t": 26
},
{
"o": { "x": 0.167, "y": -0.756 },
"i": { "x": 0.833, "y": 0.059 },
"s": [57.71, 52.24, 100],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.091 },
"i": { "x": 0.833, "y": 1.036 },
"s": [57.02, 65.86, 100],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.025 },
"i": { "x": 0.833, "y": 1.158 },
"s": [49.92, 42.44, 100],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.055 },
"i": { "x": 0.833, "y": 0.897 },
"s": [60.1, 50.26, 100],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.435 },
"i": { "x": 0.833, "y": 1.064 },
"s": [30.59, 22.25, 100],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.036 },
"i": { "x": 0.833, "y": 0.949 },
"s": [23.59, 46.01, 100],
"t": 32
},
{
"o": { "x": 0.167, "y": -0.131 },
"i": { "x": 0.833, "y": 0.545 },
"s": [36, 59.87, 100],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.102 },
"i": { "x": 0.833, "y": 0.979 },
"s": [31.17, 36.9, 100],
"t": 34
},
{
"o": { "x": 0.167, "y": -0.028 },
"i": { "x": 0.833, "y": 0.921 },
"s": [9.66, 37.6, 100],
"t": 35
},
{
"o": { "x": 0.167, "y": -1.621 },
"i": { "x": 0.833, "y": 0.758 },
"s": [25.81, 51.58, 100],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 1.306 },
"s": [25.02, 29.55, 100],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.065 },
"i": { "x": 0.833, "y": 0.889 },
"s": [23.52, 34.83, 100],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.334 },
"i": { "x": 0.833, "y": 1.538 },
"s": [30.53, 35.9, 100],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.072 },
"i": { "x": 0.833, "y": 0.759 },
"s": [32.87, 50.95, 100],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.127 },
"i": { "x": 0.833, "y": 0.954 },
"s": [15.46, 28.5, 100],
"t": 41
},
{
"o": { "x": 0.167, "y": -0.1 },
"i": { "x": 0.833, "y": 0.875 },
"s": [-17.5, 11.62, 100],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.249 },
"i": { "x": 0.833, "y": 1.076 },
"s": [-2.55, 37.03, 100],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.04 },
"i": { "x": 0.833, "y": 1.027 },
"s": [4.97, 13.48, 100],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.02 },
"i": { "x": 0.833, "y": 0.934 },
"s": [-9.43, -12.77, 100],
"t": 45
},
{
"o": { "x": 0.167, "y": -0.321 },
"i": { "x": 0.833, "y": 1.313 },
"s": [9.62, -5.69, 100],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.066 },
"i": { "x": 0.833, "y": 0.894 },
"s": [5.69, 21.03, 100],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.392 },
"i": { "x": 0.833, "y": 1.021 },
"s": [24.38, 17.41, 100],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.016 },
"i": { "x": 0.833, "y": 0.685 },
"s": [29.43, -0.59, 100],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.113 },
"i": { "x": 0.833, "y": 0.849 },
"s": [23.14, 7.8, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.187 },
"i": { "x": 0.833, "y": 0.934 },
"s": [5.64, 9.3, 100],
"t": 51
},
{
"o": { "x": 0.167, "y": -0.311 },
"i": { "x": 0.833, "y": 0.35 },
"s": [-8.48, -8.9, 100],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.096 },
"i": { "x": 0.833, "y": 0.953 },
"s": [-5.5, 25.15, 100],
"t": 53
},
{
"o": { "x": 0.167, "y": -0.107 },
"i": { "x": 0.833, "y": 1.05 },
"s": [14.81, 30.05, 100],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.031 },
"i": { "x": 0.833, "y": 0.897 },
"s": [5.93, 15.33, 100],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.44 },
"i": { "x": 0.833, "y": 1.244 },
"s": [20.18, 5.97, 100],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.062 },
"i": { "x": 0.833, "y": 0.878 },
"s": [23.51, 23.25, 100],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.262 },
"i": { "x": 0.833, "y": 0.833 },
"s": [10.42, 20.64, 100],
"t": 58
},
{ "s": [4.33, 20.15, 100], "t": 59 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.833, "y": 0.625 },
"s": [133.7, 152.15, 0],
"t": 3
},
{
"o": { "x": 0.167, "y": 0.107 },
"i": { "x": 0.833, "y": 0.767 },
"s": [135.24, 151.91, 0],
"t": 4
},
{
"o": { "x": 0.167, "y": 0.13 },
"i": { "x": 0.833, "y": 0.824 },
"s": [140.64, 151.09, 0],
"t": 5
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.844 },
"s": [150.19, 148.53, 0],
"t": 6
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.847 },
"s": [160.07, 143.26, 0],
"t": 7
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.847 },
"s": [167.21, 135.88, 0],
"t": 8
},
{
"o": { "x": 0.167, "y": 0.183 },
"i": { "x": 0.833, "y": 0.846 },
"s": [171.45, 127.95, 0],
"t": 9
},
{
"o": { "x": 0.167, "y": 0.181 },
"i": { "x": 0.833, "y": 0.844 },
"s": [173.85, 120.57, 0],
"t": 10
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.844 },
"s": [175.29, 114.04, 0],
"t": 11
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.843 },
"s": [176.28, 108.3, 0],
"t": 12
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [177.08, 103.26, 0],
"t": 13
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.842 },
"s": [177.83, 98.8, 0],
"t": 14
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [178.59, 94.85, 0],
"t": 15
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [179.41, 91.35, 0],
"t": 16
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [180.3, 88.26, 0],
"t": 17
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.841 },
"s": [181.27, 85.55, 0],
"t": 18
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.84 },
"s": [182.31, 83.21, 0],
"t": 19
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [183.42, 81.19, 0],
"t": 20
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [184.6, 79.46, 0],
"t": 21
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [185.8, 78.01, 0],
"t": 22
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [187.01, 76.79, 0],
"t": 23
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.84 },
"s": [188.19, 75.78, 0],
"t": 24
},
{
"o": { "x": 0.167, "y": 0.174 },
"i": { "x": 0.833, "y": 0.841 },
"s": [189.33, 74.95, 0],
"t": 25
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [190.4, 74.26, 0],
"t": 26
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.841 },
"s": [191.41, 73.69, 0],
"t": 27
},
{
"o": { "x": 0.167, "y": 0.175 },
"i": { "x": 0.833, "y": 0.842 },
"s": [192.35, 73.22, 0],
"t": 28
},
{
"o": { "x": 0.167, "y": 0.176 },
"i": { "x": 0.833, "y": 0.842 },
"s": [193.21, 72.83, 0],
"t": 29
},
{
"o": { "x": 0.167, "y": 0.177 },
"i": { "x": 0.833, "y": 0.843 },
"s": [193.99, 72.52, 0],
"t": 30
},
{
"o": { "x": 0.167, "y": 0.178 },
"i": { "x": 0.833, "y": 0.844 },
"s": [194.7, 72.25, 0],
"t": 31
},
{
"o": { "x": 0.167, "y": 0.179 },
"i": { "x": 0.833, "y": 0.845 },
"s": [195.33, 72.04, 0],
"t": 32
},
{
"o": { "x": 0.167, "y": 0.18 },
"i": { "x": 0.833, "y": 0.846 },
"s": [195.88, 71.87, 0],
"t": 33
},
{
"o": { "x": 0.167, "y": 0.182 },
"i": { "x": 0.833, "y": 0.848 },
"s": [196.36, 71.73, 0],
"t": 34
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.85 },
"s": [196.77, 71.62, 0],
"t": 35
},
{
"o": { "x": 0.167, "y": 0.188 },
"i": { "x": 0.833, "y": 0.853 },
"s": [197.1, 71.53, 0],
"t": 36
},
{
"o": { "x": 0.167, "y": 0.193 },
"i": { "x": 0.833, "y": 0.859 },
"s": [197.37, 71.47, 0],
"t": 37
},
{
"o": { "x": 0.167, "y": 0.203 },
"i": { "x": 0.833, "y": 0.868 },
"s": [197.58, 71.43, 0],
"t": 38
},
{
"o": { "x": 0.167, "y": 0.226 },
"i": { "x": 0.833, "y": 0.887 },
"s": [197.72, 71.41, 0],
"t": 39
},
{
"o": { "x": 0.167, "y": 0.317 },
"i": { "x": 0.833, "y": 0.82 },
"s": [197.81, 71.4, 0],
"t": 40
},
{
"o": { "x": 0.167, "y": 0.155 },
"i": { "x": 0.833, "y": 0.714 },
"s": [197.83, 71.41, 0],
"t": 41
},
{
"o": { "x": 0.167, "y": 0.118 },
"i": { "x": 0.833, "y": 0.805 },
"s": [197.81, 71.44, 0],
"t": 42
},
{
"o": { "x": 0.167, "y": 0.146 },
"i": { "x": 0.833, "y": 0.829 },
"s": [197.73, 71.48, 0],
"t": 43
},
{
"o": { "x": 0.167, "y": 0.163 },
"i": { "x": 0.833, "y": 0.83 },
"s": [197.62, 71.52, 0],
"t": 44
},
{
"o": { "x": 0.167, "y": 0.164 },
"i": { "x": 0.833, "y": 0.832 },
"s": [197.51, 71.58, 0],
"t": 45
},
{
"o": { "x": 0.167, "y": 0.165 },
"i": { "x": 0.833, "y": 0.833 },
"s": [197.39, 71.63, 0],
"t": 46
},
{
"o": { "x": 0.167, "y": 0.166 },
"i": { "x": 0.833, "y": 0.835 },
"s": [197.27, 71.69, 0],
"t": 47
},
{
"o": { "x": 0.167, "y": 0.169 },
"i": { "x": 0.833, "y": 0.852 },
"s": [197.16, 71.75, 0],
"t": 48
},
{
"o": { "x": 0.167, "y": 0.191 },
"i": { "x": 0.833, "y": 0.858 },
"s": [197.05, 71.82, 0],
"t": 49
},
{
"o": { "x": 0.167, "y": 0.201 },
"i": { "x": 0.833, "y": 0.848 },
"s": [196.97, 71.89, 0],
"t": 50
},
{
"o": { "x": 0.167, "y": 0.184 },
"i": { "x": 0.833, "y": 0.823 },
"s": [196.93, 71.95, 0],
"t": 51
},
{
"o": { "x": 0.167, "y": 0.157 },
"i": { "x": 0.833, "y": 0.81 },
"s": [196.93, 72.02, 0],
"t": 52
},
{
"o": { "x": 0.167, "y": 0.148 },
"i": { "x": 0.833, "y": 0.812 },
"s": [196.96, 72.08, 0],
"t": 53
},
{
"o": { "x": 0.167, "y": 0.15 },
"i": { "x": 0.833, "y": 0.817 },
"s": [197.03, 72.15, 0],
"t": 54
},
{
"o": { "x": 0.167, "y": 0.153 },
"i": { "x": 0.833, "y": 0.821 },
"s": [197.12, 72.21, 0],
"t": 55
},
{
"o": { "x": 0.167, "y": 0.156 },
"i": { "x": 0.833, "y": 0.824 },
"s": [197.23, 72.26, 0],
"t": 56
},
{
"o": { "x": 0.167, "y": 0.159 },
"i": { "x": 0.833, "y": 0.827 },
"s": [197.36, 72.31, 0],
"t": 57
},
{
"o": { "x": 0.167, "y": 0.16 },
"i": { "x": 0.833, "y": 0.833 },
"s": [197.51, 72.36, 0],
"t": 58
},
{ "s": [197.67, 72.4, 0], "t": 59 }
],
"ix": 2
},
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 3
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 8
},
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [100],
"t": 30
},
{ "s": [0], "t": 46 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [10, 10], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9373, 0.0196, 0.5137], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 51
}
],
"v": "5.7.12",
"fr": 17,
"op": 60,
"ip": 0,
"assets": []
}
| 409,827 | 9,299 |
hyperswitch-control-center | public/common/lottie-files/hyperswitch_loader.json | .json | {
"v": "4.8.0",
"meta": { "g": "LottieFiles AE 3.4.3", "a": "", "k": "", "d": "", "tc": "" },
"fr": 29.9700012207031,
"ip": 0,
"op": 60,
"w": 216,
"h": 210,
"nm": "loader 2",
"ddd": 0,
"assets": [
{
"id": "comp_0",
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Triangle 2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [94.744, 84.919, 0], "ix": 2 },
"a": { "a": 0, "k": [9.502, 7.689, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0.366, -0.576],
[0, 0],
[-0.72, 0],
[0, 0],
[0.375, 0.605],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[-0.364, -0.532],
[0, 0],
[-0.412, 0.623],
[0, 0],
[0.725, 0],
[0, 0],
[0, 0]
],
"v": [
[0.785, -6.116],
[0.785, -6.116],
[0.777, -6.128],
[-0.768, -6.113],
[-8.09, 5.272],
[-7.324, 6.689],
[7.354, 6.689],
[8.128, 5.283],
[8.122, 5.275]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.427451010311, 0.976470648074, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.427451010311, 0.976470648074, 1],
"ix": 4
},
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [100]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 15,
"s": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 45,
"s": [0]
},
{ "t": 60.0000024438501, "s": [100] }
],
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [9.502, 7.69], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61.0000024845809,
"st": -597.000024316308,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "hexagon 2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [120.8, 84.997, 0], "ix": 2 },
"a": { "a": 0, "k": [9.451, 8.496, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[-0.302, -0.53],
[0, 0],
[0, 0],
[0, 0],
[-0.626, 0],
[0, 0],
[-0.307, 0.552],
[0, 0],
[0, 0],
[0.303, 0.529],
[0, 0],
[0, 0],
[0.001, 0],
[0.626, 0],
[0, 0],
[0.307, -0.552]
],
"o": [
[0, 0],
[0, 0],
[-0.302, 0.529],
[0, 0],
[0, 0],
[0, 0],
[0.302, 0.527],
[0, 0],
[0.616, 0],
[0, 0],
[0, 0],
[0.303, -0.53],
[0, 0],
[0, 0],
[0, 0],
[-0.301, -0.528],
[0, 0],
[-0.616, 0],
[0, 0]
],
"v": [
[-8.148, -0.861],
[-8.148, -0.861],
[-8.149, -0.859],
[-8.149, 0.858],
[-8.148, 0.859],
[-4.821, 6.628],
[-4.821, 6.628],
[-3.327, 7.496],
[3.327, 7.496],
[4.822, 6.624],
[8.147, 0.859],
[8.148, 0.858],
[8.148, -0.859],
[8.147, -0.861],
[4.821, -6.628],
[4.82, -6.628],
[3.327, -7.496],
[-3.327, -7.496],
[-4.823, -6.626]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.427451010311, 0.976470648074, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.427450984716, 0.976470589638, 1],
"ix": 4
},
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 0,
"s": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 15,
"s": [100]
},
{ "t": 30.0000012219251, "s": [0] }
],
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [9.451, 8.497], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61.0000024845809,
"st": -597.000024316308,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "square 2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [121.162, 107.1, 0], "ix": 2 },
"a": { "a": 0, "k": [8.49, 8.49, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[1.558, 0],
[0, 0],
[0, -1.558],
[0, 0],
[-1.558, 0],
[0, 0],
[0, 1.558],
[0, 0]
],
"o": [
[0, 0],
[-1.558, 0],
[0, 0],
[0, 1.558],
[0, 0],
[1.558, 0],
[0, 0],
[0, -1.558]
],
"v": [
[4.669, -7.49],
[-4.669, -7.49],
[-7.49, -4.669],
[-7.49, 4.669],
[-4.669, 7.49],
[4.669, 7.49],
[7.49, 4.669],
[7.49, -4.669]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.427451010311, 0.976470648074, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.427450984716, 0.976470589638, 1],
"ix": 4
},
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 15,
"s": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 30,
"s": [100]
},
{ "t": 45.0000018328876, "s": [0] }
],
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [8.49, 8.49], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61.0000024845809,
"st": -597.000024316308,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "circle 2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [94.759, 107.099, 0], "ix": 2 },
"a": { "a": 0, "k": [9.013, 9.013, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.425, 0],
[0, 4.426],
[4.425, 0],
[0, -4.425]
],
"o": [
[4.425, 0],
[0, -4.425],
[-4.425, 0],
[0, 4.426]
],
"v": [
[0, 8.013],
[8.013, 0],
[0, -8.013],
[-8.013, 0]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.427451010311, 0.976470648074, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0, 0.427450984716, 0.976470589638, 1],
"ix": 4
},
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 30,
"s": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"t": 45,
"s": [100]
},
{ "t": 60.0000024438501, "s": [0] }
],
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [9.013, 9.013], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 61.0000024845809,
"st": -597.000024316308,
"bm": 0
}
]
}
],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 0,
"nm": "loader",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [108, 105, 0], "ix": 2 },
"a": { "a": 0, "k": [108, 105, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"w": 216,
"h": 210,
"ip": 0,
"op": 61.0000024845809,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 6,373 | 9,300 |
hyperswitch-control-center | public/common/lottie-files/FinalTick.json | .json | {
"nm": "HDFC Success",
"ddd": 0,
"h": 180,
"w": 180,
"meta": { "g": "LottieFiles AE 1.0.0" },
"layers": [
{
"ty": 4,
"nm": "check",
"sr": 1,
"st": 0,
"op": 240,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [35.16, 35.16, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [90, 90, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 4,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-82.5, 4.5],
[-31, 55],
[73, -52.5]
]
},
"ix": 2
}
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 1, "y": 0.076 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 60
},
{ "s": [100], "t": 85 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": { "a": 0, "k": 0, "ix": 1 },
"m": 1
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 2,
"ml": 1,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 30, "ix": 5 },
"c": { "a": 0, "k": [0.9922, 0.9922, 0.9922], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 1
},
{
"ty": 4,
"nm": "Shape Layer 2",
"sr": 1,
"st": 0,
"op": 240,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.656, "y": 0.872 },
"i": { "x": 0, "y": 0.98 },
"s": [0, 0, 100],
"t": 20
},
{ "s": [52.73, 52.73, 100], "t": 60 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [90, 90.65, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [236, 236], "ix": 2 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.4235, 0.7216, 0.3176], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, -3], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 2
},
{
"ty": 4,
"nm": "Shape Layer 1",
"sr": 1,
"st": 0,
"op": 240,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.477, "y": 0.587 },
"i": { "x": 0, "y": 0.999 },
"s": [0, 0, 100],
"t": 10
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 1 },
"s": [52.73, 52.73, 100],
"t": 50
},
{
"o": { "x": 0.167, "y": 0 },
"i": { "x": 0.833, "y": 1 },
"s": [52.73, 52.73, 100],
"t": 76
},
{ "s": [73.83, 73.83, 100], "t": 123 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [90, 90.65, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": {
"a": 1,
"k": [
{
"o": { "x": 0.912, "y": 0.073 },
"i": { "x": 0.626, "y": 0.729 },
"s": [100],
"t": 76
},
{ "s": [0], "t": 119 }
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Ellipse 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "el",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Ellipse",
"nm": "Ellipse Path 1",
"d": 1,
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"s": { "a": 0, "k": [236, 236], "ix": 2 }
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 1,
"lj": 1,
"ml": 4,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 2, "ix": 5 },
"c": { "a": 0, "k": [0.9922, 0.9922, 0.9922], "ix": 3 }
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.9059, 0.9686, 0.9333], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, -3], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 3
},
{
"ty": 3,
"nm": "",
"sr": 1,
"st": 0,
"op": 240,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [35.16, 35.16, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [90, 90, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"ind": 4
}
],
"v": "4.8.0",
"fr": 60,
"op": 130,
"ip": 0,
"assets": []
}
| 3,658 | 9,301 |
hyperswitch-control-center | public/common/lottie-files/exitCross.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 7,
"w": 1080,
"h": 1080,
"nm": "Exit_ic_cross",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Cross 2",
"parent": 3,
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [0.833]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 4,
"s": [100]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": -45,
"ix": 10
},
"p": {
"a": 0,
"k": [0, 0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [6.515, 2.536, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [-100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[6.686, -258.728],
[6.343, 263.8]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 58,
"ix": 5
},
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Cross 1",
"parent": 3,
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [0.833]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 4,
"s": [100]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 45,
"ix": 10
},
"p": {
"a": 0,
"k": [0, 0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [6.515, 2.536, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100, 100],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[6.686, -258.728],
[6.343, 263.8]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [1, 1, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 58,
"ix": 5
},
"lc": 2,
"lj": 1,
"ml": 4,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Bg_ic_cross",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [0.833]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [25]
},
{
"t": 6,
"s": [0]
}
],
"ix": 11
},
"r": {
"a": 1,
"k": [
{
"i": {
"x": [0.833],
"y": [0.833]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [0]
},
{
"t": 6,
"s": [45]
}
],
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.833, 0.833, 0.833],
"y": [0.833, 0.833, 9.333]
},
"o": {
"x": [0.333, 0.333, 0.333],
"y": [0, 0, 0]
},
"t": 0,
"s": [100, 100, 100]
},
{
"t": 6,
"s": [50, 50, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"nm": "Ellipse Path 1",
"mn": "ADBE Vector Shape - Ellipse",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.207843137255, 0.250980392157, 0.321568627451, 1],
"ix": 4
},
"o": {
"a": 0,
"k": 100,
"ix": 5
},
"r": 1,
"bm": 0,
"nm": "Fill 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Ellipse 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 150,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 3,289 | 9,302 |
hyperswitch-control-center | public/common/lottie-files/uncheckboxPurple.json | .json | {
"nm": "Blue_Check",
"ddd": 0,
"h": 1080,
"w": 1080,
"meta": {
"g": "LottieFiles AE 3.1.1"
},
"layers": [
{
"ty": 4,
"nm": "Exit_White_Check_Tick",
"sr": 1,
"st": -7,
"op": 143,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"o": {
"x": 0.167,
"y": 0
},
"i": {
"x": 0.833,
"y": 1
},
"s": [50, 50, 100],
"t": 0
},
{
"s": [25, 25, 100],
"t": 6
}
],
"ix": 6
},
"sk": {
"a": 0,
"k": 0
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"sa": {
"a": 0,
"k": 0
},
"o": {
"a": 1,
"k": [
{
"o": {
"x": 0.167,
"y": 0
},
"i": {
"x": 0.833,
"y": 1
},
"s": [100],
"t": 4
},
{
"s": [0],
"t": 6
}
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 2,
"ml": 1,
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 194,
"ix": 5
},
"c": {
"a": 0,
"k": [1, 1, 1],
"ix": 3
}
},
{
"ty": "tr",
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"o": {
"a": 0,
"k": 100,
"ix": 7
}
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 0,
"k": 100,
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"m": 1
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 2",
"ix": 3,
"e": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [100],
"t": 0
},
{
"s": [50],
"t": 6
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"m": 1
}
],
"ind": 1
},
{
"ty": 4,
"nm": "Exit_Bg_Checkbox",
"sr": 1,
"st": 0,
"op": 150,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [100, 100, 100],
"t": 0
},
{
"s": [96, 96, 100],
"t": 6
}
],
"ix": 6
},
"sk": {
"a": 0,
"k": 0
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"sa": {
"a": 0,
"k": 0
},
"o": {
"a": 1,
"k": [
{
"o": {
"x": 0.333,
"y": 0
},
"i": {
"x": 0.667,
"y": 1
},
"s": [100],
"t": 0
},
{
"s": [0],
"t": 6
}
],
"ix": 11
}
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Rectangle 1",
"ix": 1,
"cix": 2,
"np": 3,
"it": [
{
"ty": "rc",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Rect",
"nm": "Rectangle Path 1",
"d": 1,
"p": {
"a": 0,
"k": [0, 0],
"ix": 3
},
"r": {
"a": 0,
"k": 280,
"ix": 4
},
"s": {
"a": 0,
"k": [1060, 1060],
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": {
"a": 0,
"k": [0.3098, 0.3294, 0.9373],
"ix": 4
},
"r": 1,
"o": {
"a": 0,
"k": 100,
"ix": 5
}
},
{
"ty": "tr",
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"p": {
"a": 0,
"k": [0, -2],
"ix": 2
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"o": {
"a": 0,
"k": 100,
"ix": 7
}
}
]
}
],
"ind": 2
}
],
"v": "4.8.0",
"fr": 30,
"op": 7,
"ip": 0,
"assets": []
}
| 2,716 | 9,303 |
hyperswitch-control-center | public/common/lottie-files/tick.json | .json | {
"nm": "tick",
"ddd": 0,
"h": 30,
"w": 30,
"meta": { "g": "LottieFiles AE 3.4.5" },
"layers": [
{
"ty": 4,
"nm": "Shape Layer 1",
"sr": 1,
"st": 0,
"op": 900.000036657751,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [100.25, 102.25, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Shape 1",
"ix": 1,
"cix": 2,
"np": 4,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": false,
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-47, 7],
[-15, 39],
[56, -32]
]
},
"ix": 2
}
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.167, "y": 0.167 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 18
},
{ "s": [100], "t": 27.0000010997325 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": { "a": 0, "k": 0, "ix": 1 },
"m": 1
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 2,
"ml": 1,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 12, "ix": 5 },
"c": { "a": 0, "k": [1, 1, 1], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 1,
"parent": 2
},
{
"ty": 4,
"nm": "Layer 3 Outlines",
"sr": 1,
"st": 0,
"op": 900.000036657751,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [102.25, 102.25, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 1, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0, 0, 100],
"t": 0
},
{
"o": { "x": 0.789, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [10, 10, 100],
"t": 20
},
{ "s": [8.33, 8.33, 100], "t": 25.0000010182709 }
],
"ix": 6
},
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [15, 15, 0], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 10 },
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Group 1",
"ix": 1,
"cix": 2,
"np": 2,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[-56.333, 0],
[0, -56.333],
[56.333, 0],
[0, 56.333]
],
"o": [
[56.333, 0],
[0, 56.333],
[-56.333, 0],
[0, -56.333]
],
"v": [
[0, -102],
[102, 0],
[0, 102],
[-102, 0]
]
},
"ix": 2
}
},
{
"ty": "fl",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Fill",
"nm": "Fill 1",
"c": { "a": 0, "k": [0.4235, 0.7216, 0.3176], "ix": 4 },
"r": 1,
"o": { "a": 0, "k": 100, "ix": 5 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [102.25, 102.25], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
}
],
"ind": 2
}
],
"v": "4.8.0",
"fr": 29.9700012207031,
"op": 30.0000012219251,
"ip": 0,
"assets": []
}
| 2,381 | 9,304 |
hyperswitch-control-center | public/common/lottie-files/loader-circle.json | .json | {
"nm": "Loading-2",
"ddd": 0,
"h": 150,
"w": 300,
"meta": { "g": "@lottiefiles/toolkit-js 0.26.1" },
"layers": [
{
"ty": 4,
"nm": "icon 2",
"sr": 1,
"st": 39,
"op": 79,
"ip": 39,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [53, 53, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [150, 75, 0], "ix": 2 },
"r": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [-90],
"t": 39
},
{ "s": [270], "t": 79 }
],
"ix": 10
},
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Group 1",
"ix": 1,
"cix": 2,
"np": 2,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, -15.464],
[15.464, 0],
[0, 15.464],
[-15.464, 0]
],
"o": [
[0, 15.464],
[-15.464, 0],
[0, -15.464],
[15.464, 0]
],
"v": [
[28, 0],
[0, 28],
[-28, 0],
[0, -28]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 1,
"ml": 10,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 10, "ix": 5 },
"c": { "a": 0, "k": [0.898, 0.9059, 0.9216], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [53, 53], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 39
},
{ "s": [100], "t": 64 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 51
},
{ "s": [100], "t": 79 }
],
"ix": 1
},
"m": 1
}
],
"ind": 1
},
{
"ty": 4,
"nm": "icon",
"sr": 1,
"st": 0,
"op": 40,
"ip": 0,
"hd": false,
"ddd": 0,
"bm": 0,
"hasMask": false,
"ao": 0,
"ks": {
"a": { "a": 0, "k": [53, 53, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
"sk": { "a": 0, "k": 0 },
"p": { "a": 0, "k": [150, 75, 0], "ix": 2 },
"r": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [-90],
"t": 0
},
{ "s": [270], "t": 40 }
],
"ix": 10
},
"sa": { "a": 0, "k": 0 },
"o": { "a": 0, "k": 100, "ix": 11 }
},
"ef": [],
"shapes": [
{
"ty": "gr",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Group",
"nm": "Group 1",
"ix": 1,
"cix": 2,
"np": 2,
"it": [
{
"ty": "sh",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Shape - Group",
"nm": "Path 1",
"ix": 1,
"d": 1,
"ks": {
"a": 0,
"k": {
"c": true,
"i": [
[0, -15.464],
[15.464, 0],
[0, 15.464],
[-15.464, 0]
],
"o": [
[0, 15.464],
[-15.464, 0],
[0, -15.464],
[15.464, 0]
],
"v": [
[28, 0],
[0, 28],
[-28, 0],
[0, -28]
]
},
"ix": 2
}
},
{
"ty": "st",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Graphic - Stroke",
"nm": "Stroke 1",
"lc": 2,
"lj": 1,
"ml": 10,
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 10, "ix": 5 },
"c": { "a": 0, "k": [0.898, 0.9059, 0.9216], "ix": 3 }
},
{
"ty": "tr",
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"p": { "a": 0, "k": [53, 53], "ix": 2 },
"r": { "a": 0, "k": 0, "ix": 6 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"o": { "a": 0, "k": 100, "ix": 7 }
}
]
},
{
"ty": "tm",
"bm": 0,
"hd": false,
"mn": "ADBE Vector Filter - Trim",
"nm": "Trim Paths 1",
"ix": 2,
"e": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 0
},
{ "s": [100], "t": 25 }
],
"ix": 2
},
"o": { "a": 0, "k": 0, "ix": 3 },
"s": {
"a": 1,
"k": [
{
"o": { "x": 0.333, "y": 0 },
"i": { "x": 0.667, "y": 1 },
"s": [0],
"t": 12
},
{ "s": [100], "t": 40 }
],
"ix": 1
},
"m": 1
}
],
"ind": 2
}
],
"v": "5.5.5",
"fr": 25,
"op": 79,
"ip": 0,
"assets": []
}
| 2,768 | 9,305 |
hyperswitch-control-center | public/common/lottie-files/selectedTick.json | .json | {
"v": "4.8.0",
"meta": {
"g": "LottieFiles AE 3.1.1",
"a": "",
"k": "",
"d": "",
"tc": ""
},
"fr": 30,
"ip": 0,
"op": 8,
"w": 1080,
"h": 1080,
"nm": "Blue_Check",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Enter_Blue_Tick",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [0]
},
{
"t": 4,
"s": [100]
}
],
"ix": 11
},
"r": {
"a": 0,
"k": 0,
"ix": 10
},
"p": {
"a": 0,
"k": [540, 540, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0, 0],
"ix": 1
},
"s": {
"a": 1,
"k": [
{
"i": {
"x": [0.667, 0.667, 0.667],
"y": [1, 1, 1]
},
"o": {
"x": [0.333, 0.333, 0.333],
"y": [0, 0, 0]
},
"t": 0,
"s": [50, 50, 100]
},
{
"t": 8,
"s": [100, 100, 100]
}
],
"ix": 6
}
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-394, 16],
[-160, 250],
[386, -296]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0, 0.6, 1, 1],
"ix": 3
},
"o": {
"a": 0,
"k": 100,
"ix": 4
},
"w": {
"a": 0,
"k": 155,
"ix": 5
},
"lc": 2,
"lj": 2,
"bm": 0,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": {
"a": 0,
"k": [0, 0],
"ix": 2
},
"a": {
"a": 0,
"k": [0, 0],
"ix": 1
},
"s": {
"a": 0,
"k": [100, 100],
"ix": 3
},
"r": {
"a": 0,
"k": 0,
"ix": 6
},
"o": {
"a": 0,
"k": 100,
"ix": 7
},
"sk": {
"a": 0,
"k": 0,
"ix": 4
},
"sa": {
"a": 0,
"k": 0,
"ix": 5
},
"nm": "Transform"
}
],
"nm": "Shape 1",
"np": 3,
"cix": 2,
"bm": 0,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": {
"a": 0,
"k": 0,
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": {
"x": [0.667],
"y": [1]
},
"o": {
"x": [0.333],
"y": [0]
},
"t": 0,
"s": [50]
},
{
"t": 8,
"s": [100]
}
],
"ix": 2
},
"o": {
"a": 0,
"k": 0,
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 19,
"st": 0,
"bm": 0
}
],
"markers": []
}
| 1,481 | 9,306 |
hyperswitch-control-center | config/FeatureFlag.json | .json | 0 | 9,309 | |
hyperswitch-control-center | config/config.toml | .toml | [default.theme]
primary_color="#006DF9"
primary_hover_color="#005ED6"
sidebar_primary="#FCFCFD" # To support current dashboard theme and to be removed later
sidebar_secondary="#FFFFFF" # To support current dashboard theme and to be removed later
sidebar_hover_color="#D9DDE5" # To support current dashboard theme and to be removed later
sidebar_primary_text_color="#1C6DEA" # To support current dashboard theme and to be removed later
sidebar_secondary_text_color="#525866" # To support current dashboard theme and to be removed later
sidebar_border_color="#ECEFF3" # To support current dashboard theme and to be removed later
[default.endpoints]
api_url="http://localhost:9000/api"
sdk_url="http://localhost:9050/HyperLoader.js"
apple_pay_certificate_url=""
dss_certificate_url=""
logo_url=""
favicon_url=""
recon_iframe_url=""
hypersense_url=""
mixpanel_token=""
agreement_url=""
agreement_version=""
[default.features]
branding=false
mixpanel=false
test_live_toggle=false
is_live_mode=false
feedback=false
x_feature_route=false
compliance_certificate=false
force_cookies=false
audit_trail=true
granularity=false
maintainence_alert=""
down_time=false
email=false
totp=true
quick_start=false
global_search=false
global_search_filters=false
sample_data=false
generate_report=false
transaction_view=true
configure_pmts=true
test_processors=true
paypal_automatic_flow=false
payout=true
threeds_authenticator=true
frm=true
pm_authentication_processor=true
tax_processor=true
dispute_analytics=false
authentication_analytics=false
performance_monitor=false
new_analytics=false
new_analytics_smart_retries=false
new_analytics_refunds=false
new_analytics_filters=false
surcharge=true
dispute_evidence_upload=false
recon=true
recon_v2=false
custom_webhook_headers=true
tenant_user=false
dev_click_to_pay=true
dev_recovery_v2_product=false
dev_vault_v2_product=false
dev_modularity_v2=false
dev_alt_payment_methods=false
dev_hypersense_v2_product=false
dev_intelligent_routing_v2=false
dev_recon_v2_product=false
dev_debit_routing=false
google_pay_decryption_flow=false
dev_webhooks=false
[default.merchant_config]
[default.merchant_config.new_analytics]
org_ids=[]
merchant_ids=[]
profile_ids=[] | 529 | 9,310 |
hyperswitch-control-center | aws/hyperswitch_control_center_cleanup_setup.sh | .sh | #!/bin/bash
command_discovery() {
type $1 > /dev/null 2> /dev/null
if [[ $? != 0 ]]; then
echo "\`$1\` command not found"
exit 1
fi
}
yes_or_no() {
read response < /dev/tty
case $response in
[Yy]* ) return 0 ;;
[Nn]* ) return 1 ;;
* ) return 1 ;;
esac
}
command_discovery aws
command_discovery jq
echo -n "Please enter the AWS region (us-east-2): "
read REGION < /dev/tty
if [ -z "$REGION" ]; then
echo "Using default region: us-east-2"
REGION="us-east-2"
fi
export ALL_ELASTIC_CACHE=($(aws elasticache describe-cache-clusters \
--region $REGION \
--query "CacheClusters[*].ARN" --output text))
for cluster_arn in $ALL_ELASTIC_CACHE; do
cluster_id=${cluster_arn##*:}
aws elasticache list-tags-for-resource \
--resource-name $cluster_arn \
--region $REGION \
--output json | jq \
'.TagList[] | select( [ .Key == "ManagedBy" and .Value == "hyperswitch" ] | any)' \
-e > /dev/null
if [[ $? -eq 0 ]]; then
echo -n "Delete $cluster_id (Y/n)? "
if yes_or_no; then
echo `aws elasticache delete-cache-cluster --region $REGION --cache-cluster-id $cluster_id`
fi
fi
done
export ALL_KEY_PAIRS=($(aws ec2 describe-key-pairs \
--filters "Name=tag:ManagedBy,Values=hyperswitch" \
--region $REGION \
--query 'KeyPairs[*].KeyPairId' --output text))
echo -n "Deleting ( $ALL_KEY_PAIRS ) key pairs? (Y/n)?"
if yes_or_no; then
for KEY_ID in $ALL_KEY_PAIRS; do
echo `aws ec2 delete-key-pair --key-pair-id $KEY_ID --region $REGION`
done
fi
export ALL_INSTANCES=$(aws ec2 describe-instances \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' 'Name=instance-state-name,Values=running' \
--region $REGION \
--query 'Reservations[*].Instances[*].InstanceId' --output text)
export ALL_EBS=$(aws ec2 describe-instances \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' \
--region $REGION \
--query 'Reservations[*].Instances[*].BlockDeviceMappings[*].Ebs.VolumeId' \
--output text)
echo -n "Terminating ( $ALL_INSTANCES ) instances? (Y/n)?"
if yes_or_no; then
for INSTANCE_ID in $ALL_INSTANCES; do
echo `aws ec2 terminate-instances --instance-ids $INSTANCE_ID --region $REGION`
done
fi
export ALL_DB_RESOURCES=($(aws rds describe-db-instances \
--region $REGION \
--query 'DBInstances[*].DBInstanceArn' --output text))
for resource_id in $ALL_DB_RESOURCES; do
aws rds list-tags-for-resource \
--resource-name $resource_id \
--region $REGION \
--output json | jq \
'.TagList[] | select( [ .Key == "ManagedBy" and .Value == "hyperswitch" ] | any )' \
-e > /dev/null
if [[ $? -eq 0 ]]; then
echo -n "Delete $resource_id (Y/n)? "
if yes_or_no; then
export DB_INSTANCE_ID=$(aws rds describe-db-instances \
--region $REGION \
--filters "Name=db-instance-id,Values=$resource_id" \
--query 'DBInstances[*].DBInstanceIdentifier' --output text)
echo -n "Create a snapshot before deleting ( $DB_INSTANCE_ID ) the database (Y/n)? "
if yes_or_no; then
echo `aws rds delete-db-instance \
--db-instance-identifier $DB_INSTANCE_ID \
--region $REGION \
--final-db-snapshot-identifier hyperswitch-db-snapshot-`date +%s``
else
echo `aws rds delete-db-instance \
--region $REGION \
--db-instance-identifier $DB_INSTANCE_ID \
--skip-final-snapshot`
fi
fi
fi
done
export ALL_SECURITY_GROUPS=$(aws ec2 describe-security-groups \
--filters 'Name=tag:ManagedBy,Values=hyperswitch' \
--region $REGION \
--query 'SecurityGroups[*].GroupId' --output json | jq .[] --raw-output)
echo -n "Deleting ( $ALL_SECURITY_GROUPS ) security groups? (Y/n)?"
if yes_or_no; then
export do_it=true
while $do_it; do
export do_it=false
for GROUP_ID in $ALL_SECURITY_GROUPS; do
aws ec2 delete-security-group --group-id $GROUP_ID --region $REGION
if [[ $? != 0 ]]; then
export do_it=true
fi
done
if $do_it; then
echo -n "Retry deleting the security group (Y/n)? "
if yes_or_no; then
export do_it=true
else
export do_it=false
fi
fi
done
fi
| 1,206 | 9,311 |
hyperswitch-control-center | aws/hyperswitch_control_center_aws_setup.sh | .sh | #!/bin/bash
command_discovery() {
type $1 > /dev/null 2> /dev/null
if [[ $? != 0 ]]; then
echo "\`$1\` command not found"
exit 1
fi
}
command_discovery curl
command_discovery aws
echo "Please enter the api url (https://sandbox.hyperswitch.io) "
read apiBaseUrl < /dev/tty
if [ -z "$apiBaseUrl" ]; then
echo "Using default api url: https://sandbox.hyperswitch.io"
apiBaseUrl="https://sandbox.hyperswitch.io"
fi
echo "Please enter the hosted sdk url (https://beta.hyperswitch.io/v1/HyperLoader.js) "
read sdkBaseUrl < /dev/tty
if [ -z "$sdkBaseUrl" ]; then
echo "Using default api url: https://beta.hyperswitch.io/v1/HyperLoader.js"
sdkBaseUrl="https://beta.hyperswitch.io/v1/HyperLoader.js"
fi
echo "Please enter the AWS region (us-east-2): "
read REGION < /dev/tty
if [ -z "$REGION" ]; then
echo "Using default region: us-east-2"
REGION="us-east-2"
fi
############# APPLICATION ##################
# CREATE SECURITY GROUP FOR APPLICATION
echo "Creating Security Group for Application..."
export EC2_SG="application-sg"
echo `(aws ec2 create-security-group \
--region $REGION \
--group-name $EC2_SG \
--description "Security Group for Hyperswitch EC2 instance" \
--tag-specifications "ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
)`
export APP_SG_ID=$(aws ec2 describe-security-groups --group-names $EC2_SG --region $REGION --output text --query 'SecurityGroups[0].GroupId')
echo "Security Group for Application CREATED.\n"
echo "Creating Security Group ingress for port 80..."
echo `aws ec2 authorize-security-group-ingress \
--group-id $APP_SG_ID \
--protocol tcp \
--port 80 \
--cidr 0.0.0.0/0 \
--region $REGION`
echo "Security Group ingress for port 80 CREATED.\n"
echo "Creating Security Group ingress for port 22..."
echo `aws ec2 authorize-security-group-ingress \
--group-id $APP_SG_ID \
--protocol tcp \
--port 22 \
--cidr 0.0.0.0/0 \
--region $REGION`
echo "Security Group ingress for port 22 CREATED.\n"
cat << EOF > user_data.sh
#!/bin/bash
sudo yum update -y
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user
docker pull juspaydotin/hyperswitch-control-center:latest
docker run -p 80:9000 -e default__endpoint__api_url=${apiBaseUrl} -e default__endpoint__sdk_url=${sdkBaseUrl} juspaydotin/hyperswitch-control-center:latest
EOF
# echo "docker run -p 80:9000 -e apiBaseUrl=${apiBaseUrl} -e sdkBaseUrl=${sdkBaseUrl} juspaydotin/hyperswitch-control-center:v1.0.0" >> user_data.sh
export AWS_AMI_ID=$(aws ec2 describe-images --owners amazon --filters "Name=name,Values=amzn2-ami-hvm-2.0.*" --query 'sort_by(Images, &CreationDate)[-1].ImageId' --output text --region $REGION)
echo "AWS AMI ID retrieved.\n"
echo "Creating EC2 Keypair..."
rm -rf hyperswitch-keypair.pem
aws ec2 create-key-pair \
--key-name hyperswitch-ec2-keypair \
--query 'KeyMaterial' \
--tag-specifications "ResourceType=key-pair,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
--region $REGION \
--output text > hyperswitch-keypair.pem
echo "Keypair created and saved to hyperswitch-keypair.pem.\n"
chmod 400 hyperswitch-keypair.pem
echo "Launching EC2 Instance..."
export HYPERSWITCH_INSTANCE_ID=$(aws ec2 run-instances \
--image-id $AWS_AMI_ID \
--instance-type t3.medium \
--key-name hyperswitch-ec2-keypair \
--monitoring "Enabled=false" \
--security-group-ids $APP_SG_ID \
--user-data file://./user_data.sh \
--query 'Instances[0].InstanceId' \
--output text \
--region $REGION)
echo "EC2 instance launched.\n"
echo "Add Tags to EC2 instance..."
echo `aws ec2 create-tags \
--resources $HYPERSWITCH_INSTANCE_ID \
--tags "Key=Name,Value=hyperswitch-control-center" \
--region $REGION`
echo "Tag added to EC2 instance.\n"
echo `aws ec2 create-tags \
--resources $HYPERSWITCH_INSTANCE_ID \
--tags "Key=ManagedBy,Value=hyperswitch" \
--region $REGION`
echo "ManagedBy tag added to EC2 instance.\n"
echo "Retrieving the Public IP of Hyperswitch EC2 Instance..."
export PUBLIC_HYPERSWITCH_IP=$(aws ec2 describe-instances \
--instance-ids $HYPERSWITCH_INSTANCE_ID \
--query "Reservations[*].Instances[*].PublicIpAddress" \
--output=text \
--region $REGION)
echo "Hurray! You can try using hyperswitch control center at http://$PUBLIC_HYPERSWITCH_IP" | 1,240 | 9,312 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryContainer/RecoveryConnectorContainer.res | .res | @react.component
let make = () => {
open HSwitchUtils
open RevenueRecoveryOnboardingUtils
let url = RescriptReactRouter.useUrl()
let {userHasAccess} = GroupACLHooks.useUserGroupACLHook()
let fetchConnectorListResponse = ConnectorListHook.useFetchConnectorList(
~entityName=V2(V2_CONNECTOR),
~version=V2,
)
let {getUserInfoData} = React.useContext(UserInfoProvider.defaultContext)
let {merchantId, profileId} = getUserInfoData()
let (screenState, setScreenState) = React.useState(_ => PageLoaderWrapper.Loading)
let setUpConnectorContainer = async () => {
try {
setScreenState(_ => PageLoaderWrapper.Loading)
if (
userHasAccess(~groupAccess=ConnectorsView) === Access ||
userHasAccess(~groupAccess=WorkflowsView) === Access ||
userHasAccess(~groupAccess=WorkflowsManage) === Access
) {
let _ = await fetchConnectorListResponse()
}
setScreenState(_ => PageLoaderWrapper.Success)
} catch {
| _ => setScreenState(_ => PageLoaderWrapper.Error(""))
}
}
let connectors = ConnectorInterface.useConnectorArrayMapper(
~interface=ConnectorInterface.connectorInterfaceV2,
~retainInList=BillingProcessor,
)
let hasConfiguredBillingConnector = connectors->Array.length > 0
React.useEffect(() => {
setUpConnectorContainer()->ignore
None
}, [merchantId, profileId])
<PageLoaderWrapper screenState={screenState} sectionHeight="!h-screen" showLogoutButton=true>
{switch url.path->urlPath {
| list{"v2", "recovery", "onboarding", ...remainingPath} =>
<AccessControl authorization={userHasAccess(~groupAccess=ConnectorsView)}>
{<div className="mt-14">
{sampleDataBanner}
<EntityScaffold
entityName="onboarding"
remainingPath
renderList={() => <RevenueRecoveryOnboarding />}
renderNewForm={() => <RevenueRecoveryOnboarding />}
renderShow={(_, _) => <RevenueRecoveryOnboarding />}
/>
</div>}
</AccessControl>
| list{"v2", "recovery", "overview", ...remainingPath} =>
if hasConfiguredBillingConnector {
<EntityScaffold
entityName="Payments"
remainingPath
access=Access
renderList={() => <RevenueRecoveryOverview />}
renderCustomWithOMP={(id, _, _, _) => <ShowRevenueRecovery id />}
/>
} else {
<RevenueRecoveryOnboardingLanding createMerchant=false />
}
| list{"v2", "recovery", "summary", ..._} =>
if hasConfiguredBillingConnector {
<BillingConnectorsSummary />
} else {
<RevenueRecoveryOnboardingLanding createMerchant=false />
}
| list{"unauthorized"} => <UnauthorizedPage />
| _ => <NotFoundPage />
}}
</PageLoaderWrapper>
}
| 666 | 9,313 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryApp/RevenueRecoverySidebarValues.res | .res | open SidebarTypes
let revenueRecoveryHome = {
Link({
name: "Home",
link: `/v2/recovery`,
access: Access,
icon: "nd-home",
})
}
let revenueRecoveryPayments = {
Link({
name: "Overview",
link: `/v2/recovery/overview`,
access: Access,
icon: "nd-operations",
})
}
let revenueRecoverySummary = {
Link({
name: "Configuration Details",
link: `/v2/recovery/summary`,
access: Access,
icon: "nd-connectors",
})
}
let recoverySidebars = {
let links = [revenueRecoveryPayments, revenueRecoverySummary]
links
}
| 157 | 9,314 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryApp/RevenueRecoveryApp.res | .res | @react.component
let make = () => {
let url = RescriptReactRouter.useUrl()
{
switch url.path->HSwitchUtils.urlPath {
| list{"v2", "recovery"} => <RevenueRecoveryOnboardingLanding createMerchant=true />
| _ => <RecoveryConnectorContainer />
}
}
}
| 73 | 9,315 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryScreens/RecoveryProcessors/RevenueRecoveryBillingProcessors/BillingConnectorAuthKeys.res | .res | @react.component
let make = (
~initialValues,
~setConnectorName,
~connector,
~handleAuthKeySubmit,
~validateMandatoryField,
~updatedInitialVal,
~connectorInfoDict,
~screenState,
) => {
open LogicUtils
open ConnectProcessorsHelper
let (arrow, setArrow) = React.useState(_ => false)
let input: ReactFinalForm.fieldRenderPropsInput = {
name: "name",
onBlur: _ => (),
onChange: ev => {
let value = ev->Identity.formReactEventToString
setConnectorName(_ => value)
RescriptReactRouter.replace(
GlobalVars.appendDashboardPath(~url=`/v2/recovery/onboarding?name=${value}`),
)
},
onFocus: _ => (),
value: connector->JSON.Encode.string,
checked: true,
}
let toggleChevronState = () => {
setArrow(prev => !prev)
}
let options =
RevenueRecoveryOnboardingUtils.billingConnectorList->RevenueRecoveryOnboardingUtils.getOptions
let customScrollStyle = "max-h-72 overflow-scroll px-1 pt-1 border border-b-0"
let dropdownContainerStyle = "rounded-md border border-1 !w-full"
open RevenueRecoveryOnboardingUtils
<PageWrapper
title="Choose your Billing Platform"
subTitle="Select your subscription management platform to get started.">
<div className="-m-1 mb-10 flex flex-col gap-7">
<PageLoaderWrapper screenState>
<Form onSubmit={handleAuthKeySubmit} initialValues validate=validateMandatoryField>
<p className="text-sm text-gray-700 font-semibold mb-1">
{"Select a Platform"->React.string}
</p>
<SelectBox.BaseDropdown
allowMultiSelect=false
buttonText="Choose a platform"
input
deselectDisable=true
customButtonStyle="!rounded-xl h-[45px] pr-2"
options
hideMultiSelectButtons=true
baseComponent={<ListBaseComp
placeHolder="Choose a platform" heading="platform" subHeading=connector arrow
/>}
addButton=false
customScrollStyle
dropdownContainerStyle
toggleChevronState
searchable=false
customStyle="!w-full"
customDropdownOuterClass="!border-none"
fullLength=true
shouldDisplaySelectedOnTop=true
searchInputPlaceHolder="Search Platform"
/>
<RenderIf condition={connector->isNonEmptyString}>
<div className="flex flex-col mb-5 mt-7 gap-3 w-full ">
<ConnectorAuthKeys
initialValues={updatedInitialVal}
showVertically=true
processorType=ConnectorTypes.BillingProcessor
updateAccountDetails=false
/>
<ConnectorLabelV2 isInEditState=true connectorInfo={connectorInfoDict} />
<ConnectorMetadataV2
isInEditState=true
connectorInfo={connectorInfoDict}
processorType=ConnectorTypes.BillingProcessor
/>
<ConnectorWebhookDetails
isInEditState=true
connectorInfo={connectorInfoDict}
processorType=ConnectorTypes.BillingProcessor
/>
<FormRenderer.SubmitButton
text="Next"
buttonSize={Small}
customSumbitButtonStyle="!w-full mt-8"
tooltipForWidthClass="w-full"
/>
</div>
</RenderIf>
<FormValuesSpy />
</Form>
</PageLoaderWrapper>
</div>
</PageWrapper>
}
| 774 | 9,316 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryScreens/RecoveryProcessors/RevenueRecoveryBillingProcessors/RecoveryOnboardingBilling.res | .res | @react.component
let make = (
~currentStep,
~connectorID,
~connector,
~paymentConnectorName,
~setConnectorName,
~setNextStep,
~profileId,
~merchantId,
~activeBusinessProfile,
) => {
open APIUtils
open LogicUtils
open ConnectorUtils
open PageLoaderWrapper
open RevenueRecoveryOnboardingUtils
let getURL = useGetURL()
let mixpanelEvent = MixpanelHook.useSendEvent()
let showToast = ToastState.useShowToast()
let fetchConnectorListResponse = ConnectorListHook.useFetchConnectorList(
~entityName=V2(V2_CONNECTOR),
~version=UserInfoTypes.V2,
)
let featureFlagDetails = HyperswitchAtom.featureFlagAtom->Recoil.useRecoilValueFromAtom
let updateAPIHook = useUpdateMethod(~showErrorToast=false)
let (screenState, setScreenState) = React.useState(_ => Success)
let (initialValues, setInitialValues) = React.useState(_ => Dict.make()->JSON.Encode.object)
let connectorInfoDict = ConnectorInterface.mapDictToConnectorPayload(
ConnectorInterface.connectorInterfaceV2,
initialValues->LogicUtils.getDictFromJsonObject,
)
let connectorTypeFromName =
connector->getConnectorNameTypeFromString(~connectorType=ConnectorTypes.BillingProcessor)
let updatedInitialVal = React.useMemo(() => {
let initialValuesToDict = initialValues->getDictFromJsonObject
// TODO: Refactor for generic case
initialValuesToDict->Dict.set("connector_name", `${connector}`->JSON.Encode.string)
initialValuesToDict->Dict.set(
"connector_label",
`${connector}_${activeBusinessProfile}`->JSON.Encode.string,
)
initialValuesToDict->Dict.set("connector_type", "billing_processor"->JSON.Encode.string)
initialValuesToDict->Dict.set("profile_id", profileId->JSON.Encode.string)
initialValuesToDict->Dict.set(
"connector_account_details",
RevenueRecoveryData.connector_account_details,
)
initialValuesToDict->Dict.set(
"connector_webhook_details",
RevenueRecoveryData.connector_webhook_details,
)
initialValuesToDict->Dict.set(
"feature_metadata",
RevenueRecoveryData.feature_metadata(~id=connectorID),
)
initialValuesToDict->Dict.set("metadata", RevenueRecoveryData.metadata)
initialValuesToDict->JSON.Encode.object
}, [connector, profileId])
let handleAuthKeySubmit = async (values, _) => {
setInitialValues(_ => values)
onNextClick(currentStep, setNextStep)
Nullable.null
}
let onSubmit = async (values, _form: ReactFinalForm.formApi) => {
mixpanelEvent(~eventName=currentStep->getMixpanelEventName)
let dict = values->getDictFromJsonObject
let values = dict->JSON.Encode.object
try {
setScreenState(_ => Loading)
let connectorUrl = getURL(~entityName=V2(V2_CONNECTOR), ~methodType=Put, ~id=None)
let response = await updateAPIHook(connectorUrl, values, Post, ~version=V2)
setInitialValues(_ => response)
fetchConnectorListResponse()->ignore
setScreenState(_ => Success)
onNextClick(currentStep, setNextStep)
} catch {
| Exn.Error(e) => {
let err = Exn.message(e)->Option.getOr("Something went wrong")
let errorCode = err->safeParse->getDictFromJsonObject->getString("code", "")
let errorMessage = err->safeParse->getDictFromJsonObject->getString("message", "")
if errorCode === "HE_01" {
showToast(~message="Connector label already exist!", ~toastType=ToastError)
setNextStep(_ => RevenueRecoveryOnboardingUtils.defaultStepBilling)
setScreenState(_ => Success)
} else {
showToast(~message=errorMessage, ~toastType=ToastError)
setScreenState(_ => PageLoaderWrapper.Error(err))
}
}
}
Nullable.null
}
let connectorDetails = React.useMemo(() => {
try {
if connector->isNonEmptyString {
let dict = BillingProcessorsUtils.getConnectorConfig(connector)
dict
} else {
Dict.make()->JSON.Encode.object
}
} catch {
| Exn.Error(e) => {
Js.log2("FAILED TO LOAD CONNECTOR CONFIG", e)
Dict.make()->JSON.Encode.object
}
}
}, [connector])
let (
_,
connectorAccountFields,
connectorMetaDataFields,
_,
connectorWebHookDetails,
connectorLabelDetailField,
_,
) = getConnectorFields(connectorDetails)
let validateMandatoryField = values => {
let errors = Dict.make()
let valuesFlattenJson = values->JsonFlattenUtils.flattenObject(true)
let profileId = valuesFlattenJson->getString("profile_id", "")
if profileId->String.length === 0 {
Dict.set(errors, "Profile Id", `Please select your business profile`->JSON.Encode.string)
}
if (
currentStep->RevenueRecoveryOnboardingUtils.getSectionVariant ==
(#addAPlatform, #configureRetries)
) {
let valueDict = values->getDictFromJsonObject
let revenue_recovery =
valueDict->getDictfromDict("feature_metadata")->getDictfromDict("revenue_recovery")
let billing_connector_retry_threshold =
revenue_recovery->getInt("billing_connector_retry_threshold", 0)
let max_retry_count = revenue_recovery->getInt("max_retry_count", 0)
if billing_connector_retry_threshold === 0 {
Dict.set(
errors,
"billing_connector_retry_threshold",
`Please enter start retry count`->JSON.Encode.string,
)
} else if billing_connector_retry_threshold > 15 {
Dict.set(
errors,
"billing_connector_retry_threshold",
`Start retry count should be less than 15`->JSON.Encode.string,
)
}
if max_retry_count === 0 {
Dict.set(
errors,
"max_retry_count",
`Please enter max retry count count`->JSON.Encode.string,
)
} else if max_retry_count > 15 {
Dict.set(
errors,
"max_retry_count",
`Max retry count count should be less than 15`->JSON.Encode.string,
)
}
}
validateConnectorRequiredFields(
connectorTypeFromName,
valuesFlattenJson,
connectorAccountFields,
connectorMetaDataFields,
connectorWebHookDetails,
connectorLabelDetailField,
errors->JSON.Encode.object,
)
}
<div>
<Form onSubmit initialValues>
{switch currentStep->RevenueRecoveryOnboardingUtils.getSectionVariant {
| (#addAPlatform, #selectAPlatform) =>
<BillingConnectorAuthKeys
initialValues
setConnectorName
connector
handleAuthKeySubmit
validateMandatoryField
updatedInitialVal
connectorInfoDict
screenState
/>
| (#addAPlatform, #configureRetries) =>
<BillingProcessorsConfigureRetry initialValues handleAuthKeySubmit validateMandatoryField />
| (#addAPlatform, #connectProcessor) =>
<BillingProcessorsConnectProcessor
connector={paymentConnectorName}
initialValues
onSubmit
validateMandatoryField
connector_account_reference_id=connectorID
/>
| (#addAPlatform, #setupWebhookPlatform) =>
<BillingProcessorsWebhooks
initialValues merchantId onNextClick={_ => onNextClick(currentStep, setNextStep)->ignore}
/>
| (#reviewDetails, _) => <BillingProcessorsReviewDetails />
| _ => React.null
}}
</Form>
</div>
}
| 1,676 | 9,317 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryScreens/RecoveryProcessors/RevenueRecoveryBillingProcessors/BillingProcessorsReviewDetails.res | .res | module StepCard = {
@react.component
let make = (
~stepName,
~description="",
~isSelected,
~onClick,
~iconName,
~isLoading=false,
~customSelectionComponent,
~customOuterClass="",
~customSelectionBorderClass=?,
~isDisabled=false,
) => {
let borderClass = switch (customSelectionBorderClass, isSelected) {
| (Some(val), true) => val
| (_, true) => "border-blue-500"
| _ => ""
}
let disabledClass = isDisabled
? "opacity-50 filter blur-xs pointer-events-none cursor-not-allowed"
: "cursor-pointer"
<div
key={stepName}
className={`flex items-center gap-x-2.5 border rounded-xl p-4 transition-shadow justify-between w-full ${borderClass} ${disabledClass} ${customOuterClass}`}
onClick={onClick}>
<div className="flex flex-row items-center gap-x-4 mr-5">
<Icon name=iconName className="w-8 h-8" />
<div className="flex flex-col gap-1">
<h3 className="text-sm font-semibold text-nd_gray-600 leading-5">
{stepName->React.string}
</h3>
<RenderIf condition={description->String.length > 0}>
<p className="text-xs font-medium text-nd_gray-400"> {description->React.string} </p>
</RenderIf>
</div>
</div>
<RenderIf condition={isSelected}>
{<div className="flex flex-row items-center gap-2"> customSelectionComponent </div>}
</RenderIf>
<RenderIf condition={isDisabled}>
<div className="h-4 w-4 border border-nd_gray-300 rounded-full" />
</RenderIf>
</div>
}
}
@react.component
let make = () => {
open RevenueRecoveryOnboardingUtils
let mixpanelEvent = MixpanelHook.useSendEvent()
let {setShowSideBar} = React.useContext(GlobalProvider.defaultContext)
let customSelectionComponent =
<>
<Icon name="nd-tick-circle" customHeight="16" />
<p className="font-semibold text-sm leading-5 text-nd_green-600">
{"Completed"->React.string}
</p>
</>
let handleClick = () => {
mixpanelEvent(~eventName="recovery_start_exploring")
setShowSideBar(_ => true)
RescriptReactRouter.replace(GlobalVars.appendDashboardPath(~url=`/v2/recovery/overview`))
}
<PageWrapper
title="Connection Successful" subTitle="Recovery for failed invoices will begin shortly.">
<div className="flex flex-col h-full gap-y-10">
<div className="flex flex-col gap-6">
<StepCard
key="processor_connection_successful"
stepName="Processor connection successful"
description=""
isSelected=true
customSelectionComponent
iconName="nd-inbox-with-outline"
onClick={_ => ()}
customSelectionBorderClass="border-nd_br_gray-500"
/>
<StepCard
key="billing_platform_connection_successful"
stepName="Billing Platform connection successful"
description=""
isSelected=true
customSelectionComponent
iconName="nd-plugin-with-outline"
onClick={_ => ()}
customSelectionBorderClass="border-nd_br_gray-500"
/>
</div>
</div>
<div className="flex justify-end items-center mt-7">
<Button
text="Start exploring"
customButtonStyle="rounded w-full"
buttonType={Primary}
buttonState={Normal}
onClick={_ => handleClick()}
/>
</div>
</PageWrapper>
}
| 841 | 9,318 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryScreens/RecoveryProcessors/RevenueRecoveryBillingProcessors/BillingConnectorsSummary.res | .res | type connectorSummarySection = AuthenticationKeys | Metadata | PMTs | PaymentConnectors
module BillingConnectorDetails = {
open PageLoaderWrapper
open LogicUtils
open APIUtils
open ConnectorUtils
@react.component
let make = (~removeFieldsFromRespose, ~merchantId, ~setPaymentConnectorId) => {
let getURL = useGetURL()
let fetchDetails = useGetMethod()
let (screenState, setScreenState) = React.useState(_ => Loading)
let (initialValues, setInitialValues) = React.useState(_ => Dict.make()->JSON.Encode.object)
let billingConnectorListFromRecoil = ConnectorInterface.useConnectorArrayMapper(
~interface=ConnectorInterface.connectorInterfaceV2,
~retainInList=BillingProcessor,
)
let (connectorID, _) =
billingConnectorListFromRecoil->BillingProcessorsUtils.getConnectorDetails
let getConnectorDetails = async () => {
try {
setScreenState(_ => Loading)
let connectorUrl = getURL(
~entityName=V2(V2_CONNECTOR),
~methodType=Get,
~id=Some(connectorID),
)
let json = await fetchDetails(connectorUrl, ~version=V2)
setInitialValues(_ => json->removeFieldsFromRespose)
setScreenState(_ => Success)
} catch {
| _ => setScreenState(_ => PageLoaderWrapper.Error("Failed to fetch details"))
}
}
React.useEffect(() => {
getConnectorDetails()->ignore
None
}, [])
let connectorInfodict = ConnectorInterface.mapDictToConnectorPayload(
ConnectorInterface.connectorInterfaceV2,
initialValues->LogicUtils.getDictFromJsonObject,
)
let {connector_name: connectorName, connector_webhook_details} = connectorInfodict
let connectorDetails = React.useMemo(() => {
try {
if connectorName->LogicUtils.isNonEmptyString {
let dict = BillingProcessorsUtils.getConnectorConfig(connectorName)
let revenueRecovery =
connectorInfodict.feature_metadata
->getDictFromJsonObject
->getDictfromDict("revenue_recovery")
let paymentConnectors =
revenueRecovery->getObj("billing_account_reference", Dict.make())->Dict.toArray
let id = switch paymentConnectors->Array.get(0) {
| Some(val) => {
let (id, _) = val
id
}
| _ => ""
}
setPaymentConnectorId(_ => id)
dict
} else {
JSON.Encode.null
}
} catch {
| Exn.Error(e) => {
Js.log2("FAILED TO LOAD CONNECTOR CONFIG", e)
let _ = Exn.message(e)->Option.getOr("Something went wrong")
JSON.Encode.null
}
}
}, [connectorInfodict.id])
let (_, connectorAccountFields, _, _, connectorWebHookDetails, _, _) = getConnectorFields(
connectorDetails,
)
let revenueRecovery =
connectorInfodict.feature_metadata->getDictFromJsonObject->getDictfromDict("revenue_recovery")
let max_retry_count = revenueRecovery->getInt("max_retry_count", 0)
let billing_connector_retry_threshold =
revenueRecovery->getInt("billing_connector_retry_threshold", 0)
<PageLoaderWrapper screenState>
<div className="flex flex-col gap-7">
<div className="flex justify-between border-b pb-4 px-2 items-end">
<p className="text-lg font-semibold text-nd_gray-600">
{"Revenue Recovery Details"->React.string}
</p>
</div>
<div className="grid grid-cols-3 px-2">
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Connector Retry Threshold"->React.string} </h4>
{billing_connector_retry_threshold->Int.toString->React.string}
</div>
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Max Retry Count"->React.string} </h4>
{max_retry_count->Int.toString->React.string}
</div>
</div>
</div>
<div className="flex flex-col gap-7">
<div className="flex justify-between border-b pb-4 px-2 items-end">
<p className="text-lg font-semibold text-nd_gray-600">
{"Billing Platform Details"->React.string}
</p>
</div>
<div className="grid grid-cols-3 px-2">
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Biller Platform "->React.string} </h4>
<div className="flex gap-2 align-center">
<GatewayIcon
gateway={connectorName->String.toUpperCase} className=" w-7 h-7 rounded-sm"
/>
{connectorName->React.string}
</div>
</div>
<ConnectorWebhookPreview merchantId connectorName=connectorInfodict.id />
</div>
<ConnectorHelperV2.PreviewCreds
connectorInfo=connectorInfodict
connectorAccountFields
customContainerStyle="grid grid-cols-2 gap-12 flex-wrap max-w-3xl "
customElementStyle="px-2 "
/>
<div className="grid grid-cols-3 px-2">
{connector_webhook_details
->getDictFromJsonObject
->Dict.toArray
->Array.map(item => {
let (key, value) = item
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {key->snakeToTitle->React.string} </h4>
{value->JSON.Decode.string->Option.getOr("")->React.string}
</div>
})
->React.array}
</div>
</div>
</PageLoaderWrapper>
}
}
module PaymentConnectorDetails = {
open PageLoaderWrapper
open LogicUtils
open APIUtils
open ConnectorUtils
@react.component
let make = (~connectorId, ~removeFieldsFromRespose, ~merchantId) => {
let getURL = useGetURL()
let fetchDetails = useGetMethod()
let updateAPIHook = useUpdateMethod(~showErrorToast=false)
let (screenState, setScreenState) = React.useState(_ => Loading)
let (initialValues, setInitialValues) = React.useState(_ => Dict.make()->JSON.Encode.object)
let (currentActiveSection, setCurrentActiveSection) = React.useState(_ => None)
let getConnectorDetails = async () => {
try {
setScreenState(_ => Loading)
let connectorUrl = getURL(
~entityName=V2(V2_CONNECTOR),
~methodType=Get,
~id=Some(connectorId),
)
let json = await fetchDetails(connectorUrl, ~version=V2)
setInitialValues(_ => json->removeFieldsFromRespose)
setScreenState(_ => Success)
} catch {
| _ =>
setScreenState(_ => PageLoaderWrapper.Error("Failed to fetch payment connector details"))
}
}
React.useEffect(() => {
if connectorId->isNonEmptyString {
getConnectorDetails()->ignore
}
None
}, [connectorId])
let connectorInfodict = ConnectorInterface.mapDictToConnectorPayload(
ConnectorInterface.connectorInterfaceV2,
initialValues->LogicUtils.getDictFromJsonObject,
)
let {connector_name} = connectorInfodict
let connectorDetails = React.useMemo(() => {
try {
if connector_name->LogicUtils.isNonEmptyString {
let dict = Window.getConnectorConfig(connector_name)
dict
} else {
JSON.Encode.null
}
} catch {
| Exn.Error(e) => {
Js.log2("FAILED TO LOAD PAYMENT CONNECTOR CONFIG", e)
let _ = Exn.message(e)->Option.getOr("Something went wrong")
JSON.Encode.null
}
}
}, [connectorInfodict.id])
let (
_,
connectorAccountFields,
connectorMetaDataFields,
_,
connectorWebHookDetails,
connectorLabelDetailField,
_,
) = getConnectorFields(connectorDetails)
let onSubmit = async (values, _form: ReactFinalForm.formApi) => {
try {
setScreenState(_ => Loading)
let connectorUrl = getURL(
~entityName=V2(V2_CONNECTOR),
~methodType=Get,
~id=Some(connectorId),
)
let dict = values->getDictFromJsonObject
switch currentActiveSection {
| Some(AuthenticationKeys) => {
dict->Dict.delete("profile_id")
dict->Dict.delete("id")
dict->Dict.delete("connector_name")
}
| _ => {
dict->Dict.delete("profile_id")
dict->Dict.delete("id")
dict->Dict.delete("connector_name")
dict->Dict.delete("connector_account_details")
}
}
dict->Dict.set("merchant_id", merchantId->JSON.Encode.string)
let response = await updateAPIHook(connectorUrl, dict->JSON.Encode.object, Put, ~version=V2)
setCurrentActiveSection(_ => None)
setInitialValues(_ => response->removeFieldsFromRespose)
setScreenState(_ => Success)
} catch {
| _ => setScreenState(_ => PageLoaderWrapper.Error("Failed to update"))
}
Nullable.null
}
let validateMandatoryField = values => {
let errors = Dict.make()
let valuesFlattenJson = values->JsonFlattenUtils.flattenObject(true)
let profileId = valuesFlattenJson->getString("profile_id", "")
if profileId->String.length === 0 {
Dict.set(errors, "Profile Id", `Please select your business profile`->JSON.Encode.string)
}
let paymentConnectorTypeFromName = connector_name->getConnectorNameTypeFromString
validateConnectorRequiredFields(
paymentConnectorTypeFromName,
valuesFlattenJson,
connectorAccountFields,
connectorMetaDataFields,
connectorWebHookDetails,
connectorLabelDetailField,
errors->JSON.Encode.object,
)
}
<RenderIf condition={connectorId->isNonEmptyString}>
<PageLoaderWrapper screenState sectionHeight="h-96">
<div className="flex flex-col gap-7">
<div className="flex justify-between border-b pb-4 px-2 items-end">
<p className="text-lg font-semibold text-nd_gray-600">
{"Payment Processor Details"->React.string}
</p>
</div>
<Form onSubmit={onSubmit} initialValues={initialValues} validate=validateMandatoryField>
<div className="grid grid-cols-3 px-2">
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Payment Processor"->React.string} </h4>
<div className="flex gap-2 align-center">
<GatewayIcon
gateway={connector_name->String.toUpperCase} className=" w-7 h-7 rounded-sm"
/>
{connector_name->React.string}
</div>
</div>
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Processor status"->React.string} </h4>
<div className="flex flex-row gap-2 items-center ">
<ConnectorHelperV2.ProcessorStatus connectorInfo=connectorInfodict />
</div>
</div>
</div>
<div className="flex flex-col gap-12 mt-7">
<div className="grid grid-cols-3 px-2">
<div className="flex flex-col gap-0.5-rem ">
<h4 className="text-nd_gray-400 "> {"Profile"->React.string} </h4>
{connectorInfodict.profile_id->React.string}
</div>
<ConnectorWebhookPreview merchantId connectorName=connectorInfodict.id />
</div>
<div className="flex flex-col gap-4">
<div className="flex justify-between border-b pb-4 px-2 items-end">
<p className="text-lg font-semibold text-nd_gray-600">
{"Authentication keys"->React.string}
</p>
</div>
<ConnectorHelperV2.PreviewCreds
connectorInfo=connectorInfodict
connectorAccountFields={connectorAccountFields}
customContainerStyle="grid grid-cols-2 gap-12 flex-wrap max-w-3xl "
customElementStyle="px-2 "
/>
</div>
</div>
</Form>
</div>
</PageLoaderWrapper>
</RenderIf>
}
}
@react.component
let make = () => {
open LogicUtils
let (paymentConnectorId, setPaymentConnectorId) = React.useState(_ => "")
let {userInfo: {merchantId}} = React.useContext(UserInfoProvider.defaultContext)
let removeFieldsFromRespose = json => {
let dict = json->getDictFromJsonObject
dict->Dict.delete("applepay_verified_domains")
dict->Dict.delete("business_country")
dict->Dict.delete("business_label")
dict->Dict.delete("business_sub_label")
dict->JSON.Encode.object
}
<div className="flex flex-col gap-20 -ml-2">
<BillingConnectorDetails removeFieldsFromRespose merchantId setPaymentConnectorId />
<PaymentConnectorDetails connectorId=paymentConnectorId removeFieldsFromRespose merchantId />
</div>
}
| 3,010 | 9,319 |
hyperswitch-control-center | src/RevenueRecovery/RevenueRecoveryScreens/RecoveryProcessors/RevenueRecoveryBillingProcessors/BillingProcessorsConnectProcessor.res | .res | module ConnectorConnect = {
@react.component
let make = (~connector_account_reference_id, ~autoFocus=false) => {
<FormRenderer.FieldRenderer
labelClass="font-semibold !text-hyperswitch_black"
field={FormRenderer.makeFieldInfo(
~label="",
~name=`feature_metadata.revenue_recovery.billing_account_reference.${connector_account_reference_id}`,
~toolTipPosition=Right,
~customInput=InputFields.textInput(~customStyle="border rounded-xl", ~autoFocus),
~placeholder="Enter Account ID",
)}
/>
}
}
module ConnectorConnectSummary = {
@react.component
let make = (~connector, ~connector_account_reference_id, ~autoFocus=false) => {
let connectorName = connector->ConnectorUtils.getDisplayNameForConnector
<div className="flex gap-7">
<div className="flex gap-3 items-center">
<GatewayIcon gateway={connector->String.toUpperCase} className="w-10" />
<h1 className="text-medium font-semibold text-gray-600"> {connectorName->React.string} </h1>
</div>
<div className="w-full ml-5 mb-2">
<ConnectorConnect connector_account_reference_id autoFocus />
</div>
</div>
}
}
@react.component
let make = (
~connector,
~onSubmit,
~initialValues,
~validateMandatoryField,
~connector_account_reference_id,
) => {
open RevenueRecoveryOnboardingUtils
let connectorName = connector->ConnectorUtils.getDisplayNameForConnector
<PageWrapper
title="Configure your Processor"
subTitle="Provide the reference ID of your payment processor as configured in the subscription management platform.">
<div className="mb-10 flex flex-col gap-8">
<div>
<div className="text-nd_gray-700 font-medium mb-3">
{"Selected processor"->React.string}
</div>
<div className="flex gap-4 items-center">
<GatewayIcon gateway={connector->String.toUpperCase} className="w-10" />
<h1 className="text-medium font-semibold text-gray-600">
{connectorName->React.string}
</h1>
</div>
</div>
<Form onSubmit initialValues validate=validateMandatoryField>
<div>
<div className="text-nd_gray-700 font-medium">
{"Processor Reference ID"->React.string}
<span className="text-red-900 ml-0.5 mb-0.5"> {"*"->React.string} </span>
</div>
<div className="-m-1 -mt-3">
<ConnectorConnect connector_account_reference_id />
<FormRenderer.SubmitButton
text="Next"
buttonSize={Small}
customSumbitButtonStyle="!w-full mt-8"
tooltipForWidthClass="w-full"
/>
</div>
</div>
<FormValuesSpy />
</Form>
</div>
</PageWrapper>
}
| 664 | 9,320 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.