From ef05fce1439631b953fa40529d0ef21bddd50125 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 14 Mar 2026 06:33:47 +0000 Subject: [PATCH 001/181] Draft for meeting registrations --- ietf/stats/views.py | 67 +++++++++++++++++- ietf/templates/base/menu.html | 9 ++- ietf/templates/stats/meeting_stats.html | 90 +++++++++++++++++++++++++ 3 files changed, 158 insertions(+), 8 deletions(-) create mode 100644 ietf/templates/stats/meeting_stats.html diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 504d84e86d6..bc43859e986 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -6,6 +6,7 @@ import datetime import itertools import json +from coverage import annotate import dateutil.relativedelta from collections import defaultdict @@ -13,7 +14,7 @@ from django.http import HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse - +from django.db.models import Count import debug # pyflakes:ignore @@ -28,6 +29,7 @@ from ietf.ietfauth.utils import has_role from ietf.utils.response import permission_denied from ietf.utils.timezone import date_today, DEADLINE_TZINFO +from ietf.meeting.models import Registration def stats_index(request): @@ -136,8 +138,67 @@ def known_countries_list(request, stats_type=None, acronym=None): "countries": countries, }) -def meeting_stats(request, num=None, stats_type=None): - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) +def get_data_for_meeting(meeting_number, minimum_required, attendance_type=None): + # Get registration status counts + registration_counts = Registration.objects.filter(meeting__number=meeting_number) + if attendance_type: + registration_counts = registration_counts.filter(tickets__attendance_type=attendance_type) + registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') + + # Prepare data for the pie chart + labels = [item['country_code'] for item in registration_counts] + data = [item['count'] for item in registration_counts] + + labels = [] + data = [] + others_count = 0 + for item in registration_counts: + if item['count'] > minimum_required: + labels.append(item['country_code']) + data.append(item['count']) + else: + others_count += item['count'] + + if others_count > 0: + labels.append('Other') + data.append(others_count) + + return labels, data + +def meeting_stats(request, meeting_number=None, stats_type=None): + minimum_required = 10 + + if meeting_number is None: + meeting_number = 125 # Will obvioulsy need to be dynamic + + total_labels, total_data = get_data_for_meeting(meeting_number, minimum_required) + in_person_labels, in_person_data = get_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') + + # Serialize to JSON for safe injection into the template + total_chart_data = json.dumps({ + 'labels': total_labels, + 'datasets': [{ + 'label': 'TotalRegistrations by Country', + 'data': total_data, + 'borderColor': '#ffffff', + 'borderWidth': 2, + }] + }) + in_person_chart_data = json.dumps({ + 'labels': in_person_labels, + 'datasets': [{ + 'label': 'In Person Registrations by Country', + 'data': in_person_data, + 'borderColor': '#ffffff', + 'borderWidth': 2, + }] + }) + return render(request, "stats/meeting_stats.html", { + "meeting_number": meeting_number, + "minimum_required": minimum_required, + "total_chart_data": total_chart_data, + "in_person_chart_data": in_person_chart_data + }) @login_required diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 8ff6e952daf..2bebd6f08af 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -428,12 +428,11 @@ Downref registry -
  • - +
  • + Statistics -

    - Statistics on authorship or per continent meeting are not currently available. + Statistics on authorship are not currently available.

    {% endblock %} \ No newline at end of file From 8a989e0658b0f262b538cc8e60a3ccb5967c6148 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 25 Mar 2026 09:18:38 +0000 Subject: [PATCH 017/181] Remove unused JS code --- ietf/templates/stats/meetings_timeline.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 657979e1cd6..b66528fa5e5 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -67,9 +67,6 @@

    In Person Registrations by {{ stats_type|title }}

    {% endblock %} \ No newline at end of file From beb2424c8e98eabf4740cdf31630ef4d3d1a24b1 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 25 Mar 2026 11:34:35 +0000 Subject: [PATCH 021/181] fix a comment --- ietf/stats/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 2353a54dae5..e05215080e4 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -245,7 +245,7 @@ def get_country_data_for_meetings(top_n, attendance_type=None): return sorted_meetings, datasets def get_data_for_meetings(): - # Get registration status counts, aggregated by country_code + # Get registration status counts, aggregated by ticket types registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) queryset = ( registrations From 9fb3ab7d729a8d813b40c39fe9d13ec7c0dbb2ba Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 26 Mar 2026 14:39:21 +0000 Subject: [PATCH 022/181] Add timeline for affiliation --- ietf/stats/views.py | 237 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 222 insertions(+), 15 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index e05215080e4..7c0dc01e99a 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -33,12 +33,17 @@ def stats_index(request): + """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" current_meeting = get_current_ietf_meeting_num() return render(request, "stats/index.html", { "current_meeting": current_meeting }) def generate_query_string(query_dict, overrides): + """ + Returns: + A query string starting with '?' if there are parameters, empty string otherwise. + """ query_part = "" if query_dict or overrides: @@ -63,9 +68,20 @@ def generate_query_string(query_dict, overrides): return query_part def get_choice(request, get_parameter, possible_choices, multiple=False): - # the statistics are built with links to make navigation faster, - # so we don't really have a form in most cases, so just use this - # helper instead to select between the choices + """Extract a choice from the request GET parameters. + + Since statistics pages use links for navigation instead of forms, + this helper selects between possible choices from the URL parameters. + + Args: + request: The HTTP request object. + get_parameter: The name of the GET parameter. + possible_choices: List of tuples (value, label). + multiple: If True, return a list of found values; otherwise return the first found or None. + + Returns: + The selected value(s) or None. + """ values = request.GET.getlist(get_parameter) found = [t[0] for t in possible_choices if t[0] in values] @@ -78,6 +94,15 @@ def get_choice(request, get_parameter, possible_choices, multiple=False): return None def add_url_to_choices(choices, url_builder): + """Add URLs to a list of choices. + + Args: + choices: List of tuples (slug, label). + url_builder: Function that takes a slug and returns a URL. + + Returns: + List of tuples (slug, label, url). + """ return [ (slug, label, url_builder(slug)) for slug, label in choices] def put_into_bin(value, bin_size): @@ -96,12 +121,25 @@ def prune_unknown_bin_with_known(bins): del bins[""] def count_bins(bins): + """Count the total number of unique names across all non-empty bins. + + Returns: + The count of unique names. + """ return len({ n for b, names in bins.items() if b for n in names }) def add_labeled_top_series_from_bins(chart_data, bins, limit): - """Take bins on the form (x, label): [name1, name2, ...], figure out + """Add top series data to chart_data from bins. + + Take bins on the form (x, label): [name1, name2, ...], figure out how many there are per label, take the overall top ones and put - them into sorted series like [(x1, len(names1)), (x2, len(names2)), ...].""" + them into sorted series like [(x1, len(names1)), (x2, len(names2)), ...]. + + Args: + chart_data: List to append series data to. + bins: Dictionary with keys (x, label) and values as lists of names. + limit: Maximum number of top labels to include. + """ aggregated_bins = defaultdict(set) xs = set() for (x, label), names in bins.items(): @@ -127,9 +165,11 @@ def add_labeled_top_series_from_bins(chart_data, bins, limit): }) def document_stats(request, stats_type=None): + """Redirect to the stats index page. Deprecated view.""" return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) def known_countries_list(request, stats_type=None, acronym=None): + """Render a list of known countries with their aliases.""" countries = CountryName.objects.prefetch_related("countryalias_set") for c in countries: # the sorting is a bit of a hack - it puts the ISO code first @@ -141,21 +181,126 @@ def known_countries_list(request, stats_type=None, acronym=None): }) def canonicalize_affiliation(affiliation): - if not affiliation: + """Canonicalize an affiliation string by removing common suffixes and standardizing prefixes. + + Args: + affiliation: The affiliation string to canonicalize. + + Returns: + The canonicalized affiliation string, or None if input is None. + """ + if not affiliation or affiliation.lower() in ('n/a', 'none', 'unspecified'): return None for suffix in ('ab', 'ag', 'corp', 'corp.', 'corporation', 'gmbh', 'inc.', 'inc', 'international pte ltd', 'llc', 'ltd', 'ltd.', 'private limited', 'pty ltd', 'pvt ltd'): - if affiliation.lower().endswith(' ' + suffix): - affiliation[:-(len(suffix)+1)] - if affiliation.lower().endswith(',' + suffix): - affiliation[:-(len(suffix)+1)] if affiliation.lower().endswith(', ' + suffix): - affiliation[:-(len(suffix)+2)] - for prefix in ('akamai','apple', 'cisco', 'futurewei', 'google', 'hpe', 'huawei', 'meta', 'nokia', 'siemens'): + affiliation = affiliation[:-(len(suffix)+2)] + elif affiliation.lower().endswith(' ' + suffix): + affiliation = affiliation[:-(len(suffix)+1)] + elif affiliation.lower().endswith(',' + suffix): + affiliation = affiliation[:-(len(suffix)+1)] + for prefix in ('akamai','apple', 'cisco', 'futurewei', 'google', 'hitachi', 'hpe', 'huawei', 'juniper', 'meta', 'nokia', 'ntt', 'siemens'): if affiliation.lower().startswith(prefix + ' '): affiliation = prefix return affiliation.title() +def get_affiliation_data_for_meetings(top_n, attendance_type=None): + """Get affiliation participation data for meetings timeline chart. + + Args: + top_n: Number of top affiliations to include. + attendance_type: Optional filter for attendance type (e.g., 'onsite'). + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ + # Get registration status details + if attendance_type: + registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) + else: + registrations = Registration.objects.all() + registrations = registrations.values('affiliation', 'meeting__number') + + # Count per canonicalized affiliation + organization = dict() + meetings_set = set() + org_totals = defaultdict(int) + data_map = defaultdict(dict) # {org: {meeting: count}} + + for reg in registrations: + meeting = reg['meeting__number'] + meetings_set.add(meeting) + affiliation = canonicalize_affiliation(reg['affiliation']) or "Unspecified" + organization[affiliation] = organization.get(affiliation, 0) + 1 + org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 + data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 + + # ── Step 2: Sort meetings numerically rather than alphabetically ── + sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + + # ── Step 3: Get top N countries ── + top_orgs = sorted( + org_totals.keys(), + key=lambda c: org_totals[c], + reverse=True + )[:top_n] + non_top_orgs = org_totals.keys() - top_orgs + other_totals = defaultdict(int) + for m in sorted_meetings: + other_totals[m] = 0 + for c in non_top_orgs: + other_totals[m] += int(data_map[c].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + # Color palette for lines + colors = [ + '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', + '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', + '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', + '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', + ] + + datasets = [] + for idx, org in enumerate(top_orgs): + color = colors[idx % len(colors)] + datasets.append({ + 'label': org, + 'data': [data_map[org].get(m, 0) for m in sorted_meetings], + 'borderColor': color, + 'fill': False, + 'tension': 0.3, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + # -- Step 4.bis handle the other -- + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(m, 0) for m in sorted_meetings], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.3, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + return sorted_meetings, datasets + def get_country_data_for_meetings(top_n, attendance_type=None): + """Get country participation data for meetings timeline chart. + + Args: + top_n: Number of top countries to include. + attendance_type: Optional filter for attendance type (e.g., 'onsite'). + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ # Get registration status counts, aggregated by country_code if attendance_type: registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) @@ -245,6 +390,11 @@ def get_country_data_for_meetings(top_n, attendance_type=None): return sorted_meetings, datasets def get_data_for_meetings(): + """Get total participation data by attendance type for meetings timeline chart. + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ # Get registration status counts, aggregated by ticket types registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) queryset = ( @@ -299,12 +449,26 @@ def get_data_for_meetings(): return sorted_meetings, datasets def meetings_timeline(request, stats_type='country', top_n=10): + """Render the meetings timeline page with participation statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics ('country' or 'total'). + top_n: Number of top items to show (for country stats). + + Returns: + Rendered response for the meetings timeline template. + """ if stats_type == 'total': total_labels, total_data_sets = get_data_for_meetings() + elif stats_type == 'affiliation': + top_n = 20 # For affiliations we can have more entries, so show more by default + total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n) + in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(top_n, attendance_type='onsite') elif stats_type == 'country': - total_labels, total_data_sets = get_country_data_for_meetings(10) - in_person_labels, in_person_data_sets = get_country_data_for_meetings(10, attendance_type='onsite') + total_labels, total_data_sets = get_country_data_for_meetings(top_n) + in_person_labels, in_person_data_sets = get_country_data_for_meetings(top_n, attendance_type='onsite') else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -325,7 +489,7 @@ def meetings_timeline(request, stats_type='country', top_n=10): # Prepare the list of choice buttons for the template possible_stats_types = [ -# TODO ("affiliation", "Per affiliation", urlreverse(meetings_timeline, kwargs={'stats_type': 'affiliation'})), + ("affiliation", "Per affiliation", urlreverse(meetings_timeline, kwargs={'stats_type': 'affiliation'})), ("country", "Per country", urlreverse(meetings_timeline, kwargs={'stats_type': 'country'})), ("total", "Total", urlreverse(meetings_timeline, kwargs={'stats_type': 'total'})), ] @@ -351,6 +515,16 @@ def meetings_timeline(request, stats_type='country', top_n=10): def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendance_type=None): + """Get affiliation participation data for a specific meeting. + + Args: + meeting_number: The meeting number. + minimum_required: Minimum count to include in main data (others go to 'Other'). + attendance_type: Optional filter for attendance type. + + Returns: + Tuple of (labels, data, total) for chart display. + """ # Get registration status details registrations = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: @@ -384,6 +558,16 @@ def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendanc return labels, data, total def get_data_for_meeting(meeting_number, minimum_required, attendance_type=None): + """Get country participation data for a specific meeting. + + Args: + meeting_number: The meeting number. + minimum_required: Minimum count to include in main data (others go to 'Other'). + attendance_type: Optional filter for attendance type. + + Returns: + Tuple of (labels, data, total) for chart display. + """ # Get registration status counts, aggregated by country_code registration_counts = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: @@ -409,6 +593,16 @@ def get_data_for_meeting(meeting_number, minimum_required, attendance_type=None) return labels, data, total def meeting_stats(request, meeting_number=None, stats_type='country'): + """Render statistics for a specific meeting. + + Args: + request: The HTTP request object. + meeting_number: The meeting number (defaults to current). + stats_type: Type of statistics ('country' or 'affiliation'). + + Returns: + Rendered response for the meeting stats template. + """ current_meeting = get_current_ietf_meeting_num() if meeting_number is None: @@ -480,6 +674,19 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): @login_required def review_stats(request, stats_type=None, acronym=None): + """Render review statistics page with tables and charts for review assignments. + + Shows completion status, results, assignment states, and time series data. + Supports both team-level and reviewer-level views with filtering options. + + Args: + request: The HTTP request object. + stats_type: Type of statistics ('completion', 'results', 'states', 'time'). + acronym: Team acronym for reviewer-level view (None for team view). + + Returns: + Rendered response for the review stats template. + """ # This view is a bit complex because we want to show a bunch of # tables with various filtering options, and both a team overview # and a reviewers-within-team overview - and a time series chart. From 582a9b75f0c23bbe1028ed9c2933250fb6c1bedc Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 26 Mar 2026 15:59:52 +0000 Subject: [PATCH 023/181] Expanding the test coverage to affiliation timeline --- ietf/stats/tests.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 7be59923a1d..1766af34f06 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -5,7 +5,9 @@ import calendar import json import datetime +from xml.sax.saxutils import unescape +from botocore import response from pyquery import PyQuery import debug # pyflakes:ignore @@ -45,8 +47,8 @@ def test_meeting_stats(self): RegistrationFactory(meeting=meeting124, with_ticket={'attendance_type_id': 'onsite'}, attended=False) RegistrationFactory.create_batch(14, meeting=meeting124, with_ticket={'attendance_type_id': 'remote'}, attended=True) RegistrationFactory(meeting=meeting124, with_ticket={'attendance_type_id': 'remote'}, attended=False) - RegistrationFactory.create_batch(15, meeting=meeting125, with_ticket={'attendance_type_id': 'onsite'}, attended=False) - RegistrationFactory.create_batch(25, meeting=meeting125, with_ticket={'attendance_type_id': 'onsite'}, attended=False) + RegistrationFactory.create_batch(15, meeting=meeting125, affiliation='Test LLC', with_ticket={'attendance_type_id': 'remote'}, attended=False) + RegistrationFactory.create_batch(25, meeting=meeting125, affiliation='Example, Ltd', with_ticket={'attendance_type_id': 'onsite'}, attended=False) # Test the meeting specific statitistics per affiliation and per country r = self.client.get(urlreverse(ietf.stats.views.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) @@ -66,7 +68,14 @@ def test_meeting_stats(self): self.assertContains(r, "/stats/meeting/124/country") self.assertContains(r, "/stats/meeting/125/country") self.assertContains(r, "This page provides a timeline of meeting registrations by country") - # Test the meetings timeline (globally) + # Test the meetings timeline per affiliation + r = self.client.get(urlreverse(ietf.stats.views.meetings_timeline, kwargs={"stats_type": "affiliation"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "/stats/meeting/124/affiliation") + self.assertContains(r, "/stats/meeting/125/affiliation") + self.assertContains(r, "This page provides a timeline of meeting registrations by affiliation") + self.assertContains(r, '\\u0022Example\\u0022, \\u0022data\\u0022: [0, 25]') + # Test the global meetings timeline r = self.client.get(urlreverse(ietf.stats.views.meetings_timeline, kwargs={"stats_type": "total"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meeting/124/country") From 46c090157cdfd30072e2dcda8f7b18fc6484ca8b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 26 Mar 2026 16:58:09 +0000 Subject: [PATCH 024/181] Remove unused botocore (unsure how it was added though) --- ietf/stats/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 1766af34f06..1881a87fdbb 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -7,7 +7,6 @@ import datetime from xml.sax.saxutils import unescape -from botocore import response from pyquery import PyQuery import debug # pyflakes:ignore From 76f9b6a8716819f76485f400e546bc8f9644d8d9 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 26 Mar 2026 20:49:43 +0000 Subject: [PATCH 025/181] Remove unused package --- ietf/stats/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 1881a87fdbb..6dd33d3d3bb 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -5,7 +5,6 @@ import calendar import json import datetime -from xml.sax.saxutils import unescape from pyquery import PyQuery From eeb28c6f99001d28d10f852caf7bec2bf50bd0c3 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 27 Mar 2026 12:06:25 +0000 Subject: [PATCH 026/181] Code clean-up, add pan & zoom on timelines --- ietf/stats/views.py | 88 +++------------------ ietf/templates/stats/meetings_timeline.html | 40 ++++++++-- 2 files changed, 47 insertions(+), 81 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 7c0dc01e99a..512764ec0e1 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -31,6 +31,13 @@ from ietf.utils.timezone import date_today, DEADLINE_TZINFO from ietf.meeting.helpers import get_current_ietf_meeting_num, get_ietf_meeting +# Color palette for lines +colors = [ + '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', + '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', + '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', + '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', +] def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" @@ -105,66 +112,11 @@ def add_url_to_choices(choices, url_builder): """ return [ (slug, label, url_builder(slug)) for slug, label in choices] -def put_into_bin(value, bin_size): - if value is None: - return (0, '') - - v = (value // bin_size) * bin_size - return (v, "{} - {}".format(v, v + bin_size - 1)) - -def prune_unknown_bin_with_known(bins): - # remove from the unknown bin all authors within the - # named/known bins - all_known = { n for b, names in bins.items() if b for n in names } - bins[""] = [name for name in bins[""] if name not in all_known] - if not bins[""]: - del bins[""] - -def count_bins(bins): - """Count the total number of unique names across all non-empty bins. - - Returns: - The count of unique names. - """ - return len({ n for b, names in bins.items() if b for n in names }) - -def add_labeled_top_series_from_bins(chart_data, bins, limit): - """Add top series data to chart_data from bins. - - Take bins on the form (x, label): [name1, name2, ...], figure out - how many there are per label, take the overall top ones and put - them into sorted series like [(x1, len(names1)), (x2, len(names2)), ...]. - - Args: - chart_data: List to append series data to. - bins: Dictionary with keys (x, label) and values as lists of names. - limit: Maximum number of top labels to include. - """ - aggregated_bins = defaultdict(set) - xs = set() - for (x, label), names in bins.items(): - xs.add(x) - aggregated_bins[label].update(names) - - xs = list(sorted(xs)) - - sorted_bins = sorted(aggregated_bins.items(), key=lambda t: len(t[1]), reverse=True) - top = [ label for label, names in list(sorted_bins)[:limit]] - - for label in top: - series_data = [] - - for x in xs: - names = bins.get((x, label), set()) - - series_data.append((x, len(names))) - - chart_data.append({ - "data": series_data, - "name": label - }) - def document_stats(request, stats_type=None): + # timeline per year, or per specific year: streams, affiliation, rfc vs I-D + # could also be time between individual/WG I-D to rfc publication/IESG ballot + # DISCUSS resolution time + # Humm also split by authors (affiliation) / documents (the rest) probably """Redirect to the stats index page. Deprecated view.""" return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -251,13 +203,6 @@ def get_affiliation_data_for_meetings(top_n, attendance_type=None): other_totals[m] += int(data_map[c].get(m, 0)) # ── Step 4: Build Chart.js datasets ── - # Color palette for lines - colors = [ - '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', - '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', - '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', - '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', - ] datasets = [] for idx, org in enumerate(top_orgs): @@ -349,13 +294,6 @@ def get_country_data_for_meetings(top_n, attendance_type=None): other_totals[m] += int(data_map[c].get(m, 0)) # ── Step 4: Build Chart.js datasets ── - # Color palette for lines - colors = [ - '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', - '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', - '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', - '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', - ] datasets = [] for idx, country in enumerate(top_countries): @@ -513,7 +451,6 @@ def meetings_timeline(request, stats_type='country', top_n=10): "in_person_chart_data": in_person_chart_data, }) - def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendance_type=None): """Get affiliation participation data for a specific meeting. @@ -525,7 +462,7 @@ def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendanc Returns: Tuple of (labels, data, total) for chart display. """ - # Get registration status details + # Get registration status details registrations = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: registrations = registrations.filter(tickets__attendance_type=attendance_type) @@ -621,7 +558,6 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - # Serialize to JSON for safe injection into the template total_chart_data = json.dumps({ 'labels': total_labels, diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 27c4dc1688e..a0303e0c313 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -5,7 +5,8 @@ {% block pagehead %} - + + {% endblock %} {% block content %} {% origin %} @@ -42,6 +43,8 @@

    {% else %} This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} categories. {% endif %} + Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + or click to reset panning/zooming.

    @@ -80,7 +83,7 @@

    In Person Registrations by {{ stats_type|title }}

    function displayChart(id, data) { const ctx = document.getElementById(id).getContext('2d'); - new Chart(ctx, { + return new Chart(ctx, { type: 'line', // Change to 'doughnut' for a donut chart data: data, options: { @@ -118,13 +121,40 @@

    In Person Registrations by {{ stats_type|title }}

    } } }, + zoom: { + zoom: { + wheel: { enabled: true }, // scroll to zoom + pinch: { enabled: true }, // pinch on mobile + drag: { enabled: true }, // drag to select range + mode: 'xy', // zoom X-axis and Y-axis + }, + pan: { + enabled: true, + mode: 'xy', // pan X-axis and Y-axis + }, + }, } } }); } - displayChart('totalRegistrationChart', totalChartData) ; - if (inPersonChartData != null) - displayChart('inPersonRegistrationChart', inPersonChartData) ; + const totalChart = displayChart('totalRegistrationChart', totalChartData) ; + if (inPersonChartData != null) { + inPersonChart = displayChart('inPersonRegistrationChart', inPersonChartData) ; + } + document.addEventListener('keydown', (event) => { + if (event.key === 'Escape') { + totalChart.resetZoom(); + if (inPersonChart != null) { + inPersonChart.resetZoom(); + } + } + }); + document.getElementById('resetButton').addEventListener('click', () => { + totalChart.resetZoom(); + if (inPersonChart != null) { + inPersonChart.resetZoom(); + } + }); {% endblock %} \ No newline at end of file From 1d1c209dd27a0e1576722f0fe907f4abe2a33980 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 27 Mar 2026 12:46:50 +0000 Subject: [PATCH 027/181] Fix button type --- ietf/templates/stats/meetings_timeline.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index a0303e0c313..e89eae51968 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -44,7 +44,7 @@

    This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} categories. {% endif %} Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC - or click to reset panning/zooming. + or click to reset panning/zooming.

    From 27e77d2fafc12a12a503268c95c0614df45bdd29 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 1 Apr 2026 11:23:30 +0000 Subject: [PATCH 028/181] Very first draft --- ietf/stats/urls.py | 3 +- ietf/stats/views.py | 180 ++++++++++++++++++- ietf/templates/base/menu.html | 4 +- ietf/templates/stats/documents_timeline.html | 120 +++++++++++++ ietf/templates/stats/index.html | 2 +- 5 files changed, 303 insertions(+), 6 deletions(-) create mode 100644 ietf/templates/stats/documents_timeline.html diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 01b8758c840..4566ef007b5 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -9,7 +9,8 @@ urlpatterns = [ url(r"^$", views.stats_index), - url(r"^document/(?:(?Pauthors|pages|words|format|formlang|author/(?:documents|affiliation|country|continent|citations|hindex)|yearly/(?:affiliation|country|continent))/)?$", views.document_stats), + url(r"^document/(?Pdraft|rfc|all)/(?Pcountry|affiliation|stream)/$", views.documents_timeline), + url(r"^document/authors/(?:(?Paffiliation|country)/)?$", views.authors_timeline), url(r"^knowncountries/$", views.known_countries_list), url(r"^meeting/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 512764ec0e1..b7bb48758f4 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -14,6 +14,7 @@ from django.shortcuts import render from django.urls import reverse as urlreverse from django.db.models import Count +from django.db.models.functions import ExtractYear import debug # pyflakes:ignore @@ -26,6 +27,7 @@ from ietf.person.models import Person from ietf.name.models import ReviewResultName, CountryName, ReviewAssignmentStateName from ietf.meeting.models import Registration +from ietf.doc.models import Document, DocumentAuthor from ietf.ietfauth.utils import has_role from ietf.utils.response import permission_denied from ietf.utils.timezone import date_today, DEADLINE_TZINFO @@ -112,12 +114,22 @@ def add_url_to_choices(choices, url_builder): """ return [ (slug, label, url_builder(slug)) for slug, label in choices] -def document_stats(request, stats_type=None): +def old_document_stats(request, stats_type=None): # timeline per year, or per specific year: streams, affiliation, rfc vs I-D # could also be time between individual/WG I-D to rfc publication/IESG ballot # DISCUSS resolution time # Humm also split by authors (affiliation) / documents (the rest) probably """Redirect to the stats index page. Deprecated view.""" + print("Deprecated view: redirecting to stats index") + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + +def authors_timeline(request, stats_type=None): + # timeline per year, or per specific year: streams, affiliation, rfc vs I-D + # could also be time between individual/WG I-D to rfc publication/IESG ballot + # DISCUSS resolution time + # Humm also split by authors (affiliation) / documents (the rest) probably + """Redirect to the stats index page. Deprecated view.""" + print("Deprecated view: redirecting to stats index") return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) def known_countries_list(request, stats_type=None, acronym=None): @@ -143,6 +155,7 @@ def canonicalize_affiliation(affiliation): """ if not affiliation or affiliation.lower() in ('n/a', 'none', 'unspecified'): return None + affiliation = affiliation.strip() for suffix in ('ab', 'ag', 'corp', 'corp.', 'corporation', 'gmbh', 'inc.', 'inc', 'international pte ltd', 'llc', 'ltd', 'ltd.', 'private limited', 'pty ltd', 'pvt ltd'): if affiliation.lower().endswith(', ' + suffix): affiliation = affiliation[:-(len(suffix)+2)] @@ -155,6 +168,169 @@ def canonicalize_affiliation(affiliation): affiliation = prefix return affiliation.title() +def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): + if doc_type != 'all': + queryset = DocumentAuthor.objects.filter(document__type_id=doc_type) + else: + queryset = DocumentAuthor.objects.all() + queryset = ( + queryset + .select_related('person', 'document') + .filter(document__stream__isnull=False) + ) + +# ── Step 1: Collect all meetings and tickets totals ── + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) # {year: {stream: count}} + + for row in queryset: + year = row['year'] + group = row[group_by] + if group_by == 'country': + if len(group) != 2 : + group = '??' + elif group_by == 'affiliation': + group = canonicalize_affiliation(group) + + years_set.add(year) + documents_totals[group] += 1 + data_map[year][group] = data_map[year].get(group, 0) + 1 + + # ── Step 2: Sort years numerically rather than alphabetically ── + years_set = sorted(years_set) + # group_types = documents_totals.keys() + + + # ── Step 3: Get top N ── + top_groups = sorted( + documents_totals.keys(), + key=lambda c: documents_totals[c], + reverse=True + )[:top_n] + non_top_groups = documents_totals.keys() - top_groups + other_totals = defaultdict(int) + for m in years_set: + other_totals[m] = 0 + for g in non_top_groups: + other_totals[m] += int(data_map[g].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for idx, group in enumerate(top_groups): + color = colors[idx % len(colors)] + datasets.append({ + 'label': group, + 'data': [data_map[year].get(group, 0) for year in years_set], + 'borderColor': color, + 'backgroundColor': color + '99', # 60% opacity fill + 'fill': False, + 'tension': 0.0, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + return years_set, datasets + +def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): + if doc_type != 'all': + queryset = Document.objects.filter(type_id=doc_type) + else: + queryset = Document.objects.all() + queryset = ( + queryset + .filter(stream__isnull=False) + .annotate(year=ExtractYear('time')) + .values('year', group_by) + .annotate(count=Count('id')) + .order_by('year') + ) + +# ── Step 1: Collect all meetings and tickets totals ── + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) # {year: {stream: count}} + + for row in queryset: + year = row['year'] + group = row[group_by] + count = row['count'] + + years_set.add(year) + documents_totals[group] += count + data_map[year][group] = count + + # ── Step 2: Sort years numerically rather than alphabetically ── + years_set = sorted(years_set) + group_types = documents_totals.keys() + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for idx, group in enumerate(group_types): + color = colors[idx % len(colors)] + datasets.append({ + 'label': group, + 'data': [data_map[year].get(group, 0) for year in years_set], + 'borderColor': color, + 'backgroundColor': color + '99', # 60% opacity fill + 'fill': True, + 'tension': 0.0, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + return years_set, datasets + +def documents_timeline(request, doc_type='all', group_by='stream', top_n=10): + """Render the documents timeline page with document statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics. + top_n: Number of top items to show (for country stats). + + Returns: + Rendered response for the documents timeline template. + """ + + if group_by == 'affiliation': + total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'affiliation', top_n * 2) + elif group_by == 'country': + total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'country', top_n) + elif group_by == 'stream': + total_labels, total_data_sets = get_stream_data_for_documents(doc_type, 'stream__name') + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + # Serialize to JSON for safe injection into the template + chart_data = json.dumps({ + 'labels': total_labels, + 'datasets': total_data_sets, + }) + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("all documents", "All documents", urlreverse(documents_timeline, kwargs={'doc_type': 'all', 'group_by': group_by})), + ("draft", "Drafts", urlreverse(documents_timeline, kwargs={'doc_type': 'draft', 'group_by': group_by})), + ("RFC", "RFC", urlreverse(documents_timeline, kwargs={'doc_type': 'rfc', 'group_by': group_by})), + ] + + return render(request, "stats/documents_timeline.html", { + "top_n": top_n, + "possible_docs_types": possible_docs_types, + "doc_type": doc_type, + "group_by": group_by, + "chart_data": chart_data, + }) + def get_affiliation_data_for_meetings(top_n, attendance_type=None): """Get affiliation participation data for meetings timeline chart. @@ -189,7 +365,7 @@ def get_affiliation_data_for_meetings(top_n, attendance_type=None): # ── Step 2: Sort meetings numerically rather than alphabetically ── sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - # ── Step 3: Get top N countries ── + # ── Step 3: Get top N ── top_orgs = sorted( org_totals.keys(), key=lambda c: org_totals[c], diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 43ca025e28b..60ed2452cd6 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -435,8 +435,8 @@

    From 7e964e91440c4f278fb32ad400c55aef7b92a9c0 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 2 Apr 2026 16:34:02 +0000 Subject: [PATCH 029/181] Use pub_date() also for streams stats --- ietf/stats/views.py | 110 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 89 insertions(+), 21 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index b7bb48758f4..db8972e6db9 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -2,10 +2,12 @@ # -*- coding: utf-8 -*- +from ast import pattern import calendar import datetime import itertools import json +import re import dateutil.relativedelta from collections import defaultdict @@ -29,6 +31,7 @@ from ietf.meeting.models import Registration from ietf.doc.models import Document, DocumentAuthor from ietf.ietfauth.utils import has_role +from ietf.utils import text from ietf.utils.response import permission_denied from ietf.utils.timezone import date_today, DEADLINE_TZINFO from ietf.meeting.helpers import get_current_ietf_meeting_num, get_ietf_meeting @@ -144,6 +147,51 @@ def known_countries_list(request, stats_type=None, acronym=None): "countries": countries, }) +def canonicalize_country(country): + if country is None or country.strip() == '': + return 'Unspecified' + country = country.strip().lower() + if country in ('china', 'chinese', 'p.r. china', 'prc', 'cn', 'p.r.china', 'p.r. china') or country.endswith(' china'): + return 'China' + elif country in ('uk', 'u.k.', 'gb', 'united kingdom', 'england', 'scotland', 'wales') or country.endswith(' uk'): + return 'United Kingdom' + elif country in ('germany', 'deutschland', 'de') or country.endswith(' germany'): + return 'Germany' + elif country in ('the netherlands', 'nederland', 'holland', 'nl'): + return 'Netherlands' + elif country in ('france', 'fr'): + return 'France' + elif country in ('belgium', 'be') or country.endswith(' belgium'): + return 'Belgium' + elif country in ('sweden', 'se') or country.endswith(' sweden'): + return 'Sweden' + elif country in ('new zealand', 'nz') or country.endswith(' new zealand'): + return 'New Zealand' + elif country in ('canada', 'ca'): + return 'Canada' + elif country in ('india', 'in') or country.endswith(' india'): + return 'India' + elif country in ('australia', 'au'): + return 'Australia' + elif country in ('japan', 'jp'): + return 'Japan' + elif country in ('italy', 'it'): + return 'Italy' + elif country in ('finland', 'finlandia', 'suomi', 'fi') or country.endswith(' finland'): + return 'Finland' + elif country in ('russia', 'ru', 'россия', 'российская федерация', 'russian federation', 'ussr', 'soviet union', 'u.s.s.r.'): + return 'Russia' + elif country in ('republic of korea', 'south korea', 'kr', 'korea'): + return 'South Korea' + # Should do a regex match here instead of hardcoding all the variations, but for now this is good enough + elif ( + country in ('usa', 'united states', 'united states of america', 'us', 'u.s.', 'u.s.a.', 'u.s.a') or + country.endswith(' usa') or + re.match(r'^([a-z\s\.\-]+),*\s*([a-z]{2}),*\s+(\d{5}(-\d{4})?)$', country) + ): + return 'USA' + return country.title() + def canonicalize_affiliation(affiliation): """Canonicalize an affiliation string by removing common suffixes and standardizing prefixes. @@ -177,6 +225,7 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n queryset .select_related('person', 'document') .filter(document__stream__isnull=False) + .all() ) # ── Step 1: Collect all meetings and tickets totals ── @@ -185,13 +234,21 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n data_map = defaultdict(dict) # {year: {stream: count}} for row in queryset: - year = row['year'] - group = row[group_by] +# print(row) +# print(row.document) + year = row.document.pub_date().year if row.document.pub_date() else None +# print(year) + group = getattr(row, group_by) if group_by == 'country': - if len(group) != 2 : - group = '??' - elif group_by == 'affiliation': - group = canonicalize_affiliation(group) + if len(group) == 0 : + group = 'Unspecified' + else: + group = canonicalize_country(group) + if group_by == 'affiliation': + if len(group) == 0 : + group = 'Unspecified' + else: + group = canonicalize_affiliation(group) years_set.add(year) documents_totals[group] += 1 @@ -201,8 +258,7 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n years_set = sorted(years_set) # group_types = documents_totals.keys() - - # ── Step 3: Get top N ── + # ── Step 3: Get top N and others ── top_groups = sorted( documents_totals.keys(), key=lambda c: documents_totals[c], @@ -210,10 +266,10 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n )[:top_n] non_top_groups = documents_totals.keys() - top_groups other_totals = defaultdict(int) - for m in years_set: - other_totals[m] = 0 + for y in years_set: + other_totals[y] = 0 for g in non_top_groups: - other_totals[m] += int(data_map[g].get(m, 0)) + other_totals[y] += int(data_map[y].get(g, 0)) # ── Step 4: Build Chart.js datasets ── @@ -234,6 +290,20 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n 'borderWidth': 2, }) + # -- Step 4.bis handle the other -- + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(year, 0) for year in years_set], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.0, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + return years_set, datasets def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): @@ -244,10 +314,6 @@ def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): queryset = ( queryset .filter(stream__isnull=False) - .annotate(year=ExtractYear('time')) - .values('year', group_by) - .annotate(count=Count('id')) - .order_by('year') ) # ── Step 1: Collect all meetings and tickets totals ── @@ -256,13 +322,15 @@ def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): data_map = defaultdict(dict) # {year: {stream: count}} for row in queryset: - year = row['year'] - group = row[group_by] - count = row['count'] + if not row.pub_date(): + continue + year = row.pub_date().year + if group_by == 'stream__name': + group = row.stream.name years_set.add(year) - documents_totals[group] += count - data_map[year][group] = count + documents_totals[group] += 1 + data_map[year][group] = data_map[year].get(group, 0) + 1 # ── Step 2: Sort years numerically rather than alphabetically ── years_set = sorted(years_set) @@ -304,7 +372,7 @@ def documents_timeline(request, doc_type='all', group_by='stream', top_n=10): if group_by == 'affiliation': total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'affiliation', top_n * 2) elif group_by == 'country': - total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'country', top_n) + total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'country', top_n * 4) elif group_by == 'stream': total_labels, total_data_sets = get_stream_data_for_documents(doc_type, 'stream__name') else: From 9018d68e47fc1dbe01baf7cad03fdf8da26e48ff Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 28 Apr 2026 14:05:30 +0000 Subject: [PATCH 030/181] Don't fill the graphics --- ietf/stats/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index db8972e6db9..57ed4bd9c2a 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -346,7 +346,7 @@ def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): 'data': [data_map[year].get(group, 0) for year in years_set], 'borderColor': color, 'backgroundColor': color + '99', # 60% opacity fill - 'fill': True, + 'fill': False, 'tension': 0.0, 'pointColor': color, 'pointBackgroundColor': color, From 7f7c12f81dc0863f06e776895279fda5a8b6beae Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 30 Apr 2026 16:18:42 +0000 Subject: [PATCH 031/181] Also display active 'All' button --- ietf/stats/views.py | 4 +++- ietf/templates/stats/meetings_timeline.html | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 45a7ebd6718..c2b6a3af070 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -708,7 +708,9 @@ def meetings_timeline(request, stats_type='country'): else: possible_stats_type = stats_type - possible_meeting_numbers = [(int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), + possible_meeting_numbers = [ + ('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type})), + (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), (int(current_meeting), urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting), 'stats_type': possible_stats_type})), (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)+1, 'stats_type': possible_stats_type}))] diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 65fb4e09c04..97c259eb1c0 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -35,7 +35,7 @@

    {% for num, url in possible_meeting_numbers %} {{ num }} From 9d6350c0f1f6d4ad6ed11c024ea746d1a214447d Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 30 Apr 2026 21:27:37 +0000 Subject: [PATCH 032/181] Consistent color scheme for country/affiliation --- ietf/static/js/meeting_stats.js | 6 ------ ietf/stats/views.py | 24 ++++++++++++++++++------ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/ietf/static/js/meeting_stats.js b/ietf/static/js/meeting_stats.js index 70b18a0f03e..c105973911b 100644 --- a/ietf/static/js/meeting_stats.js +++ b/ietf/static/js/meeting_stats.js @@ -1,8 +1,5 @@ // Copyright The IETF Trust 2026, All Rights Reserved document.addEventListener('DOMContentLoaded', () => { - // Need to use autocolors plug-in else all slices are gray... - const autocolors = window['chartjs-plugin-autocolors'] - Chart.register(autocolors) // ── Safely parse JSON data injected from Django view ── const totalChartData = JSON.parse(document.getElementById('total-chart-data').textContent) const inPersonChartData = JSON.parse(document.getElementById('in-person-chart-data').textContent) @@ -15,9 +12,6 @@ document.addEventListener('DOMContentLoaded', () => { options: { responsive: true, plugins: { - autocolors: { - mode: 'data' // Required for Pie charts to color individual slices - }, legend: { position: 'bottom', labels: { diff --git a/ietf/stats/views.py b/ietf/stats/views.py index c2b6a3af070..2a6b7ad8c83 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -7,6 +7,7 @@ import itertools import json import re +import hashlib import dateutil.relativedelta from collections import defaultdict @@ -44,6 +45,15 @@ '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', ] +def color_from_hash(s): + if s == 'Unspecified': + return "#B0B0B0 " + if s == 'Other': + return "#E0E0E0" + full_hash = hashlib.md5(s.encode('utf-8')).digest() + hash = int.from_bytes(full_hash[:2]) + return colors[hash % len(colors)] + def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" current_meeting = get_current_ietf_meeting_num() @@ -454,7 +464,7 @@ def get_affiliation_data_for_meetings(attendance_type=None): datasets = [] for idx, org in enumerate(top_orgs): - color = colors[idx % len(colors)] + color = color_from_hash(org) datasets.append({ 'label': org, 'data': [data_map[org].get(m, 0) for m in sorted_meetings], @@ -553,7 +563,7 @@ def get_country_data_for_meetings(attendance_type=None): datasets = [] for idx, country in enumerate(top_countries): - color = colors[idx % len(colors)] + color = color_from_hash(country) datasets.append({ 'label': country, 'data': [data_map[country].get(m, 0) for m in sorted_meetings], @@ -633,7 +643,7 @@ def get_data_for_meetings(): datasets = [] for idx, ticket_type in enumerate(ticket_types): - color = colors[idx % len(colors)] + color = color_from_hash(ticket_type) datasets.append({ 'label': ticket_type, 'data': [data_map[ticket_type].get(m, 0) for m in sorted_meetings], @@ -766,7 +776,7 @@ def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendanc return labels, data, total -def get_data_for_meeting(meeting_number, minimum_required, attendance_type=None): +def get_country_data_for_meeting(meeting_number, minimum_required, attendance_type=None): """Get country participation data for a specific meeting. Args: @@ -825,8 +835,8 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') elif stats_type == 'country': minimum_required = 10 - total_labels, total_data, total_total = get_data_for_meeting(meeting_number, minimum_required) - in_person_labels, in_person_data, in_person_total = get_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') + total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, minimum_required) + in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -835,6 +845,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): 'datasets': [{ 'label': 'Total Registrations by ' + stats_type, 'data': total_data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in total_labels], 'borderColor': '#ffffff', 'borderWidth': 2, }] @@ -844,6 +855,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): 'datasets': [{ 'label': 'In Person Registrations by ' + stats_type, 'data': in_person_data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in in_person_labels], 'borderColor': '#ffffff', 'borderWidth': 2, }] From 48274509b8967dde11a8648da82488f84fb93fe7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 3 May 2026 11:29:02 +0000 Subject: [PATCH 033/181] No need for autocolor anymore --- ietf/static/js/meeting_stats.js | 1 - package.json | 1 - 2 files changed, 2 deletions(-) diff --git a/ietf/static/js/meeting_stats.js b/ietf/static/js/meeting_stats.js index 4d857923742..5944f198e28 100644 --- a/ietf/static/js/meeting_stats.js +++ b/ietf/static/js/meeting_stats.js @@ -2,7 +2,6 @@ import Chart from 'chart.js/auto' document.addEventListener('DOMContentLoaded', () => { - Chart.register(autocolors) // ── Safely parse JSON data injected from Django view ── const totalChartData = JSON.parse(document.getElementById('total-chart-data').textContent) const inPersonChartData = JSON.parse(document.getElementById('in-person-chart-data').textContent) diff --git a/package.json b/package.json index 29ead19d239..dadd95d1872 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "browser-fs-access": "0.35.0", "caniuse-lite": "1.0.30001603", "chart.js": "^4.5.1", - "chartjs-plugin-autocolors": "0.3.1", "chartjs-plugin-zoom": "2.2.0", "d3": "7.9.0", "file-saver": "2.0.5", From b8adc9c4b49230b5d370955b90e42d1c96e26c9b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 3 May 2026 11:39:05 +0000 Subject: [PATCH 034/181] More explanations about chart.js --- ietf/templates/stats/meetings_timeline.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index aabdbafe267..651853181da 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -44,7 +44,8 @@

    {% else %} This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} categories. {% endif %} - Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Category can be + removed from the graphic by clicking on the legend label under the graph. Press ESC or click to reset panning/zooming.

    From 66ba85b9d4ccde5e85c0a31ff4fda46372179b26 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 3 May 2026 11:39:30 +0000 Subject: [PATCH 035/181] More colors to reduce collision --- ietf/stats/views.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 2a6b7ad8c83..e2912d296a7 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -43,6 +43,11 @@ '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', + # New additions — same vibrant/saturated theme + '#A4C639', '#FF7043', '#26A69A', '#AB47BC', '#42A5F5', + '#EC407A', '#FFA726', '#66BB6A', '#5E35B1', '#29B6F6', + '#D4AC0D', '#8E44AD', '#16A085', '#C0392B', '#2980B9', + '#E67E22', '#27AE60', '#CB4335', '#1F618D', '#AF7AC5', ] def color_from_hash(s): From d2df7947ba87ec2aed92da4464e0bff3201c3479 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 3 May 2026 13:08:39 +0000 Subject: [PATCH 036/181] Split authors/documents stats --- ietf/stats/urls.py | 4 ++-- ietf/templates/base/menu.html | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 4566ef007b5..bfadaab72ba 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -9,8 +9,8 @@ urlpatterns = [ url(r"^$", views.stats_index), - url(r"^document/(?Pdraft|rfc|all)/(?Pcountry|affiliation|stream)/$", views.documents_timeline), - url(r"^document/authors/(?:(?Paffiliation|country)/)?$", views.authors_timeline), + url(r"^authors/(?Pdraft|rfc|all)/(?Paffiliation|country)/$", views.authors_timeline), + url(r"^document/(?Pdraft|rfc|all)/(?Ptype|stream)/$", views.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), url(r"^meeting/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 60ed2452cd6..5a4d29dd100 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -435,7 +435,12 @@

    - This page provides a timeline of IETF {{ doc_type }} {{ objects }} by {{ stats_type }}. + This page provides a timeline of IETF {{ doc_type|upper }} documents {{ objects }} by {{ stats_type }}. Only the top-{{ top_n }} categories are listed, + the remaining ones are aggregated into 'Other'. The year is the actual publication date for a RFC and the + submission date of the latest revision for a draft (i.e., only the authors of latest revision).

    From d851e594b01238a3629b677c6c5de58fb3aa3f8d Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 4 May 2026 07:20:01 +0000 Subject: [PATCH 040/181] Add RFC category and draft intended status --- ietf/stats/urls.py | 4 +- ietf/stats/views.py | 69 ++++++++++++++++++++++------------- ietf/templates/base/menu.html | 2 +- 3 files changed, 47 insertions(+), 28 deletions(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index bfadaab72ba..6b04786335d 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -9,8 +9,8 @@ urlpatterns = [ url(r"^$", views.stats_index), - url(r"^authors/(?Pdraft|rfc|all)/(?Paffiliation|country)/$", views.authors_timeline), - url(r"^document/(?Pdraft|rfc|all)/(?Ptype|stream)/$", views.documents_timeline), + url(r"^authors/(?Pdraft|wg-draft|rfc|all)/(?Paffiliation|country)/$", views.authors_timeline), + url(r"^document/(?Pdraft|rfc)/(?Plevel|stream)/$", views.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), url(r"^meeting/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 48b37077731..5e5e4107efb 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -17,8 +17,7 @@ from django.http import HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse -from django.db.models import Count -from django.db.models.functions import ExtractYear +from django.db.models import Count, Q import debug # pyflakes:ignore @@ -147,10 +146,15 @@ def known_countries_list(request, stats_type=None, acronym=None): def canonicalize_country(country): if country is None or country.strip() == '': return 'Unspecified' + # TODO use a cache system (?) and + # from ietf.stats.models import CountryAlias + # CountryAlias.alias = 'Belgique' (in French!) CountryAlias = 'BE' + # CountryName.slug = 'BE' CountryName.name = 'Belgium' + # To only use official names ? country = country.strip().lower() - if country in ('china', 'chinese', 'p.r. china', 'prc', 'cn', 'p.r.china', 'p.r. china') or country.endswith(' china'): + if country in ('china', 'chinese', 'p.r. china', 'prc', 'cn', 'p.r.china', 'p.r. china') or country.endswith(' china') or country.endswith(' p.r.china'): return 'China' - elif country in ('uk', 'u.k.', 'gb', 'united kingdom', 'england', 'scotland', 'wales') or country.endswith(' uk'): + elif country in ('uk', 'u.k.', 'gb', 'united kingdom', 'england', 'great britain', 'scotland', 'wales') or country.endswith(' uk'): return 'United Kingdom' elif country in ('germany', 'deutschland', 'de') or country.endswith(' germany'): return 'Germany' @@ -214,16 +218,18 @@ def canonicalize_affiliation(affiliation): return affiliation.title() def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): - if doc_type != 'all': - queryset = DocumentAuthor.objects.filter(document__type_id=doc_type) - else: - queryset = DocumentAuthor.objects.all() + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(document__type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(document__type_id= 'draft') + filters &= Q(document__name__startswith='draft-ietf') queryset = ( - queryset + DocumentAuthor.objects .select_related('document') - .filter(document__stream__isnull=False, - document__name__startswith='draft-ietf-snac') - [0:10] + .filter(filters) + [0:100] # During development to go faster ) # ── Step 1: Collect all meetings and tickets totals ── @@ -232,7 +238,6 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n data_map = defaultdict(dict) # {year: {stream: count}} for row in queryset: - print(row.document.__dict__) if not row.document.pub_date(): continue year = row.document.pub_date().year @@ -272,7 +277,7 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n # ── Step 4: Build Chart.js datasets ── datasets = [] - for idx, group in enumerate(top_groups): + for group in top_groups: color = color_from_hash(group) datasets.append({ 'label': group, @@ -304,15 +309,15 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n return years_set, datasets -def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): +def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): if doc_type != 'all': queryset = Document.objects.filter(type_id=doc_type) else: queryset = Document.objects.all() - queryset = ( - queryset - .filter(stream__isnull=False) - ) + # queryset = ( + # queryset + # .filter(stream__isnull=False) + # ) # ── Step 1: Collect all meetings and tickets totals ── years_set = set() @@ -324,8 +329,14 @@ def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): continue year = row.pub_date().year if group_by == 'stream__name': - group = row.stream.name - + if row.stream is None: + group = 'Unspecified' + else: + group = row.stream.name + else: + group = getattr(row, group_by) + if group is None: + group = 'Unspecified' years_set.add(year) documents_totals[group] += 1 data_map[year][group] = data_map[year].get(group, 0) + 1 @@ -337,7 +348,7 @@ def get_stream_data_for_documents(doc_type = 'all', group_by = 'stream__name'): # ── Step 4: Build Chart.js datasets ── datasets = [] - for idx, group in enumerate(group_types): + for group in group_types: color = color_from_hash(group) datasets.append({ 'label': group, @@ -383,6 +394,7 @@ def authors_timeline(request, doc_type='all', stats_type='stream', top_n=20): possible_docs_types = [ ("all", "All documents", urlreverse(authors_timeline, kwargs={'doc_type': 'all', 'stats_type': stats_type})), ("draft", "Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), ] possible_stats_types = [ @@ -400,7 +412,7 @@ def authors_timeline(request, doc_type='all', stats_type='stream', top_n=20): "chart_data": chart_data, }) -def documents_timeline(request, doc_type='all', stats_type='stream', top_n=10): +def documents_timeline(request, doc_type='rfc', stats_type='level', top_n=10): """Render the documents timeline page with document statistics over time. Args: @@ -413,7 +425,11 @@ def documents_timeline(request, doc_type='all', stats_type='stream', top_n=10): """ if stats_type == 'stream': - total_labels, total_data_sets = get_stream_data_for_documents(doc_type, 'stream__name') + total_labels, total_data_sets = get_data_for_documents(doc_type, 'stream__name') + elif stats_type == 'level' and doc_type == 'draft': + total_labels, total_data_sets = get_data_for_documents(doc_type, 'intended_std_level_id') + elif stats_type == 'level' and doc_type == 'rfc': + total_labels, total_data_sets = get_data_for_documents(doc_type, 'std_level_id') else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -424,13 +440,16 @@ def documents_timeline(request, doc_type='all', stats_type='stream', top_n=10): # Prepare the list of choice buttons for the template possible_docs_types = [ - ("all", "All documents", urlreverse(documents_timeline, kwargs={'doc_type': 'all', 'stats_type': stats_type})), ("draft", "Drafts", urlreverse(documents_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), ("rfc", "RFC", urlreverse(documents_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), ] possible_stats_types = [ ("stream", "Streams", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), ] + if doc_type == 'draft': + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + elif doc_type == 'rfc': + possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) return render(request, "stats/documents_timeline.html", { "top_n": top_n, diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index e0e782164a4..6495690fc83 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -440,7 +440,7 @@

  • + href="{% url 'ietf.stats.views.documents_timeline' doc_type='rfc' stats_type='level' %}"> Documents
  • From e942fdc30bbd5755a8f193d9a29d126fe22269b8 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 4 May 2026 07:51:31 +0000 Subject: [PATCH 041/181] Support displaying WG stats --- ietf/stats/urls.py | 4 ++-- ietf/stats/views.py | 12 +++++++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 6b04786335d..4799b282b59 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -9,8 +9,8 @@ urlpatterns = [ url(r"^$", views.stats_index), - url(r"^authors/(?Pdraft|wg-draft|rfc|all)/(?Paffiliation|country)/$", views.authors_timeline), - url(r"^document/(?Pdraft|rfc)/(?Plevel|stream)/$", views.documents_timeline), + url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_timeline), + url(r"^document/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), url(r"^meeting/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 5e5e4107efb..11054526500 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -319,6 +319,8 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): # .filter(stream__isnull=False) # ) + # TODO add related() for stream and group ? + # ── Step 1: Collect all meetings and tickets totals ── years_set = set() documents_totals = defaultdict(int) @@ -332,7 +334,12 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): if row.stream is None: group = 'Unspecified' else: - group = row.stream.name + group = row.stream.name + elif group_by == 'group__name': + if row.group is None: + group = 'Unspecified' + else: + group = row.group.name else: group = getattr(row, group_by) if group is None: @@ -430,6 +437,8 @@ def documents_timeline(request, doc_type='rfc', stats_type='level', top_n=10): total_labels, total_data_sets = get_data_for_documents(doc_type, 'intended_std_level_id') elif stats_type == 'level' and doc_type == 'rfc': total_labels, total_data_sets = get_data_for_documents(doc_type, 'std_level_id') + elif stats_type == 'wg': + total_labels, total_data_sets = get_data_for_documents(doc_type, 'group__name') else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -445,6 +454,7 @@ def documents_timeline(request, doc_type='rfc', stats_type='level', top_n=10): ] possible_stats_types = [ ("stream", "Streams", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), + ("wg", "Working Groups", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), ] if doc_type == 'draft': possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) From 3b3989d826ba67f7cb8ec7eb7aa9cf3d6b51552a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 4 May 2026 08:41:59 +0000 Subject: [PATCH 042/181] Update since autocolor from chart.js was removed --- yarn.lock | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/yarn.lock b/yarn.lock index 47d675d6b9f..e86954d2d5e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2758,16 +2758,6 @@ browserlist@latest: languageName: node linkType: hard -"chartjs-plugin-autocolors@npm:0.3.1": - version: 0.3.1 - resolution: "chartjs-plugin-autocolors@npm:0.3.1" - peerDependencies: - "@kurkle/color": ^0.3.1 - chart.js: ">=2" - checksum: de4f87b5bb3e042aa1d3de3886425bbd2340a55ca455b645569d0def602079833182ef214e205ff4466fb5ab1e708761cf37eb51ab3cd622284242c05ed94128 - languageName: node - linkType: hard - "chartjs-plugin-zoom@npm:2.2.0": version: 2.2.0 resolution: "chartjs-plugin-zoom@npm:2.2.0" @@ -7105,7 +7095,6 @@ browserlist@latest: c8: 9.1.0 caniuse-lite: 1.0.30001603 chart.js: ^4.5.1 - chartjs-plugin-autocolors: 0.3.1 chartjs-plugin-zoom: 2.2.0 d3: 7.9.0 eslint: 8.57.0 From 11d2b06b4ed2f49f0f103a95729238bec65fb3f7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 5 May 2026 09:43:34 +0000 Subject: [PATCH 043/181] Fix typo --- ietf/templates/stats/index.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ietf/templates/stats/index.html b/ietf/templates/stats/index.html index 9702aa0b9ec..52125180ef7 100644 --- a/ietf/templates/stats/index.html +++ b/ietf/templates/stats/index.html @@ -15,10 +15,16 @@

    (requires login)
  • - Per country/affiliation authors for IETF drafts and RFC + Per country/affiliation authors + timeline for IETF drafts and RFC
  • - Per country/affiliation registration for a specific meeting, by default IETF-{{ current_meeting }}. + Per stream/level timeline + for IETF drafts and RFC +
  • +
  • + Per country/affiliation + registration for a specific meeting, by default IETF-{{ current_meeting }}.
  • Per country/affiliation registration timeline for last meetings From f4cc0c54ad9380fc695ef809045bf11501280328 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 5 May 2026 09:44:27 +0000 Subject: [PATCH 044/181] Tests for documents timelines --- ietf/stats/tests.py | 110 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 108 insertions(+), 2 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 5499c7dcb9e..38c9fb81579 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -6,6 +6,7 @@ import json import datetime +import factory from pyquery import PyQuery import debug # pyflakes:ignore @@ -19,6 +20,8 @@ from ietf.group.factories import RoleFactory from ietf.person.factories import PersonFactory +from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory +from ietf.group.factories import GroupFactory from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory from ietf.utils.timezone import date_today @@ -33,8 +36,111 @@ def test_stats_index(self): self.assertEqual(r.status_code, 200) def test_document_stats(self): - # TODO !!! evyncke - self.assertFalse(True) + timeNow = timezone.now() + yearNow = timeNow.year + time1960 = datetime.datetime(1960, 7, 26, 12, 13, 14) + year1960 = time1960.year + + # Let's create some WGs + group1 = GroupFactory(type_id="wg") + group2 = GroupFactory(type_id="wg") + + # Let's create some RFC and drafts with publication dates + rfcPsGroup1 = WgRfcFactory(std_level_id='ps', group=group1) + DocEventFactory(type='published_rfc', doc=rfcPsGroup1, time=time1960) + rfcExpGroup1 = WgRfcFactory(std_level_id='exp', group=group1) + DocEventFactory(type='published_rfc', doc=rfcExpGroup1, time=time1960) + rfcInfGroup2 = WgRfcFactory(std_level_id='inf', group=group2) + DocEventFactory(type='published_rfc', doc=rfcInfGroup2, time=timeNow) + rfcBcpIAB1 = WgRfcFactory(std_level_id='bcp', stream_id='iab') + DocEventFactory(type='published_rfc', doc=rfcBcpIAB1, time=time1960) + rfcBcpIAB2 = WgRfcFactory(std_level_id='bcp', stream_id='iab') + DocEventFactory(type='published_rfc', doc=rfcBcpIAB2, time=time1960) + wgDraftPsGroup1 = WgDraftFactory(name='draft-ietf-' + group1.acronym + '-random-thing', intended_std_level_id='ps', group=group1) + NewRevisionDocEventFactory(doc=wgDraftPsGroup1, time=time1960) + wgDraftPsGroup2 = WgDraftFactory(name='draft-ietf-' + group2.acronym + '-random-thing', intended_std_level_id='inf', group=group2) + NewRevisionDocEventFactory(doc=wgDraftPsGroup2, time=timeNow) + draftExp = DocumentFactory(type_id='draft', intended_std_level_id='exp') + NewRevisionDocEventFactory(doc=draftExp, time=timeNow) + + # Let's create some authors, first get some test strings for affiliations and countries + affiliation = factory.Faker('company').evaluate(None, None, {'locale': None}) + country = factory.Faker('country').evaluate(None, None, {'locale': None}) + + DocumentAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) + DocumentAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ', LLC', country=country) + DocumentAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker('company'), country=factory.Faker('country')) + DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + ' AG', country=country) + DocumentAuthorFactory(document=rfcInfGroup2, affiliation='CiScO InC.', country=country) + DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation='CISCO corp.', country='KINGDOM of BELGIUM') + DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation=affiliation, country=country) + DocumentAuthorFactory(document=rfcBcpIAB1, affiliation='CiScO PTY LTD', country='UnItEd StAtEs') + DocumentAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country='usa') + DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ',inc', country='U.S.A.') + + # Test#1 the documents specific statistics: for RFC about the level + r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "level"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Specific lines can be removed") + self.assertContains(r, "Rfc Documents by Level") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertTrue( + any( + ds["label"] == "inf" and ds["data"] == [0, 1] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "bcp" and ds["data"] == [2, 0] + for ds in chart_data["datasets"] + ) + ) + print("DONE: Test#1 the documents specific statistics: for RFC about the level") + + # Test#2 the documents specific statistics: for RFC about the WG + r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "wg"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Rfc Documents by Wg") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertTrue( + any( + ds["label"] == group1.name and ds["data"] == [2, 0] + for ds in chart_data["datasets"] + ) + ) + print("DONE: # Test#2 the documents specific statistics: for RFC about the WG") + + # Test#3 the documents specific statistics: for drafts about the streams + r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "draft", "stats_type": "stream"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Draft Documents by Stream") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + print(chart_data) + self.assertTrue(chart_data["labels"] == [yearNow]) + print("Test on labels OK") + self.assertTrue( + any( + ds["label"] == "IETF" and ds["data"] == [2] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "Unspecified" and ds["data"] == [1] + for ds in chart_data["datasets"] + ) + ) + print("DONE: Test#3 the documents specific statistics: for drafts about the streams") + def test_meeting_stats(self): meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) From 9250beaecb064c97e1a5bb5f52349a842126e9d2 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 5 May 2026 10:52:52 +0000 Subject: [PATCH 045/181] Authors statistics tests completed --- ietf/stats/tests.py | 75 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 69 insertions(+), 6 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 38c9fb81579..98fa68ee821 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -38,7 +38,7 @@ def test_stats_index(self): def test_document_stats(self): timeNow = timezone.now() yearNow = timeNow.year - time1960 = datetime.datetime(1960, 7, 26, 12, 13, 14) + time1960 = datetime.datetime(1960, 7, 26, 12, 13, 14, tzinfo=datetime.timezone.utc) year1960 = time1960.year # Let's create some WGs @@ -99,7 +99,6 @@ def test_document_stats(self): for ds in chart_data["datasets"] ) ) - print("DONE: Test#1 the documents specific statistics: for RFC about the level") # Test#2 the documents specific statistics: for RFC about the WG r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "wg"})) @@ -115,7 +114,6 @@ def test_document_stats(self): for ds in chart_data["datasets"] ) ) - print("DONE: # Test#2 the documents specific statistics: for RFC about the WG") # Test#3 the documents specific statistics: for drafts about the streams r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "draft", "stats_type": "stream"})) @@ -124,9 +122,7 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - print(chart_data) self.assertTrue(chart_data["labels"] == [yearNow]) - print("Test on labels OK") self.assertTrue( any( ds["label"] == "IETF" and ds["data"] == [2] @@ -139,8 +135,75 @@ def test_document_stats(self): for ds in chart_data["datasets"] ) ) - print("DONE: Test#3 the documents specific statistics: for drafts about the streams") + # Test#4 the authors specific statistics: for all docs about the countries + r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "all", "stats_type": "country"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "All Authors by Country") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertTrue( + any( + ds["label"] == "USA" and ds["data"] == [2, 1] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "Belgium" and ds["data"] == [0, 1] + for ds in chart_data["datasets"] + ) + ) + + # Test#5 the authors specific statistics: for all all rfcs about the affiliation + r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "affiliation"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Rfc Authors by Affiliation") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertTrue( + any( + ds["label"].casefold() == affiliation.casefold() and ds["data"] == [3, 0] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "Cisco" and ds["data"] == [1, 1] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "Other" and ds["data"] == [0, 0] + for ds in chart_data["datasets"] + ) + ) + + # Test#6 the authors specific statistics: for all WG drafts about the country + r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": "country"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Wg-Draft Authors by Country") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(chart_data["labels"] == [yearNow]) + self.assertTrue( + any( + ds["label"].casefold() == country.casefold() and ds["data"] == [2] + for ds in chart_data["datasets"] + ) + ) + self.assertTrue( + any( + ds["label"] == "Belgium" and ds["data"] == [1] + for ds in chart_data["datasets"] + ) + ) def test_meeting_stats(self): meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) From 2836321e54b9afeeb6467e97f2518eb36939c1f7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 9 May 2026 09:27:19 +0000 Subject: [PATCH 046/181] Require Alt for all pan/scroll --- ietf/static/js/document_timeline.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ietf/static/js/document_timeline.js b/ietf/static/js/document_timeline.js index c28f9b888fd..6683ab1b22a 100644 --- a/ietf/static/js/document_timeline.js +++ b/ietf/static/js/document_timeline.js @@ -51,8 +51,14 @@ document.addEventListener('DOMContentLoaded', () => { }, zoom: { zoom: { - wheel: { enabled: true }, // scroll to zoom - pinch: { enabled: true }, // pinch on mobile + wheel: { + enabled: true, + modifierKey: 'alt' // Alt + scroll wheel to zoom + }, // scroll to zoom + pinch: { + enabled: true + + }, // pinch on mobile drag: { // drag to select range enabled: true, modifierKey: 'alt' @@ -61,6 +67,7 @@ document.addEventListener('DOMContentLoaded', () => { }, pan: { enabled: true, + modifierKey: 'alt', mode: 'xy', // pan X-axis and Y-axis }, }, From e5104192b6e641bc74269e28b94cf478fa22de80 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 9 May 2026 09:28:07 +0000 Subject: [PATCH 047/181] Working draft for totals in addition to timeline --- ietf/stats/urls.py | 3 +- ietf/stats/views.py | 176 +++++++++++++++---- ietf/templates/stats/documents_timeline.html | 7 + ietf/templates/stats/documents_total.html | 63 +++++++ 4 files changed, 216 insertions(+), 33 deletions(-) create mode 100644 ietf/templates/stats/documents_total.html diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 4799b282b59..5e90e243217 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -10,7 +10,8 @@ urlpatterns = [ url(r"^$", views.stats_index), url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_timeline), - url(r"^document/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), + url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_total), + url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), url(r"^meeting/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 11054526500..1d13a8660a0 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -9,7 +9,7 @@ import re import hashlib import dateutil.relativedelta -from collections import defaultdict +from collections import defaultdict, Counter from django.conf import settings from django.contrib.auth.decorators import login_required @@ -25,13 +25,15 @@ aggregate_raw_period_review_assignment_stats, ReviewAssignmentData, sum_period_review_assignment_stats, - sum_raw_review_assignment_aggregations) + sum_raw_review_assignment_aggregations, + ) from ietf.group.models import Role, Group from ietf.person.models import Person from ietf.name.models import ReviewResultName, CountryName, ReviewAssignmentStateName from ietf.meeting.models import Registration from ietf.doc.models import Document, DocumentAuthor from ietf.ietfauth.utils import has_role +from ietf.stats.utils import get_aliased_affiliations, get_aliased_countries from ietf.utils.response import permission_denied from ietf.utils.timezone import date_today, DEADLINE_TZINFO from ietf.meeting.helpers import get_current_ietf_meeting_num, get_ietf_meeting @@ -151,6 +153,10 @@ def canonicalize_country(country): # CountryAlias.alias = 'Belgique' (in French!) CountryAlias = 'BE' # CountryName.slug = 'BE' CountryName.name = 'Belgium' # To only use official names ? + # alias_map = dict( +# CountryAlias.objects +# .values_list('alias', 'name__name') +# ) country = country.strip().lower() if country in ('china', 'chinese', 'p.r. china', 'prc', 'cn', 'p.r.china', 'p.r. china') or country.endswith(' china') or country.endswith(' p.r.china'): return 'China' @@ -217,7 +223,109 @@ def canonicalize_affiliation(affiliation): affiliation = prefix return affiliation.title() -def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): +def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(document__type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(document__type_id= 'draft') + filters &= Q(document__name__startswith='draft-ietf') + queryset = ( + DocumentAuthor.objects + .filter(filters) + .values(group_by) + .annotate(author_count=Count('person', distinct=True)) + .order_by('-author_count') + # [0:40] # During development to go faster + ) + + group_count_set = { + (group, count) + for group, count in queryset.values_list(group_by, 'author_count') + } + + print('Group_count_set:', group_count_set) + + if group_by == 'affiliation': + alias_map = get_aliased_affiliations(group for group, _ in group_count_set) + print('Group_by:', group_by, ', alias map:', alias_map) + elif group_by == 'country': + alias_map = get_aliased_countries(group for group, _ in group_count_set) + print('Group_by:', group_by, ', alias map:', alias_map) + else: + alias_map = {} + + group_count_dict = dict() + for group, count in group_count_set: + group = alias_map.get(group, group) + if group == '': + group = 'Unspecified' + group_count_dict[group] = group_count_dict.get(group, 0) + count + + group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = group_count_dict[:top_n] + other_count = sum(count for _, count in group_count_dict[top_n:]) + if other_count > 0: + top_groups.append(('Other', other_count)) + + labels, data = zip(*top_groups) if top_groups else ([], []) + chart_data = { + 'labels': labels, + 'datasets': [{ + 'data': data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], + 'borderColor': 'black', + 'borderWidth': 1, + }], + } + + return chart_data + +def authors_total(request, doc_type='all', stats_type='affiliation', top_n=20): + """Render the documents timeline page with document statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics. + top_n: Number of top items to show (for country stats). + + Returns: + Rendered response for the documents timeline template. + """ + if stats_type == 'affiliation': + chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) + elif stats_type == 'country': + chart_data = get_authors_total_data_for_documents(doc_type, 'country', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("all", "All documents", urlreverse(authors_total, kwargs={'doc_type': 'all', 'stats_type': stats_type})), + ("draft", "Drafts", urlreverse(authors_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), + ("rfc", "RFCs", urlreverse(authors_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + possible_stats_types = [ + ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), + ("country", "Country", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), + ] + + return render(request, "stats/documents_total.html", { + "top_n": top_n, + "objects": "authors", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) + + +def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): # Build a dynamic query set filter filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': @@ -229,7 +337,7 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n DocumentAuthor.objects .select_related('document') .filter(filters) - [0:100] # During development to go faster + [0:1000] # During development to go faster ) # ── Step 1: Collect all meetings and tickets totals ── @@ -237,29 +345,37 @@ def get_authors_data_for_documents(doc_type = 'all', group_by = 'country', top_n documents_totals = defaultdict(int) data_map = defaultdict(dict) # {year: {stream: count}} - for row in queryset: - if not row.document.pub_date(): - continue - year = row.document.pub_date().year - group = getattr(row, group_by) - if group_by == 'country': - if len(group) == 0 : - group = 'Unspecified' - else: - group = canonicalize_country(group) - if group_by == 'affiliation': - if len(group) == 0 : - group = 'Unspecified' - else: - group = canonicalize_affiliation(group) - - years_set.add(year) - documents_totals[group] += 1 + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) + year_group_list = [ + (row.document.pub_date().year, getattr(row, group_by)) + for row in queryset + if row.document.pub_date() is not None + ] + if group_by == 'affiliation': + alias_map = get_aliased_affiliations(group for _, group in year_group_list) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + elif group_by == 'country': + alias_map = get_aliased_countries(group for _, group in year_group_list) + print('Group_by:', group_by, ', alias map:', alias_map) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + alias_map[''] = 'Unspecified' + + years_set = {year for year, _ in year_group_list} + documents_totals = dict(Counter(group for _, group in year_group_list)) + for year, group in year_group_list: + # possibly faster with list processing above + # years_set.add(year) + # documents_totals[group] += 1 + if group is None or group == '': + group = 'Unspecified' + else: + group = alias_map.get(group, group) data_map[year][group] = data_map[year].get(group, 0) + 1 # ── Step 2: Sort years numerically rather than alphabetically ── years_set = sorted(years_set) - # group_types = documents_totals.keys() # ── Step 3: Get top N and others ── top_groups = sorted( @@ -314,12 +430,6 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): queryset = Document.objects.filter(type_id=doc_type) else: queryset = Document.objects.all() - # queryset = ( - # queryset - # .filter(stream__isnull=False) - # ) - - # TODO add related() for stream and group ? # ── Step 1: Collect all meetings and tickets totals ── years_set = set() @@ -373,7 +483,7 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): return years_set, datasets -def authors_timeline(request, doc_type='all', stats_type='stream', top_n=20): +def authors_timeline(request, doc_type='all', stats_type='affiliation', top_n=20): """Render the documents timeline page with document statistics over time. Args: @@ -386,9 +496,9 @@ def authors_timeline(request, doc_type='all', stats_type='stream', top_n=20): """ if stats_type == 'affiliation': - total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'affiliation', top_n) + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) elif stats_type == 'country': - total_labels, total_data_sets = get_authors_data_for_documents(doc_type, 'country', top_n) + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'country', top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -414,6 +524,8 @@ def authors_timeline(request, doc_type='all', stats_type='stream', top_n=20): "objects": "authors", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 6977e711be8..d299b62605c 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -14,6 +14,13 @@

    {% endblock %}

    + +
    + Timeline + Total +
    {% for slug, label, url in possible_stats_types %} diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html new file mode 100644 index 00000000000..e133a1c30c2 --- /dev/null +++ b/ietf/templates/stats/documents_total.html @@ -0,0 +1,63 @@ +{% extends "base.html" %} +{% load origin %} +{% origin %} +{% load ietf_filters static django_bootstrap5 %} +{% block js %} + {{ chart_data|json_script:"chart_data" }} + +{% endblock %} +{% block content %} + {% origin %} +

    + {% block title %} + Statistics for IETF {{ objects|title }} + {% endblock %} +

    +
    + +
    + Timeline + Total +
    + +
    + {% for slug, label, url in possible_stats_types %} + {{ label }} + {% endfor %} +
    + +
    + {% for slug, label, url in possible_docs_types %} + {{ label }} + {% endfor %} +
    +
    +

    + This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} authors. Note: an author is counted for as many documents they have authored. + Only the top-{{ top_n }} categories are listed, the remaining ones are aggregated into 'Other'. +

    +
    +
    +

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    +
    + +
    +
    +
    +
    +

    + Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + or click to reset panning/zooming. +

    +
    +{% endblock %} \ No newline at end of file From 533f35ee996fb1b96535cf067aa594e2462aa349 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 9 May 2026 09:28:33 +0000 Subject: [PATCH 048/181] JS for the total statistics --- ietf/static/js/document_total.js | 81 ++++++++++++++++++++++++++++++++ package.json | 1 + 2 files changed, 82 insertions(+) create mode 100644 ietf/static/js/document_total.js diff --git a/ietf/static/js/document_total.js b/ietf/static/js/document_total.js new file mode 100644 index 00000000000..2b1d2017797 --- /dev/null +++ b/ietf/static/js/document_total.js @@ -0,0 +1,81 @@ +// Copyright The IETF Trust 2026, All Rights Reserved +import Chart from 'chart.js/auto' +import zoomPlugin from 'chartjs-plugin-zoom' + +document.addEventListener('DOMContentLoaded', () => { + Chart.register(zoomPlugin) // enable the zoom plugin + + // ── Safely parse JSON data injected from Django view ── + const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; + + function displayChart (id, data) { + const ctx = document.getElementById(id).getContext('2d') ; + return new Chart(ctx, { + type: 'bar', + data: data, + options: { + indexAxis: 'y', + responsive: true, + scales: { + x: { + title: { + display: true, + text: 'Number of authors', + }, + }, + }, + plugins: { + legend: { + display: false, + }, + tooltip: { + backgroundColor: 'rgba(0,0,0,0.8)', + titleFont: { size: 14 }, + bodyFont: { size: 13 }, + callbacks: { + title: function(items) { + return `${items[0].label}`; + }, + label: function(context) { + return `${context.parsed.y} authors`; + } + } + }, + zoom: { + zoom: { + wheel: { + enabled: true, + modifierKey: 'alt' // Alt + scroll wheel to zoom + }, // scroll to zoom + pinch: { + enabled: true + + }, // pinch on mobile + drag: { // drag to select range + enabled: true, + modifierKey: 'alt' + }, + mode: 'xy', // zoom X-axis and Y-axis + }, + pan: { + enabled: true, + modifierKey: 'alt', + mode: 'xy', // pan X-axis and Y-axis + }, + }, + } + } + }) + } + + const documentsChart = displayChart('documentsChart', chartData) ; + + document.addEventListener('keydown', (event) => { + if (event.key === 'Escape') { + documentsChart.resetZoom() + } + }) + document.getElementById('resetButton').addEventListener('click', () => { + documentsChart.resetZoom() + }) +}) diff --git a/package.json b/package.json index dadd95d1872..664264c2e70 100644 --- a/package.json +++ b/package.json @@ -129,6 +129,7 @@ "ietf/static/js/document_html.js", "ietf/static/js/document_relations.js", "ietf/static/js/document_timeline.js", + "ietf/static/js/document_total.js", "ietf/static/js/draft-submit.js", "ietf/static/js/edit-meeting-schedule.js", "ietf/static/js/edit-meeting-timeslots-and-misc-sessions.js", From e87de05ae6ff3138942c8632346041b598c6e3b1 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 13:11:09 +0000 Subject: [PATCH 049/181] Hide clicked on bar and rescale --- ietf/static/js/document_total.js | 46 +++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/ietf/static/js/document_total.js b/ietf/static/js/document_total.js index 2b1d2017797..5985c4a62c4 100644 --- a/ietf/static/js/document_total.js +++ b/ietf/static/js/document_total.js @@ -4,17 +4,56 @@ import zoomPlugin from 'chartjs-plugin-zoom' document.addEventListener('DOMContentLoaded', () => { Chart.register(zoomPlugin) // enable the zoom plugin + const hidden = new Set(); // track suppressed categories // ── Safely parse JSON data injected from Django view ── const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; + function refreshChart() { + // On first call, snapshot the original data onto the chart instance itself + if (!chart._originalData) { + chart._originalData = { + labels: [...chart.data.labels], + values: [...chart.data.datasets[0].data], + colors: Array.isArray(chart.data.datasets[0].backgroundColor) + ? [...chart.data.datasets[0].backgroundColor] + : chart.data.labels.map(() => chart.data.datasets[0].backgroundColor), + }; + } + + const original = chart._originalData; + const labels = [], values = [], colors = []; + + original.labels.forEach((lbl, i) => { + if (!hidden.has(lbl)) { + labels.push(lbl); + values.push(original.values[i]); + colors.push(original.colors[i]); + } + }); + + chart.data.labels = labels; + chart.data.datasets[0].data = values; + chart.data.datasets[0].backgroundColor = colors; + chart.update(); + } + function displayChart (id, data) { const ctx = document.getElementById(id).getContext('2d') ; - return new Chart(ctx, { + chart = new Chart(ctx, { type: 'bar', data: data, options: { indexAxis: 'y', + onClick: (event, elements) => { + console.log('Clicked elements:', elements); + if (elements.length > 0) { + const idx = elements[0].index; + const label = chart.data.labels[idx]; + hidden.add(label); + refreshChart(); + } + }, responsive: true, scales: { x: { @@ -37,7 +76,7 @@ document.addEventListener('DOMContentLoaded', () => { return `${items[0].label}`; }, label: function(context) { - return `${context.parsed.y} authors`; + return `${context.formattedValue} authors`; } } }, @@ -65,7 +104,8 @@ document.addEventListener('DOMContentLoaded', () => { }, } } - }) + }) ; + return chart; } const documentsChart = displayChart('documentsChart', chartData) ; From 9f9b6a106db7be6d4951df3a547243d7720e8490 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 14:21:50 +0000 Subject: [PATCH 050/181] Display all bar legends even if many of them --- ietf/static/js/document_total.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ietf/static/js/document_total.js b/ietf/static/js/document_total.js index 5985c4a62c4..a9d834d2238 100644 --- a/ietf/static/js/document_total.js +++ b/ietf/static/js/document_total.js @@ -62,6 +62,11 @@ document.addEventListener('DOMContentLoaded', () => { text: 'Number of authors', }, }, + y: { + ticks: { + autoSkip: false, // Display all labels even if messy... + } + }, }, plugins: { legend: { From 0ebe0554a697798d35b81c3e3d2c438077a4a891 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 14:22:36 +0000 Subject: [PATCH 051/181] Add AffiliationMainName model + initial content --- ietf/stats/admin.py | 7 ++++++- ietf/stats/models.py | 9 +++++++++ ietf/stats/utils.py | 15 ++++++++++++--- 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/ietf/stats/admin.py b/ietf/stats/admin.py index a29523c19d1..63fccc947ea 100644 --- a/ietf/stats/admin.py +++ b/ietf/stats/admin.py @@ -1,6 +1,6 @@ from django.contrib import admin -from ietf.stats.models import AffiliationAlias, AffiliationIgnoredEnding, CountryAlias, MeetingRegistration +from ietf.stats.models import AffiliationAlias, AffiliationIgnoredEnding, AffiliationMainName, CountryAlias, MeetingRegistration class AffiliationAliasAdmin(admin.ModelAdmin): @@ -14,6 +14,11 @@ class AffiliationIgnoredEndingAdmin(admin.ModelAdmin): search_fields = ["ending"] admin.site.register(AffiliationIgnoredEnding, AffiliationIgnoredEndingAdmin) +class AffiliationMainNameAdmin(admin.ModelAdmin): + list_display = ('main_name',) + search_fields = ('main_name',) +admin.site.register(AffiliationMainName, AffiliationMainNameAdmin) + class CountryAliasAdmin(admin.ModelAdmin): list_filter = ["country"] list_display = ["alias", "country"] diff --git a/ietf/stats/models.py b/ietf/stats/models.py index 66e359f50ca..71af5e12543 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -42,6 +42,15 @@ class AffiliationIgnoredEnding(models.Model): def __str__(self): return self.ending +class AffiliationMainName(models.Model): + main_name = models.CharField(max_length=255, unique=True) + + class Meta: + verbose_name_plural = 'affiliation main names' + ordering = ['main_name'] + + def __str__(self): + return self.main_name class CountryAlias(models.Model): """Records that alias should be treated as country for statistical purposes.""" diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index a13e87a4f47..c189dd3c636 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -7,7 +7,7 @@ import debug # pyflakes:ignore -from ietf.stats.models import AffiliationAlias, AffiliationIgnoredEnding, CountryAlias +from ietf.stats.models import AffiliationAlias, AffiliationIgnoredEnding, AffiliationMainName, CountryAlias from ietf.name.models import CountryName import logging @@ -50,13 +50,16 @@ def get_aliased_affiliations(affiliations): ending_re = compile_affiliation_ending_stripping_regexp() known_aliases = { alias.lower(): name for alias, name in AffiliationAlias.objects.values_list("alias", "name") } + # Let's prepare a dict for things like "Google Inc." -> "Google" adding a space to the end of the main name + # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" + affiliation_main_names = [(main_name.lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] affiliations_with_case_spellings = defaultdict(set) case_spelling_count = defaultdict(int) for affiliation in affiliations: original_affiliation = affiliation - # check aliases from DB + # check aliases from Aliases DB name = known_aliases.get(affiliation.lower()) if name is not None: affiliation = name @@ -68,12 +71,18 @@ def get_aliased_affiliations(affiliations): affiliation = name res[original_affiliation] = affiliation - # check aliases from DB + # check again aliases from Aliases DB ??? name = known_aliases.get(affiliation.lower()) if name is not None: affiliation = name res[original_affiliation] = affiliation + # check again aliases from Main Names DB + name = next((original for lower, original in affiliation_main_names if affiliation.lower().startswith(lower)), None) + if name is not None: + affiliation = name + res[original_affiliation] = affiliation + affiliations_with_case_spellings[affiliation.lower()].add(original_affiliation) case_spelling_count[affiliation] += 1 From 32aff479df60fefd38ace19bc7b0ba131caea0bd Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 14:22:56 +0000 Subject: [PATCH 052/181] AffiliationMainName migration --- ietf/stats/migrations/0003_update_aliases.py | 61 ++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 ietf/stats/migrations/0003_update_aliases.py diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py new file mode 100644 index 00000000000..9a6bc6d6a35 --- /dev/null +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -0,0 +1,61 @@ +# Generated by Django 4.2.30 on 2026-05-06 07:49 + +from django.db import migrations, models + +INITIAL_MAIN_NAMES = ['Akamai', 'Alcatel', 'Apple', 'AT&T', 'Avaya', 'BBN', 'Cabletron', 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'Fastmail', 'Fujitsu', + 'Futurewei', 'Google', 'Hitachi', 'HPE', 'Huawei', 'IBM', 'INRIA','Intel', 'IEEE', 'JHU', 'Juniper', + 'Lucent', 'MCI', 'Meta', 'Microsoft', 'MIT', 'Motorola', + 'NASA', 'NEC', 'Nokia', 'Nortel', 'NTT', 'Oracle', 'Pantheon', 'Qualcomm', 'Siemens', 'Softbank', 'Telefonica', 'T-Mobile', 'Telia', 'Tencent', + 'UUNET', 'VeriSign', 'Verizon', 'Videotron','Vodafone', 'ZTE'] + +NEW_COUNTRY_ALIASES = [ + {'alias': 'Belgie', 'country': 'Belgium'}, + ] + +def forward(apps, schema_editor): + """Add initial main names.""" + AffiliationMainName = apps.get_model('stats', 'AffiliationMainName') + for name in INITIAL_MAIN_NAMES: + AffiliationMainName.objects.get_or_create(main_name=name) + + CountryAlias = apps.get_model('stats', 'CountryAlias') + CountryName = apps.get_model('name', 'CountryName') + + for entry in NEW_COUNTRY_ALIASES: + country = CountryName.objects.get(name=entry['country']) + CountryAlias.objects.get_or_create( + alias=entry['alias'], + defaults={'country': country}, + ) + + +def backward(apps, schema_editor): + """Remove initial main names.""" + AffiliationMainName = apps.get_model('stats', 'AffiliationMainName') + AffiliationMainName.objects.filter(main_name__in=INITIAL_MAIN_NAMES).delete() + + CountryAlias = apps.get_model('stats', 'CountryAlias') + aliases_to_remove = [alias for alias, _ in NEW_COUNTRY_ALIASES] + CountryAlias.objects.filter(alias__in=aliases_to_remove).delete() + +class Migration(migrations.Migration): + + dependencies = [ + ("stats", "0002_fix_meeting_registration_reg_type"), + ] + + operations = [ + migrations.CreateModel( + name='AffiliationMainName', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('main_name', models.CharField(max_length=255, unique=True)), + ], + options={ + 'verbose_name': 'affiliation main name', + 'verbose_name_plural': 'affiliations main names', + 'ordering': ['main_name'], + }, + ), + migrations.RunPython(forward, backward), + ] From 435cce628254ed9e966ada6d44fbd0f3c9fee676 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 14:23:16 +0000 Subject: [PATCH 053/181] Pass the "top-n" value as a query parameter --- ietf/stats/views.py | 33 +++++++++++++------- ietf/templates/stats/documents_timeline.html | 8 ++--- ietf/templates/stats/documents_total.html | 10 +++--- 3 files changed, 31 insertions(+), 20 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 1d13a8660a0..93ba994e508 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -235,9 +235,8 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', DocumentAuthor.objects .filter(filters) .values(group_by) - .annotate(author_count=Count('person', distinct=True)) + .annotate(author_count=Count('person', distinct=False)) # Count as many document authored by this author .order_by('-author_count') - # [0:40] # During development to go faster ) group_count_set = { @@ -245,14 +244,12 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', for group, count in queryset.values_list(group_by, 'author_count') } - print('Group_count_set:', group_count_set) - if group_by == 'affiliation': alias_map = get_aliased_affiliations(group for group, _ in group_count_set) - print('Group_by:', group_by, ', alias map:', alias_map) +# print('Group_by:', group_by, ', alias map:', alias_map) elif group_by == 'country': alias_map = get_aliased_countries(group for group, _ in group_count_set) - print('Group_by:', group_by, ', alias map:', alias_map) +# print('Group_by:', group_by, ', alias map:', alias_map) else: alias_map = {} @@ -282,7 +279,7 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', return chart_data -def authors_total(request, doc_type='all', stats_type='affiliation', top_n=20): +def authors_total(request, doc_type='all', stats_type='affiliation'): """Render the documents timeline page with document statistics over time. Args: @@ -293,6 +290,10 @@ def authors_total(request, doc_type='all', stats_type='affiliation', top_n=20): Returns: Rendered response for the documents timeline template. """ + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + if stats_type == 'affiliation': chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) elif stats_type == 'country': @@ -363,16 +364,19 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr alias_map[''] = 'Unspecified' years_set = {year for year, _ in year_group_list} - documents_totals = dict(Counter(group for _, group in year_group_list)) + # documents_totals = dict(Counter(group for _, group in year_group_list)) # Does not work too well as aliases are not applied, so we do the counting in the loop below for year, group in year_group_list: # possibly faster with list processing above # years_set.add(year) - # documents_totals[group] += 1 if group is None or group == '': group = 'Unspecified' + print("Found unspecified affiliation/country for year", year, group) else: group = alias_map.get(group, group) data_map[year][group] = data_map[year].get(group, 0) + 1 + documents_totals[group] += 1 + if group == 'Unspecified': + print("After aliasing, found unspecified affiliation/country for year", year, group, data_map[year][group]) # ── Step 2: Sort years numerically rather than alphabetically ── years_set = sorted(years_set) @@ -383,6 +387,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr key=lambda c: documents_totals[c], reverse=True )[:top_n] + print('Top groups:', top_groups[:2]) non_top_groups = documents_totals.keys() - top_groups other_totals = defaultdict(int) for y in years_set: @@ -483,7 +488,7 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name'): return years_set, datasets -def authors_timeline(request, doc_type='all', stats_type='affiliation', top_n=20): +def authors_timeline(request, doc_type='all', stats_type='affiliation'): """Render the documents timeline page with document statistics over time. Args: @@ -495,6 +500,9 @@ def authors_timeline(request, doc_type='all', stats_type='affiliation', top_n=20 Rendered response for the documents timeline template. """ + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + if stats_type == 'affiliation': total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) elif stats_type == 'country': @@ -531,7 +539,7 @@ def authors_timeline(request, doc_type='all', stats_type='affiliation', top_n=20 "chart_data": chart_data, }) -def documents_timeline(request, doc_type='rfc', stats_type='level', top_n=10): +def documents_timeline(request, doc_type='rfc', stats_type='level'): """Render the documents timeline page with document statistics over time. Args: @@ -543,6 +551,9 @@ def documents_timeline(request, doc_type='rfc', stats_type='level', top_n=10): Rendered response for the documents timeline template. """ + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + if stats_type == 'stream': total_labels, total_data_sets = get_data_for_documents(doc_type, 'stream__name') elif stats_type == 'level' and doc_type == 'draft': diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index d299b62605c..1e81e3ec868 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -17,9 +17,9 @@

    Timeline + href="{{ timeline_url }}?top={{ top_n }}">Timeline Total + href="{{ total_url }}?top={{ top_n }}">Total
    @@ -28,7 +28,7 @@

    {% if slug == stats_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    @@ -38,7 +38,7 @@

    {% if slug == doc_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index e133a1c30c2..54aeedeb112 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -17,9 +17,9 @@

    Timeline + href="{{ timeline_url }}?top={{ top_n }}">Timeline Total + href="{{ total_url }}?top={{ top_n }}">Total
    @@ -28,7 +28,7 @@

    {% if slug == stats_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    @@ -38,7 +38,7 @@

    {% if slug == doc_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %} @@ -56,7 +56,7 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    - Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + Click on a bar to hide it and rescale the graph. Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC or click to reset panning/zooming.

    From 7339d4160bf1473eecbedd9ba37ead11c5743666 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 21:53:32 +0000 Subject: [PATCH 054/181] Less debug logging --- ietf/stats/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 93ba994e508..3a8c985f725 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -246,10 +246,8 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', if group_by == 'affiliation': alias_map = get_aliased_affiliations(group for group, _ in group_count_set) -# print('Group_by:', group_by, ', alias map:', alias_map) elif group_by == 'country': alias_map = get_aliased_countries(group for group, _ in group_count_set) -# print('Group_by:', group_by, ', alias map:', alias_map) else: alias_map = {} From 98bc837212cf019b898509349b5723648c922195 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 10 May 2026 21:54:06 +0000 Subject: [PATCH 055/181] More affiliations clean-up/canonicalizations --- ietf/stats/migrations/0003_update_aliases.py | 72 ++++++++++++++++++-- 1 file changed, 65 insertions(+), 7 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 9a6bc6d6a35..45358bff5d7 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -2,22 +2,70 @@ from django.db import migrations, models -INITIAL_MAIN_NAMES = ['Akamai', 'Alcatel', 'Apple', 'AT&T', 'Avaya', 'BBN', 'Cabletron', 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'Fastmail', 'Fujitsu', - 'Futurewei', 'Google', 'Hitachi', 'HPE', 'Huawei', 'IBM', 'INRIA','Intel', 'IEEE', 'JHU', 'Juniper', - 'Lucent', 'MCI', 'Meta', 'Microsoft', 'MIT', 'Motorola', - 'NASA', 'NEC', 'Nokia', 'Nortel', 'NTT', 'Oracle', 'Pantheon', 'Qualcomm', 'Siemens', 'Softbank', 'Telefonica', 'T-Mobile', 'Telia', 'Tencent', - 'UUNET', 'VeriSign', 'Verizon', 'Videotron','Vodafone', 'ZTE'] +INITIAL_MAIN_NAMES = ['Akamai', 'Alcatel', 'Alcatel-Lucent', 'Amazon', 'Apple', 'Arista', 'Aruba', 'AT&T', 'Avaya', 'BBN', 'Boeing', + 'Broadcom', 'Cabletron', + 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'DEC', 'Ericsson', 'EMC', 'Fastmail', 'France Telecom', 'Fraunhofer', 'Fujitsu', + 'Futurewei', 'Google', 'Hewlett-Packard', 'Hitachi', 'HPE', 'Huawei', 'IBM', 'INRIA', 'Intel', 'IEEE', 'ISODE', 'JHU', 'Juniper', + 'KDDI', 'Lucent', 'MCI', 'Meta', 'Microsoft', 'MIT', 'Motorola', 'Mozilla', + 'NASA', 'NEC', 'Netscape','Nokia', 'Nortel', 'NTT', 'NVIDIA', 'Oracle', 'Pantheon', 'Redback', + 'Qualcomm', 'Samsung', 'Siemens', 'Softbank', 'Telefonica', 'T-Mobile', 'Telia', 'Tencent', + 'UUNET', 'VeriSign', 'Verizon', 'Videotron','Vodafone', 'Wellfleet', 'Xerox', 'ZTE'] NEW_COUNTRY_ALIASES = [ {'alias': 'Belgie', 'country': 'Belgium'}, ] +OBSOLETED_AFFILIATION_ALIASES = [ + {'alias': 'cisco systems india pvt', 'name': 'cisco Systems'}, + {'alias': 'cisco systems (india) private limited', 'name': 'cisco Systems'}, + {'alias': 'cisco system', 'name': 'cisco Systems'}, +] + +ADDITIONAL_AFFILIATION_ALIASES = [ + {'alias': 'Asia Pacific Network Information Centre', 'name': 'APNIC'}, + {'alias': 'ATT', 'name': 'AT&T'}, + {'alias': 'AWS', 'name': 'Amazon'}, + {'alias': 'BUPT', 'name': 'Beijing University of Posts and Telecommunications'}, + {'alias': 'CERT', 'name': 'US-CERT'}, + {'alias': 'CMU', 'name': 'Carnegie Mellon University'}, + {'alias': 'Columbia University', 'name': 'Columbia University'}, + {'alias': 'Consultant', 'name': 'Independent'}, + {'alias': 'Digital Equipment Corporation', 'name': 'DEC'}, + {'alias': 'HP', 'name': 'Hewlett-Packard'}, + {'alias': 'Independent Consultant', 'name': 'Independent'}, + {'alias': 'Individual', 'name': 'Independent'}, + {'alias': 'Individual Contributor', 'name': 'Independent'}, + {'alias': 'Internet Systems Consortium', 'name': 'ISC'}, + {'alias': 'Johns Hopkins University ', 'name': 'JHU'}, + {'alias': 'National Institute of Standards and Technology', 'name': 'US-NIST'}, + {'alias': 'NIST', 'name': 'US-NIST'}, + {'alias': 'Person', 'name': 'Independent'}, + {'alias': 'The Boeing Company', 'name': 'Boeing'}, + {'alias': 'Unaffiliated', 'name': 'Independent'}, +] + +ADDITIONAL_IGNORE_ENDINGS = [ + 'ab\\.?', 'ag\\.?', 'corp\\.?', 'corporation\\.?', 'corportation\\.?', 'international pte ltd\\.?', 'limited\\.?', + 'l.l.c\\.?', + 'private limited\\.?', 'pty ltd\\.?', + 'pvt ltd\\.?', 's\\.a\\.s\\.?', 's\\.a\\.r\\.l\\.?', 's\\.p\\.a\\.?' +] def forward(apps, schema_editor): - """Add initial main names.""" + """Add initial main names, update country & affiliation aliases.""" AffiliationMainName = apps.get_model('stats', 'AffiliationMainName') for name in INITIAL_MAIN_NAMES: AffiliationMainName.objects.get_or_create(main_name=name) + AffiliationAlias = apps.get_model('stats', 'AffiliationAlias') + for entry in OBSOLETED_AFFILIATION_ALIASES: + AffiliationAlias.objects.filter(alias=entry['alias']).delete() + for entry in ADDITIONAL_AFFILIATION_ALIASES: + AffiliationAlias.objects.get_or_create(alias=entry['alias'], defaults={'name': entry['name']}) + + AffiliationIgnoredEnding = apps.get_model('stats', 'AffiliationIgnoredEnding') + for ending in ADDITIONAL_IGNORE_ENDINGS: + AffiliationIgnoredEnding.objects.get_or_create(ending=ending) + CountryAlias = apps.get_model('stats', 'CountryAlias') CountryName = apps.get_model('name', 'CountryName') @@ -30,10 +78,20 @@ def forward(apps, schema_editor): def backward(apps, schema_editor): - """Remove initial main names.""" + """Remove initial main names, modified country aliases, and add back some obsolete affiliation aliases.""" AffiliationMainName = apps.get_model('stats', 'AffiliationMainName') AffiliationMainName.objects.filter(main_name__in=INITIAL_MAIN_NAMES).delete() + AffiliationAlias = apps.get_model('stats', 'AffiliationAlias') + for entry in OBSOLETED_AFFILIATION_ALIASES: + AffiliationAlias.objects.get_or_create(alias=entry['alias'], defaults={'name': entry['name']}) + for entry in ADDITIONAL_AFFILIATION_ALIASES: + AffiliationAlias.objects.filter(alias=entry['alias']).delete() + + AffiliationIgnoredEnding = apps.get_model('stats', 'AffiliationIgnoredEnding') + for ending in ADDITIONAL_IGNORE_ENDINGS: + AffiliationIgnoredEnding.objects.filter(ending=ending).delete() + CountryAlias = apps.get_model('stats', 'CountryAlias') aliases_to_remove = [alias for alias, _ in NEW_COUNTRY_ALIASES] CountryAlias.objects.filter(alias__in=aliases_to_remove).delete() From 8530e3489a64a06a5b93e434b322c79a5d697f70 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 07:56:22 +0000 Subject: [PATCH 056/181] Force the use of Alt for all mouse moves --- ietf/static/js/meeting_timeline.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ietf/static/js/meeting_timeline.js b/ietf/static/js/meeting_timeline.js index 713fb3ae707..46b3248209b 100644 --- a/ietf/static/js/meeting_timeline.js +++ b/ietf/static/js/meeting_timeline.js @@ -53,8 +53,14 @@ document.addEventListener('DOMContentLoaded', () => { }, zoom: { zoom: { - wheel: { enabled: true }, // scroll to zoom - pinch: { enabled: true }, // pinch on mobile + wheel: { + enabled: true, + modifierKey: 'alt' // Alt + scroll wheel to zoom + }, // scroll to zoom + pinch: { + enabled: true, + modifierKey: 'alt' + }, // pinch on mobile drag: { // drag to select range enabled: true, modifierKey: 'alt' @@ -63,6 +69,7 @@ document.addEventListener('DOMContentLoaded', () => { }, pan: { enabled: true, + modifierKey: 'alt', mode: 'xy', // pan X-axis and Y-axis }, }, From 961c5deb88d578d576e227384ff9e7bb04988647 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 07:56:43 +0000 Subject: [PATCH 057/181] Only use the affiliation aliases from utils (and the DB) --- ietf/stats/views.py | 39 +++++++++++++-------------------------- 1 file changed, 13 insertions(+), 26 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 3a8c985f725..d266de49797 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -199,30 +199,6 @@ def canonicalize_country(country): return 'USA' return country.title() -def canonicalize_affiliation(affiliation): - """Canonicalize an affiliation string by removing common suffixes and standardizing prefixes. - - Args: - affiliation: The affiliation string to canonicalize. - - Returns: - The canonicalized affiliation string, or None if input is None. - """ - if not affiliation or affiliation.lower() in ('n/a', 'none', 'unspecified'): - return None - affiliation = affiliation.strip() - for suffix in ('ab', 'ag', 'corp', 'corp.', 'corporation', 'gmbh', 'inc.', 'inc', 'international pte ltd', 'llc', 'ltd', 'ltd.', 'private limited', 'pty ltd', 'pvt ltd'): - if affiliation.lower().endswith(', ' + suffix): - affiliation = affiliation[:-(len(suffix)+2)] - elif affiliation.lower().endswith(' ' + suffix): - affiliation = affiliation[:-(len(suffix)+1)] - elif affiliation.lower().endswith(',' + suffix): - affiliation = affiliation[:-(len(suffix)+1)] - for prefix in ('akamai','apple', 'cisco', 'futurewei', 'google', 'hitachi', 'hpe', 'huawei', 'juniper', 'meta', 'nokia', 'ntt', 'siemens'): - if affiliation.lower().startswith(prefix + ' '): - affiliation = prefix - return affiliation.title() - def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): # Build a dynamic query set filter filters = Q() @@ -613,6 +589,9 @@ def get_affiliation_data_for_meetings(attendance_type=None): registrations = Registration.objects.all() registrations = registrations.values('affiliation', 'meeting__number') + # Prepare affiliation data, applying canonicalization and aliasing + alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + # Count per canonicalized affiliation organization = dict() meetings_set = set() @@ -622,7 +601,10 @@ def get_affiliation_data_for_meetings(attendance_type=None): for reg in registrations: meeting = reg['meeting__number'] meetings_set.add(meeting) - affiliation = canonicalize_affiliation(reg['affiliation']) or "Unspecified" + if reg['affiliation'] is None or reg['affiliation'].strip() == '': + affiliation = 'Unspecified' + else: + affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) organization[affiliation] = organization.get(affiliation, 0) + 1 org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 @@ -930,10 +912,15 @@ def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendanc registrations = registrations.filter(tickets__attendance_type=attendance_type) registrations = registrations.values('affiliation') + alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + # Count per canonicalized affiliation organization = dict() for reg in registrations: - affiliation = canonicalize_affiliation(reg['affiliation']) or "Unspecified" + if reg['affiliation'] is None or reg['affiliation'].strip() == '': + affiliation = 'Unspecified' + else: + affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) organization[affiliation] = organization.get(affiliation, 0) + 1 # Sort to have the largest count first (nicer in pie chart) From 5f58319594f28339b0ff175e6d3a7ba51d9f6eff Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 10:43:20 +0000 Subject: [PATCH 058/181] No need for ordering in AffiliationMainName and more country aliases --- ietf/stats/migrations/0003_update_aliases.py | 26 +++++++++++++++----- ietf/stats/models.py | 4 +-- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 45358bff5d7..108b1cb2b78 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -1,4 +1,3 @@ -# Generated by Django 4.2.30 on 2026-05-06 07:49 from django.db import migrations, models @@ -11,10 +10,6 @@ 'Qualcomm', 'Samsung', 'Siemens', 'Softbank', 'Telefonica', 'T-Mobile', 'Telia', 'Tencent', 'UUNET', 'VeriSign', 'Verizon', 'Videotron','Vodafone', 'Wellfleet', 'Xerox', 'ZTE'] -NEW_COUNTRY_ALIASES = [ - {'alias': 'Belgie', 'country': 'Belgium'}, - ] - OBSOLETED_AFFILIATION_ALIASES = [ {'alias': 'cisco systems india pvt', 'name': 'cisco Systems'}, {'alias': 'cisco systems (india) private limited', 'name': 'cisco Systems'}, @@ -50,6 +45,26 @@ 'private limited\\.?', 'pty ltd\\.?', 'pvt ltd\\.?', 's\\.a\\.s\\.?', 's\\.a\\.r\\.l\\.?', 's\\.p\\.a\\.?' ] + +NEW_COUNTRY_ALIASES = [ + {'alias': 'belgie', 'country': 'Belgium'}, + {'alias': 'belgique', 'country': 'Belgium'}, + {'alias': 'cccp', 'country': 'Russia'}, + {'alias': 'chinese', 'country': 'China'}, + {'alias': 'finlandia', 'country': 'Finland'}, + {'alias': 'holland', 'country': 'Netherlands'}, + {'alias': 'nederland', 'country': 'Netherlands'}, + {'alias': 'soviet union', 'country': 'Russia'}, + {'alias': 'suomi', 'country': 'Finland'}, + {'alias': 'the netherlands', 'country': 'Netherlands'}, + {'alias': 'u.k.', 'country': 'United Kingdom'}, + {'alias': 'ussr', 'country': 'Russia'}, + {'alias': 'u.s.s.r.', 'country': 'Russia'}, + {'alias': 'россия', 'country': 'Russia'}, + {'alias': 'российская федерация', 'country': 'Russia'}, + {'alias': 'wales', 'country': 'United Kingdom'}, +] + def forward(apps, schema_editor): """Add initial main names, update country & affiliation aliases.""" AffiliationMainName = apps.get_model('stats', 'AffiliationMainName') @@ -112,7 +127,6 @@ class Migration(migrations.Migration): options={ 'verbose_name': 'affiliation main name', 'verbose_name_plural': 'affiliations main names', - 'ordering': ['main_name'], }, ), migrations.RunPython(forward, backward), diff --git a/ietf/stats/models.py b/ietf/stats/models.py index 71af5e12543..cec34630fe8 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -43,11 +43,11 @@ def __str__(self): return self.ending class AffiliationMainName(models.Model): + """Records that this start of an affiliation is what matters (for statistical purposes).""" main_name = models.CharField(max_length=255, unique=True) - + class Meta: verbose_name_plural = 'affiliation main names' - ordering = ['main_name'] def __str__(self): return self.main_name From 163db7e04f790a82019468f0fce0460c7a360ac2 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 10:44:31 +0000 Subject: [PATCH 059/181] Only use aliases (country & affiliation) in utils and no more hardcoded --- .gitignore | 5 +++++ .pnp.cjs | 28 ----------------------- ietf/stats/views.py | 54 --------------------------------------------- 3 files changed, 5 insertions(+), 82 deletions(-) diff --git a/.gitignore b/.gitignore index 84bc800e3b8..0f6e0ec820c 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ datatracker.sublime-workspace /.settings /.tmp /.vite +/.yarn /client/dist /data /dist @@ -37,3 +38,7 @@ __pycache__ !.yarn/releases !.yarn/sdks !.yarn/versions +yarn.lock +.gitignore +yarn.lock +.pnp.cjs diff --git a/.pnp.cjs b/.pnp.cjs index 6c76263c7ea..3791c2dd32f 100644 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -58,7 +58,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["c8", "npm:9.1.0"],\ ["caniuse-lite", "npm:1.0.30001603"],\ ["chart.js", "npm:4.5.1"],\ - ["chartjs-plugin-autocolors", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.3.1"],\ ["chartjs-plugin-zoom", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0"],\ ["d3", "npm:7.9.0"],\ ["eslint", "npm:8.57.0"],\ @@ -3584,32 +3583,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["chartjs-plugin-autocolors", [\ - ["npm:0.3.1", {\ - "packageLocation": "./.yarn/cache/chartjs-plugin-autocolors-npm-0.3.1-7e93d38139-de4f87b5bb.zip/node_modules/chartjs-plugin-autocolors/",\ - "packageDependencies": [\ - ["chartjs-plugin-autocolors", "npm:0.3.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.3.1", {\ - "packageLocation": "./.yarn/__virtual__/chartjs-plugin-autocolors-virtual-6e228c1a1e/0/cache/chartjs-plugin-autocolors-npm-0.3.1-7e93d38139-de4f87b5bb.zip/node_modules/chartjs-plugin-autocolors/",\ - "packageDependencies": [\ - ["chartjs-plugin-autocolors", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.3.1"],\ - ["@kurkle/color", "npm:0.3.1"],\ - ["@types/chart.js", null],\ - ["@types/kurkle__color", null],\ - ["chart.js", "npm:4.5.1"]\ - ],\ - "packagePeers": [\ - "@kurkle/color",\ - "@types/chart.js",\ - "@types/kurkle__color",\ - "chart.js"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["chartjs-plugin-zoom", [\ ["npm:2.2.0", {\ "packageLocation": "./.yarn/cache/chartjs-plugin-zoom-npm-2.2.0-85aea0b81e-a540e38340.zip/node_modules/chartjs-plugin-zoom/",\ @@ -8440,7 +8413,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["c8", "npm:9.1.0"],\ ["caniuse-lite", "npm:1.0.30001603"],\ ["chart.js", "npm:4.5.1"],\ - ["chartjs-plugin-autocolors", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:0.3.1"],\ ["chartjs-plugin-zoom", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0"],\ ["d3", "npm:7.9.0"],\ ["eslint", "npm:8.57.0"],\ diff --git a/ietf/stats/views.py b/ietf/stats/views.py index d266de49797..121d9acb8dc 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -145,60 +145,6 @@ def known_countries_list(request, stats_type=None, acronym=None): "countries": countries, }) -def canonicalize_country(country): - if country is None or country.strip() == '': - return 'Unspecified' - # TODO use a cache system (?) and - # from ietf.stats.models import CountryAlias - # CountryAlias.alias = 'Belgique' (in French!) CountryAlias = 'BE' - # CountryName.slug = 'BE' CountryName.name = 'Belgium' - # To only use official names ? - # alias_map = dict( -# CountryAlias.objects -# .values_list('alias', 'name__name') -# ) - country = country.strip().lower() - if country in ('china', 'chinese', 'p.r. china', 'prc', 'cn', 'p.r.china', 'p.r. china') or country.endswith(' china') or country.endswith(' p.r.china'): - return 'China' - elif country in ('uk', 'u.k.', 'gb', 'united kingdom', 'england', 'great britain', 'scotland', 'wales') or country.endswith(' uk'): - return 'United Kingdom' - elif country in ('germany', 'deutschland', 'de') or country.endswith(' germany'): - return 'Germany' - elif country in ('the netherlands', 'nederland', 'holland', 'nl'): - return 'Netherlands' - elif country in ('france', 'fr'): - return 'France' - elif country in ('belgium', 'be') or country.endswith(' belgium'): - return 'Belgium' - elif country in ('sweden', 'se') or country.endswith(' sweden'): - return 'Sweden' - elif country in ('new zealand', 'nz') or country.endswith(' new zealand'): - return 'New Zealand' - elif country in ('canada', 'ca'): - return 'Canada' - elif country in ('india', 'in') or country.endswith(' india'): - return 'India' - elif country in ('australia', 'au'): - return 'Australia' - elif country in ('japan', 'jp'): - return 'Japan' - elif country in ('italy', 'it'): - return 'Italy' - elif country in ('finland', 'finlandia', 'suomi', 'fi') or country.endswith(' finland'): - return 'Finland' - elif country in ('russia', 'ru', 'россия', 'российская федерация', 'russian federation', 'ussr', 'soviet union', 'u.s.s.r.'): - return 'Russia' - elif country in ('republic of korea', 'south korea', 'kr', 'korea'): - return 'South Korea' - # Should do a regex match here instead of hardcoding all the variations, but for now this is good enough - elif ( - country in ('usa', 'united states', 'united states of america', 'us', 'u.s.', 'u.s.a.', 'u.s.a') or - country.endswith(' usa') or - re.match(r'^([a-z\s\.\-]+),*\s*([a-z]{2}),*\s+(\d{5}(-\d{4})?)$', country) - ): - return 'USA' - return country.title() - def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): # Build a dynamic query set filter filters = Q() From cb96f26ab0584958ddd4dada988d8dfd32dac11e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 10:52:47 +0000 Subject: [PATCH 060/181] Avoid overlapping labels --- ietf/templates/stats/documents_timeline.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 1e81e3ec868..230a273dfe2 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -22,7 +22,7 @@

    href="{{ total_url }}?top={{ top_n }}">Total -
    +
    {% for slug, label, url in possible_stats_types %} Documents: -
    +
    {% for slug, label, url in possible_docs_types %} Date: Mon, 11 May 2026 12:02:27 +0000 Subject: [PATCH 062/181] ID field is automatic --- ietf/stats/migrations/0003_update_aliases.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 108b1cb2b78..8af27959cfb 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -121,7 +121,6 @@ class Migration(migrations.Migration): migrations.CreateModel( name='AffiliationMainName', fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('main_name', models.CharField(max_length=255, unique=True)), ], options={ From 70f02df4abf8e2164d3fec77f92addba6f5be3fd Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 13:44:04 +0000 Subject: [PATCH 063/181] Add Alias Main Name for API --- ietf/stats/resources.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/ietf/stats/resources.py b/ietf/stats/resources.py index 59722c505ef..2ca1cfedeb9 100644 --- a/ietf/stats/resources.py +++ b/ietf/stats/resources.py @@ -11,7 +11,7 @@ from ietf import api from ietf.api import ToOneField # pyflakes:ignore -from ietf.stats.models import CountryAlias, AffiliationIgnoredEnding, AffiliationAlias, MeetingRegistration +from ietf.stats.models import CountryAlias, AffiliationIgnoredEnding, AffiliationAlias, AffiliationMainName, MeetingRegistration from ietf.name.resources import CountryNameResource @@ -50,12 +50,25 @@ class Meta: cache = SimpleCache() #resource_name = 'affiliationalias' ordering = ['id', ] + filtering = { + "id": ALL, + "main_name": ALL, + } +api.stats.register(AffiliationAliasResource()) + +class AffiliationMainNameResource(ModelResource): + class Meta: + queryset = AffiliationMainName.objects.all() + serializer = api.Serializer() + cache = SimpleCache() + #resource_name = 'affiliationalias' + ordering = ['id', ] filtering = { "id": ALL, "alias": ALL, "name": ALL, } -api.stats.register(AffiliationAliasResource()) +api.stats.register(AffiliationMainNameResource()) from ietf.meeting.resources import MeetingResource from ietf.person.resources import PersonResource From 46eab55ee114461088544c83e7aa942e7603a1a4 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 13:55:24 +0000 Subject: [PATCH 064/181] Create the id field at migration time, remove the main_name is unique --- ietf/stats/migrations/0003_update_aliases.py | 15 ++++++++++++++- ietf/stats/models.py | 4 ++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 8af27959cfb..4ae99929d2c 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -121,12 +121,25 @@ class Migration(migrations.Migration): migrations.CreateModel( name='AffiliationMainName', fields=[ - ('main_name', models.CharField(max_length=255, unique=True)), + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('main_name', models.CharField(max_length=255, help_text="Main leading part of an affiliation, the remaing part can be ignored.")), ], options={ 'verbose_name': 'affiliation main name', 'verbose_name_plural': 'affiliations main names', }, ), + # # proposed/required by CI/CD in github + # migrations.AlterModelOptions( + # name='affiliationmainname', + # options={'verbose_name_plural': 'affiliation main names'}, + # ), + # # proposed/required by CI/CD in github + # migrations.AddField( + # model_name='affiliationmainname', + # name='id', + # field=models.AutoField(auto_created=True, default=None, primary_key=True, serialize=False, verbose_name='ID'), + # preserve_default=False, + # ), migrations.RunPython(forward, backward), ] diff --git a/ietf/stats/models.py b/ietf/stats/models.py index cec34630fe8..b6d5c98f979 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -44,8 +44,8 @@ def __str__(self): class AffiliationMainName(models.Model): """Records that this start of an affiliation is what matters (for statistical purposes).""" - main_name = models.CharField(max_length=255, unique=True) - + main_name = models.CharField(max_length=255, help_text="Main leading part of an affiliation, the remaing part can be ignored.") + class Meta: verbose_name_plural = 'affiliation main names' From 6669c24d934d06aa6b552bbf3b16fa81d221f583 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 14:25:09 +0000 Subject: [PATCH 065/181] Fix the migration (verbose_name typo and unique=True) --- ietf/stats/migrations/0003_update_aliases.py | 17 ++--------------- ietf/stats/models.py | 5 ++++- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 4ae99929d2c..d8c6147f633 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -122,24 +122,11 @@ class Migration(migrations.Migration): name='AffiliationMainName', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('main_name', models.CharField(max_length=255, help_text="Main leading part of an affiliation, the remaing part can be ignored.")), + ('main_name', models.CharField(max_length=255, unique=True, help_text="Main leading part of an affiliation, the remaing part can be ignored.")), ], options={ - 'verbose_name': 'affiliation main name', - 'verbose_name_plural': 'affiliations main names', + 'verbose_name_plural': 'affiliation main names', }, ), - # # proposed/required by CI/CD in github - # migrations.AlterModelOptions( - # name='affiliationmainname', - # options={'verbose_name_plural': 'affiliation main names'}, - # ), - # # proposed/required by CI/CD in github - # migrations.AddField( - # model_name='affiliationmainname', - # name='id', - # field=models.AutoField(auto_created=True, default=None, primary_key=True, serialize=False, verbose_name='ID'), - # preserve_default=False, - # ), migrations.RunPython(forward, backward), ] diff --git a/ietf/stats/models.py b/ietf/stats/models.py index b6d5c98f979..975851d48ef 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -44,7 +44,10 @@ def __str__(self): class AffiliationMainName(models.Model): """Records that this start of an affiliation is what matters (for statistical purposes).""" - main_name = models.CharField(max_length=255, help_text="Main leading part of an affiliation, the remaing part can be ignored.") + main_name = models.CharField( + max_length=255, + unique=True, + help_text="Main leading part of an affiliation, the remaing part can be ignored.") class Meta: verbose_name_plural = 'affiliation main names' From e9fa9283f1a8e30d9f03be5f0e0400a22c686c3a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 20:16:28 +0000 Subject: [PATCH 066/181] Update tests for the country/affiliation aliases --- ietf/stats/factories.py | 12 +++++++++++- ietf/stats/tests.py | 17 +++++++++++++++-- ietf/stats/utils.py | 1 + ietf/stats/views.py | 4 +--- 4 files changed, 28 insertions(+), 6 deletions(-) diff --git a/ietf/stats/factories.py b/ietf/stats/factories.py index 7eba1267528..68c13abcb5d 100644 --- a/ietf/stats/factories.py +++ b/ietf/stats/factories.py @@ -2,10 +2,20 @@ import factory -from ietf.stats.models import MeetingRegistration +from ietf.stats.models import AffiliationIgnoredEnding, AffiliationMainName, MeetingRegistration from ietf.meeting.factories import MeetingFactory from ietf.person.factories import PersonFactory +class AffiliationIgnoredEndingFactory(factory.django.DjangoModelFactory): + class Meta: + model = AffiliationIgnoredEnding + + ending = '' +class AffiliationMainNameFactory(factory.django.DjangoModelFactory): + class Meta: + model = AffiliationMainName + + main_name = factory.Faker('company') class MeetingRegistrationFactory(factory.django.DjangoModelFactory): class Meta: model = MeetingRegistration diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 98fa68ee821..b56c94d59c3 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -24,6 +24,7 @@ from ietf.group.factories import GroupFactory from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory +from ietf.stats.factories import AffiliationIgnoredEndingFactory, AffiliationMainNameFactory from ietf.utils.timezone import date_today @@ -67,12 +68,19 @@ def test_document_stats(self): affiliation = factory.Faker('company').evaluate(None, None, {'locale': None}) country = factory.Faker('country').evaluate(None, None, {'locale': None}) + # Create the various aliases ancilliary content + AffiliationIgnoredEndingFactory(ending='llc\\.?') + AffiliationIgnoredEndingFactory(ending='ag\\.?') + AffiliationIgnoredEndingFactory(ending='inc\\.?') + AffiliationIgnoredEndingFactory(ending='corp\\.?') + AffiliationMainNameFactory(main_name='Cisco') + DocumentAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) DocumentAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ', LLC', country=country) DocumentAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker('company'), country=factory.Faker('country')) DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + ' AG', country=country) DocumentAuthorFactory(document=rfcInfGroup2, affiliation='CiScO InC.', country=country) - DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation='CISCO corp.', country='KINGDOM of BELGIUM') + DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation='CISCO corp.', country='belgique') DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation=affiliation, country=country) DocumentAuthorFactory(document=rfcBcpIAB1, affiliation='CiScO PTY LTD', country='UnItEd StAtEs') DocumentAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country='usa') @@ -146,7 +154,7 @@ def test_document_stats(self): self.assertTrue(chart_data["labels"] == [year1960, yearNow]) self.assertTrue( any( - ds["label"] == "USA" and ds["data"] == [2, 1] + ds["label"] == "United States of America" and ds["data"] == [2, 1] for ds in chart_data["datasets"] ) ) @@ -214,6 +222,11 @@ def test_meeting_stats(self): RegistrationFactory(meeting=meeting124, with_ticket={'attendance_type_id': 'remote'}, attended=False) RegistrationFactory.create_batch(15, meeting=meeting125, affiliation='Test LLC', with_ticket={'attendance_type_id': 'remote'}, attended=False) RegistrationFactory.create_batch(25, meeting=meeting125, affiliation='Example, Ltd', with_ticket={'attendance_type_id': 'onsite'}, attended=False) + + # Create the various aliases ancilliary content + AffiliationIgnoredEndingFactory(ending='llc\\.?') + AffiliationIgnoredEndingFactory(ending='ltd\\.?') + # Test the meeting specific statitistics per affiliation and per country r = self.client.get(urlreverse(ietf.stats.views.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index c189dd3c636..3449174329f 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -17,6 +17,7 @@ def compile_affiliation_ending_stripping_regexp(): parts = [] for ending_re in AffiliationIgnoredEnding.objects.values_list("ending", flat=True): + # Try to compile as a syntax check try: re.compile(ending_re) except re.error: diff --git a/ietf/stats/views.py b/ietf/stats/views.py index ebe8619f72e..b75c0faffd3 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -6,10 +6,9 @@ import datetime import itertools import json -import re import hashlib import dateutil.relativedelta -from collections import defaultdict, Counter +from collections import defaultdict from django.conf import settings from django.contrib.auth.decorators import login_required @@ -279,7 +278,6 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] elif group_by == 'country': alias_map = get_aliased_countries(group for _, group in year_group_list) - print('Group_by:', group_by, ', alias map:', alias_map) year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] alias_map[''] = 'Unspecified' From 53136b2195355b294b282a1f735ed055c3cdcc98 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 22:09:43 +0000 Subject: [PATCH 067/181] Use & rather than "&" --- ietf/templates/stats/documents_timeline.html | 6 +++++- ietf/templates/stats/documents_total.html | 3 ++- ietf/templates/stats/meetings_timeline.html | 11 +++++++---- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 230a273dfe2..a84e3f12b1d 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -57,7 +57,11 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    - Specific lines can be removed by clicking on their legend at the bottom of the graphic. Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + Specific lines can be removed by clicking on their legend at the bottom of the graphic. + Hold Alt (or on Mac) and scroll/drag to zoom & pan. + Panning can be done via the mouse or with a finger. + Zooming is done via the mouse wheel or via a pinch gesture. + Press ESC or click to reset panning/zooming.

    diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 54aeedeb112..dcd8d572139 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -56,7 +56,8 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    - Click on a bar to hide it and rescale the graph. Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + Click on a bar to hide it and rescale the graph. + Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC or click to reset panning/zooming.

    diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 34f3047ad28..c3778011a8d 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -24,7 +24,7 @@

    {% if slug == stats_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    @@ -34,7 +34,7 @@

    {% if num == 'All' %} active {% endif %}" - href="{{ url }}">{{ num }} + href="{{ url }}?top={{ top_n }}">{{ num }} {% endfor %}

    @@ -42,7 +42,7 @@

    {% if stats_type == 'total' %} This page provides a timeline of meeting registrations. {% else %} - This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} categories. + This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} {{ plural_stats_type }}. {% endif %}

    @@ -71,7 +71,10 @@

    In Person Registrations by {{ stats_type|title }}

    - Specific lines can be removed by clicking on their legend at the bottom of the graphic. Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC + Specific lines can be removed by clicking on their legend at the bottom of the graphic. + Hold Alt (or on Mac) and scroll/drag to zoom & pan. + Panning can be done via the mouse or with a finger. + Zooming is done via the mouse wheel or via a pinch gesture. Press ESC or click to reset panning/zooming.

    From 770948a2624c485844507badba90977584eb6587 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 22:10:17 +0000 Subject: [PATCH 068/181] URL contains plural meetings for the timeline graphics --- ietf/stats/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 5e90e243217..304b0c14070 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -13,8 +13,8 @@ url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), - url(r"^meeting/$", views.meetings_timeline), + url(r"^meetings/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), - url(r"^meeting/(?:(?Paffiliation|country|total)/)?$", views.meetings_timeline), + url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views.meetings_timeline), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), ] From 9adc3308af60b752bdd235a30a8bcd0f3fbe9f53 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 22:10:36 +0000 Subject: [PATCH 069/181] Add top_n for meetings timeline --- ietf/stats/views.py | 43 +++++++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index b75c0faffd3..d2e9079f353 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -534,7 +534,7 @@ def documents_timeline(request, doc_type='rfc', stats_type='level'): "chart_data": chart_data, }) -def get_affiliation_data_for_meetings(attendance_type=None): +def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): """Get affiliation participation data for meetings timeline chart. Args: @@ -543,10 +543,9 @@ def get_affiliation_data_for_meetings(attendance_type=None): Returns: Tuple of (sorted_meetings, datasets) for Chart.js. """ - cache_key = f'stats:get_affiliation_data_for_meetings:{attendance_type}' + cache_key = f'stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}' sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): - top_n = 20 # could be a parameter, but would need to adjust cache handling # Get registration status details if attendance_type: @@ -630,7 +629,7 @@ def get_affiliation_data_for_meetings(attendance_type=None): return sorted_meetings, datasets -def get_country_data_for_meetings(attendance_type=None): +def get_country_data_for_meetings(attendance_type=None, top_n=20): """Get country participation data for meetings timeline chart. Args: @@ -639,10 +638,9 @@ def get_country_data_for_meetings(attendance_type=None): Returns: Tuple of (sorted_meetings, datasets) for Chart.js. """ - cache_key = f'stats:get_country_data_for_meetings:{attendance_type}' + cache_key = f'stats:get_country_data_for_meetings:{attendance_type}-{top_n}' sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): - top_n = 10 # could be a parameter, but would need to adjust cache handling # Get registration status counts, aggregated by country_code if attendance_type: registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) @@ -657,7 +655,12 @@ def get_country_data_for_meetings(attendance_type=None): .annotate(participant_count=Count('id')) .order_by('meeting__number') # chronological order ) - + + # Prepare country affiliation data, applying canonicalization and aliasing + # Mainly used to conver 2-letter country code into a full name + # Could possible use Country directly + alias_map = get_aliased_countries(country_code for country_code in queryset.values_list('country_code', flat=True)) + # ── Step 1: Collect all meetings and country totals ── meetings_set = set() country_totals = defaultdict(int) @@ -665,7 +668,7 @@ def get_country_data_for_meetings(attendance_type=None): for row in queryset: meeting = row['meeting__number'] - country = row['country_code'] + country = alias_map.get(row['country_code'], row['country_code']) count = row['participant_count'] meetings_set.add(meeting) @@ -729,13 +732,13 @@ def get_country_data_for_meetings(attendance_type=None): return sorted_meetings, datasets -def get_data_for_meetings(): +def get_data_for_meetings(top_n=20): """Get total participation data by attendance type for meetings timeline chart. Returns: Tuple of (sorted_meetings, datasets) for Chart.js. """ - cache_key = "stats:get_data_for_meetings" + cache_key = f'stats:get_data_for_meetings:{top_n}' sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): # Get registration status counts, aggregated by ticket types @@ -803,19 +806,22 @@ def meetings_timeline(request, stats_type='country'): Returns: Rendered response for the meetings timeline template. """ + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + if stats_type == 'total': - total_labels, total_data_sets = get_data_for_meetings() + total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) in_person_labels = ([], []) in_person_data_sets = ([], []) - top_n = len(total_data_sets) - 1 # subtract one because we don't count "other" + plural_stats_type = '' elif stats_type == 'affiliation': - total_labels, total_data_sets = get_affiliation_data_for_meetings() - in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type='onsite') - top_n = len(total_data_sets) - 1 # subtract one because we don't count "other" + total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n=top_n) + in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type='onsite', top_n=top_n) + plural_stats_type = 'affiliations' elif stats_type == 'country': - total_labels, total_data_sets = get_country_data_for_meetings() - in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type='onsite') - top_n = len(total_data_sets) - 1 # subtract one because we don't count "other" + total_labels, total_data_sets = get_country_data_for_meetings(top_n=top_n) + in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type='onsite', top_n=top_n) + plural_stats_type = 'countries' else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -857,6 +863,7 @@ def meetings_timeline(request, stats_type='country'): "possible_stats_types": possible_stats_types, "possible_meeting_numbers": possible_meeting_numbers, "stats_type": stats_type, + "plural_stats_type": plural_stats_type, "total_chart_data": total_chart_data, "in_person_chart_data": in_person_chart_data, }) From 41f8596af35bc33ce572f5704db0e503141267a9 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 11 May 2026 22:10:56 +0000 Subject: [PATCH 070/181] Test the authors total graphics --- ietf/stats/tests.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index b56c94d59c3..f8841c8b0c0 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -17,7 +17,6 @@ from ietf.utils.test_utils import login_testing_unauthorized, TestCase import ietf.stats.views - from ietf.group.factories import RoleFactory from ietf.person.factories import PersonFactory from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory @@ -26,8 +25,6 @@ from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory from ietf.stats.factories import AffiliationIgnoredEndingFactory, AffiliationMainNameFactory from ietf.utils.timezone import date_today - - class StatisticsTests(TestCase): def test_stats_index(self): # Create a meeting as the index page needs to know the current meeting @@ -213,6 +210,20 @@ def test_document_stats(self): ) ) + # Test#7 the authors specific statistics global + r = self.client.get(urlreverse(ietf.stats.views.authors_total, kwargs={"doc_type": "draft", "stats_type": "country"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Draft Authors by Country") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue('Belgium' in chart_data["labels"]) + self.assertTrue('United States of America' in chart_data["labels"]) + self.assertTrue(country in chart_data["labels"]) + USA_index = chart_data["labels"].index('United States of America') + # Let's check whether USA has indeed 1 + self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) + def test_meeting_stats(self): meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) meeting125 = MeetingFactory(type_id='ietf', number='125', date=timezone.now() + datetime.timedelta(days=120)) From 15276c8944da96e0a79e35f17f08842aa670051a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 08:49:31 +0000 Subject: [PATCH 071/181] Display full country name in per meeting stat --- ietf/stats/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index d2e9079f353..2996221cd82 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -933,14 +933,16 @@ def get_country_data_for_meeting(meeting_number, minimum_required, attendance_ty registration_counts = registration_counts.filter(tickets__attendance_type=attendance_type) registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') + alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) labels = [] data = [] others_count = 0 total = 0 for item in registration_counts: total += item['count'] + country_code = alias_map.get(item['country_code'], item['country_code']) if item['count'] > minimum_required: - labels.append(item['country_code']) + labels.append(country_code) data.append(item['count']) else: others_count += item['count'] From cd48b92b407bf0a65bf5d0627195104e05230902 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 10:23:52 +0000 Subject: [PATCH 072/181] Use top-n rather than minimum participants in per meeting stats --- ietf/stats/views.py | 63 +++++++++++++------------ ietf/templates/stats/meeting_stats.html | 6 +-- 2 files changed, 36 insertions(+), 33 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 2996221cd82..55f0a62edd4 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -806,7 +806,7 @@ def meetings_timeline(request, stats_type='country'): Returns: Rendered response for the meetings timeline template. """ - # Query parameters (from ?key=value) + # Query parameters (from ?key=value) top_n = int(request.GET.get('top', '20')) if stats_type == 'total': @@ -868,12 +868,11 @@ def meetings_timeline(request, stats_type='country'): "in_person_chart_data": in_person_chart_data, }) -def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendance_type=None): +def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=None): """Get affiliation participation data for a specific meeting. Args: meeting_number: The meeting number. - minimum_required: Minimum count to include in main data (others go to 'Other'). attendance_type: Optional filter for attendance type. Returns: @@ -900,23 +899,24 @@ def get_affiliation_data_for_meeting(meeting_number, minimum_required, attendanc sorted_orgs = sorted(organization.items(), key=lambda t: t[1], reverse=True) labels = [] data = [] - others_count = 0 total = 0 - for org, count in sorted_orgs: + for org, count in sorted_orgs[:top_n]: total += count - if count > minimum_required: - labels.append(org) - data.append(count) - else: - others_count += count + labels.append(org) + data.append(count) - if others_count > 0: + other_total = 0 + for _, count in sorted_orgs[top_n:]: + other_total += count + + if other_total > 0: labels.append('Other') - data.append(others_count) + data.append(other_total) + return labels, data, total -def get_country_data_for_meeting(meeting_number, minimum_required, attendance_type=None): +def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None): """Get country participation data for a specific meeting. Args: @@ -936,20 +936,22 @@ def get_country_data_for_meeting(meeting_number, minimum_required, attendance_ty alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) labels = [] data = [] - others_count = 0 total = 0 - for item in registration_counts: + country_totals = defaultdict(int) + for item in registration_counts[:top_n]: total += item['count'] - country_code = alias_map.get(item['country_code'], item['country_code']) - if item['count'] > minimum_required: - labels.append(country_code) - data.append(item['count']) - else: - others_count += item['count'] + country = alias_map.get(item['country_code'], item['country_code']) + labels.append(country) + data.append(item['count']) + country_totals[country] = item['count'] - if others_count > 0: + other_total = 0 + for item in registration_counts[top_n:]: + other_total += item['count'] + + if other_total > 0: labels.append('Other') - data.append(others_count) + data.append(other_total) return labels, data, total @@ -969,16 +971,17 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): if meeting_number is None: meeting_number = current_meeting + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + this_meeting = get_ietf_meeting(meeting_number) if stats_type == 'affiliation': - minimum_required = 4 - total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, minimum_required) - in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') + total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) + in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') elif stats_type == 'country': - minimum_required = 10 - total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, minimum_required) - in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, minimum_required, attendance_type='onsite') + total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, top_n=top_n) + in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -1025,7 +1028,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): "possible_stats_types": possible_stats_types, "possible_meeting_numbers": possible_meeting_numbers, "stats_type": stats_type, - "minimum_required": minimum_required, + "top_n": top_n, "total_chart_data": total_chart_data, "total_total": total_total, "in_person_chart_data": in_person_chart_data, diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index fc41949a2ef..2a6d47701e2 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -22,7 +22,7 @@

    {% if slug == stats_type %} active {% endif %}" - href="{{ url }}">{{ label }} + href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %} @@ -32,13 +32,13 @@

    {% if num == meeting_number %} active {% endif %}" - href="{{ url }}">{{ num }} + href="{{ url }}?top={{ top_n }}">{{ num }} {% endfor %}

    This page provides a visual representation of the total registrations for IETF-{{ meeting_number }} by {{ stats_type }}. - Only categories having more than {{ minimum_required }} registrations are displayed separately, + Only the top-{{ top_n }} {{ stats_type }} registrations are displayed separately, else they are grouped under "Other".

    From b6bf98666aa0a6e1eff966e5d361245e56fa05e6 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 12:21:26 +0000 Subject: [PATCH 073/181] Fix affiliation factory --- ietf/stats/tests.py | 9 +++++++++ ietf/stats/views.py | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index f8841c8b0c0..760a6804baa 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -5,6 +5,7 @@ import calendar import json import datetime +import re import factory from pyquery import PyQuery @@ -63,7 +64,15 @@ def test_document_stats(self): # Let's create some authors, first get some test strings for affiliations and countries affiliation = factory.Faker('company').evaluate(None, None, {'locale': None}) + print('affiliation=', affiliation) + # Sometimes the factory adds "LLC" or some other suffix, causing problem in the tests + # below as another ", LLC" is added. Let's only take the first word of the affiliation + # up to a space or "," + if re.sub(r',?\s*\S+\s*$', '', affiliation) != '': + affiliation = re.sub(r',?\s*\S+\s*$', '', affiliation) + print("Affiliation is now: ", affiliation) country = factory.Faker('country').evaluate(None, None, {'locale': None}) + print('country=', country) # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 55f0a62edd4..3a921fd78b7 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -288,7 +288,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr # years_set.add(year) if group is None or group == '': group = 'Unspecified' - print("Found unspecified affiliation/country for year", year, group) + print("Found empty affiliation/country for year", year, group) else: group = alias_map.get(group, group) data_map[year][group] = data_map[year].get(group, 0) + 1 @@ -908,6 +908,7 @@ def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=N other_total = 0 for _, count in sorted_orgs[top_n:]: other_total += count + total += count if other_total > 0: labels.append('Other') @@ -948,6 +949,7 @@ def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None) other_total = 0 for item in registration_counts[top_n:]: other_total += item['count'] + total += item['count'] if other_total > 0: labels.append('Other') From 6763893d59713299cf693c39a8de13fb3fec2126 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 13:29:57 +0000 Subject: [PATCH 074/181] The other bin was never computed --- ietf/stats/tests.py | 4 +--- ietf/stats/views.py | 30 ++++++++++++++++-------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 760a6804baa..5d839f1cb69 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -64,15 +64,12 @@ def test_document_stats(self): # Let's create some authors, first get some test strings for affiliations and countries affiliation = factory.Faker('company').evaluate(None, None, {'locale': None}) - print('affiliation=', affiliation) # Sometimes the factory adds "LLC" or some other suffix, causing problem in the tests # below as another ", LLC" is added. Let's only take the first word of the affiliation # up to a space or "," if re.sub(r',?\s*\S+\s*$', '', affiliation) != '': affiliation = re.sub(r',?\s*\S+\s*$', '', affiliation) - print("Affiliation is now: ", affiliation) country = factory.Faker('country').evaluate(None, None, {'locale': None}) - print('country=', country) # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') @@ -206,6 +203,7 @@ def test_document_stats(self): pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) self.assertTrue(chart_data["labels"] == [yearNow]) + # Test failing on line 209 self.assertTrue( any( ds["label"].casefold() == country.casefold() and ds["data"] == [2] diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 3a921fd78b7..d44f6eaf5c0 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -390,10 +390,13 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = )[:top_n] non_top_groups = documents_totals.keys() - top_groups other_totals = defaultdict(int) + other_bin_is_empty = True for y in years_set: other_totals[y] = 0 for g in non_top_groups: other_totals[y] += int(data_map[y].get(g, 0)) + if int(data_map[y].get(g, 0)) > 0: + other_bin_is_empty = False # ── Step 4: Build Chart.js datasets ── @@ -413,19 +416,19 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 'pointHoverRadius': 6, 'borderWidth': 2, }) - - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_set], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.0, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) + if not other_bin_is_empty: + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(year, 0) for year in years_set], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.0, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) return years_set, datasets def authors_timeline(request, doc_type='all', stats_type='affiliation'): @@ -485,7 +488,6 @@ def documents_timeline(request, doc_type='rfc', stats_type='level'): Args: request: The HTTP request object. stats_type: Type of statistics. - top_n: Number of top items to show (for country stats). Returns: Rendered response for the documents timeline template. From cdc3044a63cc5fe0232fdcdf0968c6478e0a2572 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 15:03:25 +0000 Subject: [PATCH 075/181] Add total bars for documents --- ietf/static/js/document_total.js | 16 +--- ietf/stats/urls.py | 1 + ietf/stats/views.py | 110 +++++++++++++++++++--- ietf/templates/stats/documents_total.html | 12 ++- 4 files changed, 108 insertions(+), 31 deletions(-) diff --git a/ietf/static/js/document_total.js b/ietf/static/js/document_total.js index a9d834d2238..57d80f46717 100644 --- a/ietf/static/js/document_total.js +++ b/ietf/static/js/document_total.js @@ -8,6 +8,9 @@ document.addEventListener('DOMContentLoaded', () => { // ── Safely parse JSON data injected from Django view ── const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; + const objects = JSON.parse(document.getElementById('objects').textContent) ; + console.log("Objects=", objects) ; + console.log("chartData=", chartData) ; function refreshChart() { // On first call, snapshot the original data onto the chart instance itself @@ -59,7 +62,7 @@ document.addEventListener('DOMContentLoaded', () => { x: { title: { display: true, - text: 'Number of authors', + text: 'Number of ' + objects, }, }, y: { @@ -81,7 +84,7 @@ document.addEventListener('DOMContentLoaded', () => { return `${items[0].label}`; }, label: function(context) { - return `${context.formattedValue} authors`; + return `${context.formattedValue} ${objects}`; } } }, @@ -114,13 +117,4 @@ document.addEventListener('DOMContentLoaded', () => { } const documentsChart = displayChart('documentsChart', chartData) ; - - document.addEventListener('keydown', (event) => { - if (event.key === 'Escape') { - documentsChart.resetZoom() - } - }) - document.getElementById('resetButton').addEventListener('click', () => { - documentsChart.resetZoom() - }) }) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 304b0c14070..35bd23897d9 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -12,6 +12,7 @@ url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_timeline), url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), + url(r"^total/documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_total), url(r"^knowncountries/$", views.known_countries_list), url(r"^meetings/$", views.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), diff --git a/ietf/stats/views.py b/ietf/stats/views.py index d44f6eaf5c0..e23fabad9ee 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -199,16 +199,6 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', return chart_data def authors_total(request, doc_type='all', stats_type='affiliation'): - """Render the documents timeline page with document statistics over time. - - Args: - request: The HTTP request object. - stats_type: Type of statistics. - top_n: Number of top items to show (for country stats). - - Returns: - Rendered response for the documents timeline template. - """ # Query parameters (from ?key=value) top_n = int(request.GET.get('top', '10')) @@ -347,7 +337,96 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr return years_set, datasets -def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 10): +def get_total_data_for_documents(doc_type = 'rfc', group_by = 'level', top_n = 20): + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(type_id= 'draft') + filters &= Q(name__startswith='draft-ietf') + queryset = ( + Document.objects + .filter(filters) + .values(group_by) + .annotate(document_count=Count('id', distinct=True)) # Count as many document authored by this author + .order_by('-document_count') + ) + + group_count_set = { + (group, count) + for group, count in queryset.values_list(group_by, 'document_count') + } + + group_count_dict = dict() + for group, count in group_count_set: + if group is None or group == '': + group = 'Unspecified' + group_count_dict[group] = group_count_dict.get(group, 0) + count + + group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = group_count_dict[:top_n] + other_count = sum(count for _, count in group_count_dict[top_n:]) + if other_count > 0: + top_groups.append(('Other', other_count)) + + labels, data = zip(*top_groups) if top_groups else ([], []) + chart_data = { + 'labels': labels, + 'datasets': [{ + 'data': data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], + 'borderColor': 'black', + 'borderWidth': 1, + }], + } + + return chart_data + +def documents_total(request, doc_type='rfc', stats_type='level'): + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + + if stats_type == 'stream': + chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) + elif stats_type == 'level' and doc_type == 'draft': + chart_data = get_total_data_for_documents(doc_type, 'intended_std_level_id', top_n) + elif stats_type == 'level' and doc_type == 'rfc': + chart_data = get_total_data_for_documents(doc_type, 'std_level_id', top_n) + elif stats_type == 'wg': + chart_data = get_total_data_for_documents(doc_type, 'group__name', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("draft", "Drafts", urlreverse(documents_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("rfc", "RFCs", urlreverse(documents_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + + possible_stats_types = [ + ("stream", "Streams", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), + ("wg", "Working Groups", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), + ] + if doc_type == 'draft': + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + elif doc_type == 'rfc': + possible_stats_types.append(("level", "Category", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + + return render(request, "stats/documents_total.html", { + "top_n": top_n, + "objects": "documents", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) + +def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 10): if doc_type != 'all': queryset = Document.objects.filter(type_id=doc_type) else: @@ -416,6 +495,7 @@ def get_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 'pointHoverRadius': 6, 'borderWidth': 2, }) + if not other_bin_is_empty: datasets.append({ 'label': 'Other', @@ -497,13 +577,13 @@ def documents_timeline(request, doc_type='rfc', stats_type='level'): top_n = int(request.GET.get('top', '10')) if stats_type == 'stream': - total_labels, total_data_sets = get_data_for_documents(doc_type, 'stream__name', top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) elif stats_type == 'level' and doc_type == 'draft': - total_labels, total_data_sets = get_data_for_documents(doc_type, 'intended_std_level_id', top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'intended_std_level_id', top_n) elif stats_type == 'level' and doc_type == 'rfc': - total_labels, total_data_sets = get_data_for_documents(doc_type, 'std_level_id', top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'std_level_id', top_n) elif stats_type == 'wg': - total_labels, total_data_sets = get_data_for_documents(doc_type, 'group__name', top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'group__name', top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index dcd8d572139..b202b9aba26 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -4,6 +4,7 @@ {% load ietf_filters static django_bootstrap5 %} {% block js %} {{ chart_data|json_script:"chart_data" }} + {{ objects|json_script:"objects" }} {% endblock %} {% block content %} @@ -22,7 +23,7 @@

    href="{{ total_url }}?top={{ top_n }}">Total

    -
    +
    {% for slug, label, url in possible_stats_types %} Documents: -
    +
    {% for slug, label, url in possible_docs_types %}
    @@ -57,8 +61,6 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    Click on a bar to hide it and rescale the graph. - Hold Alt (or on Mac) and scroll/drag to zoom & pan. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC - or click to reset panning/zooming.

    {% endblock %} \ No newline at end of file From bc9b69f66a4b0195e5286367e0b38bb041fd71de Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 15:55:49 +0000 Subject: [PATCH 076/181] Draft test for total documents --- ietf/stats/tests.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 5d839f1cb69..fd669155864 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -231,6 +231,13 @@ def test_document_stats(self): # Let's check whether USA has indeed 1 self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) + # Test#8 the documents specific statistics global + r = self.client.get(urlreverse(ietf.stats.views.documents_total, kwargs={"doc_type": "draft", "stats_type": "wg"})) + self.assertEqual(r.status_code, 200) +# +# TODO +# + def test_meeting_stats(self): meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) meeting125 = MeetingFactory(type_id='ietf', number='125', date=timezone.now() + datetime.timedelta(days=120)) From 04f9cae44e6fe35a099966c77a3cd531de5cf08b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 12 May 2026 16:39:24 +0000 Subject: [PATCH 077/181] More tests for documents totals --- ietf/stats/tests.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index fd669155864..92e063923ca 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -204,6 +204,7 @@ def test_document_stats(self): chart_data = json.loads(pq.find("script#chart_data").text()) self.assertTrue(chart_data["labels"] == [yearNow]) # Test failing on line 209 + print("L207, chart_data=", chart_data) self.assertTrue( any( ds["label"].casefold() == country.casefold() and ds["data"] == [2] @@ -234,9 +235,14 @@ def test_document_stats(self): # Test#8 the documents specific statistics global r = self.client.get(urlreverse(ietf.stats.views.documents_total, kwargs={"doc_type": "draft", "stats_type": "wg"})) self.assertEqual(r.status_code, 200) -# -# TODO -# + self.assertContains(r, "Draft Documents by Wg") + # Extract the JSON embedded in the response + pq = PyQuery(r.content) + chart_data = json.loads(pq.find("script#chart_data").text()) + self.assertTrue(group1.name in chart_data["labels"]) + individual_index = chart_data["labels"].index('Individual submissions') + # Let's check whether USA has indeed 1 + self.assertTrue(chart_data["datasets"][0]["data"][individual_index] == 1) def test_meeting_stats(self): meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) From 5672ce21c50a089c85d9325aaa5489da0d3e3b5f Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 06:41:34 +0000 Subject: [PATCH 078/181] Remove debugging console.log() --- ietf/static/js/document_total.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/ietf/static/js/document_total.js b/ietf/static/js/document_total.js index 57d80f46717..551d37165a5 100644 --- a/ietf/static/js/document_total.js +++ b/ietf/static/js/document_total.js @@ -9,8 +9,6 @@ document.addEventListener('DOMContentLoaded', () => { // ── Safely parse JSON data injected from Django view ── const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; const objects = JSON.parse(document.getElementById('objects').textContent) ; - console.log("Objects=", objects) ; - console.log("chartData=", chartData) ; function refreshChart() { // On first call, snapshot the original data onto the chart instance itself @@ -49,7 +47,6 @@ document.addEventListener('DOMContentLoaded', () => { options: { indexAxis: 'y', onClick: (event, elements) => { - console.log('Clicked elements:', elements); if (elements.length > 0) { const idx = elements[0].index; const label = chart.data.labels[idx]; From 7b07e5d3489f33b6bfdef7a9e2845d7f074fd737 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 06:47:06 +0000 Subject: [PATCH 079/181] Use all documents even in dev mode --- ietf/stats/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index e23fabad9ee..9afce6815ea 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -247,7 +247,6 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr DocumentAuthor.objects .select_related('document') .filter(filters) - [0:1000] # During development to go faster ) # ── Step 1: Collect all meetings and tickets totals ── @@ -611,6 +610,7 @@ def documents_timeline(request, doc_type='rfc', stats_type='level'): "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, + "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, From e09c6c744b3cdca1e19590129fe7af4ec8d0794e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 06:47:27 +0000 Subject: [PATCH 080/181] Allow changing the number of categories to display --- ietf/templates/stats/documents_timeline.html | 5 +++++ ietf/templates/stats/documents_total.html | 5 +++++ ietf/templates/stats/meeting_stats.html | 5 +++++ ietf/templates/stats/meetings_timeline.html | 6 ++++++ 4 files changed, 21 insertions(+) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index a84e3f12b1d..8e0940ca46f 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -41,6 +41,11 @@

    href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    +
    + + + +

    This page provides a timeline of IETF {{ doc_type|upper }} documents {{ objects }} by {{ stats_type }}. Only the top-{{ top_n }} categories are listed, diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index b202b9aba26..4d2a6e43a2a 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -42,6 +42,11 @@

    href="{{ url }}?top={{ top_n }}">{{ label }} {% endfor %}

    +
    + + + +

    This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} {{ objects}}. diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index 2a6d47701e2..9544b9dfeaa 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -35,6 +35,11 @@

    href="{{ url }}?top={{ top_n }}">{{ num }} {% endfor %}

    +
    + + + +

    This page provides a visual representation of the total registrations for IETF-{{ meeting_number }} by {{ stats_type }}. diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index c3778011a8d..67135a387b4 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -37,6 +37,12 @@

    href="{{ url }}?top={{ top_n }}">{{ num }} {% endfor %} +
    + + + +
    +

    {% if stats_type == 'total' %} From 1cfb6caf02082ecbe85d13d9d817bd33354b8f57 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 08:24:00 +0000 Subject: [PATCH 081/181] Fix HTML label --- ietf/templates/stats/documents_timeline.html | 5 +++-- ietf/templates/stats/documents_total.html | 5 +++-- ietf/templates/stats/meeting_stats.html | 5 +++-- ietf/templates/stats/meetings_timeline.html | 5 +++-- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 8e0940ca46f..9f56a061071 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -42,8 +42,9 @@

    {% endfor %}
    - - +
    diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 4d2a6e43a2a..6accc6a3a78 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -43,8 +43,9 @@

    {% endfor %}
    - - +
    diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index 9544b9dfeaa..b48227064e3 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -36,8 +36,9 @@

    {% endfor %}
    - - +
    diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 67135a387b4..d7b60c0a187 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -38,8 +38,9 @@

    {% endfor %}
    - - +
    From 98b3480c33b12344a7bc25226dac00bf3608176a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 13:57:47 +0000 Subject: [PATCH 082/181] Failed (?) attempt to use a cache --- ietf/stats/views.py | 114 +++++++++++++++++++++++++------------------- 1 file changed, 64 insertions(+), 50 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 9afce6815ea..00a062ec2f4 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -236,59 +236,73 @@ def authors_total(request, doc_type='all', stats_type='affiliation'): def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 10): - # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(document__type_id=doc_type) - if doc_type == 'wg-draft': - filters &= Q(document__type_id= 'draft') - filters &= Q(document__name__startswith='draft-ietf') - queryset = ( - DocumentAuthor.objects - .select_related('document') - .filter(filters) - ) -# ── Step 1: Collect all meetings and tickets totals ── - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) # {year: {stream: count}} - - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) - year_group_list = [ - (row.document.pub_date().year, getattr(row, group_by)) - for row in queryset - if row.document.pub_date() is not None - ] - if group_by == 'affiliation': - alias_map = get_aliased_affiliations(group for _, group in year_group_list) - year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] - elif group_by == 'country': - alias_map = get_aliased_countries(group for _, group in year_group_list) - year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] - alias_map[''] = 'Unspecified' - - years_set = {year for year, _ in year_group_list} - # documents_totals = dict(Counter(group for _, group in year_group_list)) # Does not work too well as aliases are not applied, so we do the counting in the loop below - for year, group in year_group_list: - # possibly faster with list processing above - # years_set.add(year) - if group is None or group == '': - group = 'Unspecified' - print("Found empty affiliation/country for year", year, group) - else: - group = alias_map.get(group, group) - data_map[year][group] = data_map[year].get(group, 0) + 1 - documents_totals[group] += 1 - if group == 'Unspecified': - print("After aliasing, found unspecified affiliation/country for year", year, group, data_map[year][group]) + cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' + result = cache.get(cache_key, None) + print("Result:", result) + if result is not None: + years_set, documents_totals = result + print("Using caching, years_set=", years_set) + else: + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(document__type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(document__type_id= 'draft') + filters &= Q(document__name__startswith='draft-ietf') + queryset = ( + DocumentAuthor.objects + .select_related('document') + .filter(filters) + ) - # ── Step 2: Sort years numerically rather than alphabetically ── - years_set = sorted(years_set) + # ── Step 1: Collect all meetings and tickets totals ── + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) # {year: {stream: count}} + + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) + year_group_list = [ + (row.document.pub_date().year, getattr(row, group_by)) + for row in queryset + if row.document.pub_date() is not None + ] + if group_by == 'affiliation': + alias_map = get_aliased_affiliations(group for _, group in year_group_list) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + elif group_by == 'country': + alias_map = get_aliased_countries(group for _, group in year_group_list) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + alias_map[''] = 'Unspecified' + + years_set = {year for year, _ in year_group_list} + + # documents_totals = dict(Counter(group for _, group in year_group_list)) # Does not work too well as aliases are not applied, so we do the counting in the loop below + for year, group in year_group_list: + # possibly faster with list processing above + # years_set.add(year) + if group is None or group == '': + group = 'Unspecified' +# print("Found empty affiliation/country for year", year, group) + else: + group = alias_map.get(group, group) + data_map[year][group] = data_map[year].get(group, 0) + 1 + documents_totals[group] += 1 + # if group == 'Unspecified': + # print("After aliasing, found unspecified affiliation/country for year", year, group, data_map[year][group]) + + # ── Step 2: Sort years numerically rather than alphabetically ── + years_set = sorted(years_set) + cache.set( + cache_key, + (years_set, documents_totals), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) - # ── Step 3: Get top N and others ── + # ── Step 3: Get top N and others ── must be outside of the cache top_groups = sorted( documents_totals.keys(), key=lambda c: documents_totals[c], From 8213881104eff00c08acafa61b4e3fd44b148d0f Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 14:46:08 +0000 Subject: [PATCH 083/181] Wider input field for top_n --- ietf/templates/stats/documents_timeline.html | 2 +- ietf/templates/stats/documents_total.html | 2 +- ietf/templates/stats/meeting_stats.html | 2 +- ietf/templates/stats/meetings_timeline.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 9f56a061071..52d2d288f42 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -43,7 +43,7 @@

    diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 6accc6a3a78..a0663d11739 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -44,7 +44,7 @@

    diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index b48227064e3..ecc40fa6cf8 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -37,7 +37,7 @@

    diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index d7b60c0a187..935b3bacbe3 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -39,7 +39,7 @@

    From eb36f788c4edf6adad6cbe6f6f583390f82a07fa Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 14:46:34 +0000 Subject: [PATCH 084/181] Remove cache debugging --- ietf/stats/views.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 00a062ec2f4..59a125f0efb 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -239,10 +239,8 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' result = cache.get(cache_key, None) - print("Result:", result) if result is not None: - years_set, documents_totals = result - print("Using caching, years_set=", years_set) + years_set, documents_totals, data_map = result else: # Build a dynamic query set filter filters = Q() @@ -280,25 +278,19 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr years_set = {year for year, _ in year_group_list} - # documents_totals = dict(Counter(group for _, group in year_group_list)) # Does not work too well as aliases are not applied, so we do the counting in the loop below for year, group in year_group_list: - # possibly faster with list processing above - # years_set.add(year) if group is None or group == '': group = 'Unspecified' -# print("Found empty affiliation/country for year", year, group) else: group = alias_map.get(group, group) data_map[year][group] = data_map[year].get(group, 0) + 1 documents_totals[group] += 1 - # if group == 'Unspecified': - # print("After aliasing, found unspecified affiliation/country for year", year, group, data_map[year][group]) # ── Step 2: Sort years numerically rather than alphabetically ── years_set = sorted(years_set) cache.set( cache_key, - (years_set, documents_totals), + (years_set, documents_totals, data_map), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) From a1fb7c699f4b3b273f08d92eba3303de2f3a72f8 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 13 May 2026 20:53:40 +0000 Subject: [PATCH 085/181] Forgot one alias to remove --- ietf/stats/migrations/0003_update_aliases.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index d8c6147f633..1456ab403ed 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -14,6 +14,7 @@ {'alias': 'cisco systems india pvt', 'name': 'cisco Systems'}, {'alias': 'cisco systems (india) private limited', 'name': 'cisco Systems'}, {'alias': 'cisco system', 'name': 'cisco Systems'}, + {'alias': 'cisco', 'name': 'cisco Systems'}, ] ADDITIONAL_AFFILIATION_ALIASES = [ From 0c167035f53e06ff344aec0029cd71461c093433 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 14 May 2026 05:54:55 +0000 Subject: [PATCH 086/181] Add message to assertTrue() --- ietf/stats/tests.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 92e063923ca..72b3725fb13 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -203,13 +203,16 @@ def test_document_stats(self): pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) self.assertTrue(chart_data["labels"] == [yearNow]) - # Test failing on line 209 - print("L207, chart_data=", chart_data) + # Test sometimes failing below with the factory country name being different from the country name in the chart data, + # even though they should be the same country. + # Using casefold to make the comparison more robust, as the country names in the chart data are title-cased + # while the factory can return them in different cases. self.assertTrue( any( ds["label"].casefold() == country.casefold() and ds["data"] == [2] for ds in chart_data["datasets"] - ) + ), + msg=f"Country '{country}' not found in chart data labels: {chart_data['datasets']}" ) self.assertTrue( any( From ab2e2379374821fd1239feb6f6e8417f427c70bc Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 14 May 2026 07:02:26 +0000 Subject: [PATCH 087/181] Remove case folding code from the affiliation aliases --- ietf/stats/utils.py | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 3449174329f..42dc492072a 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -39,12 +39,7 @@ def get_aliased_affiliations(affiliations): - Stripping company endings like Inc., GmbH etc. from database - Looking up aliases stored directly in the database, like - "Examplar International" -> "Examplar" - - - Case-folding so Examplar and EXAMPLAR is merged with the - winner being the one with most occurrences (so input should not - be made unique) or most upper case letters in case of ties. - Case folding can be overridden by the aliases in the database.""" + "Examplar International" -> "Examplar" """ res = {} @@ -55,10 +50,9 @@ def get_aliased_affiliations(affiliations): # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" affiliation_main_names = [(main_name.lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] - affiliations_with_case_spellings = defaultdict(set) - case_spelling_count = defaultdict(int) for affiliation in affiliations: original_affiliation = affiliation + affiliation_plus_space = affiliation + " " # to match main names with a space added to the end of them # check aliases from Aliases DB name = known_aliases.get(affiliation.lower()) @@ -78,29 +72,12 @@ def get_aliased_affiliations(affiliations): affiliation = name res[original_affiliation] = affiliation - # check again aliases from Main Names DB - name = next((original for lower, original in affiliation_main_names if affiliation.lower().startswith(lower)), None) + # check aliases from Main Names DB + name = next((original for lower, original in affiliation_main_names if affiliation.lower().startswith(lower) or affiliation_plus_space.lower().startswith(lower)), None) if name is not None: affiliation = name res[original_affiliation] = affiliation - affiliations_with_case_spellings[affiliation.lower()].add(original_affiliation) - case_spelling_count[affiliation] += 1 - - def affiliation_sort_key(affiliation): - count = case_spelling_count[affiliation] - uppercase_letters = sum(1 for c in affiliation if c.isupper()) - return (count, uppercase_letters) - - # now we just need to pick the most popular uppercase/lowercase - # spelling for each affiliation with more than one - for similar_affiliations in affiliations_with_case_spellings.values(): - if len(similar_affiliations) > 1: - most_popular = sorted(similar_affiliations, key=affiliation_sort_key, reverse=True)[0] - for affiliation in similar_affiliations: - if affiliation != most_popular: - res[affiliation] = most_popular - return res From 471a3d94a085627591557bcd0ce3a042af4be099 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 14 May 2026 07:12:45 +0000 Subject: [PATCH 088/181] No need to import collection --- ietf/stats/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 42dc492072a..73f7df60811 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -3,7 +3,6 @@ import re -from collections import defaultdict import debug # pyflakes:ignore From f3e28fab84442da60ae58e436487a83c0c57e209 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 21 May 2026 17:40:54 +0000 Subject: [PATCH 089/181] fix: country factory does not use canonical names --- ietf/stats/tests.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index be29159ffbb..7902d1c17a4 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -71,7 +71,11 @@ def test_document_stats(self): if re.sub(r',?\s*\S+\s*$', '', affiliation) != '': affiliation = re.sub(r',?\s*\S+\s*$', '', affiliation) country = factory.Faker('country').evaluate(None, None, {'locale': None}) - + # Factory sometimes generates country names that are not exactly canonical + # causing problems in the tests below. + if country == 'Korea': + country = 'South Korea' + # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') AffiliationIgnoredEndingFactory(ending='ag\\.?') From 817afff5be02a57480df1633a43abffba8275147 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 21 May 2026 17:41:05 +0000 Subject: [PATCH 090/181] fix typo in code --- ietf/stats/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 5a820378f8d..aa5ddfbb44b 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -1058,7 +1058,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): """ current_meeting_number = get_current_ietf_meeting_num() if meeting_number is None: - meeting_number = current_meeting + meeting_number = current_meeting_number this_meeting = get_object_or_404( Meeting.objects.filter(type_id="ietf"), number=meeting_number ) From 37871da214269aad1499278d01a6cf5deef61415 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 21 May 2026 18:25:09 +0000 Subject: [PATCH 091/181] fix: another country name fix for the factory --- ietf/stats/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 7902d1c17a4..234ae2db021 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -75,6 +75,8 @@ def test_document_stats(self): # causing problems in the tests below. if country == 'Korea': country = 'South Korea' + elif country == 'Brunei Darussalam': + country = 'Brunei' # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') From c0c3f1b4dd6e5ac301b7712822793ebe9c88755a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 1 Jun 2026 22:46:39 +0000 Subject: [PATCH 092/181] Split the large views.py in smaller views_foo.py --- ietf/stats/tests.py | 33 +- ietf/stats/urls.py | 15 +- ietf/stats/utils.py | 22 + ietf/stats/views.py | 1013 +------------------------------ ietf/stats/views_authors.py | 265 ++++++++ ietf/stats/views_documents.py | 256 ++++++++ ietf/stats/views_meetings.py | 520 ++++++++++++++++ ietf/templates/base/menu.html | 6 +- ietf/templates/stats/index.html | 8 +- 9 files changed, 1096 insertions(+), 1042 deletions(-) create mode 100644 ietf/stats/views_authors.py create mode 100644 ietf/stats/views_documents.py create mode 100644 ietf/stats/views_meetings.py diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 234ae2db021..1920173a809 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -33,7 +33,8 @@ def test_stats_index(self): MeetingFactory(type_id='ietf', number='124', date=timezone.now()) url = urlreverse(ietf.stats.views.stats_index) r = self.client.get(url) - self.assertEqual(r.status_code, 200) + self.assertEqual(r.status_code, 200, + msg=f"Unexpected status code {r.status_code} for URL {url}") def test_document_stats(self): timeNow = timezone.now() @@ -97,7 +98,7 @@ def test_document_stats(self): DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ',inc', country='U.S.A.') # Test#1 the documents specific statistics: for RFC about the level - r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "level"})) + r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "level"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Specific lines can be removed") self.assertContains(r, "Rfc Documents by Level") @@ -119,7 +120,7 @@ def test_document_stats(self): ) # Test#2 the documents specific statistics: for RFC about the WG - r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "wg"})) + r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "wg"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Rfc Documents by Wg") # Extract the JSON embedded in the response @@ -134,7 +135,7 @@ def test_document_stats(self): ) # Test#3 the documents specific statistics: for drafts about the streams - r = self.client.get(urlreverse(ietf.stats.views.documents_timeline, kwargs={"doc_type": "draft", "stats_type": "stream"})) + r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "draft", "stats_type": "stream"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Documents by Stream") # Extract the JSON embedded in the response @@ -155,7 +156,7 @@ def test_document_stats(self): ) # Test#4 the authors specific statistics: for all docs about the countries - r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "all", "stats_type": "country"})) + r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "all", "stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "All Authors by Country") # Extract the JSON embedded in the response @@ -176,7 +177,7 @@ def test_document_stats(self): ) # Test#5 the authors specific statistics: for all all rfcs about the affiliation - r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "affiliation"})) + r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Rfc Authors by Affiliation") # Extract the JSON embedded in the response @@ -203,7 +204,7 @@ def test_document_stats(self): ) # Test#6 the authors specific statistics: for all WG drafts about the country - r = self.client.get(urlreverse(ietf.stats.views.authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": "country"})) + r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Wg-Draft Authors by Country") # Extract the JSON embedded in the response @@ -229,7 +230,7 @@ def test_document_stats(self): ) # Test#7 the authors specific statistics global - r = self.client.get(urlreverse(ietf.stats.views.authors_total, kwargs={"doc_type": "draft", "stats_type": "country"})) + r = self.client.get(urlreverse(ietf.stats.views_authors.authors_total, kwargs={"doc_type": "draft", "stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Authors by Country") # Extract the JSON embedded in the response @@ -243,7 +244,7 @@ def test_document_stats(self): self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) # Test#8 the documents specific statistics global - r = self.client.get(urlreverse(ietf.stats.views.documents_total, kwargs={"doc_type": "draft", "stats_type": "wg"})) + r = self.client.get(urlreverse(ietf.stats.views_documents.documents_total, kwargs={"doc_type": "draft", "stats_type": "wg"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Documents by Wg") # Extract the JSON embedded in the response @@ -269,26 +270,26 @@ def test_meeting_stats(self): AffiliationIgnoredEndingFactory(ending='ltd\\.?') # Test the meeting specific statitistics per affiliation and per country - r = self.client.get(urlreverse(ietf.stats.views.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) + r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Affiliation (31 in total)") self.assertContains(r, "In Person Registrations by Affiliation (16 in total)") self.assertContains(r, "/stats/meeting/124/affiliation") self.assertContains(r, "/stats/meeting/125/affiliation") - r = self.client.get(urlreverse(ietf.stats.views.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "country"})) + r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Country (31 in total)") self.assertContains(r, "In Person Registrations by Country (16 in total)") self.assertContains(r, "/stats/meeting/124/country") self.assertContains(r, "/stats/meeting/125/country") # Test the meetings timeline per country - r = self.client.get(urlreverse(ietf.stats.views.meetings_timeline, kwargs={"stats_type": "country"})) + r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meeting/124/country") self.assertContains(r, "/stats/meeting/125/country") self.assertContains(r, "This page provides a timeline of meeting registrations by country") # Test the meetings timeline per affiliation - r = self.client.get(urlreverse(ietf.stats.views.meetings_timeline, kwargs={"stats_type": "affiliation"})) + r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meeting/124/affiliation") self.assertContains(r, "/stats/meeting/125/affiliation") @@ -303,7 +304,7 @@ def test_meeting_stats(self): ) ) # Test the global meetings timeline - r = self.client.get(urlreverse(ietf.stats.views.meetings_timeline, kwargs={"stats_type": "total"})) + r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "total"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meeting/124/country") self.assertContains(r, "/stats/meeting/125/country") @@ -314,7 +315,7 @@ def test_meeting_stats_for_bad_meeting(self): for stats_type in ["affiliation", "country"]: r = self.client.get( urlreverse( - "ietf.stats.views.meeting_stats", + "ietf.stats.views_meetings.meeting_stats", kwargs={"meeting_number": 676767, "stats_type": stats_type}, ) ) @@ -325,7 +326,7 @@ def test_meeting_stats_for_bad_meeting(self): interim_num = MeetingFactory(type_id="interim").number request_factory = RequestFactory() with self.assertRaises(Http404): - ietf.stats.views.meeting_stats( + ietf.stats.views_meetings.meeting_stats( request_factory.get(f"/stats/meeting/{interim_num}/{stats_type}"), meeting_number=interim_num, stats_type=stats_type, diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 35bd23897d9..543f21b7165 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -6,16 +6,17 @@ from ietf.stats import views from ietf.utils.urls import url +from ietf.stats import views_authors, views_documents, views_meetings urlpatterns = [ url(r"^$", views.stats_index), - url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_timeline), - url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views.authors_total), - url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_timeline), - url(r"^total/documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views.documents_total), + url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_timeline), + url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_total), + url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), + url(r"^total/documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_total), url(r"^knowncountries/$", views.known_countries_list), - url(r"^meetings/$", views.meetings_timeline), - url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views.meeting_stats), - url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views.meetings_timeline), + url(r"^meetings/$", views_meetings.meetings_timeline), + url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), + url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views_meetings.meetings_timeline), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), ] diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 73f7df60811..ccc8c8e454d 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -3,6 +3,7 @@ import re +import hashlib import debug # pyflakes:ignore @@ -12,6 +13,27 @@ import logging logger = logging.getLogger('django') +# Color palette for lines +colors = [ + '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', + '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', + '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', + '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', + # New additions — same vibrant/saturated theme + '#A4C639', '#FF7043', '#26A69A', '#AB47BC', '#42A5F5', + '#EC407A', '#FFA726', '#66BB6A', '#5E35B1', '#29B6F6', + '#D4AC0D', '#8E44AD', '#16A085', '#C0392B', '#2980B9', + '#E67E22', '#27AE60', '#CB4335', '#1F618D', '#AF7AC5', +] + +def color_from_hash(s): + if s == 'Unspecified': + return "#B0B0B0 " + if s == 'Other': + return "#E0E0E0" + full_hash = hashlib.md5(s.encode('utf-8')).digest() + hash = int.from_bytes(full_hash[:2]) + return colors[hash % len(colors)] def compile_affiliation_ending_stripping_regexp(): parts = [] diff --git a/ietf/stats/views.py b/ietf/stats/views.py index aa5ddfbb44b..ee5a1e4bbbd 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -6,17 +6,12 @@ import datetime import itertools import json -import hashlib import dateutil.relativedelta -from collections import defaultdict -from django.conf import settings from django.contrib.auth.decorators import login_required -from django.core.cache import cache from django.http import HttpResponseRedirect -from django.shortcuts import render, get_object_or_404 +from django.shortcuts import render from django.urls import reverse as urlreverse -from django.db.models import Count, Q import debug # pyflakes:ignore @@ -29,36 +24,11 @@ from ietf.group.models import Role, Group from ietf.person.models import Person from ietf.name.models import ReviewResultName, CountryName, ReviewAssignmentStateName -from ietf.doc.models import Document, DocumentAuthor -from ietf.meeting.models import Registration, Meeting from ietf.ietfauth.utils import has_role -from ietf.stats.utils import get_aliased_affiliations, get_aliased_countries from ietf.utils.response import permission_denied from ietf.utils.timezone import date_today, DEADLINE_TZINFO from ietf.meeting.helpers import get_current_ietf_meeting_num -# Color palette for lines -colors = [ - '#FF6384', '#36A2EB', '#FFCE56', '#4BC0C0', '#9966FF', - '#FF9F40', '#C9CBCF', '#7BC043', '#F37735', '#00ABA9', - '#2B5797', '#E81123', '#00A4EF', '#7FBA00', '#FFB900', - '#D83B01', '#B4009E', '#5C2D91', '#008575', '#E3008C', - # New additions — same vibrant/saturated theme - '#A4C639', '#FF7043', '#26A69A', '#AB47BC', '#42A5F5', - '#EC407A', '#FFA726', '#66BB6A', '#5E35B1', '#29B6F6', - '#D4AC0D', '#8E44AD', '#16A085', '#C0392B', '#2980B9', - '#E67E22', '#27AE60', '#CB4335', '#1F618D', '#AF7AC5', -] - -def color_from_hash(s): - if s == 'Unspecified': - return "#B0B0B0 " - if s == 'Other': - return "#E0E0E0" - full_hash = hashlib.md5(s.encode('utf-8')).digest() - hash = int.from_bytes(full_hash[:2]) - return colors[hash % len(colors)] - def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" current_meeting = get_current_ietf_meeting_num() @@ -144,987 +114,6 @@ def known_countries_list(request, stats_type=None, acronym=None): "countries": countries, }) -def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): - # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(document__type_id=doc_type) - if doc_type == 'wg-draft': - filters &= Q(document__type_id= 'draft') - filters &= Q(document__name__startswith='draft-ietf') - queryset = ( - DocumentAuthor.objects - .filter(filters) - .values(group_by) - .annotate(author_count=Count('person', distinct=False)) # Count as many document authored by this author - .order_by('-author_count') - ) - - group_count_set = { - (group, count) - for group, count in queryset.values_list(group_by, 'author_count') - } - - if group_by == 'affiliation': - alias_map = get_aliased_affiliations(group for group, _ in group_count_set) - elif group_by == 'country': - alias_map = get_aliased_countries(group for group, _ in group_count_set) - else: - alias_map = {} - - group_count_dict = dict() - for group, count in group_count_set: - group = alias_map.get(group, group) - if group == '': - group = 'Unspecified' - group_count_dict[group] = group_count_dict.get(group, 0) + count - - group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) - top_groups = group_count_dict[:top_n] - other_count = sum(count for _, count in group_count_dict[top_n:]) - if other_count > 0: - top_groups.append(('Other', other_count)) - - labels, data = zip(*top_groups) if top_groups else ([], []) - chart_data = { - 'labels': labels, - 'datasets': [{ - 'data': data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], - 'borderColor': 'black', - 'borderWidth': 1, - }], - } - - return chart_data - -def authors_total(request, doc_type='all', stats_type='affiliation'): - - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) - - if stats_type == 'affiliation': - chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) - elif stats_type == 'country': - chart_data = get_authors_total_data_for_documents(doc_type, 'country', top_n) - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("all", "All documents", urlreverse(authors_total, kwargs={'doc_type': 'all', 'stats_type': stats_type})), - ("draft", "Drafts", urlreverse(authors_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(authors_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), - ] - possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), - ("country", "Country", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), - ] - - return render(request, "stats/documents_total.html", { - "top_n": top_n, - "objects": "authors", - "possible_docs_types": possible_docs_types, - "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "doc_type": doc_type, - "stats_type": stats_type, - "chart_data": chart_data, - }) - - -def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 10): - - cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' - result = cache.get(cache_key, None) - if result is not None: - years_set, documents_totals, data_map = result - else: - # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(document__type_id=doc_type) - if doc_type == 'wg-draft': - filters &= Q(document__type_id= 'draft') - filters &= Q(document__name__startswith='draft-ietf') - queryset = ( - DocumentAuthor.objects - .select_related('document') - .filter(filters) - ) - - # ── Step 1: Collect all meetings and tickets totals ── - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) # {year: {stream: count}} - - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) - year_group_list = [ - (row.document.pub_date().year, getattr(row, group_by)) - for row in queryset - if row.document.pub_date() is not None - ] - if group_by == 'affiliation': - alias_map = get_aliased_affiliations(group for _, group in year_group_list) - year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] - elif group_by == 'country': - alias_map = get_aliased_countries(group for _, group in year_group_list) - year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] - alias_map[''] = 'Unspecified' - - years_set = {year for year, _ in year_group_list} - - for year, group in year_group_list: - if group is None or group == '': - group = 'Unspecified' - else: - group = alias_map.get(group, group) - data_map[year][group] = data_map[year].get(group, 0) + 1 - documents_totals[group] += 1 - - # ── Step 2: Sort years numerically rather than alphabetically ── - years_set = sorted(years_set) - cache.set( - cache_key, - (years_set, documents_totals, data_map), - settings.STATS_TIMELINE_CACHE_TIMEOUT, - ) - - # ── Step 3: Get top N and others ── must be outside of the cache - top_groups = sorted( - documents_totals.keys(), - key=lambda c: documents_totals[c], - reverse=True - )[:top_n] - non_top_groups = documents_totals.keys() - top_groups - other_totals = defaultdict(int) - for y in years_set: - other_totals[y] = 0 - for g in non_top_groups: - other_totals[y] += int(data_map[y].get(g, 0)) - - # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for group in top_groups: - color = color_from_hash(group) - datasets.append({ - 'label': group, - 'data': [data_map[year].get(group, 0) for year in years_set], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': False, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - # -- Step 4.bis handle the other -- - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_set], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.0, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - return years_set, datasets - -def get_total_data_for_documents(doc_type = 'rfc', group_by = 'level', top_n = 20): - # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(type_id=doc_type) - if doc_type == 'wg-draft': - filters &= Q(type_id= 'draft') - filters &= Q(name__startswith='draft-ietf') - queryset = ( - Document.objects - .filter(filters) - .values(group_by) - .annotate(document_count=Count('id', distinct=True)) # Count as many document authored by this author - .order_by('-document_count') - ) - - group_count_set = { - (group, count) - for group, count in queryset.values_list(group_by, 'document_count') - } - - group_count_dict = dict() - for group, count in group_count_set: - if group is None or group == '': - group = 'Unspecified' - group_count_dict[group] = group_count_dict.get(group, 0) + count - - group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) - top_groups = group_count_dict[:top_n] - other_count = sum(count for _, count in group_count_dict[top_n:]) - if other_count > 0: - top_groups.append(('Other', other_count)) - - labels, data = zip(*top_groups) if top_groups else ([], []) - chart_data = { - 'labels': labels, - 'datasets': [{ - 'data': data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], - 'borderColor': 'black', - 'borderWidth': 1, - }], - } - - return chart_data - -def documents_total(request, doc_type='rfc', stats_type='level'): - - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) - - if stats_type == 'stream': - chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) - elif stats_type == 'level' and doc_type == 'draft': - chart_data = get_total_data_for_documents(doc_type, 'intended_std_level_id', top_n) - elif stats_type == 'level' and doc_type == 'rfc': - chart_data = get_total_data_for_documents(doc_type, 'std_level_id', top_n) - elif stats_type == 'wg': - chart_data = get_total_data_for_documents(doc_type, 'group__name', top_n) - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(documents_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), - ] - - possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), - ("wg", "Working Groups", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), - ] - if doc_type == 'draft': - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - elif doc_type == 'rfc': - possible_stats_types.append(("level", "Category", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - - return render(request, "stats/documents_total.html", { - "top_n": top_n, - "objects": "documents", - "possible_docs_types": possible_docs_types, - "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "doc_type": doc_type, - "stats_type": stats_type, - "chart_data": chart_data, - }) - -def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 10): - if doc_type != 'all': - queryset = Document.objects.filter(type_id=doc_type) - else: - queryset = Document.objects.all() - -# ── Step 1: Collect all meetings and tickets totals ── - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) # {year: {stream: count}} - - for row in queryset: - if not row.pub_date(): - continue - year = row.pub_date().year - if group_by == 'stream__name': - if row.stream is None: - group = 'Unspecified' - else: - group = row.stream.name - elif group_by == 'group__name': - if row.group is None: - group = 'Unspecified' - else: - group = row.group.name - else: - group = getattr(row, group_by) - if group is None: - group = 'Unspecified' - years_set.add(year) - documents_totals[group] += 1 - data_map[year][group] = data_map[year].get(group, 0) + 1 - - # ── Step 2: Sort years numerically rather than alphabetically ── - years_set = sorted(years_set) - - top_groups = sorted( - documents_totals.keys(), - key=lambda c: documents_totals[c], - reverse=True - )[:top_n] - non_top_groups = documents_totals.keys() - top_groups - other_totals = defaultdict(int) - other_bin_is_empty = True - for y in years_set: - other_totals[y] = 0 - for g in non_top_groups: - other_totals[y] += int(data_map[y].get(g, 0)) - if int(data_map[y].get(g, 0)) > 0: - other_bin_is_empty = False - - # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for group in top_groups: - color = color_from_hash(group) - datasets.append({ - 'label': group, - 'data': [data_map[year].get(group, 0) for year in years_set], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': False, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - if not other_bin_is_empty: - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_set], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.0, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - return years_set, datasets - -def authors_timeline(request, doc_type='all', stats_type='affiliation'): - """Render the documents timeline page with document statistics over time. - - Args: - request: The HTTP request object. - stats_type: Type of statistics. - top_n: Number of top items to show (for country stats). - - Returns: - Rendered response for the documents timeline template. - """ - - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) - - if stats_type == 'affiliation': - total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) - elif stats_type == 'country': - total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'country', top_n) - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, - } - - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("all", "All documents", urlreverse(authors_timeline, kwargs={'doc_type': 'all', 'stats_type': stats_type})), - ("draft", "Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), - ] - possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), - ("country", "Country", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), - ] - - return render(request, "stats/documents_timeline.html", { - "top_n": top_n, - "objects": "authors", - "possible_docs_types": possible_docs_types, - "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "doc_type": doc_type, - "stats_type": stats_type, - "chart_data": chart_data, - }) - -def documents_timeline(request, doc_type='rfc', stats_type='level'): - """Render the documents timeline page with document statistics over time. - - Args: - request: The HTTP request object. - stats_type: Type of statistics. - - Returns: - Rendered response for the documents timeline template. - """ - - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) - - if stats_type == 'stream': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) - elif stats_type == 'level' and doc_type == 'draft': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'intended_std_level_id', top_n) - elif stats_type == 'level' and doc_type == 'rfc': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'std_level_id', top_n) - elif stats_type == 'wg': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'group__name', top_n) - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, - } - - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("rfc", "RFC", urlreverse(documents_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), - ] - possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), - ("wg", "Working Groups", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), - ] - if doc_type == 'draft': - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - elif doc_type == 'rfc': - possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - - return render(request, "stats/documents_timeline.html", { - "top_n": top_n, - "objects": "documents", - "possible_docs_types": possible_docs_types, - "possible_stats_types": possible_stats_types, - "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "doc_type": doc_type, - "stats_type": stats_type, - "chart_data": chart_data, - }) - -def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): - """Get affiliation participation data for meetings timeline chart. - - Args: - attendance_type: Optional filter for attendance type (e.g., 'onsite'). - - Returns: - Tuple of (sorted_meetings, datasets) for Chart.js. - """ - cache_key = f'stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}' - sorted_meetings, datasets = cache.get(cache_key, (None, None)) - if (sorted_meetings, datasets) == (None, None): - - # Get registration status details - if attendance_type: - registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) - else: - registrations = Registration.objects.all() - registrations = registrations.values('affiliation', 'meeting__number') - - # Prepare affiliation data, applying canonicalization and aliasing - alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) - - # Count per canonicalized affiliation - organization = dict() - meetings_set = set() - org_totals = defaultdict(int) - data_map = defaultdict(dict) # {org: {meeting: count}} - - for reg in registrations: - meeting = reg['meeting__number'] - meetings_set.add(meeting) - if reg['affiliation'] is None or reg['affiliation'].strip() == '': - affiliation = 'Unspecified' - else: - affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) - organization[affiliation] = organization.get(affiliation, 0) + 1 - org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 - data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 - - # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - - # ── Step 3: Get top N countries ── - top_orgs = sorted( - org_totals.keys(), - key=lambda c: org_totals[c], - reverse=True - )[:top_n] - non_top_orgs = org_totals.keys() - top_orgs - other_totals = defaultdict(int) - for m in sorted_meetings: - other_totals[m] = 0 - for c in non_top_orgs: - other_totals[m] += int(data_map[c].get(m, 0)) - - # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for idx, org in enumerate(top_orgs): - color = color_from_hash(org) - datasets.append({ - 'label': org, - 'data': [data_map[org].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'fill': False, - 'tension': 0.3, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - # -- Step 4.bis handle the other -- - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(m, 0) for m in sorted_meetings], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.3, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - cache.set( - cache_key, - (sorted_meetings, datasets), - settings.STATS_TIMELINE_CACHE_TIMEOUT, - ) - - return sorted_meetings, datasets - -def get_country_data_for_meetings(attendance_type=None, top_n=20): - """Get country participation data for meetings timeline chart. - - Args: - attendance_type: Optional filter for attendance type (e.g., 'onsite'). - - Returns: - Tuple of (sorted_meetings, datasets) for Chart.js. - """ - cache_key = f'stats:get_country_data_for_meetings:{attendance_type}-{top_n}' - sorted_meetings, datasets = cache.get(cache_key, (None, None)) - if (sorted_meetings, datasets) == (None, None): - # Get registration status counts, aggregated by country_code - if attendance_type: - registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) - else: - registrations = Registration.objects.all() - queryset = ( - registrations - .values( - 'meeting__number', # e.g. "118", "119", "120" - 'country_code' # country code of the participant - ) - .annotate(participant_count=Count('id')) - .order_by('meeting__number') # chronological order - ) - - # Prepare country affiliation data, applying canonicalization and aliasing - # Mainly used to conver 2-letter country code into a full name - # Could possible use Country directly - alias_map = get_aliased_countries(country_code for country_code in queryset.values_list('country_code', flat=True)) - - # ── Step 1: Collect all meetings and country totals ── - meetings_set = set() - country_totals = defaultdict(int) - data_map = defaultdict(dict) # {country: {meeting: count}} - - for row in queryset: - meeting = row['meeting__number'] - country = alias_map.get(row['country_code'], row['country_code']) - count = row['participant_count'] - - meetings_set.add(meeting) - country_totals[country] += count - data_map[country][meeting] = count - - # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - - # ── Step 3: Get top N countries ── - top_countries = sorted( - country_totals.keys(), - key=lambda c: country_totals[c], - reverse=True - )[:top_n] - - # -- Step 3.bis do the 'other' category -- - non_top_countries = country_totals.keys() - top_countries - other_totals = defaultdict(int) - for m in sorted_meetings: - other_totals[m] = 0 - for c in non_top_countries: - other_totals[m] += int(data_map[c].get(m, 0)) - - # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for idx, country in enumerate(top_countries): - color = color_from_hash(country) - datasets.append({ - 'label': country, - 'data': [data_map[country].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'fill': False, - 'tension': 0.3, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - # -- Step 4.bis handle the other -- - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(m, 0) for m in sorted_meetings], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.3, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - cache.set( - cache_key, - (sorted_meetings, datasets), - settings.STATS_TIMELINE_CACHE_TIMEOUT, - ) - - return sorted_meetings, datasets - -def get_data_for_meetings(top_n=20): - """Get total participation data by attendance type for meetings timeline chart. - - Returns: - Tuple of (sorted_meetings, datasets) for Chart.js. - """ - cache_key = f'stats:get_data_for_meetings:{top_n}' - sorted_meetings, datasets = cache.get(cache_key, (None, None)) - if (sorted_meetings, datasets) == (None, None): - # Get registration status counts, aggregated by ticket types - registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) - queryset = ( - registrations - .values( - 'meeting__number', # e.g. "118", "119", "120" - 'tickets__attendance_type' - ) - .annotate(participant_count=Count('id')) - .order_by('meeting__number') # chronological order - ) - - # ── Step 1: Collect all meetings and tickets totals ── - meetings_set = set() - tickets_totals = defaultdict(int) - data_map = defaultdict(dict) # {ticket: {meeting: count}} - - for row in queryset: - meeting = row['meeting__number'] - ticket = row['tickets__attendance_type'] - count = row['participant_count'] - - meetings_set.add(meeting) - tickets_totals[ticket] += count - data_map[ticket][meeting] = count - - # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - ticket_types = tickets_totals.keys() - - # ── Step 4: Build Chart.js datasets ── - datasets = [] - for idx, ticket_type in enumerate(ticket_types): - color = color_from_hash(ticket_type) - datasets.append({ - 'label': ticket_type, - 'data': [data_map[ticket_type].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': True, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - cache.set( - cache_key, - (sorted_meetings, datasets), - settings.STATS_TIMELINE_CACHE_TIMEOUT, - ) - return sorted_meetings, datasets - -def meetings_timeline(request, stats_type='country'): - """Render the meetings timeline page with participation statistics over time. - - Args: - request: The HTTP request object. - stats_type: Type of statistics ('country' or 'total'). - top_n: Number of top items to show (for country stats). - - Returns: - Rendered response for the meetings timeline template. - """ - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) - - if stats_type == 'total': - total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) - in_person_labels = ([], []) - in_person_data_sets = ([], []) - plural_stats_type = '' - elif stats_type == 'affiliation': - total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n=top_n) - in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type='onsite', top_n=top_n) - plural_stats_type = 'affiliations' - elif stats_type == 'country': - total_labels, total_data_sets = get_country_data_for_meetings(top_n=top_n) - in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type='onsite', top_n=top_n) - plural_stats_type = 'countries' - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - total_chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, - } - - # On per country/affiliation have a separate graph for inperson - if stats_type == 'total': - in_person_chart_data = None - else: - in_person_chart_data = { - 'labels': in_person_labels, - 'datasets': in_person_data_sets, - } - - # Prepare the list of choice buttons for the template - possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meetings_timeline, kwargs={'stats_type': 'affiliation'})), - ("country", "Per country", urlreverse(meetings_timeline, kwargs={'stats_type': 'country'})), - ("total", "Total", urlreverse(meetings_timeline, kwargs={'stats_type': 'total'})), - ] - - current_meeting = get_current_ietf_meeting_num() - if stats_type == 'total': - possible_stats_type = 'country' - else: - possible_stats_type = stats_type - - possible_meeting_numbers = [ - ('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type})), - (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), - (int(current_meeting), urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting), 'stats_type': possible_stats_type})), - (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)+1, 'stats_type': possible_stats_type}))] - - return render(request, "stats/meetings_timeline.html", { - "top_n": top_n, - "possible_stats_types": possible_stats_types, - "possible_meeting_numbers": possible_meeting_numbers, - "stats_type": stats_type, - "plural_stats_type": plural_stats_type, - "total_chart_data": total_chart_data, - "in_person_chart_data": in_person_chart_data, - }) - -def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=None): - """Get affiliation participation data for a specific meeting. - - Args: - meeting_number: The meeting number. - attendance_type: Optional filter for attendance type. - - Returns: - Tuple of (labels, data, total) for chart display. - """ - # Get registration status details - registrations = Registration.objects.filter(meeting__number=meeting_number) - if attendance_type: - registrations = registrations.filter(tickets__attendance_type=attendance_type) - registrations = registrations.values('affiliation') - - alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) - - # Count per canonicalized affiliation - organization = dict() - for reg in registrations: - if reg['affiliation'] is None or reg['affiliation'].strip() == '': - affiliation = 'Unspecified' - else: - affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) - organization[affiliation] = organization.get(affiliation, 0) + 1 - - # Sort to have the largest count first (nicer in pie chart) - sorted_orgs = sorted(organization.items(), key=lambda t: t[1], reverse=True) - labels = [] - data = [] - total = 0 - for org, count in sorted_orgs[:top_n]: - total += count - labels.append(org) - data.append(count) - - other_total = 0 - for _, count in sorted_orgs[top_n:]: - other_total += count - total += count - - if other_total > 0: - labels.append('Other') - data.append(other_total) - - - return labels, data, total - -def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None): - """Get country participation data for a specific meeting. - - Args: - meeting_number: The meeting number. - minimum_required: Minimum count to include in main data (others go to 'Other'). - attendance_type: Optional filter for attendance type. - - Returns: - Tuple of (labels, data, total) for chart display. - """ - # Get registration status counts, aggregated by country_code - registration_counts = Registration.objects.filter(meeting__number=meeting_number) - if attendance_type: - registration_counts = registration_counts.filter(tickets__attendance_type=attendance_type) - registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') - - alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) - labels = [] - data = [] - total = 0 - country_totals = defaultdict(int) - for item in registration_counts[:top_n]: - total += item['count'] - country = alias_map.get(item['country_code'], item['country_code']) - labels.append(country) - data.append(item['count']) - country_totals[country] = item['count'] - - other_total = 0 - for item in registration_counts[top_n:]: - other_total += item['count'] - total += item['count'] - - if other_total > 0: - labels.append('Other') - data.append(other_total) - - return labels, data, total - -def meeting_stats(request, meeting_number=None, stats_type='country'): - """Render statistics for a specific meeting. - - Args: - request: The HTTP request object. - meeting_number: The meeting number (defaults to current). - stats_type: Type of statistics ('country' or 'affiliation'). - - Returns: - Rendered response for the meeting stats template. - """ - current_meeting_number = get_current_ietf_meeting_num() - if meeting_number is None: - meeting_number = current_meeting_number - this_meeting = get_object_or_404( - Meeting.objects.filter(type_id="ietf"), number=meeting_number - ) - - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) - - if stats_type == 'affiliation': - total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) - in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') - elif stats_type == 'country': - total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, top_n=top_n) - in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') - else: - return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - - total_chart_data = { - 'labels': total_labels, - 'datasets': [{ - 'label': 'Total Registrations by ' + stats_type, - 'data': total_data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in total_labels], - 'borderColor': '#ffffff', - 'borderWidth': 2, - }] - } - in_person_chart_data = { - 'labels': in_person_labels, - 'datasets': [{ - 'label': 'In Person Registrations by ' + stats_type, - 'data': in_person_data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in in_person_labels], - 'borderColor': '#ffffff', - 'borderWidth': 2, - }] - } - - # Prepare the list of choice buttons for the template - possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'affiliation'})), - ("country", "Per country", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'country'})), - ] - - # Prepare the list of meeting number buttons for the template - possible_meeting_numbers = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] - if int(meeting_number) > 72: # No registration data before IETF-72 - possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)-1, 'stats_type': stats_type}))) - possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': stats_type}))) - if int(meeting_number) <= int(current_meeting_number): # Allow current meeting +1 - possible_meeting_numbers.append((int(meeting_number)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)+1, 'stats_type': stats_type}))) - - return render(request, "stats/meeting_stats.html", { - "meeting_number": meeting_number, - "meeting_date": this_meeting.date, - "meeting_country": this_meeting.country, - "meeting_city": this_meeting.city, - "possible_stats_types": possible_stats_types, - "possible_meeting_numbers": possible_meeting_numbers, - "stats_type": stats_type, - "top_n": top_n, - "total_chart_data": total_chart_data, - "total_total": total_total, - "in_person_chart_data": in_person_chart_data, - "in_person_total": in_person_total - }) - @login_required def review_stats(request, stats_type=None, acronym=None): """Render review statistics page with tables and charts for review assignments. diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py new file mode 100644 index 00000000000..4a7c513475c --- /dev/null +++ b/ietf/stats/views_authors.py @@ -0,0 +1,265 @@ +# Copyright The IETF Trust 2016-2026, All Rights Reserved +# -*- coding: utf-8 -*- + +from django.conf import settings +from django.db.models import Count, Q +from django.http import HttpResponseRedirect +from django.shortcuts import render +from django.urls import reverse as urlreverse +from django.core.cache import cache +from collections import defaultdict + +import debug # pyflakes:ignore + +from ietf.doc.models import DocumentAuthor +from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries + +def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(document__type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(document__type_id= 'draft') + filters &= Q(document__name__startswith='draft-ietf') + queryset = ( + DocumentAuthor.objects + .filter(filters) + .values(group_by) + .annotate(author_count=Count('person', distinct=False)) # Count as many document authored by this author + .order_by('-author_count') + ) + + group_count_set = { + (group, count) + for group, count in queryset.values_list(group_by, 'author_count') + } + + if group_by == 'affiliation': + alias_map = get_aliased_affiliations(group for group, _ in group_count_set) + elif group_by == 'country': + alias_map = get_aliased_countries(group for group, _ in group_count_set) + else: + alias_map = {} + + group_count_dict = dict() + for group, count in group_count_set: + group = alias_map.get(group, group) + if group == '': + group = 'Unspecified' + group_count_dict[group] = group_count_dict.get(group, 0) + count + + group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = group_count_dict[:top_n] + other_count = sum(count for _, count in group_count_dict[top_n:]) + if other_count > 0: + top_groups.append(('Other', other_count)) + + labels, data = zip(*top_groups) if top_groups else ([], []) + chart_data = { + 'labels': labels, + 'datasets': [{ + 'data': data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], + 'borderColor': 'black', + 'borderWidth': 1, + }], + } + + return chart_data + +def authors_total(request, doc_type='all', stats_type='affiliation'): + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + + if stats_type == 'affiliation': + chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) + elif stats_type == 'country': + chart_data = get_authors_total_data_for_documents(doc_type, 'country', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("all", "All documents", urlreverse(authors_total, kwargs={'doc_type': 'all', 'stats_type': stats_type})), + ("draft", "Drafts", urlreverse(authors_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), + ("rfc", "RFCs", urlreverse(authors_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + possible_stats_types = [ + ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), + ("country", "Country", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), + ] + + return render(request, "stats/documents_total.html", { + "top_n": top_n, + "objects": "authors", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) + + +def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 10): + + cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' + result = cache.get(cache_key, None) + if result is not None: + years_set, documents_totals, data_map = result + else: + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(document__type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(document__type_id= 'draft') + filters &= Q(document__name__startswith='draft-ietf') + queryset = ( + DocumentAuthor.objects + .select_related('document') + .filter(filters) + ) + + # ── Step 1: Collect all meetings and tickets totals ── + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) # {year: {stream: count}} + + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) + year_group_list = [ + (row.document.pub_date().year, getattr(row, group_by)) + for row in queryset + if row.document.pub_date() is not None + ] + if group_by == 'affiliation': + alias_map = get_aliased_affiliations(group for _, group in year_group_list) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + elif group_by == 'country': + alias_map = get_aliased_countries(group for _, group in year_group_list) + year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + alias_map[''] = 'Unspecified' + + years_set = {year for year, _ in year_group_list} + + for year, group in year_group_list: + if group is None or group == '': + group = 'Unspecified' + else: + group = alias_map.get(group, group) + data_map[year][group] = data_map[year].get(group, 0) + 1 + documents_totals[group] += 1 + + # ── Step 2: Sort years numerically rather than alphabetically ── + years_set = sorted(years_set) + cache.set( + cache_key, + (years_set, documents_totals, data_map), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) + + # ── Step 3: Get top N and others ── must be outside of the cache + top_groups = sorted( + documents_totals.keys(), + key=lambda c: documents_totals[c], + reverse=True + )[:top_n] + non_top_groups = documents_totals.keys() - top_groups + other_totals = defaultdict(int) + for y in years_set: + other_totals[y] = 0 + for g in non_top_groups: + other_totals[y] += int(data_map[y].get(g, 0)) + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for group in top_groups: + color = color_from_hash(group) + datasets.append({ + 'label': group, + 'data': [data_map[year].get(group, 0) for year in years_set], + 'borderColor': color, + 'backgroundColor': color + '99', # 60% opacity fill + 'fill': False, + 'tension': 0.0, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + # -- Step 4.bis handle the other -- + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(year, 0) for year in years_set], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.0, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + return years_set, datasets + + +def authors_timeline(request, doc_type='all', stats_type='affiliation'): + """Render the documents timeline page with document statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics. + top_n: Number of top items to show (for country stats). + + Returns: + Rendered response for the documents timeline template. + """ + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + + if stats_type == 'affiliation': + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) + elif stats_type == 'country': + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'country', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + chart_data = { + 'labels': total_labels, + 'datasets': total_data_sets, + } + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("all", "All documents", urlreverse(authors_timeline, kwargs={'doc_type': 'all', 'stats_type': stats_type})), + ("draft", "Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), + ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + possible_stats_types = [ + ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), + ("country", "Country", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), + ] + + return render(request, "stats/documents_timeline.html", { + "top_n": top_n, + "objects": "authors", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py new file mode 100644 index 00000000000..bd39fad186f --- /dev/null +++ b/ietf/stats/views_documents.py @@ -0,0 +1,256 @@ +# Copyright The IETF Trust 2016-2026, All Rights Reserved +# -*- coding: utf-8 -*- + +from django.conf import settings +from django.db.models import Count, Q +from django.http import HttpResponseRedirect +from django.shortcuts import render +from django.urls import reverse as urlreverse +from django.core.cache import cache + +from collections import defaultdict + +import debug # pyflakes:ignore + +from ietf.doc.models import Document +from ietf.stats.utils import color_from_hash + +def get_total_data_for_documents(doc_type = 'rfc', group_by = 'level', top_n = 20): + # Build a dynamic query set filter + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': + filters &= Q(type_id=doc_type) + if doc_type == 'wg-draft': + filters &= Q(type_id= 'draft') + filters &= Q(name__startswith='draft-ietf') + queryset = ( + Document.objects + .filter(filters) + .values(group_by) + .annotate(document_count=Count('id', distinct=True)) # Count as many document authored by this author + .order_by('-document_count') + ) + + group_count_set = { + (group, count) + for group, count in queryset.values_list(group_by, 'document_count') + } + + group_count_dict = dict() + for group, count in group_count_set: + if group is None or group == '': + group = 'Unspecified' + group_count_dict[group] = group_count_dict.get(group, 0) + count + + group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = group_count_dict[:top_n] + other_count = sum(count for _, count in group_count_dict[top_n:]) + if other_count > 0: + top_groups.append(('Other', other_count)) + + labels, data = zip(*top_groups) if top_groups else ([], []) + chart_data = { + 'labels': labels, + 'datasets': [{ + 'data': data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], + 'borderColor': 'black', + 'borderWidth': 1, + }], + } + + return chart_data + +def documents_total(request, doc_type='rfc', stats_type='level'): + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + + if stats_type == 'stream': + chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) + elif stats_type == 'level' and doc_type == 'draft': + chart_data = get_total_data_for_documents(doc_type, 'intended_std_level_id', top_n) + elif stats_type == 'level' and doc_type == 'rfc': + chart_data = get_total_data_for_documents(doc_type, 'std_level_id', top_n) + elif stats_type == 'wg': + chart_data = get_total_data_for_documents(doc_type, 'group__name', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("draft", "Drafts", urlreverse(documents_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("rfc", "RFCs", urlreverse(documents_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + + possible_stats_types = [ + ("stream", "Streams", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), + ("wg", "Working Groups", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), + ] + if doc_type == 'draft': + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + elif doc_type == 'rfc': + possible_stats_types.append(("level", "Category", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + + return render(request, "stats/documents_total.html", { + "top_n": top_n, + "objects": "documents", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) + +def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 10): + cache_key = f'stats:get_timeline_data_for_documents:{doc_type}-{group_by}' + result = cache.get(cache_key, None) + if result is not None: + years_set, documents_totals, data_map = result + else: + if doc_type != 'all': + queryset = Document.objects.filter(type_id=doc_type) + else: + queryset = Document.objects.all() + + # ── Step 1: Collect all meetings and tickets totals ── + years_set = set() + documents_totals = defaultdict(int) + data_map = defaultdict(dict) # {year: {stream: count}} + + for row in queryset: + if not row.pub_date(): + continue + year = row.pub_date().year + if group_by == 'stream__name': + if row.stream is None: + group = 'Unspecified' + else: + group = row.stream.name + elif group_by == 'group__name': + if row.group is None: + group = 'Unspecified' + else: + group = row.group.name + else: + group = getattr(row, group_by) + if group is None: + group = 'Unspecified' + years_set.add(year) + documents_totals[group] += 1 + data_map[year][group] = data_map[year].get(group, 0) + 1 + + # ── Step 2: Sort years numerically rather than alphabetically ── + years_set = sorted(years_set) + cache.set( + cache_key, + (years_set, documents_totals, data_map), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) + + top_groups = sorted( + documents_totals.keys(), + key=lambda c: documents_totals[c], + reverse=True + )[:top_n] + non_top_groups = documents_totals.keys() - top_groups + other_totals = defaultdict(int) + other_bin_is_empty = True + for y in years_set: + other_totals[y] = 0 + for g in non_top_groups: + other_totals[y] += int(data_map[y].get(g, 0)) + if int(data_map[y].get(g, 0)) > 0: + other_bin_is_empty = False + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for group in top_groups: + color = color_from_hash(group) + datasets.append({ + 'label': group, + 'data': [data_map[year].get(group, 0) for year in years_set], + 'borderColor': color, + 'backgroundColor': color + '99', # 60% opacity fill + 'fill': False, + 'tension': 0.0, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + if not other_bin_is_empty: + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(year, 0) for year in years_set], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.0, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + return years_set, datasets + +def documents_timeline(request, doc_type='rfc', stats_type='level'): + """Render the documents timeline page with document statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics. + + Returns: + Rendered response for the documents timeline template. + """ + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '10')) + + if stats_type == 'stream': + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) + elif stats_type == 'level' and doc_type == 'draft': + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'intended_std_level_id', top_n) + elif stats_type == 'level' and doc_type == 'rfc': + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'std_level_id', top_n) + elif stats_type == 'wg': + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'group__name', top_n) + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + chart_data = { + 'labels': total_labels, + 'datasets': total_data_sets, + } + + # Prepare the list of choice buttons for the template + possible_docs_types = [ + ("draft", "Drafts", urlreverse(documents_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), + ("rfc", "RFC", urlreverse(documents_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ] + possible_stats_types = [ + ("stream", "Streams", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), + ("wg", "Working Groups", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), + ] + if doc_type == 'draft': + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + elif doc_type == 'rfc': + possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + + return render(request, "stats/documents_timeline.html", { + "top_n": top_n, + "objects": "documents", + "possible_docs_types": possible_docs_types, + "possible_stats_types": possible_stats_types, + "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "doc_type": doc_type, + "stats_type": stats_type, + "chart_data": chart_data, + }) + diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py new file mode 100644 index 00000000000..925c53a5ac1 --- /dev/null +++ b/ietf/stats/views_meetings.py @@ -0,0 +1,520 @@ +# Copyright The IETF Trust 2016-2026, All Rights Reserved +# -*- coding: utf-8 -*- + +from django.conf import settings +from django.db.models import Count +from django.http import HttpResponseRedirect +from django.shortcuts import render, get_object_or_404 +from django.urls import reverse as urlreverse +from django.core.cache import cache +from collections import defaultdict + +import debug # pyflakes:ignore + +from ietf.meeting.models import Registration, Meeting +from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries +from ietf.meeting.helpers import get_current_ietf_meeting_num + + +def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): + """Get affiliation participation data for meetings timeline chart. + + Args: + attendance_type: Optional filter for attendance type (e.g., 'onsite'). + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ + cache_key = f'stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}' + sorted_meetings, datasets = cache.get(cache_key, (None, None)) + if (sorted_meetings, datasets) == (None, None): + + # Get registration status details + if attendance_type: + registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) + else: + registrations = Registration.objects.all() + registrations = registrations.values('affiliation', 'meeting__number') + + # Prepare affiliation data, applying canonicalization and aliasing + alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + + # Count per canonicalized affiliation + organization = dict() + meetings_set = set() + org_totals = defaultdict(int) + data_map = defaultdict(dict) # {org: {meeting: count}} + + for reg in registrations: + meeting = reg['meeting__number'] + meetings_set.add(meeting) + if reg['affiliation'] is None or reg['affiliation'].strip() == '': + affiliation = 'Unspecified' + else: + affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) + organization[affiliation] = organization.get(affiliation, 0) + 1 + org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 + data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 + + # ── Step 2: Sort meetings numerically rather than alphabetically ── + sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + + # ── Step 3: Get top N countries ── + top_orgs = sorted( + org_totals.keys(), + key=lambda c: org_totals[c], + reverse=True + )[:top_n] + non_top_orgs = org_totals.keys() - top_orgs + other_totals = defaultdict(int) + for m in sorted_meetings: + other_totals[m] = 0 + for c in non_top_orgs: + other_totals[m] += int(data_map[c].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for idx, org in enumerate(top_orgs): + color = color_from_hash(org) + datasets.append({ + 'label': org, + 'data': [data_map[org].get(m, 0) for m in sorted_meetings], + 'borderColor': color, + 'fill': False, + 'tension': 0.3, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + # -- Step 4.bis handle the other -- + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(m, 0) for m in sorted_meetings], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.3, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + cache.set( + cache_key, + (sorted_meetings, datasets), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) + + return sorted_meetings, datasets + +def get_country_data_for_meetings(attendance_type=None, top_n=20): + """Get country participation data for meetings timeline chart. + + Args: + attendance_type: Optional filter for attendance type (e.g., 'onsite'). + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ + cache_key = f'stats:get_country_data_for_meetings:{attendance_type}-{top_n}' + sorted_meetings, datasets = cache.get(cache_key, (None, None)) + if (sorted_meetings, datasets) == (None, None): + # Get registration status counts, aggregated by country_code + if attendance_type: + registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) + else: + registrations = Registration.objects.all() + queryset = ( + registrations + .values( + 'meeting__number', # e.g. "118", "119", "120" + 'country_code' # country code of the participant + ) + .annotate(participant_count=Count('id')) + .order_by('meeting__number') # chronological order + ) + + # Prepare country affiliation data, applying canonicalization and aliasing + # Mainly used to conver 2-letter country code into a full name + # Could possible use Country directly + alias_map = get_aliased_countries(country_code for country_code in queryset.values_list('country_code', flat=True)) + + # ── Step 1: Collect all meetings and country totals ── + meetings_set = set() + country_totals = defaultdict(int) + data_map = defaultdict(dict) # {country: {meeting: count}} + + for row in queryset: + meeting = row['meeting__number'] + country = alias_map.get(row['country_code'], row['country_code']) + count = row['participant_count'] + + meetings_set.add(meeting) + country_totals[country] += count + data_map[country][meeting] = count + + # ── Step 2: Sort meetings numerically rather than alphabetically ── + sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + + # ── Step 3: Get top N countries ── + top_countries = sorted( + country_totals.keys(), + key=lambda c: country_totals[c], + reverse=True + )[:top_n] + + # -- Step 3.bis do the 'other' category -- + non_top_countries = country_totals.keys() - top_countries + other_totals = defaultdict(int) + for m in sorted_meetings: + other_totals[m] = 0 + for c in non_top_countries: + other_totals[m] += int(data_map[c].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + + datasets = [] + for idx, country in enumerate(top_countries): + color = color_from_hash(country) + datasets.append({ + 'label': country, + 'data': [data_map[country].get(m, 0) for m in sorted_meetings], + 'borderColor': color, + 'fill': False, + 'tension': 0.3, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + + # -- Step 4.bis handle the other -- + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(m, 0) for m in sorted_meetings], + 'borderColor': 'black', + 'fill': False, + 'tension': 0.3, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + cache.set( + cache_key, + (sorted_meetings, datasets), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) + + return sorted_meetings, datasets + +def get_data_for_meetings(top_n=20): + """Get total participation data by attendance type for meetings timeline chart. + + Returns: + Tuple of (sorted_meetings, datasets) for Chart.js. + """ + cache_key = f'stats:get_data_for_meetings:{top_n}' + sorted_meetings, datasets = cache.get(cache_key, (None, None)) + if (sorted_meetings, datasets) == (None, None): + # Get registration status counts, aggregated by ticket types + registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) + queryset = ( + registrations + .values( + 'meeting__number', # e.g. "118", "119", "120" + 'tickets__attendance_type' + ) + .annotate(participant_count=Count('id')) + .order_by('meeting__number') # chronological order + ) + + # ── Step 1: Collect all meetings and tickets totals ── + meetings_set = set() + tickets_totals = defaultdict(int) + data_map = defaultdict(dict) # {ticket: {meeting: count}} + + for row in queryset: + meeting = row['meeting__number'] + ticket = row['tickets__attendance_type'] + count = row['participant_count'] + + meetings_set.add(meeting) + tickets_totals[ticket] += count + data_map[ticket][meeting] = count + + # ── Step 2: Sort meetings numerically rather than alphabetically ── + sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + ticket_types = tickets_totals.keys() + + # ── Step 4: Build Chart.js datasets ── + datasets = [] + for idx, ticket_type in enumerate(ticket_types): + color = color_from_hash(ticket_type) + datasets.append({ + 'label': ticket_type, + 'data': [data_map[ticket_type].get(m, 0) for m in sorted_meetings], + 'borderColor': color, + 'backgroundColor': color + '99', # 60% opacity fill + 'fill': True, + 'tension': 0.0, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + cache.set( + cache_key, + (sorted_meetings, datasets), + settings.STATS_TIMELINE_CACHE_TIMEOUT, + ) + return sorted_meetings, datasets + +def meetings_timeline(request, stats_type='country'): + """Render the meetings timeline page with participation statistics over time. + + Args: + request: The HTTP request object. + stats_type: Type of statistics ('country' or 'total'). + top_n: Number of top items to show (for country stats). + + Returns: + Rendered response for the meetings timeline template. + """ + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + + if stats_type == 'total': + total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) + in_person_labels = ([], []) + in_person_data_sets = ([], []) + plural_stats_type = '' + elif stats_type == 'affiliation': + total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n=top_n) + in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type='onsite', top_n=top_n) + plural_stats_type = 'affiliations' + elif stats_type == 'country': + total_labels, total_data_sets = get_country_data_for_meetings(top_n=top_n) + in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type='onsite', top_n=top_n) + plural_stats_type = 'countries' + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + total_chart_data = { + 'labels': total_labels, + 'datasets': total_data_sets, + } + + # On per country/affiliation have a separate graph for inperson + if stats_type == 'total': + in_person_chart_data = None + else: + in_person_chart_data = { + 'labels': in_person_labels, + 'datasets': in_person_data_sets, + } + + # Prepare the list of choice buttons for the template + possible_stats_types = [ + ("affiliation", "Per affiliation", urlreverse(meetings_timeline, kwargs={'stats_type': 'affiliation'})), + ("country", "Per country", urlreverse(meetings_timeline, kwargs={'stats_type': 'country'})), + ("total", "Total", urlreverse(meetings_timeline, kwargs={'stats_type': 'total'})), + ] + + current_meeting = get_current_ietf_meeting_num() + if stats_type == 'total': + possible_stats_type = 'country' + else: + possible_stats_type = stats_type + + possible_meeting_numbers = [ + ('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type})), + (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), + (int(current_meeting), urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting), 'stats_type': possible_stats_type})), + (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)+1, 'stats_type': possible_stats_type}))] + + return render(request, "stats/meetings_timeline.html", { + "top_n": top_n, + "possible_stats_types": possible_stats_types, + "possible_meeting_numbers": possible_meeting_numbers, + "stats_type": stats_type, + "plural_stats_type": plural_stats_type, + "total_chart_data": total_chart_data, + "in_person_chart_data": in_person_chart_data, + }) + +def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=None): + """Get affiliation participation data for a specific meeting. + + Args: + meeting_number: The meeting number. + attendance_type: Optional filter for attendance type. + + Returns: + Tuple of (labels, data, total) for chart display. + """ + # Get registration status details + registrations = Registration.objects.filter(meeting__number=meeting_number) + if attendance_type: + registrations = registrations.filter(tickets__attendance_type=attendance_type) + registrations = registrations.values('affiliation') + + alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + + # Count per canonicalized affiliation + organization = dict() + for reg in registrations: + if reg['affiliation'] is None or reg['affiliation'].strip() == '': + affiliation = 'Unspecified' + else: + affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) + organization[affiliation] = organization.get(affiliation, 0) + 1 + + # Sort to have the largest count first (nicer in pie chart) + sorted_orgs = sorted(organization.items(), key=lambda t: t[1], reverse=True) + labels = [] + data = [] + total = 0 + for org, count in sorted_orgs[:top_n]: + total += count + labels.append(org) + data.append(count) + + other_total = 0 + for _, count in sorted_orgs[top_n:]: + other_total += count + total += count + + if other_total > 0: + labels.append('Other') + data.append(other_total) + + + return labels, data, total + +def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None): + """Get country participation data for a specific meeting. + + Args: + meeting_number: The meeting number. + minimum_required: Minimum count to include in main data (others go to 'Other'). + attendance_type: Optional filter for attendance type. + + Returns: + Tuple of (labels, data, total) for chart display. + """ + # Get registration status counts, aggregated by country_code + registration_counts = Registration.objects.filter(meeting__number=meeting_number) + if attendance_type: + registration_counts = registration_counts.filter(tickets__attendance_type=attendance_type) + registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') + + alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) + labels = [] + data = [] + total = 0 + country_totals = defaultdict(int) + for item in registration_counts[:top_n]: + total += item['count'] + country = alias_map.get(item['country_code'], item['country_code']) + labels.append(country) + data.append(item['count']) + country_totals[country] = item['count'] + + other_total = 0 + for item in registration_counts[top_n:]: + other_total += item['count'] + total += item['count'] + + if other_total > 0: + labels.append('Other') + data.append(other_total) + + return labels, data, total + +def meeting_stats(request, meeting_number=None, stats_type='country'): + """Render statistics for a specific meeting. + + Args: + request: The HTTP request object. + meeting_number: The meeting number (defaults to current). + stats_type: Type of statistics ('country' or 'affiliation'). + + Returns: + Rendered response for the meeting stats template. + """ + current_meeting_number = get_current_ietf_meeting_num() + if meeting_number is None: + meeting_number = current_meeting_number + this_meeting = get_object_or_404( + Meeting.objects.filter(type_id="ietf"), number=meeting_number + ) + + # Query parameters (from ?key=value) + top_n = int(request.GET.get('top', '20')) + + if stats_type == 'affiliation': + total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) + in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') + elif stats_type == 'country': + total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, top_n=top_n) + in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') + else: + return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + + total_chart_data = { + 'labels': total_labels, + 'datasets': [{ + 'label': 'Total Registrations by ' + stats_type, + 'data': total_data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in total_labels], + 'borderColor': '#ffffff', + 'borderWidth': 2, + }] + } + in_person_chart_data = { + 'labels': in_person_labels, + 'datasets': [{ + 'label': 'In Person Registrations by ' + stats_type, + 'data': in_person_data, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in in_person_labels], + 'borderColor': '#ffffff', + 'borderWidth': 2, + }] + } + + # Prepare the list of choice buttons for the template + possible_stats_types = [ + ("affiliation", "Per affiliation", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'affiliation'})), + ("country", "Per country", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'country'})), + ] + + # Prepare the list of meeting number buttons for the template + possible_meeting_numbers = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] + if int(meeting_number) > 72: # No registration data before IETF-72 + possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)-1, 'stats_type': stats_type}))) + possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': stats_type}))) + if int(meeting_number) <= int(current_meeting_number): # Allow current meeting +1 + possible_meeting_numbers.append((int(meeting_number)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)+1, 'stats_type': stats_type}))) + + return render(request, "stats/meeting_stats.html", { + "meeting_number": meeting_number, + "meeting_date": this_meeting.date, + "meeting_country": this_meeting.country, + "meeting_city": this_meeting.city, + "possible_stats_types": possible_stats_types, + "possible_meeting_numbers": possible_meeting_numbers, + "stats_type": stats_type, + "top_n": top_n, + "total_chart_data": total_chart_data, + "total_total": total_total, + "in_person_chart_data": in_person_chart_data, + "in_person_total": in_person_total + }) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 6495690fc83..22e5ed85ffe 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -435,18 +435,18 @@ {% endblock %} \ No newline at end of file From 5f6c4f8de44b510fde762971b86b091038680eab Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 1 Jun 2026 22:46:49 +0000 Subject: [PATCH 093/181] Add some guidance on the chart --- ietf/templates/stats/meeting_stats.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index ecc40fa6cf8..f68b89ad033 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -61,4 +61,9 @@

    In Person Registrations by {{ stats_type|title }} ({{ in_person_total}} in t +
    +

    + Click on a legend at the bottom to hide it and rescale the graph. +

    +
    {% endblock %} \ No newline at end of file From aa4108bce4fcc077122b581b74ab72ad99feaa38 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 1 Jun 2026 23:42:06 +0000 Subject: [PATCH 094/181] Fixing Cabo Verde canonical country name --- ietf/stats/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 1920173a809..d716b5a2a0c 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -78,6 +78,8 @@ def test_document_stats(self): country = 'South Korea' elif country == 'Brunei Darussalam': country = 'Brunei' + elif country == 'Cape Verde': + country = 'Cabo Verde' # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') From a4d973b96da53fcdfd07c87ed833d1b4e7970650 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Mon, 1 Jun 2026 23:58:24 +0000 Subject: [PATCH 095/181] Move the reviews stats in views_reviews.py --- ietf/stats/tests.py | 12 +- ietf/stats/urls.py | 4 +- ietf/stats/views.py | 412 +------------------------------ ietf/stats/views_reviews.py | 417 ++++++++++++++++++++++++++++++++ ietf/templates/base/menu.html | 2 +- ietf/templates/stats/index.html | 2 +- 6 files changed, 428 insertions(+), 421 deletions(-) create mode 100644 ietf/stats/views_reviews.py diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index d716b5a2a0c..edec703717a 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -351,11 +351,11 @@ def test_review_stats(self): PersonFactory(user__username='plain') # check redirect - url = urlreverse(ietf.stats.views.review_stats) + url = urlreverse(ietf.stats.views_reviews.review_stats) login_testing_unauthorized(self, "secretary", url) - completion_url = urlreverse(ietf.stats.views.review_stats, kwargs={ "stats_type": "completion" }) + completion_url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "completion" }) r = self.client.get(url) self.assertEqual(r.status_code, 302) @@ -369,7 +369,7 @@ def test_review_stats(self): # check tabular self.client.login(username="secretary", password="secretary+password") for stats_type in ["completion", "results", "states"]: - url = urlreverse(ietf.stats.views.review_stats, kwargs={ "stats_type": stats_type }) + url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": stats_type }) r = self.client.get(url) self.assertEqual(r.status_code, 200) q = PyQuery(r.content) @@ -379,7 +379,7 @@ def test_review_stats(self): # check stacked chart expected_date = date_today().replace(day=1) expected_js_timestamp = calendar.timegm(expected_date.timetuple()) * 1000 - url = urlreverse(ietf.stats.views.review_stats, kwargs={ "stats_type": "time" }) + url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) url += "?team={}".format(review_req.team.acronym) r = self.client.get(url) self.assertEqual(r.status_code, 200) @@ -391,7 +391,7 @@ def test_review_stats(self): self.assertTrue(q('#stats-time-graph')) # check non-stacked chart - url = urlreverse(ietf.stats.views.review_stats, kwargs={ "stats_type": "time" }) + url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) url += "?team={}".format(review_req.team.acronym) url += "&completion=not_completed" r = self.client.get(url) @@ -401,7 +401,7 @@ def test_review_stats(self): self.assertTrue(q('#stats-time-graph')) # check reviewer level - url = urlreverse(ietf.stats.views.review_stats, kwargs={ "stats_type": "completion", "acronym": review_req.team.acronym }) + url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "completion", "acronym": review_req.team.acronym }) r = self.client.get(url) self.assertEqual(r.status_code, 200) q = PyQuery(r.content) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 543f21b7165..4525f992072 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -6,7 +6,7 @@ from ietf.stats import views from ietf.utils.urls import url -from ietf.stats import views_authors, views_documents, views_meetings +from ietf.stats import views_authors, views_documents, views_meetings, views_reviews urlpatterns = [ url(r"^$", views.stats_index), @@ -18,5 +18,5 @@ url(r"^meetings/$", views_meetings.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views_meetings.meetings_timeline), - url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views.review_stats), + url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views_reviews.review_stats), ] diff --git a/ietf/stats/views.py b/ietf/stats/views.py index ee5a1e4bbbd..5d35c151a03 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -1,33 +1,12 @@ # Copyright The IETF Trust 2016-2020, All Rights Reserved # -*- coding: utf-8 -*- - -import calendar -import datetime -import itertools -import json -import dateutil.relativedelta - -from django.contrib.auth.decorators import login_required -from django.http import HttpResponseRedirect from django.shortcuts import render -from django.urls import reverse as urlreverse import debug # pyflakes:ignore -from ietf.review.utils import (extract_review_assignment_data, - aggregate_raw_period_review_assignment_stats, - ReviewAssignmentData, - sum_period_review_assignment_stats, - sum_raw_review_assignment_aggregations, - ) -from ietf.group.models import Role, Group -from ietf.person.models import Person -from ietf.name.models import ReviewResultName, CountryName, ReviewAssignmentStateName -from ietf.ietfauth.utils import has_role -from ietf.utils.response import permission_denied -from ietf.utils.timezone import date_today, DEADLINE_TZINFO from ietf.meeting.helpers import get_current_ietf_meeting_num +from ietf.name.models import CountryName def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" @@ -36,72 +15,6 @@ def stats_index(request): "current_meeting": current_meeting }) -def generate_query_string(query_dict, overrides): - """ - Returns: - A query string starting with '?' if there are parameters, empty string otherwise. - """ - query_part = "" - - if query_dict or overrides: - d = query_dict.copy() - for k, v in overrides.items(): - if type(v) in (list, tuple): - if not v: - if k in d: - del d[k] - else: - d.setlist(k, v) - else: - if v is None or v == "": - if k in d: - del d[k] - else: - d[k] = v - - if d: - query_part = "?" + d.urlencode() - - return query_part - -def get_choice(request, get_parameter, possible_choices, multiple=False): - """Extract a choice from the request GET parameters. - - Since statistics pages use links for navigation instead of forms, - this helper selects between possible choices from the URL parameters. - - Args: - request: The HTTP request object. - get_parameter: The name of the GET parameter. - possible_choices: List of tuples (value, label). - multiple: If True, return a list of found values; otherwise return the first found or None. - - Returns: - The selected value(s) or None. - """ - values = request.GET.getlist(get_parameter) - found = [t[0] for t in possible_choices if t[0] in values] - - if multiple: - return found - else: - if found: - return found[0] - else: - return None - -def add_url_to_choices(choices, url_builder): - """Add URLs to a list of choices. - - Args: - choices: List of tuples (slug, label). - url_builder: Function that takes a slug and returns a URL. - - Returns: - List of tuples (slug, label, url). - """ - return [ (slug, label, url_builder(slug)) for slug, label in choices] - def known_countries_list(request, stats_type=None, acronym=None): """Render a list of known countries with their aliases.""" countries = CountryName.objects.prefetch_related("countryalias_set") @@ -113,326 +26,3 @@ def known_countries_list(request, stats_type=None, acronym=None): return render(request, "stats/known_countries_list.html", { "countries": countries, }) - -@login_required -def review_stats(request, stats_type=None, acronym=None): - """Render review statistics page with tables and charts for review assignments. - - Shows completion status, results, assignment states, and time series data. - Supports both team-level and reviewer-level views with filtering options. - - Args: - request: The HTTP request object. - stats_type: Type of statistics ('completion', 'results', 'states', 'time'). - acronym: Team acronym for reviewer-level view (None for team view). - - Returns: - Rendered response for the review stats template. - """ - # This view is a bit complex because we want to show a bunch of - # tables with various filtering options, and both a team overview - # and a reviewers-within-team overview - and a time series chart. - # And in order to make the UI quick to navigate, we're not using - # one big form but instead presenting a bunch of immediate - # actions, with a URL scheme where the most common options (level - # and statistics type) are incorporated directly into the URL to - # be a bit nicer. - - def build_review_stats_url(stats_type_override=Ellipsis, acronym_override=Ellipsis, get_overrides=None): - if get_overrides is None: - get_overrides = {} - kwargs = { - "stats_type": stats_type if stats_type_override is Ellipsis else stats_type_override, - } - acr = acronym if acronym_override is Ellipsis else acronym_override - if acr: - kwargs["acronym"] = acr - - return urlreverse(review_stats, kwargs=kwargs) + generate_query_string(request.GET, get_overrides) - - # which overview - team or reviewer - if acronym: - level = "reviewer" - else: - level = "team" - - # statistics type - one of the tables or the chart - possible_stats_types = [ - ("completion", "Completion status"), - ("results", "Review results"), - ("states", "Assignment states"), - ] - - if level == "team": - possible_stats_types.append(("time", "Changes over time")) - - possible_stats_types = add_url_to_choices(possible_stats_types, - lambda slug: build_review_stats_url(stats_type_override=slug)) - - if not stats_type: - return HttpResponseRedirect(build_review_stats_url(stats_type_override=possible_stats_types[0][0])) - - # what to count - possible_count_choices = add_url_to_choices([ - ("", "Review requests"), - ("pages", "Reviewed pages"), - ], lambda slug: build_review_stats_url(get_overrides={ "count": slug })) - - count = get_choice(request, "count", possible_count_choices) or "" - - # time range - def parse_date(s): - if not s: - return None - try: - return datetime.datetime.strptime(s.strip(), "%Y-%m-%d").date() - except ValueError: - return None - - today = date_today(DEADLINE_TZINFO) - from_date = parse_date(request.GET.get("from")) or today - dateutil.relativedelta.relativedelta(years=1) - to_date = parse_date(request.GET.get("to")) or today - - from_time = datetime.datetime.combine(from_date, datetime.time.min, tzinfo=DEADLINE_TZINFO) - to_time = datetime.datetime.combine(to_date, datetime.time.max, tzinfo=DEADLINE_TZINFO) - - # teams/reviewers - teams = list(Group.objects.exclude(reviewrequest=None).distinct().order_by("name")) - - reviewer_filter_args = {} - - # - interlude: access control - if has_role(request.user, ["Secretariat", "Area Director"]): - pass - else: - secr_access = set() - reviewer_only_access = set() - - for r in Role.objects.filter(person__user=request.user, name__in=["secr", "reviewer"], group__in=teams).distinct(): - if r.name_id == "secr": - secr_access.add(r.group_id) - reviewer_only_access.discard(r.group_id) - elif r.name_id == "reviewer": - if not r.group_id in secr_access: - reviewer_only_access.add(r.group_id) - - if not secr_access and not reviewer_only_access: - permission_denied(request, "You do not have the necessary permissions to view this page") - - teams = [t for t in teams if t.pk in secr_access or t.pk in reviewer_only_access] - - for t in reviewer_only_access: - reviewer_filter_args[t] = { "user": request.user } - - reviewers_for_team = None - - if level == "team": - for t in teams: - t.reviewer_stats_url = build_review_stats_url(acronym_override=t.acronym) - - query_teams = teams - query_reviewers = None - - group_by_objs = { t.pk: t for t in query_teams } - group_by_index = ReviewAssignmentData._fields.index("team") - - elif level == "reviewer": - for t in teams: - if t.acronym == acronym: - reviewers_for_team = t - break - else: - return HttpResponseRedirect(urlreverse(review_stats)) - - query_reviewers = list(Person.objects.filter( - email__reviewassignment__review_request__time__gte=from_time, - email__reviewassignment__review_request__time__lte=to_time, - email__reviewassignment__review_request__team=reviewers_for_team, - **reviewer_filter_args.get(t.pk, {}) - ).distinct()) - query_reviewers.sort(key=lambda p: p.last_name()) - - query_teams = [t] - - group_by_objs = { r.pk: r for r in query_reviewers } - group_by_index = ReviewAssignmentData._fields.index("reviewer") - - # now filter and aggregate the data - possible_teams = possible_completion_types = possible_results = possible_states = None - selected_teams = selected_completion_type = selected_result = selected_state = None - - if stats_type == "time": - possible_teams = [(t.acronym, t.acronym) for t in teams] - selected_teams = get_choice(request, "team", possible_teams, multiple=True) - - def add_if_exists_else_subtract(element, l): - if element in l: - return [x for x in l if x != element] - else: - return l + [element] - - possible_teams = add_url_to_choices( - possible_teams, - lambda slug: build_review_stats_url(get_overrides={ - "team": add_if_exists_else_subtract(slug, selected_teams) - }) - ) - query_teams = [t for t in query_teams if t.acronym in selected_teams] - - extracted_data = extract_review_assignment_data(query_teams, query_reviewers, from_time, to_time) - - req_time_index = ReviewAssignmentData._fields.index("req_time") - - def time_key_fn(t): - d = t[req_time_index].date() - #d -= datetime.timedelta(days=d.weekday()) # weekly - # NOTE: Earlier releases had an off-by-one error here - some stat counts may move a month. - d -= datetime.timedelta(days=d.day-1) # monthly - return d - - found_results = set() - found_states = set() - aggrs = [] - for d, request_data_items in itertools.groupby(extracted_data, key=time_key_fn): - raw_aggr = aggregate_raw_period_review_assignment_stats(request_data_items, count=count) - aggr = sum_period_review_assignment_stats(raw_aggr) - - aggrs.append((d, aggr)) - - for slug in aggr["result"]: - found_results.add(slug) - for slug in aggr["state"]: - found_states.add(slug) - - results = ReviewResultName.objects.filter(slug__in=found_results) - states = ReviewAssignmentStateName.objects.filter(slug__in=found_states) - - # choice - - possible_completion_types = add_url_to_choices([ - ("completed_in_time_or_late", "Completed (in time or late)"), - ("not_completed", "Not completed"), - ("average_assignment_to_closure_days", "Avg. compl. days"), - ], lambda slug: build_review_stats_url(get_overrides={ "completion": slug, "result": None, "state": None })) - - selected_completion_type = get_choice(request, "completion", possible_completion_types) - - possible_results = add_url_to_choices( - [(r.slug, r.name) for r in results], - lambda slug: build_review_stats_url(get_overrides={ "completion": None, "result": slug, "state": None }) - ) - - selected_result = get_choice(request, "result", possible_results) - - possible_states = add_url_to_choices( - [(s.slug, s.name) for s in states], - lambda slug: build_review_stats_url(get_overrides={ "completion": None, "result": None, "state": slug }) - ) - - selected_state = get_choice(request, "state", possible_states) - - if not selected_completion_type and not selected_result and not selected_state: - selected_completion_type = "completed_in_time_or_late" - - standard_color = '#3d22b3' - if selected_completion_type == 'completed_in_time_or_late': - graph_data = [ - {'label': 'in time', 'color': standard_color, 'data': []}, - {'label': 'late', 'color': '#b42222', 'data': []} - ] - else: - graph_data = [{'color': standard_color, 'data': []}] - if selected_completion_type == "completed_combined": - pass - else: - for d, aggr in aggrs: - v1 = 0 - v2 = None - js_timestamp = calendar.timegm(d.timetuple()) * 1000 - if selected_completion_type == 'completed_in_time_or_late': - v1 = aggr['completed_in_time'] - v2 = aggr['completed_late'] - elif selected_completion_type is not None: - v1 = aggr[selected_completion_type] - elif selected_result is not None: - v1 = aggr["result"][selected_result] - elif selected_state is not None: - v1 = aggr["state"][selected_state] - - graph_data[0]['data'].append((js_timestamp, v1)) - if v2 is not None: - graph_data[1]['data'].append((js_timestamp, v2)) - data = json.dumps(graph_data) - - else: # tabular data - extracted_data = extract_review_assignment_data(query_teams, query_reviewers, from_time, to_time, ordering=[level]) - - data = [] - - found_results = set() - found_states = set() - raw_aggrs = [] - for group_pk, request_data_items in itertools.groupby(extracted_data, key=lambda t: t[group_by_index]): - raw_aggr = aggregate_raw_period_review_assignment_stats(request_data_items, count=count) - raw_aggrs.append(raw_aggr) - - aggr = sum_period_review_assignment_stats(raw_aggr) - - # skip zero-valued rows - if aggr["open"] == 0 and aggr["completed"] == 0 and aggr["not_completed"] == 0: - continue - - aggr["obj"] = group_by_objs.get(group_pk) - - for slug in aggr["result"]: - found_results.add(slug) - for slug in aggr["state"]: - found_states.add(slug) - - data.append(aggr) - - # add totals row - if len(raw_aggrs) > 1: - totals = sum_period_review_assignment_stats(sum_raw_review_assignment_aggregations(raw_aggrs)) - totals["obj"] = "Totals" - data.append(totals) - - results = ReviewResultName.objects.filter(slug__in=found_results) - states = ReviewAssignmentStateName.objects.filter(slug__in=found_states) - - # massage states/results breakdowns for template rendering - for aggr in data: - aggr["state_list"] = [aggr["state"].get(x.slug, 0) for x in states] - aggr["result_list"] = [aggr["result"].get(x.slug, 0) for x in results] - - - return render(request, 'stats/review_stats.html', { - "team_level_url": build_review_stats_url(acronym_override=None), - "level": level, - "reviewers_for_team": reviewers_for_team, - "teams": teams, - "data": data, - "states": states, - "results": results, - - # options - "possible_stats_types": possible_stats_types, - "stats_type": stats_type, - - "possible_count_choices": possible_count_choices, - "count": count, - - "from_date": from_date, - "to_date": to_date, - "today": today, - - # time options - "possible_teams": possible_teams, - "selected_teams": selected_teams, - "possible_completion_types": possible_completion_types, - "selected_completion_type": selected_completion_type, - "possible_results": possible_results, - "selected_result": selected_result, - "possible_states": possible_states, - "selected_state": selected_state, - }) diff --git a/ietf/stats/views_reviews.py b/ietf/stats/views_reviews.py new file mode 100644 index 00000000000..a77532567ec --- /dev/null +++ b/ietf/stats/views_reviews.py @@ -0,0 +1,417 @@ +# Copyright The IETF Trust 2016-2026, All Rights Reserved +# -*- coding: utf-8 -*- + +import datetime +import calendar +import itertools +import json +import dateutil.relativedelta + +from django.contrib.auth.decorators import login_required +from django.http import HttpResponseRedirect +from django.shortcuts import render +from django.urls import reverse as urlreverse + +import debug # pyflakes:ignore +from ietf.ietfauth.utils import has_role +from ietf.utils.response import permission_denied +from ietf.utils.timezone import date_today, DEADLINE_TZINFO +from ietf.group.models import Role, Group +from ietf.person.models import Person +from ietf.name.models import ReviewResultName, ReviewAssignmentStateName +from ietf.review.utils import (extract_review_assignment_data, + aggregate_raw_period_review_assignment_stats, + ReviewAssignmentData, + sum_period_review_assignment_stats, + sum_raw_review_assignment_aggregations, + ) + +def generate_query_string(query_dict, overrides): + """ + Returns: + A query string starting with '?' if there are parameters, empty string otherwise. + """ + query_part = "" + + if query_dict or overrides: + d = query_dict.copy() + for k, v in overrides.items(): + if type(v) in (list, tuple): + if not v: + if k in d: + del d[k] + else: + d.setlist(k, v) + else: + if v is None or v == "": + if k in d: + del d[k] + else: + d[k] = v + + if d: + query_part = "?" + d.urlencode() + + return query_part + + +def get_choice(request, get_parameter, possible_choices, multiple=False): + """Extract a choice from the request GET parameters. + + Since statistics pages use links for navigation instead of forms, + this helper selects between possible choices from the URL parameters. + + Args: + request: The HTTP request object. + get_parameter: The name of the GET parameter. + possible_choices: List of tuples (value, label). + multiple: If True, return a list of found values; otherwise return the first found or None. + + Returns: + The selected value(s) or None. + """ + values = request.GET.getlist(get_parameter) + found = [t[0] for t in possible_choices if t[0] in values] + + if multiple: + return found + else: + if found: + return found[0] + else: + return None + +def add_url_to_choices(choices, url_builder): + """Add URLs to a list of choices. + + Args: + choices: List of tuples (slug, label). + url_builder: Function that takes a slug and returns a URL. + + Returns: + List of tuples (slug, label, url). + """ + return [ (slug, label, url_builder(slug)) for slug, label in choices] + +@login_required +def review_stats(request, stats_type=None, acronym=None): + """Render review statistics page with tables and charts for review assignments. + + Shows completion status, results, assignment states, and time series data. + Supports both team-level and reviewer-level views with filtering options. + + Args: + request: The HTTP request object. + stats_type: Type of statistics ('completion', 'results', 'states', 'time'). + acronym: Team acronym for reviewer-level view (None for team view). + + Returns: + Rendered response for the review stats template. + """ + # This view is a bit complex because we want to show a bunch of + # tables with various filtering options, and both a team overview + # and a reviewers-within-team overview - and a time series chart. + # And in order to make the UI quick to navigate, we're not using + # one big form but instead presenting a bunch of immediate + # actions, with a URL scheme where the most common options (level + # and statistics type) are incorporated directly into the URL to + # be a bit nicer. + + def build_review_stats_url(stats_type_override=Ellipsis, acronym_override=Ellipsis, get_overrides=None): + if get_overrides is None: + get_overrides = {} + kwargs = { + "stats_type": stats_type if stats_type_override is Ellipsis else stats_type_override, + } + acr = acronym if acronym_override is Ellipsis else acronym_override + if acr: + kwargs["acronym"] = acr + + return urlreverse(review_stats, kwargs=kwargs) + generate_query_string(request.GET, get_overrides) + + # which overview - team or reviewer + if acronym: + level = "reviewer" + else: + level = "team" + + # statistics type - one of the tables or the chart + possible_stats_types = [ + ("completion", "Completion status"), + ("results", "Review results"), + ("states", "Assignment states"), + ] + + if level == "team": + possible_stats_types.append(("time", "Changes over time")) + + possible_stats_types = add_url_to_choices(possible_stats_types, + lambda slug: build_review_stats_url(stats_type_override=slug)) + + if not stats_type: + return HttpResponseRedirect(build_review_stats_url(stats_type_override=possible_stats_types[0][0])) + + # what to count + possible_count_choices = add_url_to_choices([ + ("", "Review requests"), + ("pages", "Reviewed pages"), + ], lambda slug: build_review_stats_url(get_overrides={ "count": slug })) + + count = get_choice(request, "count", possible_count_choices) or "" + + # time range + def parse_date(s): + if not s: + return None + try: + return datetime.datetime.strptime(s.strip(), "%Y-%m-%d").date() + except ValueError: + return None + + today = date_today(DEADLINE_TZINFO) + from_date = parse_date(request.GET.get("from")) or today - dateutil.relativedelta.relativedelta(years=1) + to_date = parse_date(request.GET.get("to")) or today + + from_time = datetime.datetime.combine(from_date, datetime.time.min, tzinfo=DEADLINE_TZINFO) + to_time = datetime.datetime.combine(to_date, datetime.time.max, tzinfo=DEADLINE_TZINFO) + + # teams/reviewers + teams = list(Group.objects.exclude(reviewrequest=None).distinct().order_by("name")) + + reviewer_filter_args = {} + + # - interlude: access control + if has_role(request.user, ["Secretariat", "Area Director"]): + pass + else: + secr_access = set() + reviewer_only_access = set() + + for r in Role.objects.filter(person__user=request.user, name__in=["secr", "reviewer"], group__in=teams).distinct(): + if r.name_id == "secr": + secr_access.add(r.group_id) + reviewer_only_access.discard(r.group_id) + elif r.name_id == "reviewer": + if not r.group_id in secr_access: + reviewer_only_access.add(r.group_id) + + if not secr_access and not reviewer_only_access: + permission_denied(request, "You do not have the necessary permissions to view this page") + + teams = [t for t in teams if t.pk in secr_access or t.pk in reviewer_only_access] + + for t in reviewer_only_access: + reviewer_filter_args[t] = { "user": request.user } + + reviewers_for_team = None + + if level == "team": + for t in teams: + t.reviewer_stats_url = build_review_stats_url(acronym_override=t.acronym) + + query_teams = teams + query_reviewers = None + + group_by_objs = { t.pk: t for t in query_teams } + group_by_index = ReviewAssignmentData._fields.index("team") + + elif level == "reviewer": + for t in teams: + if t.acronym == acronym: + reviewers_for_team = t + break + else: + return HttpResponseRedirect(urlreverse(review_stats)) + + query_reviewers = list(Person.objects.filter( + email__reviewassignment__review_request__time__gte=from_time, + email__reviewassignment__review_request__time__lte=to_time, + email__reviewassignment__review_request__team=reviewers_for_team, + **reviewer_filter_args.get(t.pk, {}) + ).distinct()) + query_reviewers.sort(key=lambda p: p.last_name()) + + query_teams = [t] + + group_by_objs = { r.pk: r for r in query_reviewers } + group_by_index = ReviewAssignmentData._fields.index("reviewer") + + # now filter and aggregate the data + possible_teams = possible_completion_types = possible_results = possible_states = None + selected_teams = selected_completion_type = selected_result = selected_state = None + + if stats_type == "time": + possible_teams = [(t.acronym, t.acronym) for t in teams] + selected_teams = get_choice(request, "team", possible_teams, multiple=True) + + def add_if_exists_else_subtract(element, l): + if element in l: + return [x for x in l if x != element] + else: + return l + [element] + + possible_teams = add_url_to_choices( + possible_teams, + lambda slug: build_review_stats_url(get_overrides={ + "team": add_if_exists_else_subtract(slug, selected_teams) + }) + ) + query_teams = [t for t in query_teams if t.acronym in selected_teams] + + extracted_data = extract_review_assignment_data(query_teams, query_reviewers, from_time, to_time) + + req_time_index = ReviewAssignmentData._fields.index("req_time") + + def time_key_fn(t): + d = t[req_time_index].date() + #d -= datetime.timedelta(days=d.weekday()) # weekly + # NOTE: Earlier releases had an off-by-one error here - some stat counts may move a month. + d -= datetime.timedelta(days=d.day-1) # monthly + return d + + found_results = set() + found_states = set() + aggrs = [] + for d, request_data_items in itertools.groupby(extracted_data, key=time_key_fn): + raw_aggr = aggregate_raw_period_review_assignment_stats(request_data_items, count=count) + aggr = sum_period_review_assignment_stats(raw_aggr) + + aggrs.append((d, aggr)) + + for slug in aggr["result"]: + found_results.add(slug) + for slug in aggr["state"]: + found_states.add(slug) + + results = ReviewResultName.objects.filter(slug__in=found_results) + states = ReviewAssignmentStateName.objects.filter(slug__in=found_states) + + # choice + + possible_completion_types = add_url_to_choices([ + ("completed_in_time_or_late", "Completed (in time or late)"), + ("not_completed", "Not completed"), + ("average_assignment_to_closure_days", "Avg. compl. days"), + ], lambda slug: build_review_stats_url(get_overrides={ "completion": slug, "result": None, "state": None })) + + selected_completion_type = get_choice(request, "completion", possible_completion_types) + + possible_results = add_url_to_choices( + [(r.slug, r.name) for r in results], + lambda slug: build_review_stats_url(get_overrides={ "completion": None, "result": slug, "state": None }) + ) + + selected_result = get_choice(request, "result", possible_results) + + possible_states = add_url_to_choices( + [(s.slug, s.name) for s in states], + lambda slug: build_review_stats_url(get_overrides={ "completion": None, "result": None, "state": slug }) + ) + + selected_state = get_choice(request, "state", possible_states) + + if not selected_completion_type and not selected_result and not selected_state: + selected_completion_type = "completed_in_time_or_late" + + standard_color = '#3d22b3' + if selected_completion_type == 'completed_in_time_or_late': + graph_data = [ + {'label': 'in time', 'color': standard_color, 'data': []}, + {'label': 'late', 'color': '#b42222', 'data': []} + ] + else: + graph_data = [{'color': standard_color, 'data': []}] + if selected_completion_type == "completed_combined": + pass + else: + for d, aggr in aggrs: + v1 = 0 + v2 = None + js_timestamp = calendar.timegm(d.timetuple()) * 1000 + if selected_completion_type == 'completed_in_time_or_late': + v1 = aggr['completed_in_time'] + v2 = aggr['completed_late'] + elif selected_completion_type is not None: + v1 = aggr[selected_completion_type] + elif selected_result is not None: + v1 = aggr["result"][selected_result] + elif selected_state is not None: + v1 = aggr["state"][selected_state] + + graph_data[0]['data'].append((js_timestamp, v1)) + if v2 is not None: + graph_data[1]['data'].append((js_timestamp, v2)) + data = json.dumps(graph_data) + + else: # tabular data + extracted_data = extract_review_assignment_data(query_teams, query_reviewers, from_time, to_time, ordering=[level]) + + data = [] + + found_results = set() + found_states = set() + raw_aggrs = [] + for group_pk, request_data_items in itertools.groupby(extracted_data, key=lambda t: t[group_by_index]): + raw_aggr = aggregate_raw_period_review_assignment_stats(request_data_items, count=count) + raw_aggrs.append(raw_aggr) + + aggr = sum_period_review_assignment_stats(raw_aggr) + + # skip zero-valued rows + if aggr["open"] == 0 and aggr["completed"] == 0 and aggr["not_completed"] == 0: + continue + + aggr["obj"] = group_by_objs.get(group_pk) + + for slug in aggr["result"]: + found_results.add(slug) + for slug in aggr["state"]: + found_states.add(slug) + + data.append(aggr) + + # add totals row + if len(raw_aggrs) > 1: + totals = sum_period_review_assignment_stats(sum_raw_review_assignment_aggregations(raw_aggrs)) + totals["obj"] = "Totals" + data.append(totals) + + results = ReviewResultName.objects.filter(slug__in=found_results) + states = ReviewAssignmentStateName.objects.filter(slug__in=found_states) + + # massage states/results breakdowns for template rendering + for aggr in data: + aggr["state_list"] = [aggr["state"].get(x.slug, 0) for x in states] + aggr["result_list"] = [aggr["result"].get(x.slug, 0) for x in results] + + + return render(request, 'stats/review_stats.html', { + "team_level_url": build_review_stats_url(acronym_override=None), + "level": level, + "reviewers_for_team": reviewers_for_team, + "teams": teams, + "data": data, + "states": states, + "results": results, + + # options + "possible_stats_types": possible_stats_types, + "stats_type": stats_type, + + "possible_count_choices": possible_count_choices, + "count": count, + + "from_date": from_date, + "to_date": to_date, + "today": today, + + # time options + "possible_teams": possible_teams, + "selected_teams": selected_teams, + "possible_completion_types": possible_completion_types, + "selected_completion_type": selected_completion_type, + "possible_results": possible_results, + "selected_result": selected_result, + "possible_states": possible_states, + "selected_state": selected_state, + }) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 22e5ed85ffe..36e6426ec67 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -453,7 +453,7 @@ {% if user and user.is_authenticated %}
  • + href="{% url "ietf.stats.views_reviews.review_stats" %}"> Reviews
  • diff --git a/ietf/templates/stats/index.html b/ietf/templates/stats/index.html index 8b338cc195a..b0178719f0b 100644 --- a/ietf/templates/stats/index.html +++ b/ietf/templates/stats/index.html @@ -11,7 +11,7 @@

    • - Reviews of Internet-Drafts in review teams + Reviews of Internet-Drafts in review teams (requires login)
    • From 3fabad62a722fbbf65bee0fe8b24cecd4705b42a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 2 Jun 2026 04:36:02 +0000 Subject: [PATCH 096/181] fix templates to use views_reviews --- ietf/templates/group/review_requests.html | 2 +- ietf/templates/group/reviewer_overview.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/templates/group/review_requests.html b/ietf/templates/group/review_requests.html index 61b93de2b66..4e5851a2e9c 100644 --- a/ietf/templates/group/review_requests.html +++ b/ietf/templates/group/review_requests.html @@ -11,7 +11,7 @@ {% origin %} {% if can_access_stats %} diff --git a/ietf/templates/group/reviewer_overview.html b/ietf/templates/group/reviewer_overview.html index 75bd15f1d30..a603bd92035 100644 --- a/ietf/templates/group/reviewer_overview.html +++ b/ietf/templates/group/reviewer_overview.html @@ -11,7 +11,7 @@ {% origin %} {% if can_access_stats %}
      - From 1c484b137da6519bb8f515000fc55e08501f6acb Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 4 Jun 2026 01:03:06 +0000 Subject: [PATCH 097/181] Remove unused parameters --- ietf/stats/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 5d35c151a03..4b60703115d 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -15,7 +15,7 @@ def stats_index(request): "current_meeting": current_meeting }) -def known_countries_list(request, stats_type=None, acronym=None): +def known_countries_list(request): """Render a list of known countries with their aliases.""" countries = CountryName.objects.prefetch_related("countryalias_set") for c in countries: From 3866a19c454a379f5863c04bab7d7cd53ecf6f0e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 4 Jun 2026 05:45:27 +0000 Subject: [PATCH 098/181] After a co-pilot review ;-) --- ietf/stats/views_authors.py | 41 ++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 4a7c513475c..76285e94f67 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -26,8 +26,7 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', DocumentAuthor.objects .filter(filters) .values(group_by) - .annotate(author_count=Count('person', distinct=False)) # Count as many document authored by this author - .order_by('-author_count') + .annotate(author_count=Count('person', distinct=True)) # Count as many document authored by this author ) group_count_set = { @@ -49,9 +48,9 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', group = 'Unspecified' group_count_dict[group] = group_count_dict.get(group, 0) + count - group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) - top_groups = group_count_dict[:top_n] - other_count = sum(count for _, count in group_count_dict[top_n:]) + group_count_sorted = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = group_count_sorted[:top_n] + other_count = sum(count for _, count in group_count_sorted[top_n:]) if other_count > 0: top_groups.append(('Other', other_count)) @@ -71,7 +70,10 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', def authors_total(request, doc_type='all', stats_type='affiliation'): # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) + try: + top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + except ValueError: + top_n = 10 if stats_type == 'affiliation': chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) @@ -110,7 +112,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' result = cache.get(cache_key, None) if result is not None: - years_set, documents_totals, data_map = result + years_list, documents_totals, data_map = result else: # Build a dynamic query set filter filters = Q() @@ -126,10 +128,6 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr ) # ── Step 1: Collect all meetings and tickets totals ── - years_set = set() - documents_totals = defaultdict(int) - data_map = defaultdict(dict) # {year: {stream: count}} - years_set = set() documents_totals = defaultdict(int) data_map = defaultdict(dict) @@ -144,6 +142,8 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr elif group_by == 'country': alias_map = get_aliased_countries(group for _, group in year_group_list) year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] + else: + alias_map = {} alias_map[''] = 'Unspecified' years_set = {year for year, _ in year_group_list} @@ -157,10 +157,10 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr documents_totals[group] += 1 # ── Step 2: Sort years numerically rather than alphabetically ── - years_set = sorted(years_set) + years_list = sorted(years_set) cache.set( cache_key, - (years_set, documents_totals, data_map), + (years_list, documents_totals, data_map), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) @@ -170,9 +170,9 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr key=lambda c: documents_totals[c], reverse=True )[:top_n] - non_top_groups = documents_totals.keys() - top_groups + non_top_groups = documents_totals.keys() - set(top_groups) other_totals = defaultdict(int) - for y in years_set: + for y in years_list: other_totals[y] = 0 for g in non_top_groups: other_totals[y] += int(data_map[y].get(g, 0)) @@ -184,7 +184,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr color = color_from_hash(group) datasets.append({ 'label': group, - 'data': [data_map[year].get(group, 0) for year in years_set], + 'data': [data_map[year].get(group, 0) for year in years_list], 'borderColor': color, 'backgroundColor': color + '99', # 60% opacity fill 'fill': False, @@ -199,7 +199,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr # -- Step 4.bis handle the other -- datasets.append({ 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_set], + 'data': [other_totals.get(year, 0) for year in years_list], 'borderColor': 'black', 'fill': False, 'tension': 0.0, @@ -210,7 +210,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr 'borderWidth': 2, }) - return years_set, datasets + return years_list, datasets def authors_timeline(request, doc_type='all', stats_type='affiliation'): @@ -226,7 +226,10 @@ def authors_timeline(request, doc_type='all', stats_type='affiliation'): """ # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) + try: + top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + except ValueError: + top_n = 20 if stats_type == 'affiliation': total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) From 3d2ea9698e288e119dffd6a6ef6cd17ccce122d8 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 4 Jun 2026 16:24:09 +0000 Subject: [PATCH 099/181] Refactoring with co-pilot --- ietf/stats/views_meetings.py | 260 +++++++++++++++++------------------ 1 file changed, 129 insertions(+), 131 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 925c53a5ac1..25aaa8f43a9 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -1,13 +1,15 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved # -*- coding: utf-8 -*- +from typing import Optional, Tuple, List, Dict, Any +from collections import defaultdict + from django.conf import settings from django.db.models import Count from django.http import HttpResponseRedirect from django.shortcuts import render, get_object_or_404 from django.urls import reverse as urlreverse from django.core.cache import cache -from collections import defaultdict import debug # pyflakes:ignore @@ -15,8 +17,102 @@ from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries from ietf.meeting.helpers import get_current_ietf_meeting_num +# Constants +FIRST_MEETING_WITH_REGISTRATION_DATA = 72 + + +def _build_timeline_datasets( + top_items: List[str], + data_map: Dict[str, Dict[str, int]], + sorted_meetings: List[str], + other_totals: Dict[str, int], + include_background_color: bool = False, +) -> List[Dict[str, Any]]: + """Build Chart.js datasets for timeline charts. + + Args: + top_items: List of top item labels (countries, affiliations, etc.). + data_map: Mapping of {item: {meeting: count}}. + sorted_meetings: Sorted list of meeting numbers. + other_totals: Mapping of {meeting: count} for 'Other' category. + include_background_color: Whether to include backgroundColor (for filled areas). + + Returns: + List of Chart.js dataset dictionaries. + """ + datasets = [] + for item in top_items: + color = color_from_hash(item) + dataset = { + 'label': item, + 'data': [data_map[item].get(m, 0) for m in sorted_meetings], + 'borderColor': color, + 'fill': bool(include_background_color), + 'tension': 0.0 if include_background_color else 0.3, + 'pointColor': color, + 'pointBackgroundColor': color, + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + } + if include_background_color: + dataset['backgroundColor'] = color + '99' + datasets.append(dataset) + + # Add "Other" category + datasets.append({ + 'label': 'Other', + 'data': [other_totals.get(m, 0) for m in sorted_meetings], + 'borderColor': 'black', + 'fill': bool(include_background_color), + 'tension': 0.0 if include_background_color else 0.3, + 'pointColor': 'black', + 'pointBackgroundColor': 'black', + 'pointRadius': 4, + 'pointHoverRadius': 6, + 'borderWidth': 2, + }) + if include_background_color: + datasets[-1]['backgroundColor'] = '#00000099' + + return datasets + + +def _build_pie_chart_data( + items_with_counts: List[Tuple[str, int]], + top_n: int = 20, +) -> Tuple[List[str], List[int], int]: + """Build pie chart data from sorted items. + + Args: + items_with_counts: List of (label, count) tuples, already sorted. + top_n: Number of top items to display. + + Returns: + Tuple of (labels, data, total). + """ + labels = [] + data = [] + total = 0 + + for item, count in items_with_counts[:top_n]: + total += count + labels.append(item) + data.append(count) + + other_total = 0 + for _, count in items_with_counts[top_n:]: + other_total += count + total += count + + if other_total > 0: + labels.append('Other') + data.append(other_total) + + return labels, data, total + -def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): +def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: """Get affiliation participation data for meetings timeline chart. Args: @@ -48,7 +144,7 @@ def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): for reg in registrations: meeting = reg['meeting__number'] meetings_set.add(meeting) - if reg['affiliation'] is None or reg['affiliation'].strip() == '': + if not reg['affiliation'] or not reg['affiliation'].strip(): affiliation = 'Unspecified' else: affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) @@ -73,36 +169,7 @@ def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): other_totals[m] += int(data_map[c].get(m, 0)) # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for idx, org in enumerate(top_orgs): - color = color_from_hash(org) - datasets.append({ - 'label': org, - 'data': [data_map[org].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'fill': False, - 'tension': 0.3, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - # -- Step 4.bis handle the other -- - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(m, 0) for m in sorted_meetings], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.3, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) + datasets = _build_timeline_datasets(top_orgs, data_map, sorted_meetings, other_totals) cache.set( cache_key, (sorted_meetings, datasets), @@ -111,7 +178,7 @@ def get_affiliation_data_for_meetings(attendance_type=None, top_n=20): return sorted_meetings, datasets -def get_country_data_for_meetings(attendance_type=None, top_n=20): +def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: """Get country participation data for meetings timeline chart. Args: @@ -176,36 +243,7 @@ def get_country_data_for_meetings(attendance_type=None, top_n=20): other_totals[m] += int(data_map[c].get(m, 0)) # ── Step 4: Build Chart.js datasets ── - - datasets = [] - for idx, country in enumerate(top_countries): - color = color_from_hash(country) - datasets.append({ - 'label': country, - 'data': [data_map[country].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'fill': False, - 'tension': 0.3, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) - - # -- Step 4.bis handle the other -- - datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(m, 0) for m in sorted_meetings], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.3, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) + datasets = _build_timeline_datasets(top_countries, data_map, sorted_meetings, other_totals) cache.set( cache_key, (sorted_meetings, datasets), @@ -214,7 +252,7 @@ def get_country_data_for_meetings(attendance_type=None, top_n=20): return sorted_meetings, datasets -def get_data_for_meetings(top_n=20): +def get_data_for_meetings(top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: """Get total participation data by attendance type for meetings timeline chart. Returns: @@ -254,22 +292,7 @@ def get_data_for_meetings(top_n=20): ticket_types = tickets_totals.keys() # ── Step 4: Build Chart.js datasets ── - datasets = [] - for idx, ticket_type in enumerate(ticket_types): - color = color_from_hash(ticket_type) - datasets.append({ - 'label': ticket_type, - 'data': [data_map[ticket_type].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': True, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, - }) + datasets = _build_timeline_datasets(list(ticket_types), data_map, sorted_meetings, {}, include_background_color=True) cache.set( cache_key, (sorted_meetings, datasets), @@ -277,7 +300,7 @@ def get_data_for_meetings(top_n=20): ) return sorted_meetings, datasets -def meetings_timeline(request, stats_type='country'): +def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: """Render the meetings timeline page with participation statistics over time. Args: @@ -289,7 +312,10 @@ def meetings_timeline(request, stats_type='country'): Rendered response for the meetings timeline template. """ # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) + try: + top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + except ValueError: + top_n = 20 if stats_type == 'total': total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) @@ -350,7 +376,7 @@ def meetings_timeline(request, stats_type='country'): "in_person_chart_data": in_person_chart_data, }) -def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=None): +def get_affiliation_data_for_meeting(meeting_number: str, top_n: int = 20, attendance_type: Optional[str] = None) -> Tuple[List[str], List[int], int]: """Get affiliation participation data for a specific meeting. Args: @@ -371,7 +397,7 @@ def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=N # Count per canonicalized affiliation organization = dict() for reg in registrations: - if reg['affiliation'] is None or reg['affiliation'].strip() == '': + if not reg['affiliation'] or not reg['affiliation'].strip(): affiliation = 'Unspecified' else: affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) @@ -379,27 +405,9 @@ def get_affiliation_data_for_meeting(meeting_number, top_n=20, attendance_type=N # Sort to have the largest count first (nicer in pie chart) sorted_orgs = sorted(organization.items(), key=lambda t: t[1], reverse=True) - labels = [] - data = [] - total = 0 - for org, count in sorted_orgs[:top_n]: - total += count - labels.append(org) - data.append(count) - - other_total = 0 - for _, count in sorted_orgs[top_n:]: - other_total += count - total += count - - if other_total > 0: - labels.append('Other') - data.append(other_total) - - - return labels, data, total + return _build_pie_chart_data(sorted_orgs, top_n) -def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None): +def get_country_data_for_meeting(meeting_number: str, top_n: int = 20, attendance_type: Optional[str] = None) -> Tuple[List[str], List[int], int]: """Get country participation data for a specific meeting. Args: @@ -417,29 +425,16 @@ def get_country_data_for_meeting(meeting_number, top_n=20, attendance_type=None) registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) - labels = [] - data = [] - total = 0 - country_totals = defaultdict(int) - for item in registration_counts[:top_n]: - total += item['count'] - country = alias_map.get(item['country_code'], item['country_code']) - labels.append(country) - data.append(item['count']) - country_totals[country] = item['count'] - - other_total = 0 - for item in registration_counts[top_n:]: - other_total += item['count'] - total += item['count'] - - if other_total > 0: - labels.append('Other') - data.append(other_total) - - return labels, data, total + + # Convert queryset to list of (label, count) tuples + items_with_counts = [ + (alias_map.get(item['country_code'], item['country_code']), item['count']) + for item in registration_counts + ] + + return _build_pie_chart_data(items_with_counts, top_n) -def meeting_stats(request, meeting_number=None, stats_type='country'): +def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type: str = 'country') -> Any: """Render statistics for a specific meeting. Args: @@ -458,7 +453,10 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): ) # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '20')) + try: + top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + except ValueError: + top_n = 20 if stats_type == 'affiliation': total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) @@ -472,7 +470,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): total_chart_data = { 'labels': total_labels, 'datasets': [{ - 'label': 'Total Registrations by ' + stats_type, + 'label': f'Total Registrations by {stats_type}', 'data': total_data, 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in total_labels], 'borderColor': '#ffffff', @@ -482,7 +480,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): in_person_chart_data = { 'labels': in_person_labels, 'datasets': [{ - 'label': 'In Person Registrations by ' + stats_type, + 'label': f'In Person Registrations by {stats_type}', 'data': in_person_data, 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in in_person_labels], 'borderColor': '#ffffff', @@ -498,7 +496,7 @@ def meeting_stats(request, meeting_number=None, stats_type='country'): # Prepare the list of meeting number buttons for the template possible_meeting_numbers = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] - if int(meeting_number) > 72: # No registration data before IETF-72 + if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)-1, 'stats_type': stats_type}))) possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': stats_type}))) if int(meeting_number) <= int(current_meeting_number): # Allow current meeting +1 From 0c9440c53d38540f7ee18ad1f0b09016bc274f3e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 5 Jun 2026 13:45:50 +0000 Subject: [PATCH 100/181] More typing --- ietf/stats/views_meetings.py | 76 ++++++++++++++++++------------------ 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 25aaa8f43a9..2b30bc03b3b 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -4,6 +4,8 @@ from typing import Optional, Tuple, List, Dict, Any from collections import defaultdict +import debug # pyflakes:ignore + from django.conf import settings from django.db.models import Count from django.http import HttpResponseRedirect @@ -11,8 +13,6 @@ from django.urls import reverse as urlreverse from django.core.cache import cache -import debug # pyflakes:ignore - from ietf.meeting.models import Registration, Meeting from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries from ietf.meeting.helpers import get_current_ietf_meeting_num @@ -40,7 +40,7 @@ def _build_timeline_datasets( Returns: List of Chart.js dataset dictionaries. """ - datasets = [] + datasets: List[Dict[str, Any]] = [] for item in top_items: color = color_from_hash(item) dataset = { @@ -91,8 +91,8 @@ def _build_pie_chart_data( Returns: Tuple of (labels, data, total). """ - labels = [] - data = [] + labels: List[str] = [] + data: List[int] = [] total = 0 for item, count in items_with_counts[:top_n]: @@ -127,19 +127,19 @@ def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top # Get registration status details if attendance_type: - registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) + base_registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) else: - registrations = Registration.objects.all() - registrations = registrations.values('affiliation', 'meeting__number') + base_registrations = Registration.objects.all() + registrations = base_registrations.values('affiliation', 'meeting__number') # Prepare affiliation data, applying canonicalization and aliasing alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) # Count per canonicalized affiliation - organization = dict() - meetings_set = set() - org_totals = defaultdict(int) - data_map = defaultdict(dict) # {org: {meeting: count}} + organization: Dict[str, int] = {} + meetings_set: set[str] = set() + org_totals: Dict[str, int] = defaultdict(int) + data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {org: {meeting: count}} for reg in registrations: meeting = reg['meeting__number'] @@ -161,8 +161,8 @@ def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top key=lambda c: org_totals[c], reverse=True )[:top_n] - non_top_orgs = org_totals.keys() - top_orgs - other_totals = defaultdict(int) + non_top_orgs = set(org_totals.keys()) - set(top_orgs) + other_totals: Dict[str, int] = defaultdict(int) for m in sorted_meetings: other_totals[m] = 0 for c in non_top_orgs: @@ -192,11 +192,11 @@ def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: if (sorted_meetings, datasets) == (None, None): # Get registration status counts, aggregated by country_code if attendance_type: - registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) + base_registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) else: - registrations = Registration.objects.all() + base_registrations = Registration.objects.all() queryset = ( - registrations + base_registrations .values( 'meeting__number', # e.g. "118", "119", "120" 'country_code' # country code of the participant @@ -211,9 +211,9 @@ def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: alias_map = get_aliased_countries(country_code for country_code in queryset.values_list('country_code', flat=True)) # ── Step 1: Collect all meetings and country totals ── - meetings_set = set() - country_totals = defaultdict(int) - data_map = defaultdict(dict) # {country: {meeting: count}} + meetings_set: set[str] = set() + country_totals: Dict[str, int] = defaultdict(int) + data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {country: {meeting: count}} for row in queryset: meeting = row['meeting__number'] @@ -235,8 +235,8 @@ def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: )[:top_n] # -- Step 3.bis do the 'other' category -- - non_top_countries = country_totals.keys() - top_countries - other_totals = defaultdict(int) + non_top_countries = set(country_totals.keys()) - set(top_countries) + other_totals: Dict[str, int] = defaultdict(int) for m in sorted_meetings: other_totals[m] = 0 for c in non_top_countries: @@ -262,9 +262,9 @@ def get_data_for_meetings(top_n: int = 20) -> Tuple[List[str], List[Dict[str, An sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): # Get registration status counts, aggregated by ticket types - registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) + base_registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) queryset = ( - registrations + base_registrations .values( 'meeting__number', # e.g. "118", "119", "120" 'tickets__attendance_type' @@ -274,9 +274,9 @@ def get_data_for_meetings(top_n: int = 20) -> Tuple[List[str], List[Dict[str, An ) # ── Step 1: Collect all meetings and tickets totals ── - meetings_set = set() - tickets_totals = defaultdict(int) - data_map = defaultdict(dict) # {ticket: {meeting: count}} + meetings_set: set[str] = set() + tickets_totals: Dict[str, int] = defaultdict(int) + data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {ticket: {meeting: count}} for row in queryset: meeting = row['meeting__number'] @@ -319,8 +319,8 @@ def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: if stats_type == 'total': total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) - in_person_labels = ([], []) - in_person_data_sets = ([], []) + in_person_labels: List[str] = [] + in_person_data_sets: List[Dict[str, Any]] = [] plural_stats_type = '' elif stats_type == 'affiliation': total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n=top_n) @@ -360,7 +360,7 @@ def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: else: possible_stats_type = stats_type - possible_meeting_numbers = [ + possible_meeting_numbers: List[Tuple[str | int, str]] = [ ('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type})), (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), (int(current_meeting), urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting), 'stats_type': possible_stats_type})), @@ -387,15 +387,15 @@ def get_affiliation_data_for_meeting(meeting_number: str, top_n: int = 20, atten Tuple of (labels, data, total) for chart display. """ # Get registration status details - registrations = Registration.objects.filter(meeting__number=meeting_number) + base_registrations = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: - registrations = registrations.filter(tickets__attendance_type=attendance_type) - registrations = registrations.values('affiliation') + base_registrations = base_registrations.filter(tickets__attendance_type=attendance_type) + registrations = base_registrations.values('affiliation') alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) # Count per canonicalized affiliation - organization = dict() + organization: Dict[str, int] = {} for reg in registrations: if not reg['affiliation'] or not reg['affiliation'].strip(): affiliation = 'Unspecified' @@ -419,10 +419,10 @@ def get_country_data_for_meeting(meeting_number: str, top_n: int = 20, attendanc Tuple of (labels, data, total) for chart display. """ # Get registration status counts, aggregated by country_code - registration_counts = Registration.objects.filter(meeting__number=meeting_number) + base_registration_counts = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: - registration_counts = registration_counts.filter(tickets__attendance_type=attendance_type) - registration_counts = registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') + base_registration_counts = base_registration_counts.filter(tickets__attendance_type=attendance_type) + registration_counts = base_registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) @@ -495,7 +495,7 @@ def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type ] # Prepare the list of meeting number buttons for the template - possible_meeting_numbers = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] + possible_meeting_numbers: List[Tuple[str | int, str]] = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)-1, 'stats_type': stats_type}))) possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': stats_type}))) From cf0a2d2441c3239a836f8c69477dee30d57a3716 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 5 Jun 2026 15:21:43 +0000 Subject: [PATCH 101/181] More co-pilot reviews --- ietf/stats/views_documents.py | 146 ++++++++++++++++++++++------------ 1 file changed, 93 insertions(+), 53 deletions(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index bd39fad186f..5b5ace0c9a9 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -1,6 +1,8 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved # -*- coding: utf-8 -*- +from typing import Tuple, List, Dict, Any + from django.conf import settings from django.db.models import Count, Q from django.http import HttpResponseRedirect @@ -8,48 +10,59 @@ from django.urls import reverse as urlreverse from django.core.cache import cache -from collections import defaultdict - import debug # pyflakes:ignore +from collections import defaultdict + from ietf.doc.models import Document from ietf.stats.utils import color_from_hash -def get_total_data_for_documents(doc_type = 'rfc', group_by = 'level', top_n = 20): +def get_total_data_for_documents( + doc_type: str = 'rfc', + group_by: str = 'level', + top_n: int = 20, +) -> Dict[str, Any]: + """Get aggregated document statistics grouped by the specified field. + + Args: + doc_type: Document type filter ('rfc', 'draft', 'all', 'wg-draft'). + group_by: Field to group by (e.g., 'stream__name', 'group__name'). + top_n: Number of top groups to display. + + Returns: + Chart.js compatible data dictionary with labels and datasets. + """ # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': + filters = Q() + if doc_type != 'all' and doc_type != 'wg-draft': filters &= Q(type_id=doc_type) if doc_type == 'wg-draft': - filters &= Q(type_id= 'draft') + filters &= Q(type_id='draft') filters &= Q(name__startswith='draft-ietf') queryset = ( Document.objects .filter(filters) .values(group_by) - .annotate(document_count=Count('id', distinct=True)) # Count as many document authored by this author + .annotate(document_count=Count('id', distinct=True)) .order_by('-document_count') ) - group_count_set = { - (group, count) - for group, count in queryset.values_list(group_by, 'document_count') - } - - group_count_dict = dict() - for group, count in group_count_set: - if group is None or group == '': + # Convert queryset to dictionary, aggregating by group + group_count_dict: Dict[str, int] = {} + for group, count in queryset.values_list(group_by, 'document_count'): + if not group or group == '': group = 'Unspecified' group_count_dict[group] = group_count_dict.get(group, 0) + count - group_count_dict = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) - top_groups = group_count_dict[:top_n] - other_count = sum(count for _, count in group_count_dict[top_n:]) + sorted_groups = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + top_groups = sorted_groups[:top_n] + other_count = sum(count for _, count in sorted_groups[top_n:]) if other_count > 0: top_groups.append(('Other', other_count)) - labels, data = zip(*top_groups) if top_groups else ([], []) - chart_data = { + labels: Tuple[str, ...] = tuple(label for label, _ in top_groups) + data: Tuple[int, ...] = tuple(count for _, count in top_groups) + chart_data: Dict[str, Any] = { 'labels': labels, 'datasets': [{ 'data': data, @@ -58,13 +71,24 @@ def get_total_data_for_documents(doc_type = 'rfc', group_by = 'level', top_n = 2 'borderWidth': 1, }], } - return chart_data -def documents_total(request, doc_type='rfc', stats_type='level'): +def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'level') -> Any: + """Render document statistics page with pie chart aggregations. + Args: + request: The HTTP request object. + doc_type: Type of documents to display. + stats_type: Field to aggregate by. + + Returns: + Rendered response for the documents_total template. + """ # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) + try: + top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + except (ValueError, TypeError): + top_n = 10 if stats_type == 'stream': chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) @@ -104,9 +128,29 @@ def documents_total(request, doc_type='rfc', stats_type='level'): "chart_data": chart_data, }) -def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', top_n = 10): +def get_timeline_data_for_documents( + doc_type: str = 'rfc', + group_by: str = 'stream__name', + top_n: int = 10, +) -> Tuple[List[int], List[Dict[str, Any]]]: + """Get timeline data for documents grouped by field over years. + + Args: + doc_type: Document type filter ('rfc', 'draft', 'all'). + group_by: Field to group by (e.g., 'stream__name', 'group__name'). + top_n: Number of top groups to display. + + Returns: + Tuple of (sorted_years, datasets) for Chart.js timeline chart. + """ cache_key = f'stats:get_timeline_data_for_documents:{doc_type}-{group_by}' result = cache.get(cache_key, None) + + # Initialize variables with proper types + years_set: list[int] + documents_totals: Dict[str, int] + data_map: Dict[int, Dict[str, int]] + if result is not None: years_set, documents_totals, data_map = result else: @@ -115,35 +159,29 @@ def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', else: queryset = Document.objects.all() - # ── Step 1: Collect all meetings and tickets totals ── - years_set = set() + # ── Step 1: Collect all years and document totals ── + years_set_temp: set[int] = set() documents_totals = defaultdict(int) - data_map = defaultdict(dict) # {year: {stream: count}} + data_map = defaultdict(dict) # {year: {group: count}} for row in queryset: if not row.pub_date(): continue year = row.pub_date().year if group_by == 'stream__name': - if row.stream is None: - group = 'Unspecified' - else: - group = row.stream.name + group = row.stream.name if row.stream else 'Unspecified' elif group_by == 'group__name': - if row.group is None: - group = 'Unspecified' - else: - group = row.group.name + group = row.group.name if row.group else 'Unspecified' else: - group = getattr(row, group_by) - if group is None: + group = getattr(row, group_by, None) + if not group: group = 'Unspecified' - years_set.add(year) + years_set_temp.add(year) documents_totals[group] += 1 data_map[year][group] = data_map[year].get(group, 0) + 1 - # ── Step 2: Sort years numerically rather than alphabetically ── - years_set = sorted(years_set) + # ── Step 2: Sort years numerically ── + years_set = sorted(years_set_temp) cache.set( cache_key, (years_set, documents_totals, data_map), @@ -155,26 +193,26 @@ def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', key=lambda c: documents_totals[c], reverse=True )[:top_n] - non_top_groups = documents_totals.keys() - top_groups - other_totals = defaultdict(int) + non_top_groups = set(documents_totals.keys()) - set(top_groups) + other_totals: Dict[int, int] = defaultdict(int) other_bin_is_empty = True for y in years_set: other_totals[y] = 0 for g in non_top_groups: - other_totals[y] += int(data_map[y].get(g, 0)) - if int(data_map[y].get(g, 0)) > 0: + count = int(data_map[y].get(g, 0)) + other_totals[y] += count + if count > 0: other_bin_is_empty = False - # ── Step 4: Build Chart.js datasets ── - - datasets = [] + # ── Step 3: Build Chart.js datasets ── + datasets: List[Dict[str, Any]] = [] for group in top_groups: color = color_from_hash(group) datasets.append({ 'label': group, 'data': [data_map[year].get(group, 0) for year in years_set], 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill + 'backgroundColor': color + '99', # 60% opacity fill 'fill': False, 'tension': 0.0, 'pointColor': color, @@ -199,19 +237,22 @@ def get_timeline_data_for_documents(doc_type = 'rfc', group_by = 'stream__name', }) return years_set, datasets -def documents_timeline(request, doc_type='rfc', stats_type='level'): +def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'level') -> Any: """Render the documents timeline page with document statistics over time. Args: request: The HTTP request object. - stats_type: Type of statistics. + doc_type: Type of documents to display. + stats_type: Field to aggregate by. Returns: Rendered response for the documents timeline template. """ - # Query parameters (from ?key=value) - top_n = int(request.GET.get('top', '10')) + try: + top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + except (ValueError, TypeError): + top_n = 10 if stats_type == 'stream': total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) @@ -253,4 +294,3 @@ def documents_timeline(request, doc_type='rfc', stats_type='level'): "stats_type": stats_type, "chart_data": chart_data, }) - From d552f7549c4e735eeafbccf4c3640f8d65699246 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 5 Jun 2026 15:39:16 +0000 Subject: [PATCH 102/181] Remove redundant line --- ietf/stats/urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 4525f992072..8f69718a03b 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -1,4 +1,4 @@ -# Copyright The IETF Trust 2016-2020, All Rights Reserved +# Copyright The IETF Trust 2016-2026, All Rights Reserved # -*- coding: utf-8 -*- @@ -15,7 +15,6 @@ url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), url(r"^total/documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_total), url(r"^knowncountries/$", views.known_countries_list), - url(r"^meetings/$", views_meetings.meetings_timeline), url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views_meetings.meetings_timeline), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views_reviews.review_stats), From e3f734dba9246408e00b648d810d8fa3a43b20ce Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 9 Jun 2026 11:33:52 +0000 Subject: [PATCH 103/181] Add types for functions parameters --- ietf/stats/views_authors.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 76285e94f67..50fbb1b389a 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -3,7 +3,7 @@ from django.conf import settings from django.db.models import Count, Q -from django.http import HttpResponseRedirect +from django.http import HttpRequest, HttpResponse, HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse from django.core.cache import cache @@ -14,7 +14,7 @@ from ietf.doc.models import DocumentAuthor from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries -def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 20): +def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 20) -> dict[str, object]: # Build a dynamic query set filter filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': @@ -67,7 +67,7 @@ def get_authors_total_data_for_documents(doc_type = 'all', group_by = 'country', return chart_data -def authors_total(request, doc_type='all', stats_type='affiliation'): +def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: # Query parameters (from ?key=value) try: @@ -107,7 +107,7 @@ def authors_total(request, doc_type='all', stats_type='affiliation'): }) -def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'country', top_n = 10): +def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 10) -> tuple[list[int], list[dict[str, object]]]: cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' result = cache.get(cache_key, None) @@ -213,7 +213,7 @@ def get_authors_timeline_data_for_documents(doc_type = 'all', group_by = 'countr return years_list, datasets -def authors_timeline(request, doc_type='all', stats_type='affiliation'): +def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: """Render the documents timeline page with document statistics over time. Args: From ffd1cd621fa1c3a948b568561543ea651e9a97a9 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 9 Jun 2026 11:36:04 +0000 Subject: [PATCH 104/181] Add docstrings --- ietf/stats/views_authors.py | 40 ++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 50fbb1b389a..45d31a81f31 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -15,6 +15,16 @@ from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 20) -> dict[str, object]: + """Build chart data for author totals. + + Args: + doc_type: Document category to filter on. + group_by: Field used to group authors. + top_n: Maximum number of top groups to include before aggregating into Other. + + Returns: + A Chart.js-compatible data dictionary. + """ # Build a dynamic query set filter filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': @@ -68,6 +78,16 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = return chart_data def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: + """Render total author statistics. + + Args: + request: The incoming HTTP request. + doc_type: Document category to filter on. + stats_type: Grouping type for statistics. + + Returns: + Rendered response for the total statistics page. + """ # Query parameters (from ?key=value) try: @@ -108,6 +128,16 @@ def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 10) -> tuple[list[int], list[dict[str, object]]]: + """Build timeline datasets for author statistics. + + Args: + doc_type: Document category to filter on. + group_by: Field used to group authors. + top_n: Maximum number of top groups to include before aggregating into Other. + + Returns: + A tuple containing the ordered years list and Chart.js datasets. + """ cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' result = cache.get(cache_key, None) @@ -214,15 +244,15 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: - """Render the documents timeline page with document statistics over time. + """Render author timeline statistics. Args: - request: The HTTP request object. - stats_type: Type of statistics. - top_n: Number of top items to show (for country stats). + request: The incoming HTTP request. + doc_type: Document category to filter on. + stats_type: Grouping type for statistics. Returns: - Rendered response for the documents timeline template. + Rendered response for the timeline statistics page. """ # Query parameters (from ?key=value) From 5cbe7250a2041792581d658d968a7028b7bcbbc1 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 12:42:24 +0000 Subject: [PATCH 105/181] Revert .gitignore change from 163db7e04f --- .gitignore | 5 ----- ietf/stats/tests.py | 2 -- ietf/stats/views.py | 26 +++----------------------- ietf/stats/views_authors.py | 18 +++++++++++------- 4 files changed, 14 insertions(+), 37 deletions(-) diff --git a/.gitignore b/.gitignore index 0f6e0ec820c..84bc800e3b8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ datatracker.sublime-workspace /.settings /.tmp /.vite -/.yarn /client/dist /data /dist @@ -38,7 +37,3 @@ __pycache__ !.yarn/releases !.yarn/sdks !.yarn/versions -yarn.lock -.gitignore -yarn.lock -.pnp.cjs diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 5ad5a4ec6f9..ef04fa3158e 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -24,10 +24,8 @@ from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory from ietf.stats.factories import AffiliationIgnoredEndingFactory, AffiliationMainNameFactory -from ietf.doc.factories import NewRevisionDocEventFactory from ietf.group.factories import GroupFactory, RoleFactory from ietf.person.factories import EmailFactory, PersonFactory -from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory from ietf.submit.factories import SubmissionFactory from ietf.utils.timezone import date_today diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 97e5f50a7ae..d34b0a9ca8b 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -2,38 +2,18 @@ # -*- coding: utf-8 -*- -import calendar import csv import datetime -import itertools -import json -import dateutil.relativedelta -from collections import defaultdict -from django.conf import settings -from django.contrib.auth.decorators import login_required -from django.core.cache import cache from django.http import HttpResponse, HttpResponseRedirect -from django.shortcuts import render, get_object_or_404 +from django.shortcuts import render from django.urls import reverse as urlreverse -from django.db.models import Count import debug # pyflakes:ignore -from ietf.review.utils import (extract_review_assignment_data, - aggregate_raw_period_review_assignment_stats, - ReviewAssignmentData, - sum_period_review_assignment_stats, - sum_raw_review_assignment_aggregations) -from ietf.group.models import Role, Group -from ietf.person.models import Person -from ietf.name.models import ReviewResultName, CountryName, ReviewAssignmentStateName -from ietf.meeting.models import Registration, Meeting -from ietf.ietfauth.utils import has_role, role_required -from ietf.utils.response import permission_denied -from ietf.utils.timezone import date_today, DEADLINE_TZINFO -from ietf.meeting.helpers import get_current_ietf_meeting_num from ietf.name.models import CountryName +from ietf.ietfauth.utils import role_required +from ietf.meeting.helpers import get_current_ietf_meeting_num def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 45d31a81f31..49e37ccf97d 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -51,11 +51,13 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = else: alias_map = {} - group_count_dict = dict() + group_count_dict: dict[str, int] = {} for group, count in group_count_set: group = alias_map.get(group, group) - if group == '': + if not group: group = 'Unspecified' + else: + group = str(group) group_count_dict[group] = group_count_dict.get(group, 0) + count group_count_sorted = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) @@ -64,12 +66,14 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = if other_count > 0: top_groups.append(('Other', other_count)) - labels, data = zip(*top_groups) if top_groups else ([], []) - chart_data = { - 'labels': labels, + labels, data = zip(*top_groups) if top_groups else ((), ()) + labels_list = list(labels) + data_list = list(data) + chart_data: dict[str, object] = { + 'labels': labels_list, 'datasets': [{ - 'data': data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], + 'data': data_list, + 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels_list], 'borderColor': 'black', 'borderWidth': 1, }], From 112ac0f0b712b06262954874a0b91fead23f98c3 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 13:10:46 +0000 Subject: [PATCH 106/181] Misc fixes after Jennifer's review (more to come) --- ietf/stats/factories.py | 4 ++++ ietf/stats/migrations/0003_update_aliases.py | 1 + ietf/stats/models.py | 8 +++++++- ietf/stats/views_documents.py | 1 - k8s/settings_local.py | 2 +- 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/ietf/stats/factories.py b/ietf/stats/factories.py index 68c13abcb5d..97ec69d842a 100644 --- a/ietf/stats/factories.py +++ b/ietf/stats/factories.py @@ -11,11 +11,15 @@ class Meta: model = AffiliationIgnoredEnding ending = '' + + class AffiliationMainNameFactory(factory.django.DjangoModelFactory): class Meta: model = AffiliationMainName main_name = factory.Faker('company') + + class MeetingRegistrationFactory(factory.django.DjangoModelFactory): class Meta: model = MeetingRegistration diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 1456ab403ed..c280accb68d 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -1,3 +1,4 @@ +# Copyright The IETF Trust 2026, All Rights Reserved from django.db import migrations, models diff --git a/ietf/stats/models.py b/ietf/stats/models.py index 975851d48ef..317f0b964c0 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -31,9 +31,11 @@ def save(self, *args, **kwargs): update_fields = {"alias"}.union(kwargs.pop("update_fields", set())) super(AffiliationAlias, self).save(update_fields=update_fields, *args, **kwargs) + class Meta: verbose_name_plural = "affiliation aliases" + class AffiliationIgnoredEnding(models.Model): """Records that ending should be stripped from the affiliation for statistical purposes.""" @@ -47,13 +49,16 @@ class AffiliationMainName(models.Model): main_name = models.CharField( max_length=255, unique=True, - help_text="Main leading part of an affiliation, the remaing part can be ignored.") + help_text="Main leading part of an affiliation, the remaining part can be ignored.") class Meta: verbose_name_plural = 'affiliation main names' + def __str__(self): return self.main_name + + class CountryAlias(models.Model): """Records that alias should be treated as country for statistical purposes.""" @@ -67,6 +72,7 @@ def __str__(self): class Meta: verbose_name_plural = "country aliases" + class MeetingRegistration(models.Model): """Registration attendee records from the IETF registration system""" meeting = ForeignKey(Meeting) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 5b5ace0c9a9..12168cacc0a 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -197,7 +197,6 @@ def get_timeline_data_for_documents( other_totals: Dict[int, int] = defaultdict(int) other_bin_is_empty = True for y in years_set: - other_totals[y] = 0 for g in non_top_groups: count = int(data_map[y].get(g, 0)) other_totals[y] += count diff --git a/k8s/settings_local.py b/k8s/settings_local.py index bc64cb47019..5e49bd5cbc4 100644 --- a/k8s/settings_local.py +++ b/k8s/settings_local.py @@ -18,7 +18,7 @@ def _multiline_to_list(s): - """Helper to split at newlines and conver to list""" + """Helper to split at newlines and convert to list""" return [item.strip() for item in s.split("\n")] From 4a589ed616f859a453c9053822818f8048096ba7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 13:42:42 +0000 Subject: [PATCH 107/181] Fix typo in Migration() to match the fix in models.py --- ietf/stats/migrations/0003_update_aliases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index c280accb68d..4ad7d3639b1 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -124,7 +124,7 @@ class Migration(migrations.Migration): name='AffiliationMainName', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('main_name', models.CharField(max_length=255, unique=True, help_text="Main leading part of an affiliation, the remaing part can be ignored.")), + ('main_name', models.CharField(max_length=255, unique=True, help_text="Main leading part of an affiliation, the remaining part can be ignored.")), ], options={ 'verbose_name_plural': 'affiliation main names', From 2ba9375b0e9c1f938e14d7b9a19674d5c192669f Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 14:19:43 +0000 Subject: [PATCH 108/181] Limit the choice of top_n to a pre-defined lists of values --- ietf/stats/tests.py | 7 +++++++ ietf/stats/utils.py | 8 ++++++++ ietf/stats/views_authors.py | 11 ++++++++++- ietf/stats/views_documents.py | 11 ++++++++++- ietf/stats/views_meetings.py | 10 +++++++++- ietf/templates/stats/documents_timeline.html | 8 ++++++-- ietf/templates/stats/documents_total.html | 8 ++++++-- ietf/templates/stats/error.html | 12 ++++++++++++ ietf/templates/stats/meeting_stats.html | 8 ++++++-- ietf/templates/stats/meetings_timeline.html | 9 ++++++--- 10 files changed, 80 insertions(+), 12 deletions(-) create mode 100644 ietf/templates/stats/error.html diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index ef04fa3158e..67d158810eb 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -39,6 +39,13 @@ def test_stats_index(self): self.assertEqual(r.status_code, 200, msg=f"Unexpected status code {r.status_code} for URL {url}") + def test_invalid_top_n(self): + url = urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "country"}) + r = self.client.get(url + "?top=3") + self.assertEqual(r.status_code, 200) + self.assertContains(r, "There was an error in your request") + self.assertContains(r, "Invalid top_n choice: 3") + def test_document_stats(self): timeNow = timezone.now() yearNow = timeNow.year diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index ccc8c8e454d..e610261278b 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -35,6 +35,14 @@ def color_from_hash(s): hash = int.from_bytes(full_hash[:2]) return colors[hash % len(colors)] +top_n_choices = [5, 10, 20, 50, 100] + +def get_top_n_choices(): + return top_n_choices + +def check_top_n_choice(n): + return n in top_n_choices + def compile_affiliation_ending_stripping_regexp(): parts = [] for ending_re in AffiliationIgnoredEnding.objects.values_list("ending", flat=True): diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 49e37ccf97d..dbad874e537 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -12,7 +12,7 @@ import debug # pyflakes:ignore from ietf.doc.models import DocumentAuthor -from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries +from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries, check_top_n_choice, get_top_n_choices def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 20) -> dict[str, object]: """Build chart data for author totals. @@ -25,6 +25,7 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = Returns: A Chart.js-compatible data dictionary. """ + # Build a dynamic query set filter filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': @@ -98,6 +99,9 @@ def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = top_n = max(1, min(int(request.GET.get('top', '10')), 100)) except ValueError: top_n = 10 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == 'affiliation': chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) @@ -120,6 +124,7 @@ def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = return render(request, "stats/documents_total.html", { "top_n": top_n, + "top_n_choices": get_top_n_choices(), "objects": "authors", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, @@ -264,6 +269,9 @@ def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: st top_n = max(1, min(int(request.GET.get('top', '20')), 100)) except ValueError: top_n = 20 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == 'affiliation': total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) @@ -291,6 +299,7 @@ def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: st return render(request, "stats/documents_timeline.html", { "top_n": top_n, + "top_n_choices": get_top_n_choices(), "objects": "authors", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 12168cacc0a..fa85900a024 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -15,7 +15,7 @@ from collections import defaultdict from ietf.doc.models import Document -from ietf.stats.utils import color_from_hash +from ietf.stats.utils import color_from_hash, check_top_n_choice, get_top_n_choices def get_total_data_for_documents( doc_type: str = 'rfc', @@ -89,6 +89,10 @@ def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'leve top_n = max(1, min(int(request.GET.get('top', '10')), 100)) except (ValueError, TypeError): top_n = 10 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + if stats_type == 'stream': chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) @@ -118,6 +122,7 @@ def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'leve return render(request, "stats/documents_total.html", { "top_n": top_n, + "top_n_choices": get_top_n_choices(), "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, @@ -252,6 +257,9 @@ def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'l top_n = max(1, min(int(request.GET.get('top', '10')), 100)) except (ValueError, TypeError): top_n = 10 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == 'stream': total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) @@ -285,6 +293,7 @@ def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'l return render(request, "stats/documents_timeline.html", { "top_n": top_n, + "top_n_choices": get_top_n_choices(), "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 2b30bc03b3b..1e9c98eb69e 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -14,7 +14,7 @@ from django.core.cache import cache from ietf.meeting.models import Registration, Meeting -from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries +from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries, check_top_n_choice, get_top_n_choices from ietf.meeting.helpers import get_current_ietf_meeting_num # Constants @@ -316,6 +316,9 @@ def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: top_n = max(1, min(int(request.GET.get('top', '20')), 100)) except ValueError: top_n = 20 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == 'total': total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) @@ -368,6 +371,7 @@ def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: return render(request, "stats/meetings_timeline.html", { "top_n": top_n, + "top_n_choices": get_top_n_choices(), "possible_stats_types": possible_stats_types, "possible_meeting_numbers": possible_meeting_numbers, "stats_type": stats_type, @@ -457,6 +461,9 @@ def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type top_n = max(1, min(int(request.GET.get('top', '20')), 100)) except ValueError: top_n = 20 + # Check the top-n value against the allowed choices + if not check_top_n_choice(top_n): + return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == 'affiliation': total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) @@ -511,6 +518,7 @@ def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type "possible_meeting_numbers": possible_meeting_numbers, "stats_type": stats_type, "top_n": top_n, + "top_n_choices": get_top_n_choices(), "total_chart_data": total_chart_data, "total_total": total_total, "in_person_chart_data": in_person_chart_data, diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 52d2d288f42..07ed6e3e4a3 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -43,9 +43,13 @@

      - +

      diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index a0663d11739..255ddc7a452 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -44,9 +44,13 @@

      - +

      diff --git a/ietf/templates/stats/error.html b/ietf/templates/stats/error.html new file mode 100644 index 00000000000..47d85ad4c64 --- /dev/null +++ b/ietf/templates/stats/error.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% load origin %} +{% load ietf_filters static %} +{% block content %} + {% origin %} +

      + {% block title %}Invalid input{% endblock %} +

      +

      + There was an error in your request: {{ message }}. +

      +{% endblock %} \ No newline at end of file diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index f68b89ad033..748d960da27 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -37,9 +37,13 @@

      - +

      diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 935b3bacbe3..4be5e779ba3 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -39,11 +39,14 @@

      - +
      -

      {% if stats_type == 'total' %} From eb7aa93bf125adebc0d68eed45966cc8c4f1bf46 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 14:36:02 +0000 Subject: [PATCH 109/181] More readble comments --- ietf/stats/utils.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index e610261278b..9621023398b 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -66,7 +66,7 @@ def get_aliased_affiliations(affiliations): We employ the following strategies, interleaved: - Stripping company endings like Inc., GmbH etc. from database - + - Using a leading name from the database, like "Google Analytics" -> "Google" - Looking up aliases stored directly in the database, like "Examplar International" -> "Examplar" """ @@ -75,8 +75,10 @@ def get_aliased_affiliations(affiliations): ending_re = compile_affiliation_ending_stripping_regexp() known_aliases = { alias.lower(): name for alias, name in AffiliationAlias.objects.values_list("alias", "name") } - # Let's prepare a dict for things like "Google Inc." -> "Google" adding a space to the end of the main name - # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" + # Let's prepare a dict for things like "Google Inc." or "Google Analytics"-> "Google" + # by adding a space to the end of the main name + # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" will match "Google" + # but neither "My Google Analytics" nor "GoogleIsGreat" will match "Google" affiliation_main_names = [(main_name.lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] for affiliation in affiliations: From ecf90794d7ce8a677291febd287347729eb3164c Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 15:16:49 +0000 Subject: [PATCH 110/181] Use elif construct --- ietf/stats/views_authors.py | 5 ++--- ietf/stats/views_documents.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index dbad874e537..46c687804bf 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -30,7 +30,7 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': filters &= Q(document__type_id=doc_type) - if doc_type == 'wg-draft': + elif doc_type == 'wg-draft': filters &= Q(document__type_id= 'draft') filters &= Q(document__name__startswith='draft-ietf') queryset = ( @@ -210,9 +210,8 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str reverse=True )[:top_n] non_top_groups = documents_totals.keys() - set(top_groups) - other_totals = defaultdict(int) + other_totals: dict[int, int] = defaultdict(int) for y in years_list: - other_totals[y] = 0 for g in non_top_groups: other_totals[y] += int(data_map[y].get(g, 0)) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index fa85900a024..1f73761e811 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -36,7 +36,7 @@ def get_total_data_for_documents( filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': filters &= Q(type_id=doc_type) - if doc_type == 'wg-draft': + elif doc_type == 'wg-draft': filters &= Q(type_id='draft') filters &= Q(name__startswith='draft-ietf') queryset = ( From 7f085701314a24b6fecb9348aa04c29f9e3b652e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 16:05:08 +0000 Subject: [PATCH 111/181] New URLs with a total suffix --- ietf/stats/tests.py | 24 +++++++++++++----------- ietf/stats/urls.py | 10 +++++----- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 67d158810eb..2b4216e9b74 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -90,6 +90,8 @@ def test_document_stats(self): country = 'Brunei' elif country == 'Cape Verde': country = 'Cabo Verde' + elif country == "Lao People's Democratic Republic": + country = 'Laos' # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') @@ -286,25 +288,25 @@ def test_meeting_stats(self): self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Affiliation (31 in total)") self.assertContains(r, "In Person Registrations by Affiliation (16 in total)") - self.assertContains(r, "/stats/meeting/124/affiliation") - self.assertContains(r, "/stats/meeting/125/affiliation") + self.assertContains(r, "/stats/meetings/124/affiliation") + self.assertContains(r, "/stats/meetings/125/affiliation") r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "country"})) self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Country (31 in total)") self.assertContains(r, "In Person Registrations by Country (16 in total)") - self.assertContains(r, "/stats/meeting/124/country") - self.assertContains(r, "/stats/meeting/125/country") + self.assertContains(r, "/stats/meetings/124/country") + self.assertContains(r, "/stats/meetings/125/country") # Test the meetings timeline per country r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "country"})) self.assertEqual(r.status_code, 200) - self.assertContains(r, "/stats/meeting/124/country") - self.assertContains(r, "/stats/meeting/125/country") + self.assertContains(r, "/stats/meetings/124/country") + self.assertContains(r, "/stats/meetings/125/country") self.assertContains(r, "This page provides a timeline of meeting registrations by country") # Test the meetings timeline per affiliation r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"})) self.assertEqual(r.status_code, 200) - self.assertContains(r, "/stats/meeting/124/affiliation") - self.assertContains(r, "/stats/meeting/125/affiliation") + self.assertContains(r, "/stats/meetings/124/affiliation") + self.assertContains(r, "/stats/meetings/125/affiliation") self.assertContains(r, "This page provides a timeline of meeting registrations by affiliation") # Extract the JSON embedded in the response pq = PyQuery(r.content) @@ -318,8 +320,8 @@ def test_meeting_stats(self): # Test the global meetings timeline r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "total"})) self.assertEqual(r.status_code, 200) - self.assertContains(r, "/stats/meeting/124/country") - self.assertContains(r, "/stats/meeting/125/country") + self.assertContains(r, "/stats/meetings/124/country") + self.assertContains(r, "/stats/meetings/125/country") self.assertContains(r, "This page provides a timeline of meeting registrations.") def test_meeting_stats_for_bad_meeting(self): @@ -339,7 +341,7 @@ def test_meeting_stats_for_bad_meeting(self): request_factory = RequestFactory() with self.assertRaises(Http404): ietf.stats.views_meetings.meeting_stats( - request_factory.get(f"/stats/meeting/{interim_num}/{stats_type}"), + request_factory.get(f"/stats/meetings/{interim_num}/{stats_type}"), meeting_number=interim_num, stats_type=stats_type, ) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 62f1455c093..99eaf67084a 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -10,13 +10,13 @@ urlpatterns = [ url(r"^$", views.stats_index), + url(r"^annual_report_inputs/(?:(?P\d{4})/)?$", views.annual_report_inputs), + url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/total/$", views_authors.authors_total), url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_timeline), - url(r"^total/authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_total), + url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/total/$", views_documents.documents_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), - url(r"^total/documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_total), url(r"^knowncountries/$", views.known_countries_list), - url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), - url(r"^meeting/(?:(?Paffiliation|country|total)/)?$", views_meetings.meetings_timeline), + url(r"^meetings/(?:(?Paffiliation|country|total)/)?$", views_meetings.meetings_timeline), + url(r"^meetings/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views_reviews.review_stats), - url(r"^annual_report_inputs/(?:(?P\d{4})/)?$", views.annual_report_inputs), ] From 277d7fd6b59b382d6d806c59e246610caba228d0 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 16:24:41 +0000 Subject: [PATCH 112/181] Canonicalize British Virgin Islands --- ietf/stats/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 2b4216e9b74..9ba885a1667 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -92,6 +92,8 @@ def test_document_stats(self): country = 'Cabo Verde' elif country == "Lao People's Democratic Republic": country = 'Laos' + elif country == 'British Virgin Islands': + country = 'Virgin Islands' # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') From 4a5fdf5d63cc8b09e0fc1c68fcc70901fd208395 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 16:25:12 +0000 Subject: [PATCH 113/181] Ensure only 'rfc' and 'draft' doc_type are fetched --- ietf/stats/views_documents.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 1f73761e811..04d9fe6e5c8 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -34,11 +34,13 @@ def get_total_data_for_documents( """ # Build a dynamic query set filter filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(type_id=doc_type) + if doc_type == 'all': + filters &= Q(type_id__in=['draft', 'rfc']) elif doc_type == 'wg-draft': filters &= Q(type_id='draft') filters &= Q(name__startswith='draft-ietf') + else: + filters &= Q(type_id=doc_type) queryset = ( Document.objects .filter(filters) From 7680e9e0c8b1cd55a556f408eeb13d151f18d4f8 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 30 Jun 2026 21:21:08 +0000 Subject: [PATCH 114/181] Ensure that all documents are limited to rfc and draft typename --- ietf/stats/views_documents.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 04d9fe6e5c8..9a9e0992458 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -161,10 +161,10 @@ def get_timeline_data_for_documents( if result is not None: years_set, documents_totals, data_map = result else: - if doc_type != 'all': + if doc_type != 'all': # Filter by specific document type queryset = Document.objects.filter(type_id=doc_type) - else: - queryset = Document.objects.all() + else: # doc_type == 'all', include both drafts and RFCs (and this option is no more used in urls.py though) + queryset = Document.objects.filter(type_id__in=['draft', 'rfc']) # ── Step 1: Collect all years and document totals ── years_set_temp: set[int] = set() From c20c73e442ecc2882702d3e23e89daf1ec8e19fe Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 1 Jul 2026 05:21:35 +0000 Subject: [PATCH 115/181] Fix for issue#11123 --- ietf/stats/tests.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 9ba885a1667..8509b724490 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -1,6 +1,5 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -import calendar import csv import datetime import re @@ -28,8 +27,6 @@ from ietf.person.factories import EmailFactory, PersonFactory from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory from ietf.submit.factories import SubmissionFactory -from ietf.utils.timezone import date_today - class StatisticsTests(TestCase): def test_stats_index(self): # Create a meeting as the index page needs to know the current meeting @@ -391,16 +388,20 @@ def test_review_stats(self): self.assertTrue(q('.review-stats td:contains("1")')) # check stacked chart - expected_date = date_today().replace(day=1) - expected_js_timestamp = calendar.timegm(expected_date.timetuple()) * 1000 + url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) url += "?team={}".format(review_req.team.acronym) r = self.client.get(url) self.assertEqual(r.status_code, 200) - self.assertEqual(json.loads(r.context['data']), [ - {"label": "in time", "color": "#3d22b3", "data": [[expected_js_timestamp, 0]]}, - {"label": "late", "color": "#b42222", "data": [[expected_js_timestamp, 0]]} - ]) + data = json.loads(r.context['data']) + # Extract the timestamp from the actual response to avoid timezone/timing issues + self.assertEqual(len(data), 2) + self.assertEqual(data[0]['label'], 'in time') + self.assertEqual(data[0]['color'], '#3d22b3') + self.assertEqual(data[0]['data'], [[data[0]['data'][0][0], 0]]) + self.assertEqual(data[1]['label'], 'late') + self.assertEqual(data[1]['color'], '#b42222') + self.assertEqual(data[1]['data'], [[data[0]['data'][0][0], 0]]) q = PyQuery(r.content) self.assertTrue(q('#stats-time-graph')) @@ -410,7 +411,11 @@ def test_review_stats(self): url += "&completion=not_completed" r = self.client.get(url) self.assertEqual(r.status_code, 200) - self.assertEqual(json.loads(r.context['data']), [{"color": "#3d22b3", "data": [[expected_js_timestamp, 0]]}]) + non_stacked_data = json.loads(r.context['data']) + # Use the same timestamp from stacked chart + self.assertEqual(len(non_stacked_data), 1) + self.assertEqual(non_stacked_data[0]['color'], '#3d22b3') + self.assertEqual(non_stacked_data[0]['data'], [[non_stacked_data[0]['data'][0][0], 0]]) q = PyQuery(r.content) self.assertTrue(q('#stats-time-graph')) From 5171fa3c0f23d312391f5f8172b4d94a40102092 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 1 Jul 2026 05:22:24 +0000 Subject: [PATCH 116/181] use document__group__type_id=wg rather than name draft-ietf-* --- ietf/stats/views_authors.py | 4 ++-- ietf/stats/views_documents.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 46c687804bf..a8a0f5975c0 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -32,7 +32,7 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = filters &= Q(document__type_id=doc_type) elif doc_type == 'wg-draft': filters &= Q(document__type_id= 'draft') - filters &= Q(document__name__startswith='draft-ietf') + filters &= Q(document__group__type_id="wg") queryset = ( DocumentAuthor.objects .filter(filters) @@ -159,7 +159,7 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str filters &= Q(document__type_id=doc_type) if doc_type == 'wg-draft': filters &= Q(document__type_id= 'draft') - filters &= Q(document__name__startswith='draft-ietf') + filters &= Q(document__group__type_id="wg") queryset = ( DocumentAuthor.objects .select_related('document') diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 9a9e0992458..38d054fd59d 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -38,7 +38,7 @@ def get_total_data_for_documents( filters &= Q(type_id__in=['draft', 'rfc']) elif doc_type == 'wg-draft': filters &= Q(type_id='draft') - filters &= Q(name__startswith='draft-ietf') + filters &= Q(document__group__type_id="wg") else: filters &= Q(type_id=doc_type) queryset = ( From bfd0f502bc27c92fe5b83367deb3765520e3c451 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 1 Jul 2026 06:03:28 +0000 Subject: [PATCH 117/181] Canonicalise Pitcairn Island --- ietf/stats/tests.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 8509b724490..21231e5df8e 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -91,6 +91,8 @@ def test_document_stats(self): country = 'Laos' elif country == 'British Virgin Islands': country = 'Virgin Islands' + elif country == 'Pitcairn Islands': + country = 'Pitcairn' # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending='llc\\.?') @@ -393,15 +395,15 @@ def test_review_stats(self): url += "?team={}".format(review_req.team.acronym) r = self.client.get(url) self.assertEqual(r.status_code, 200) - data = json.loads(r.context['data']) - # Extract the timestamp from the actual response to avoid timezone/timing issues - self.assertEqual(len(data), 2) - self.assertEqual(data[0]['label'], 'in time') - self.assertEqual(data[0]['color'], '#3d22b3') - self.assertEqual(data[0]['data'], [[data[0]['data'][0][0], 0]]) - self.assertEqual(data[1]['label'], 'late') - self.assertEqual(data[1]['color'], '#b42222') - self.assertEqual(data[1]['data'], [[data[0]['data'][0][0], 0]]) + stacked_data = json.loads(r.context['data']) + # Ignore the timestamp elements, just check that the data is correct + self.assertEqual(len(stacked_data), 2) + self.assertEqual(stacked_data[0]['label'], 'in time') + self.assertEqual(stacked_data[0]['color'], '#3d22b3') + self.assertEqual(stacked_data[0]['data'], [[stacked_data[0]['data'][0][0], 0]]) + self.assertEqual(stacked_data[1]['label'], 'late') + self.assertEqual(stacked_data[1]['color'], '#b42222') + self.assertEqual(stacked_data[1]['data'], [[stacked_data[0]['data'][0][0], 0]]) q = PyQuery(r.content) self.assertTrue(q('#stats-time-graph')) @@ -412,7 +414,7 @@ def test_review_stats(self): r = self.client.get(url) self.assertEqual(r.status_code, 200) non_stacked_data = json.loads(r.context['data']) - # Use the same timestamp from stacked chart + # Ignore the timestamp elements, just check that the data is correct self.assertEqual(len(non_stacked_data), 1) self.assertEqual(non_stacked_data[0]['color'], '#3d22b3') self.assertEqual(non_stacked_data[0]['data'], [[non_stacked_data[0]['data'][0][0], 0]]) From 04d7b42dc30ae829ab252dcf2b7b8a17a15509b7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 2 Jul 2026 13:36:30 +0000 Subject: [PATCH 118/181] Fix English grammar --- ietf/templates/stats/documents_total.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 255ddc7a452..fae49fad9b7 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -57,7 +57,7 @@

      This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} {{ objects}}. Only the top-{{ top_n }} categories are listed, the remaining ones are aggregated into 'Other'. {% if objects == 'authors' %} - Note: an author is counted for as many documents they have authored. + Note: authors are counted for as many documents they have authored. {% endif %}

      From 770cce7ede9ef8a10470a4efaa9d37ed6949ed62 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 2 Jul 2026 16:11:53 +0000 Subject: [PATCH 119/181] Minor code clean-up --- ietf/stats/views_authors.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index a8a0f5975c0..7e80e0ab580 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -27,6 +27,8 @@ def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = """ # Build a dynamic query set filter + # RfcAuthor to get country/affiliation for RFC + # DocumentAuthor for other documents (i.e., drafts) filters = Q() if doc_type != 'all' and doc_type != 'wg-draft': filters &= Q(document__type_id=doc_type) @@ -183,15 +185,13 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] else: alias_map = {} + # Let's define a value when there is none... alias_map[''] = 'Unspecified' years_set = {year for year, _ in year_group_list} for year, group in year_group_list: - if group is None or group == '': - group = 'Unspecified' - else: - group = alias_map.get(group, group) + group = alias_map.get(group, group) data_map[year][group] = data_map[year].get(group, 0) + 1 documents_totals[group] += 1 From e6c11e00249b7d780133ae504c8b21dc3e053d55 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 07:37:43 +0000 Subject: [PATCH 120/181] More affiliation alises --- ietf/stats/migrations/0003_update_aliases.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 4ad7d3639b1..10fd48a9fc8 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -2,13 +2,15 @@ from django.db import migrations, models -INITIAL_MAIN_NAMES = ['Akamai', 'Alcatel', 'Alcatel-Lucent', 'Amazon', 'Apple', 'Arista', 'Aruba', 'AT&T', 'Avaya', 'BBN', 'Boeing', - 'Broadcom', 'Cabletron', - 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'DEC', 'Ericsson', 'EMC', 'Fastmail', 'France Telecom', 'Fraunhofer', 'Fujitsu', +INITIAL_MAIN_NAMES = ['Adibe', 'Agilent', 'Akamai', 'Alcatel', 'Alcatel-Lucent', 'Alibaba', 'Amazon', 'Apple', 'Arista', 'Aruba', 'AT&T', 'Avaya', + 'BBN', 'Bell Labs', 'Boeing', 'Broadcom', 'Brocade', 'BT', 'Bunyip', 'Cabletron', + 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'Comcast', 'DEC', 'Dell', 'Ericsson', 'EMC', + 'F5', 'Fastmail', 'France Telecom', 'Fraunhofer', 'Fujitsu', 'Futurewei', 'Google', 'Hewlett-Packard', 'Hitachi', 'HPE', 'Huawei', 'IBM', 'INRIA', 'Intel', 'IEEE', 'ISODE', 'JHU', 'Juniper', 'KDDI', 'Lucent', 'MCI', 'Meta', 'Microsoft', 'MIT', 'Motorola', 'Mozilla', - 'NASA', 'NEC', 'Netscape','Nokia', 'Nortel', 'NTT', 'NVIDIA', 'Oracle', 'Pantheon', 'Redback', - 'Qualcomm', 'Samsung', 'Siemens', 'Softbank', 'Telefonica', 'T-Mobile', 'Telia', 'Tencent', + 'NASA', 'NEC', 'Netscape','Nokia', 'Nortel', 'NTT', 'NVIDIA', 'Oracle', 'Orange', 'Pantheon', 'Redback', + 'Qualcomm', 'Samsung', 'Siemens', 'SNMP Research', 'Softbank', 'Sun Microsystems', 'SURFnet', + 'Telefonica', 'T-Mobile', 'Telecom Italia', 'Telia', 'Tencent', 'UUNET', 'VeriSign', 'Verizon', 'Videotron','Vodafone', 'Wellfleet', 'Xerox', 'ZTE'] OBSOLETED_AFFILIATION_ALIASES = [ @@ -22,10 +24,11 @@ {'alias': 'Asia Pacific Network Information Centre', 'name': 'APNIC'}, {'alias': 'ATT', 'name': 'AT&T'}, {'alias': 'AWS', 'name': 'Amazon'}, + {'alias': 'British Telecom', 'name': 'BT'}, {'alias': 'BUPT', 'name': 'Beijing University of Posts and Telecommunications'}, {'alias': 'CERT', 'name': 'US-CERT'}, {'alias': 'CMU', 'name': 'Carnegie Mellon University'}, - {'alias': 'Columbia University', 'name': 'Columbia University'}, + {'alias': 'Columbia U.', 'name': 'Columbia University'}, {'alias': 'Consultant', 'name': 'Independent'}, {'alias': 'Digital Equipment Corporation', 'name': 'DEC'}, {'alias': 'HP', 'name': 'Hewlett-Packard'}, @@ -39,6 +42,8 @@ {'alias': 'Person', 'name': 'Independent'}, {'alias': 'The Boeing Company', 'name': 'Boeing'}, {'alias': 'Unaffiliated', 'name': 'Independent'}, + {'alias': 'US NIST', 'name': 'US-NIST'}, + {'alias': 'USA NIST', 'name': 'US-NIST'}, ] ADDITIONAL_IGNORE_ENDINGS = [ From e0f532650aa64071e586d0f1e4f774423bf702b5 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 07:38:01 +0000 Subject: [PATCH 121/181] Explain how authors are counted --- ietf/templates/stats/documents_total.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index fae49fad9b7..a974f1a1b7f 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -57,7 +57,7 @@

      This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} {{ objects}}. Only the top-{{ top_n }} categories are listed, the remaining ones are aggregated into 'Other'. {% if objects == 'authors' %} - Note: authors are counted for as many documents they have authored. + Note: authors are counted only once no matter how many documents they have authored. {% endif %}

      From dc192af805f1717e1c461ab7d83b56aa33b15038 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 08:31:02 +0000 Subject: [PATCH 122/181] Use RfcAuthor for RFC rather than DocumentAuthor --- ietf/stats/views_authors.py | 122 +++++++++++++++++++++++++----------- 1 file changed, 86 insertions(+), 36 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 7e80e0ab580..9adbb510e70 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -11,41 +11,60 @@ import debug # pyflakes:ignore -from ietf.doc.models import DocumentAuthor +from ietf.doc.models import DocumentAuthor, RfcAuthor from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries, check_top_n_choice, get_top_n_choices def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 20) -> dict[str, object]: """Build chart data for author totals. Args: - doc_type: Document category to filter on. - group_by: Field used to group authors. + doc_type: Document category to filter on: all, draft, wg-draft, rfc, + group_by: Field used to group authors, e.g., 'country' or 'affiliation'. top_n: Maximum number of top groups to include before aggregating into Other. Returns: A Chart.js-compatible data dictionary. """ - # Build a dynamic query set filter - # RfcAuthor to get country/affiliation for RFC + # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. + # RfcAuthor for RFC # DocumentAuthor for other documents (i.e., drafts) - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(document__type_id=doc_type) - elif doc_type == 'wg-draft': - filters &= Q(document__type_id= 'draft') - filters &= Q(document__group__type_id="wg") - queryset = ( - DocumentAuthor.objects - .filter(filters) - .values(group_by) - .annotate(author_count=Count('person', distinct=True)) # Count as many document authored by this author - ) - - group_count_set = { - (group, count) - for group, count in queryset.values_list(group_by, 'author_count') - } + + # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database + if doc_type in ('draft', 'wg-draft'): + filters = Q(document__type_id='draft') + if doc_type == 'wg-draft': + filters &= Q(document__group__type_id='wg') + queryset = ( + DocumentAuthor.objects + .filter(filters) + .values(group_by) + .annotate(author_count=Count('person', distinct=True)) + ) + elif doc_type == 'rfc': + queryset = ( + RfcAuthor.objects + .values(group_by) + .annotate(author_count=Count('person', distinct=True)) + ) + else: + draft_queryset = ( + DocumentAuthor.objects + .filter(document__type_id='draft') + .values(group_by) + .annotate(author_count=Count('person', distinct=True)) + ) + rfc_queryset = ( + RfcAuthor.objects + .values(group_by) + .annotate(author_count=Count('person', distinct=True)) + ) + queryset = draft_queryset.union(rfc_queryset, all=True) + + group_count_set = [ + (row.get(group_by), row.get('author_count', 0)) + for row in queryset + ] if group_by == 'affiliation': alias_map = get_aliased_affiliations(group for group, _ in group_count_set) @@ -142,8 +161,8 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str """Build timeline datasets for author statistics. Args: - doc_type: Document category to filter on. - group_by: Field used to group authors. + doc_type: Document category to filter on: all, draft, wg-draft, rfc, + group_by: Field used to group authors, e.g., 'country' or 'affiliation'. top_n: Maximum number of top groups to include before aggregating into Other. Returns: @@ -155,18 +174,49 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str if result is not None: years_list, documents_totals, data_map = result else: - # Build a dynamic query set filter - filters = Q() - if doc_type != 'all' and doc_type != 'wg-draft': - filters &= Q(document__type_id=doc_type) - if doc_type == 'wg-draft': - filters &= Q(document__type_id= 'draft') - filters &= Q(document__group__type_id="wg") - queryset = ( - DocumentAuthor.objects - .select_related('document') - .filter(filters) - ) + # # Build a dynamic query set filter + # filters = Q() + # if doc_type != 'all' and doc_type != 'wg-draft': + # filters &= Q(document__type_id=doc_type) + # if doc_type == 'wg-draft': + # filters &= Q(document__type_id= 'draft') + # filters &= Q(document__group__type_id="wg") + # queryset = ( + # DocumentAuthor.objects + # .select_related('document') + # .filter(filters) + # ) + # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. + # RfcAuthor for RFC + # DocumentAuthor for other documents (i.e., drafts) + + # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database + if doc_type in ('draft', 'wg-draft'): + filters = Q(document__type_id='draft') + if doc_type == 'wg-draft': + filters &= Q(document__group__type_id='wg') + queryset = ( + DocumentAuthor.objects + .filter(filters) + .select_related('document') + ) + elif doc_type == 'rfc': + queryset = ( + RfcAuthor.objects + .select_related('document') + ) + else: + draft_queryset = ( + DocumentAuthor.objects + .filter(document__type_id='draft') + .select_related('document') + ) + rfc_queryset = ( + RfcAuthor.objects + .select_related('document') + ) + queryset = draft_queryset.union(rfc_queryset, all=True) + # ── Step 1: Collect all meetings and tickets totals ── years_set = set() From 68e20a6835fa7802a00a7e4f64ea569e5df81489 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 09:43:41 +0000 Subject: [PATCH 123/181] Make ruff happy --- ietf/stats/views_reviews.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views_reviews.py b/ietf/stats/views_reviews.py index a77532567ec..d9bc06c0edc 100644 --- a/ietf/stats/views_reviews.py +++ b/ietf/stats/views_reviews.py @@ -192,7 +192,7 @@ def parse_date(s): secr_access.add(r.group_id) reviewer_only_access.discard(r.group_id) elif r.name_id == "reviewer": - if not r.group_id in secr_access: + if r.group_id not in secr_access: reviewer_only_access.add(r.group_id) if not secr_access and not reviewer_only_access: From c98f3399458230605a57e14822d62c760e8e3f13 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 09:44:02 +0000 Subject: [PATCH 124/181] More changes in order to use RfcAuthor --- ietf/stats/tests.py | 14 +++++++------- ietf/stats/views_authors.py | 35 ++++++++++++++++------------------- 2 files changed, 23 insertions(+), 26 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 9b070cf4bed..cd65fe53545 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -20,7 +20,7 @@ from ietf.utils.test_utils import login_testing_unauthorized, TestCase import ietf.stats.views -from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory +from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, RfcAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory from ietf.stats.factories import AffiliationIgnoredEndingFactory, AffiliationMainNameFactory from ietf.group.factories import GroupFactory, RoleFactory @@ -103,15 +103,15 @@ def test_document_stats(self): AffiliationIgnoredEndingFactory(ending='corp\\.?') AffiliationMainNameFactory(main_name='Cisco') - DocumentAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) - DocumentAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ', LLC', country=country) - DocumentAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker('company'), country=factory.Faker('country')) + RfcAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) + RfcAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ', LLC', country=country) + RfcAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker('company'), country=factory.Faker('country')) DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + ' AG', country=country) - DocumentAuthorFactory(document=rfcInfGroup2, affiliation='CiScO InC.', country=country) + RfcAuthorFactory(document=rfcInfGroup2, affiliation='CiScO InC.', country=country) DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation='CISCO corp.', country='belgique') DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation=affiliation, country=country) - DocumentAuthorFactory(document=rfcBcpIAB1, affiliation='CiScO PTY LTD', country='UnItEd StAtEs') - DocumentAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country='usa') + RfcAuthorFactory(document=rfcBcpIAB1, affiliation='CiScO PTY LTD', country='UnItEd StAtEs') + RfcAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country='usa') DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ',inc', country='U.S.A.') # Test#1 the documents specific statistics: for RFC about the level diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 9adbb510e70..9e3d2c7fa4a 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -174,34 +174,24 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str if result is not None: years_list, documents_totals, data_map = result else: - # # Build a dynamic query set filter - # filters = Q() - # if doc_type != 'all' and doc_type != 'wg-draft': - # filters &= Q(document__type_id=doc_type) - # if doc_type == 'wg-draft': - # filters &= Q(document__type_id= 'draft') - # filters &= Q(document__group__type_id="wg") - # queryset = ( - # DocumentAuthor.objects - # .select_related('document') - # .filter(filters) - # ) # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. # RfcAuthor for RFC # DocumentAuthor for other documents (i.e., drafts) # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database + draft_queryset = None + rfc_queryset = None if doc_type in ('draft', 'wg-draft'): filters = Q(document__type_id='draft') if doc_type == 'wg-draft': filters &= Q(document__group__type_id='wg') - queryset = ( + draft_queryset = ( DocumentAuthor.objects .filter(filters) .select_related('document') ) elif doc_type == 'rfc': - queryset = ( + rfc_queryset = ( RfcAuthor.objects .select_related('document') ) @@ -215,18 +205,25 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str RfcAuthor.objects .select_related('document') ) - queryset = draft_queryset.union(rfc_queryset, all=True) - - # ── Step 1: Collect all meetings and tickets totals ── + # ── Step 1: Collect all authors publication dates ── years_set = set() documents_totals = defaultdict(int) data_map = defaultdict(dict) - year_group_list = [ + year_group_list = [] + if draft_queryset is not None: + year_group_list += [ + (row.document.pub_date().year, getattr(row, group_by)) + for row in draft_queryset + if row.document.pub_date() is not None + ] + if rfc_queryset is not None: + year_group_list += [ (row.document.pub_date().year, getattr(row, group_by)) - for row in queryset + for row in rfc_queryset if row.document.pub_date() is not None ] + if group_by == 'affiliation': alias_map = get_aliased_affiliations(group for _, group in year_group_list) year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] From 5944234d00c1ccad25ea8fb37cc6c5360eea3e6b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 3 Jul 2026 10:03:34 +0000 Subject: [PATCH 125/181] Make ruff happier --- ietf/stats/views_authors.py | 235 +++++++++++++++++++----------------- 1 file changed, 123 insertions(+), 112 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 9e3d2c7fa4a..582212e0e01 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -1,5 +1,4 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -# -*- coding: utf-8 -*- from django.conf import settings from django.db.models import Count, Q @@ -12,98 +11,109 @@ import debug # pyflakes:ignore from ietf.doc.models import DocumentAuthor, RfcAuthor -from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries, check_top_n_choice, get_top_n_choices - -def get_authors_total_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 20) -> dict[str, object]: +from ietf.stats.utils import ( + check_top_n_choice, + color_from_hash, + get_aliased_affiliations, + get_aliased_countries, + get_top_n_choices, +) + +def get_authors_total_data_for_documents(doc_type: str = "all", + group_by: str = "country", + top_n: int = 20) -> dict[str, object]: """Build chart data for author totals. Args: doc_type: Document category to filter on: all, draft, wg-draft, rfc, - group_by: Field used to group authors, e.g., 'country' or 'affiliation'. + group_by: Field used to group authors, e.g., "country" or "affiliation". top_n: Maximum number of top groups to include before aggregating into Other. Returns: A Chart.js-compatible data dictionary. - """ - # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. + """ + # Build a dynamic query set filter to get country/affiliation + # using the appropriate model based on doc_type. # RfcAuthor for RFC # DocumentAuthor for other documents (i.e., drafts) - # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database - if doc_type in ('draft', 'wg-draft'): - filters = Q(document__type_id='draft') - if doc_type == 'wg-draft': - filters &= Q(document__group__type_id='wg') + # Using distinct=True in Count to avoid double counting authors + # who may have multiple entries in the database + if doc_type in ("draft", "wg-draft"): + filters = Q(document__type_id="draft") + if doc_type == "wg-draft": + filters &= Q(document__group__type_id="wg") queryset = ( DocumentAuthor.objects .filter(filters) .values(group_by) - .annotate(author_count=Count('person', distinct=True)) + .annotate(author_count=Count("person", distinct=True)) ) - elif doc_type == 'rfc': + elif doc_type == "rfc": queryset = ( RfcAuthor.objects .values(group_by) - .annotate(author_count=Count('person', distinct=True)) + .annotate(author_count=Count("person", distinct=True)) ) else: draft_queryset = ( DocumentAuthor.objects - .filter(document__type_id='draft') + .filter(document__type_id="draft") .values(group_by) - .annotate(author_count=Count('person', distinct=True)) + .annotate(author_count=Count("person", distinct=True)) ) rfc_queryset = ( RfcAuthor.objects .values(group_by) - .annotate(author_count=Count('person', distinct=True)) + .annotate(author_count=Count("person", distinct=True)) ) queryset = draft_queryset.union(rfc_queryset, all=True) group_count_set = [ - (row.get(group_by), row.get('author_count', 0)) + (row.get(group_by), row.get("author_count", 0)) for row in queryset ] - if group_by == 'affiliation': + if group_by == "affiliation": alias_map = get_aliased_affiliations(group for group, _ in group_count_set) - elif group_by == 'country': + elif group_by == "country": alias_map = get_aliased_countries(group for group, _ in group_count_set) else: alias_map = {} group_count_dict: dict[str, int] = {} for group, count in group_count_set: - group = alias_map.get(group, group) - if not group: - group = 'Unspecified' - else: - group = str(group) - group_count_dict[group] = group_count_dict.get(group, 0) + count + aliased_group = alias_map.get(group, group) + aliased_group = "Unspecified" if not aliased_group else str(aliased_group) + group_count_dict[aliased_group] = group_count_dict.get(aliased_group, 0) + count - group_count_sorted = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) + group_count_sorted = sorted(group_count_dict.items(), + key=lambda x: x[1], reverse=True) top_groups = group_count_sorted[:top_n] other_count = sum(count for _, count in group_count_sorted[top_n:]) if other_count > 0: - top_groups.append(('Other', other_count)) + top_groups.append(("Other", other_count)) labels, data = zip(*top_groups) if top_groups else ((), ()) labels_list = list(labels) data_list = list(data) chart_data: dict[str, object] = { - 'labels': labels_list, - 'datasets': [{ - 'data': data_list, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels_list], - 'borderColor': 'black', - 'borderWidth': 1, + "labels": labels_list, + "datasets": [{ + "data": data_list, + "backgroundColor": [color_from_hash(label) + if label else "#202020" + for label in labels_list], + "borderColor": "black", + "borderWidth": 1, }], } return chart_data -def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: +def authors_total(request: HttpRequest, doc_type: str = "all", + stats_type: str = "affiliation") -> HttpResponse: """Render total author statistics. Args: @@ -113,34 +123,35 @@ def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = Returns: Rendered response for the total statistics page. - """ + """ # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + top_n = max(1, min(int(request.GET.get("top", "10")), 100)) except ValueError: top_n = 10 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + return render(request, "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - if stats_type == 'affiliation': - chart_data = get_authors_total_data_for_documents(doc_type, 'affiliation', top_n) - elif stats_type == 'country': - chart_data = get_authors_total_data_for_documents(doc_type, 'country', top_n) + if stats_type == "affiliation": + chart_data = get_authors_total_data_for_documents(doc_type, "affiliation", top_n) + elif stats_type == "country": + chart_data = get_authors_total_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) # Prepare the list of choice buttons for the template possible_docs_types = [ - ("all", "All documents", urlreverse(authors_total, kwargs={'doc_type': 'all', 'stats_type': stats_type})), - ("draft", "Drafts", urlreverse(authors_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(authors_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ("all", "All documents", urlreverse(authors_total, kwargs={"doc_type": "all", "stats_type": stats_type})), + ("draft", "Drafts", urlreverse(authors_total, kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), + ("rfc", "RFCs", urlreverse(authors_total, kwargs={"doc_type": "rfc", "stats_type": stats_type})), ] possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), - ("country", "Country", urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), + ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "affiliation"})), + ("country", "Country", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "country"})), ] return render(request, "stats/documents_total.html", { @@ -149,27 +160,27 @@ def authors_total(request: HttpRequest, doc_type: str = 'all', stats_type: str = "objects": "authors", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "timeline_url": urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": stats_type}), + "total_url": urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, }) -def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str = 'country', top_n: int = 10) -> tuple[list[int], list[dict[str, object]]]: +def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str = "country", top_n: int = 10) -> tuple[list[int], list[dict[str, object]]]: """Build timeline datasets for author statistics. Args: doc_type: Document category to filter on: all, draft, wg-draft, rfc, - group_by: Field used to group authors, e.g., 'country' or 'affiliation'. + group_by: Field used to group authors, e.g., "country" or "affiliation". top_n: Maximum number of top groups to include before aggregating into Other. Returns: A tuple containing the ordered years list and Chart.js datasets. - """ - cache_key = f'stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}' + """ + cache_key = f"stats:get_authors_timeline_data_for_documents:{doc_type}-{group_by}" result = cache.get(cache_key, None) if result is not None: years_list, documents_totals, data_map = result @@ -181,29 +192,29 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database draft_queryset = None rfc_queryset = None - if doc_type in ('draft', 'wg-draft'): - filters = Q(document__type_id='draft') - if doc_type == 'wg-draft': - filters &= Q(document__group__type_id='wg') + if doc_type in ("draft", "wg-draft"): + filters = Q(document__type_id="draft") + if doc_type == "wg-draft": + filters &= Q(document__group__type_id="wg") draft_queryset = ( DocumentAuthor.objects .filter(filters) - .select_related('document') + .select_related("document") ) - elif doc_type == 'rfc': + elif doc_type == "rfc": rfc_queryset = ( RfcAuthor.objects - .select_related('document') + .select_related("document") ) else: draft_queryset = ( DocumentAuthor.objects - .filter(document__type_id='draft') - .select_related('document') + .filter(document__type_id="draft") + .select_related("document") ) rfc_queryset = ( RfcAuthor.objects - .select_related('document') + .select_related("document") ) # ── Step 1: Collect all authors publication dates ── @@ -223,24 +234,24 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str for row in rfc_queryset if row.document.pub_date() is not None ] - - if group_by == 'affiliation': + + if group_by == "affiliation": alias_map = get_aliased_affiliations(group for _, group in year_group_list) year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] - elif group_by == 'country': + elif group_by == "country": alias_map = get_aliased_countries(group for _, group in year_group_list) year_group_list = [(year, alias_map.get(group, group)) for year, group in year_group_list] else: alias_map = {} - # Let's define a value when there is none... - alias_map[''] = 'Unspecified' + # Let us define a value when there is none... + alias_map[""] = "Unspecified" years_set = {year for year, _ in year_group_list} for year, group in year_group_list: - group = alias_map.get(group, group) - data_map[year][group] = data_map[year].get(group, 0) + 1 - documents_totals[group] += 1 + aliased_group = alias_map.get(group, group) + data_map[year][aliased_group] = data_map[year].get(aliased_group, 0) + 1 + documents_totals[aliased_group] += 1 # ── Step 2: Sort years numerically rather than alphabetically ── years_list = sorted(years_set) @@ -254,7 +265,7 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str top_groups = sorted( documents_totals.keys(), key=lambda c: documents_totals[c], - reverse=True + reverse=True, )[:top_n] non_top_groups = documents_totals.keys() - set(top_groups) other_totals: dict[int, int] = defaultdict(int) @@ -268,37 +279,37 @@ def get_authors_timeline_data_for_documents(doc_type: str = 'all', group_by: str for group in top_groups: color = color_from_hash(group) datasets.append({ - 'label': group, - 'data': [data_map[year].get(group, 0) for year in years_list], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': False, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": group, + "data": [data_map[year].get(group, 0) for year in years_list], + "borderColor": color, + "backgroundColor": color + "99", # 60% opacity fill + "fill": False, + "tension": 0.0, + "pointColor": color, + "pointBackgroundColor": color, + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, }) # -- Step 4.bis handle the other -- datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_list], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.0, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": "Other", + "data": [other_totals.get(year, 0) for year in years_list], + "borderColor": "black", + "fill": False, + "tension": 0.0, + "pointColor": "black", + "pointBackgroundColor": "black", + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, }) return years_list, datasets -def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: str = 'affiliation') -> HttpResponse: +def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: str = "affiliation") -> HttpResponse: """Render author timeline statistics. Args: @@ -308,39 +319,39 @@ def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: st Returns: Rendered response for the timeline statistics page. - """ + """ # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + top_n = max(1, min(int(request.GET.get("top", "20")), 100)) except ValueError: top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - if stats_type == 'affiliation': - total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'affiliation', top_n) - elif stats_type == 'country': - total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, 'country', top_n) + if stats_type == "affiliation": + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "affiliation", top_n) + elif stats_type == "country": + total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, + "labels": total_labels, + "datasets": total_data_sets, } # Prepare the list of choice buttons for the template possible_docs_types = [ - ("all", "All documents", urlreverse(authors_timeline, kwargs={'doc_type': 'all', 'stats_type': stats_type})), - ("draft", "Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={'doc_type': 'wg-draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ("all", "All documents", urlreverse(authors_timeline, kwargs={"doc_type": "all", "stats_type": stats_type})), + ("draft", "Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), + ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={"doc_type": "rfc", "stats_type": stats_type})), ] possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'affiliation'})), - ("country", "Country", urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'country'})), + ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "affiliation"})), + ("country", "Country", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "country"})), ] return render(request, "stats/documents_timeline.html", { @@ -349,8 +360,8 @@ def authors_timeline(request: HttpRequest, doc_type: str = 'all', stats_type: st "objects": "authors", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(authors_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(authors_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "timeline_url": urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": stats_type}), + "total_url": urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, From 7e304dcffc33afa943ea57b87c1714ff4345d95a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 4 Jul 2026 04:55:03 +0000 Subject: [PATCH 126/181] Make ruff happier for more files --- ietf/stats/tests.py | 225 ++++++++++--------- ietf/stats/views.py | 14 +- ietf/stats/views_documents.py | 254 +++++++++++---------- ietf/stats/views_meetings.py | 401 +++++++++++++++++++--------------- 4 files changed, 489 insertions(+), 405 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index cd65fe53545..421cf20c754 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -2,40 +2,51 @@ import csv import datetime -import re import io import json +import re import factory from django.http import Http404 -from pyquery import PyQuery - -import debug # pyflakes:ignore - from django.test import RequestFactory from django.urls import reverse as urlreverse from django.utils import timezone +from pyquery import PyQuery -from ietf.meeting.models import Meeting -from ietf.utils.test_utils import login_testing_unauthorized, TestCase import ietf.stats.views - -from ietf.doc.factories import WgDraftFactory, WgRfcFactory, DocumentAuthorFactory, RfcAuthorFactory, DocumentFactory, DocEventFactory, NewRevisionDocEventFactory -from ietf.review.factories import ReviewRequestFactory, ReviewerSettingsFactory, ReviewAssignmentFactory -from ietf.stats.factories import AffiliationIgnoredEndingFactory, AffiliationMainNameFactory +from ietf.doc.factories import ( + DocEventFactory, + DocumentAuthorFactory, + DocumentFactory, + NewRevisionDocEventFactory, + RfcAuthorFactory, + WgDraftFactory, + WgRfcFactory, +) from ietf.group.factories import GroupFactory, RoleFactory -from ietf.person.factories import EmailFactory, PersonFactory +from ietf.meeting.models import Meeting from ietf.meeting.tests_models import MeetingFactory, RegistrationFactory +from ietf.person.factories import EmailFactory, PersonFactory +from ietf.review.factories import ( + ReviewAssignmentFactory, + ReviewerSettingsFactory, + ReviewRequestFactory, +) +from ietf.stats.factories import ( + AffiliationIgnoredEndingFactory, + AffiliationMainNameFactory, +) from ietf.submit.factories import SubmissionFactory +from ietf.utils.test_utils import TestCase, login_testing_unauthorized class StatisticsTests(TestCase): def test_stats_index(self): # Create a meeting as the index page needs to know the current meeting - MeetingFactory(type_id='ietf', number='124', date=timezone.now()) + MeetingFactory(type_id="ietf", number="124", date=timezone.now()) url = urlreverse(ietf.stats.views.stats_index) r = self.client.get(url) - self.assertEqual(r.status_code, 200, + self.assertEqual(r.status_code, 200, msg=f"Unexpected status code {r.status_code} for URL {url}") def test_invalid_top_n(self): @@ -56,63 +67,63 @@ def test_document_stats(self): group2 = GroupFactory(type_id="wg") # Let's create some RFC and drafts with publication dates - rfcPsGroup1 = WgRfcFactory(std_level_id='ps', group=group1) - DocEventFactory(type='published_rfc', doc=rfcPsGroup1, time=time1960) - rfcExpGroup1 = WgRfcFactory(std_level_id='exp', group=group1) - DocEventFactory(type='published_rfc', doc=rfcExpGroup1, time=time1960) - rfcInfGroup2 = WgRfcFactory(std_level_id='inf', group=group2) - DocEventFactory(type='published_rfc', doc=rfcInfGroup2, time=timeNow) - rfcBcpIAB1 = WgRfcFactory(std_level_id='bcp', stream_id='iab') - DocEventFactory(type='published_rfc', doc=rfcBcpIAB1, time=time1960) - rfcBcpIAB2 = WgRfcFactory(std_level_id='bcp', stream_id='iab') - DocEventFactory(type='published_rfc', doc=rfcBcpIAB2, time=time1960) - wgDraftPsGroup1 = WgDraftFactory(name='draft-ietf-' + group1.acronym + '-random-thing', intended_std_level_id='ps', group=group1) + rfcPsGroup1 = WgRfcFactory(std_level_id="ps", group=group1) + DocEventFactory(type="published_rfc", doc=rfcPsGroup1, time=time1960) + rfcExpGroup1 = WgRfcFactory(std_level_id="exp", group=group1) + DocEventFactory(type="published_rfc", doc=rfcExpGroup1, time=time1960) + rfcInfGroup2 = WgRfcFactory(std_level_id="inf", group=group2) + DocEventFactory(type="published_rfc", doc=rfcInfGroup2, time=timeNow) + rfcBcpIAB1 = WgRfcFactory(std_level_id="bcp", stream_id="iab") + DocEventFactory(type="published_rfc", doc=rfcBcpIAB1, time=time1960) + rfcBcpIAB2 = WgRfcFactory(std_level_id="bcp", stream_id="iab") + DocEventFactory(type="published_rfc", doc=rfcBcpIAB2, time=time1960) + wgDraftPsGroup1 = WgDraftFactory(name="draft-ietf-" + group1.acronym + "-random-thing", intended_std_level_id="ps", group=group1) NewRevisionDocEventFactory(doc=wgDraftPsGroup1, time=time1960) - wgDraftPsGroup2 = WgDraftFactory(name='draft-ietf-' + group2.acronym + '-random-thing', intended_std_level_id='inf', group=group2) + wgDraftPsGroup2 = WgDraftFactory(name="draft-ietf-" + group2.acronym + "-random-thing", intended_std_level_id="inf", group=group2) NewRevisionDocEventFactory(doc=wgDraftPsGroup2, time=timeNow) - draftExp = DocumentFactory(type_id='draft', intended_std_level_id='exp') + draftExp = DocumentFactory(type_id="draft", intended_std_level_id="exp") NewRevisionDocEventFactory(doc=draftExp, time=timeNow) # Let's create some authors, first get some test strings for affiliations and countries - affiliation = factory.Faker('company').evaluate(None, None, {'locale': None}) + affiliation = factory.Faker("company").evaluate(None, None, {"locale": None}) # Sometimes the factory adds "LLC" or some other suffix, causing problem in the tests # below as another ", LLC" is added. Let's only take the first word of the affiliation # up to a space or "," - if re.sub(r',?\s*\S+\s*$', '', affiliation) != '': - affiliation = re.sub(r',?\s*\S+\s*$', '', affiliation) - country = factory.Faker('country').evaluate(None, None, {'locale': None}) + if re.sub(r",?\s*\S+\s*$", "", affiliation) != "": + affiliation = re.sub(r",?\s*\S+\s*$", "", affiliation) + country = factory.Faker("country").evaluate(None, None, {"locale": None}) # Factory sometimes generates country names that are not exactly canonical # causing problems in the tests below. - if country == 'Korea': - country = 'South Korea' - elif country == 'Brunei Darussalam': - country = 'Brunei' - elif country == 'Cape Verde': - country = 'Cabo Verde' + if country == "Korea": + country = "South Korea" + elif country == "Brunei Darussalam": + country = "Brunei" + elif country == "Cape Verde": + country = "Cabo Verde" elif country == "Lao People's Democratic Republic": - country = 'Laos' - elif country == 'British Virgin Islands': - country = 'Virgin Islands' - elif country == 'Pitcairn Islands': - country = 'Pitcairn' - + country = "Laos" + elif country == "British Virgin Islands": + country = "Virgin Islands" + elif country == "Pitcairn Islands": + country = "Pitcairn" + # Create the various aliases ancilliary content - AffiliationIgnoredEndingFactory(ending='llc\\.?') - AffiliationIgnoredEndingFactory(ending='ag\\.?') - AffiliationIgnoredEndingFactory(ending='inc\\.?') - AffiliationIgnoredEndingFactory(ending='corp\\.?') - AffiliationMainNameFactory(main_name='Cisco') + AffiliationIgnoredEndingFactory(ending="llc\\.?") + AffiliationIgnoredEndingFactory(ending="ag\\.?") + AffiliationIgnoredEndingFactory(ending="inc\\.?") + AffiliationIgnoredEndingFactory(ending="corp\\.?") + AffiliationMainNameFactory(main_name="Cisco") RfcAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) - RfcAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ', LLC', country=country) - RfcAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker('company'), country=factory.Faker('country')) - DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + ' AG', country=country) - RfcAuthorFactory(document=rfcInfGroup2, affiliation='CiScO InC.', country=country) - DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation='CISCO corp.', country='belgique') + RfcAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ", LLC", country=country) + RfcAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker("company"), country=factory.Faker("country")) + DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + " AG", country=country) + RfcAuthorFactory(document=rfcInfGroup2, affiliation="CiScO InC.", country=country) + DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation="CISCO corp.", country="belgique") DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation=affiliation, country=country) - RfcAuthorFactory(document=rfcBcpIAB1, affiliation='CiScO PTY LTD', country='UnItEd StAtEs') - RfcAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country='usa') - DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ',inc', country='U.S.A.') + RfcAuthorFactory(document=rfcBcpIAB1, affiliation="CiScO PTY LTD", country="UnItEd StAtEs") + RfcAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country="usa") + DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ",inc", country="U.S.A.") # Test#1 the documents specific statistics: for RFC about the level r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "level"})) @@ -127,13 +138,13 @@ def test_document_stats(self): any( ds["label"] == "inf" and ds["data"] == [0, 1] for ds in chart_data["datasets"] - ) + ), ) self.assertTrue( any( ds["label"] == "bcp" and ds["data"] == [2, 0] for ds in chart_data["datasets"] - ) + ), ) # Test#2 the documents specific statistics: for RFC about the WG @@ -148,7 +159,7 @@ def test_document_stats(self): any( ds["label"] == group1.name and ds["data"] == [2, 0] for ds in chart_data["datasets"] - ) + ), ) # Test#3 the documents specific statistics: for drafts about the streams @@ -163,13 +174,13 @@ def test_document_stats(self): any( ds["label"] == "IETF" and ds["data"] == [2] for ds in chart_data["datasets"] - ) + ), ) self.assertTrue( any( ds["label"] == "Unspecified" and ds["data"] == [1] for ds in chart_data["datasets"] - ) + ), ) # Test#4 the authors specific statistics: for all docs about the countries @@ -184,13 +195,13 @@ def test_document_stats(self): any( ds["label"] == "United States of America" and ds["data"] == [2, 1] for ds in chart_data["datasets"] - ) + ), ) self.assertTrue( any( ds["label"] == "Belgium" and ds["data"] == [0, 1] for ds in chart_data["datasets"] - ) + ), ) # Test#5 the authors specific statistics: for all all rfcs about the affiliation @@ -205,19 +216,19 @@ def test_document_stats(self): any( ds["label"].casefold() == affiliation.casefold() and ds["data"] == [3, 0] for ds in chart_data["datasets"] - ) + ), ) self.assertTrue( any( ds["label"] == "Cisco" and ds["data"] == [1, 1] for ds in chart_data["datasets"] - ) + ), ) self.assertTrue( any( ds["label"] == "Other" and ds["data"] == [0, 0] for ds in chart_data["datasets"] - ) + ), ) # Test#6 the authors specific statistics: for all WG drafts about the country @@ -228,22 +239,22 @@ def test_document_stats(self): pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) self.assertTrue(chart_data["labels"] == [yearNow]) - # Test sometimes failing below with the factory country name being different from the country name in the chart data, - # even though they should be the same country. - # Using casefold to make the comparison more robust, as the country names in the chart data are title-cased + # Test sometimes failing below with the factory country name being different from the country name in the chart data, + # even though they should be the same country. + # Using casefold to make the comparison more robust, as the country names in the chart data are title-cased # while the factory can return them in different cases. self.assertTrue( any( ds["label"].casefold() == country.casefold() and ds["data"] == [2] for ds in chart_data["datasets"] ), - msg=f"Country '{country}' not found in chart data labels: {chart_data['datasets']}" + msg=f"Country '{country}' not found in chart data labels: {chart_data['datasets']}", ) self.assertTrue( any( ds["label"] == "Belgium" and ds["data"] == [1] for ds in chart_data["datasets"] - ) + ), ) # Test#7 the authors specific statistics global @@ -253,11 +264,11 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue('Belgium' in chart_data["labels"]) - self.assertTrue('United States of America' in chart_data["labels"]) + self.assertTrue("Belgium" in chart_data["labels"]) + self.assertTrue("United States of America" in chart_data["labels"]) self.assertTrue(country in chart_data["labels"]) - USA_index = chart_data["labels"].index('United States of America') - # Let's check whether USA has indeed 1 + USA_index = chart_data["labels"].index("United States of America") + # Let's check whether USA has indeed 1 self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) # Test#8 the documents specific statistics global @@ -268,23 +279,23 @@ def test_document_stats(self): pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) self.assertTrue(group1.name in chart_data["labels"]) - individual_index = chart_data["labels"].index('Individual submissions') - # Let's check whether USA has indeed 1 + individual_index = chart_data["labels"].index("Individual submissions") + # Let's check whether USA has indeed 1 self.assertTrue(chart_data["datasets"][0]["data"][individual_index] == 1) def test_meeting_stats(self): - meeting124 = MeetingFactory(type_id='ietf', number='124', date=timezone.now()) - meeting125 = MeetingFactory(type_id='ietf', number='125', date=timezone.now() + datetime.timedelta(days=120)) - RegistrationFactory.create_batch(15, meeting=meeting124, with_ticket={'attendance_type_id': 'onsite'}, attended=True) - RegistrationFactory(meeting=meeting124, with_ticket={'attendance_type_id': 'onsite'}, attended=False) - RegistrationFactory.create_batch(14, meeting=meeting124, with_ticket={'attendance_type_id': 'remote'}, attended=True) - RegistrationFactory(meeting=meeting124, with_ticket={'attendance_type_id': 'remote'}, attended=False) - RegistrationFactory.create_batch(15, meeting=meeting125, affiliation='Test LLC', with_ticket={'attendance_type_id': 'remote'}, attended=False) - RegistrationFactory.create_batch(25, meeting=meeting125, affiliation='Example, Ltd', with_ticket={'attendance_type_id': 'onsite'}, attended=False) + meeting124 = MeetingFactory(type_id="ietf", number="124", date=timezone.now()) + meeting125 = MeetingFactory(type_id="ietf", number="125", date=timezone.now() + datetime.timedelta(days=120)) + RegistrationFactory.create_batch(15, meeting=meeting124, with_ticket={"attendance_type_id": "onsite"}, attended=True) + RegistrationFactory(meeting=meeting124, with_ticket={"attendance_type_id": "onsite"}, attended=False) + RegistrationFactory.create_batch(14, meeting=meeting124, with_ticket={"attendance_type_id": "remote"}, attended=True) + RegistrationFactory(meeting=meeting124, with_ticket={"attendance_type_id": "remote"}, attended=False) + RegistrationFactory.create_batch(15, meeting=meeting125, affiliation="Test LLC", with_ticket={"attendance_type_id": "remote"}, attended=False) + RegistrationFactory.create_batch(25, meeting=meeting125, affiliation="Example, Ltd", with_ticket={"attendance_type_id": "onsite"}, attended=False) # Create the various aliases ancilliary content - AffiliationIgnoredEndingFactory(ending='llc\\.?') - AffiliationIgnoredEndingFactory(ending='ltd\\.?') + AffiliationIgnoredEndingFactory(ending="llc\\.?") + AffiliationIgnoredEndingFactory(ending="ltd\\.?") # Test the meeting specific statitistics per affiliation and per country r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) @@ -318,7 +329,7 @@ def test_meeting_stats(self): any( ds["label"] == "Example" and ds["data"] == [0, 25] for ds in in_person_data["datasets"] - ) + ), ) # Test the global meetings timeline r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "total"})) @@ -334,7 +345,7 @@ def test_meeting_stats_for_bad_meeting(self): urlreverse( "ietf.stats.views_meetings.meeting_stats", kwargs={"meeting_number": 676767, "stats_type": stats_type}, - ) + ), ) self.assertEqual(r.status_code, 404) @@ -359,11 +370,11 @@ def test_known_country_list(self): def test_review_stats(self): reviewer = PersonFactory() - review_req = ReviewRequestFactory(state_id='assigned') - ReviewAssignmentFactory(review_request=review_req, state_id='assigned', reviewer=reviewer.email_set.first()) - RoleFactory(group=review_req.team,name_id='reviewer',person=reviewer) + review_req = ReviewRequestFactory(state_id="assigned") + ReviewAssignmentFactory(review_request=review_req, state_id="assigned", reviewer=reviewer.email_set.first()) + RoleFactory(group=review_req.team,name_id="reviewer",person=reviewer) ReviewerSettingsFactory(team=review_req.team, person=reviewer) - PersonFactory(user__username='plain') + PersonFactory(user__username="plain") # check redirect url = urlreverse(ietf.stats.views_reviews.review_stats) @@ -394,34 +405,34 @@ def test_review_stats(self): # check stacked chart url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) - url += "?team={}".format(review_req.team.acronym) + url += f"?team={review_req.team.acronym}" r = self.client.get(url) self.assertEqual(r.status_code, 200) - stacked_data = json.loads(r.context['data']) + stacked_data = json.loads(r.context["data"]) # Ignore the timestamp elements, just check that the data is correct self.assertEqual(len(stacked_data), 2) - self.assertEqual(stacked_data[0]['label'], 'in time') - self.assertEqual(stacked_data[0]['color'], '#3d22b3') - self.assertEqual(stacked_data[0]['data'], [[stacked_data[0]['data'][0][0], 0]]) - self.assertEqual(stacked_data[1]['label'], 'late') - self.assertEqual(stacked_data[1]['color'], '#b42222') - self.assertEqual(stacked_data[1]['data'], [[stacked_data[0]['data'][0][0], 0]]) + self.assertEqual(stacked_data[0]["label"], "in time") + self.assertEqual(stacked_data[0]["color"], "#3d22b3") + self.assertEqual(stacked_data[0]["data"], [[stacked_data[0]["data"][0][0], 0]]) + self.assertEqual(stacked_data[1]["label"], "late") + self.assertEqual(stacked_data[1]["color"], "#b42222") + self.assertEqual(stacked_data[1]["data"], [[stacked_data[0]["data"][0][0], 0]]) q = PyQuery(r.content) - self.assertTrue(q('#stats-time-graph')) + self.assertTrue(q("#stats-time-graph")) # check non-stacked chart url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) - url += "?team={}".format(review_req.team.acronym) + url += f"?team={review_req.team.acronym}" url += "&completion=not_completed" r = self.client.get(url) self.assertEqual(r.status_code, 200) - non_stacked_data = json.loads(r.context['data']) + non_stacked_data = json.loads(r.context["data"]) # Ignore the timestamp elements, just check that the data is correct self.assertEqual(len(non_stacked_data), 1) - self.assertEqual(non_stacked_data[0]['color'], '#3d22b3') - self.assertEqual(non_stacked_data[0]['data'], [[non_stacked_data[0]['data'][0][0], 0]]) + self.assertEqual(non_stacked_data[0]["color"], "#3d22b3") + self.assertEqual(non_stacked_data[0]["data"], [[non_stacked_data[0]["data"][0][0], 0]]) q = PyQuery(r.content) - self.assertTrue(q('#stats-time-graph')) + self.assertTrue(q("#stats-time-graph")) # check reviewer level url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "completion", "acronym": review_req.team.acronym }) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index d34b0a9ca8b..6f31160b8b4 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -1,5 +1,4 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -# -*- coding: utf-8 -*- import csv @@ -9,17 +8,16 @@ from django.shortcuts import render from django.urls import reverse as urlreverse -import debug # pyflakes:ignore - -from ietf.name.models import CountryName from ietf.ietfauth.utils import role_required from ietf.meeting.helpers import get_current_ietf_meeting_num +from ietf.name.models import CountryName + def stats_index(request): """Render the statistics index page with the current meeting number as it is required by the meeting menu item.""" current_meeting = get_current_ietf_meeting_num() return render(request, "stats/index.html", { - "current_meeting": current_meeting + "current_meeting": current_meeting, }) def known_countries_list(request): @@ -38,7 +36,7 @@ def known_countries_list(request): def annual_report_inputs(request, year=None): if year is None and "year" in request.GET: return HttpResponseRedirect( - urlreverse("ietf.stats.views.annual_report_inputs", kwargs={"year": request.GET["year"]}) + urlreverse("ietf.stats.views.annual_report_inputs", kwargs={"year": request.GET["year"]}), ) year = int(year) if year else datetime.date.today().year - 1 @@ -61,8 +59,8 @@ def annual_report_inputs(request, year=None): draft_count = len(set( NewRevisionDocEvent.objects.filter( - doc__type_id="draft", time__year=year - ).values_list("doc__name", flat=True) + doc__type_id="draft", time__year=year, + ).values_list("doc__name", flat=True), )) return render(request, "stats/annual_report_inputs.html", { diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 38d054fd59d..da766d5e4de 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -1,27 +1,24 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -# -*- coding: utf-8 -*- -from typing import Tuple, List, Dict, Any +from collections import defaultdict +from typing import Any from django.conf import settings +from django.core.cache import cache from django.db.models import Count, Q from django.http import HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse -from django.core.cache import cache - -import debug # pyflakes:ignore - -from collections import defaultdict from ietf.doc.models import Document -from ietf.stats.utils import color_from_hash, check_top_n_choice, get_top_n_choices +from ietf.stats.utils import check_top_n_choice, color_from_hash, get_top_n_choices + def get_total_data_for_documents( - doc_type: str = 'rfc', - group_by: str = 'level', + doc_type: str = "rfc", + group_by: str = "level", top_n: int = 20, -) -> Dict[str, Any]: +) -> dict[str, Any]: """Get aggregated document statistics grouped by the specified field. Args: @@ -31,13 +28,14 @@ def get_total_data_for_documents( Returns: Chart.js compatible data dictionary with labels and datasets. + """ # Build a dynamic query set filter filters = Q() - if doc_type == 'all': - filters &= Q(type_id__in=['draft', 'rfc']) - elif doc_type == 'wg-draft': - filters &= Q(type_id='draft') + if doc_type == "all": + filters &= Q(type_id__in=["draft", "rfc"]) + elif doc_type == "wg-draft": + filters &= Q(type_id="draft") filters &= Q(document__group__type_id="wg") else: filters &= Q(type_id=doc_type) @@ -45,37 +43,39 @@ def get_total_data_for_documents( Document.objects .filter(filters) .values(group_by) - .annotate(document_count=Count('id', distinct=True)) - .order_by('-document_count') + .annotate(document_count=Count("id", distinct=True)) + .order_by("-document_count") ) # Convert queryset to dictionary, aggregating by group - group_count_dict: Dict[str, int] = {} - for group, count in queryset.values_list(group_by, 'document_count'): - if not group or group == '': - group = 'Unspecified' + group_count_dict: dict[str, int] = {} + for group, count in queryset.values_list(group_by, "document_count"): + if not group or group == "": + group = "Unspecified" group_count_dict[group] = group_count_dict.get(group, 0) + count sorted_groups = sorted(group_count_dict.items(), key=lambda x: x[1], reverse=True) top_groups = sorted_groups[:top_n] other_count = sum(count for _, count in sorted_groups[top_n:]) if other_count > 0: - top_groups.append(('Other', other_count)) - - labels: Tuple[str, ...] = tuple(label for label, _ in top_groups) - data: Tuple[int, ...] = tuple(count for _, count in top_groups) - chart_data: Dict[str, Any] = { - 'labels': labels, - 'datasets': [{ - 'data': data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in labels], - 'borderColor': 'black', - 'borderWidth': 1, + top_groups.append(("Other", other_count)) + + labels: tuple[str, ...] = tuple(label for label, _ in top_groups) + data: tuple[int, ...] = tuple(count for _, count in top_groups) + chart_data: dict[str, Any] = { + "labels": labels, + "datasets": [{ + "data": data, + "backgroundColor": [color_from_hash(label) + if label else "#202020" + for label in labels], + "borderColor": "black", + "borderWidth": 1, }], } return chart_data -def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'level') -> Any: +def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "level") -> Any: """Render document statistics page with pie chart aggregations. Args: @@ -85,42 +85,51 @@ def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'leve Returns: Rendered response for the documents_total template. + """ # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + top_n = max(1, min(int(request.GET.get("top", "10")), 100)) except (ValueError, TypeError): top_n = 10 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - - - if stats_type == 'stream': - chart_data = get_total_data_for_documents(doc_type, 'stream__name', top_n) - elif stats_type == 'level' and doc_type == 'draft': - chart_data = get_total_data_for_documents(doc_type, 'intended_std_level_id', top_n) - elif stats_type == 'level' and doc_type == 'rfc': - chart_data = get_total_data_for_documents(doc_type, 'std_level_id', top_n) - elif stats_type == 'wg': - chart_data = get_total_data_for_documents(doc_type, 'group__name', top_n) + return render(request, + "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + + + if stats_type == "stream": + chart_data = get_total_data_for_documents(doc_type, "stream__name", top_n) + elif stats_type == "level" and doc_type == "draft": + chart_data = get_total_data_for_documents(doc_type, "intended_std_level_id", top_n) + elif stats_type == "level" and doc_type == "rfc": + chart_data = get_total_data_for_documents(doc_type, "std_level_id", top_n) + elif stats_type == "wg": + chart_data = get_total_data_for_documents(doc_type, "group__name", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) # Prepare the list of choice buttons for the template possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_total, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("rfc", "RFCs", urlreverse(documents_total, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ("draft", "Drafts", urlreverse(documents_total, + kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("rfc", "RFCs", urlreverse(documents_total, + kwargs={"doc_type": "rfc", "stats_type": stats_type})), ] possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), - ("wg", "Working Groups", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), + ("stream", "Streams", urlreverse(documents_total, + kwargs={"doc_type": doc_type, "stats_type": "stream"})), + ("wg", "Working Groups", urlreverse(documents_total, + kwargs={"doc_type": doc_type, "stats_type": "wg"})), ] - if doc_type == 'draft': - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - elif doc_type == 'rfc': - possible_stats_types.append(("level", "Category", urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + if doc_type == "draft": + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, + kwargs={"doc_type": doc_type, "stats_type": "level"}))) + elif doc_type == "rfc": + possible_stats_types.append(("level", "Category", urlreverse(documents_total, + kwargs={"doc_type": doc_type, "stats_type": "level"}))) return render(request, "stats/documents_total.html", { "top_n": top_n, @@ -128,18 +137,18 @@ def documents_total(request: Any, doc_type: str = 'rfc', stats_type: str = 'leve "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, - "timeline_url": urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), - "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "timeline_url": urlreverse(documents_timeline, kwargs={"doc_type": doc_type, "stats_type": stats_type}), + "total_url": urlreverse(documents_total, kwargs={"doc_type": doc_type, "stats_type": stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, }) def get_timeline_data_for_documents( - doc_type: str = 'rfc', - group_by: str = 'stream__name', + doc_type: str = "rfc", + group_by: str = "stream__name", top_n: int = 10, -) -> Tuple[List[int], List[Dict[str, Any]]]: +) -> tuple[list[int], list[dict[str, Any]]]: """Get timeline data for documents grouped by field over years. Args: @@ -149,22 +158,23 @@ def get_timeline_data_for_documents( Returns: Tuple of (sorted_years, datasets) for Chart.js timeline chart. + """ - cache_key = f'stats:get_timeline_data_for_documents:{doc_type}-{group_by}' + cache_key = f"stats:get_timeline_data_for_documents:{doc_type}-{group_by}" result = cache.get(cache_key, None) - + # Initialize variables with proper types years_set: list[int] - documents_totals: Dict[str, int] - data_map: Dict[int, Dict[str, int]] - + documents_totals: dict[str, int] + data_map: dict[int, dict[str, int]] + if result is not None: years_set, documents_totals, data_map = result else: - if doc_type != 'all': # Filter by specific document type + if doc_type != "all": # Filter by specific document type queryset = Document.objects.filter(type_id=doc_type) else: # doc_type == 'all', include both drafts and RFCs (and this option is no more used in urls.py though) - queryset = Document.objects.filter(type_id__in=['draft', 'rfc']) + queryset = Document.objects.filter(type_id__in=["draft", "rfc"]) # ── Step 1: Collect all years and document totals ── years_set_temp: set[int] = set() @@ -175,14 +185,14 @@ def get_timeline_data_for_documents( if not row.pub_date(): continue year = row.pub_date().year - if group_by == 'stream__name': - group = row.stream.name if row.stream else 'Unspecified' - elif group_by == 'group__name': - group = row.group.name if row.group else 'Unspecified' + if group_by == "stream__name": + group = row.stream.name if row.stream else "Unspecified" + elif group_by == "group__name": + group = row.group.name if row.group else "Unspecified" else: group = getattr(row, group_by, None) if not group: - group = 'Unspecified' + group = "Unspecified" years_set_temp.add(year) documents_totals[group] += 1 data_map[year][group] = data_map[year].get(group, 0) + 1 @@ -198,10 +208,10 @@ def get_timeline_data_for_documents( top_groups = sorted( documents_totals.keys(), key=lambda c: documents_totals[c], - reverse=True + reverse=True, )[:top_n] non_top_groups = set(documents_totals.keys()) - set(top_groups) - other_totals: Dict[int, int] = defaultdict(int) + other_totals: dict[int, int] = defaultdict(int) other_bin_is_empty = True for y in years_set: for g in non_top_groups: @@ -211,39 +221,39 @@ def get_timeline_data_for_documents( other_bin_is_empty = False # ── Step 3: Build Chart.js datasets ── - datasets: List[Dict[str, Any]] = [] + datasets: list[dict[str, Any]] = [] for group in top_groups: color = color_from_hash(group) datasets.append({ - 'label': group, - 'data': [data_map[year].get(group, 0) for year in years_set], - 'borderColor': color, - 'backgroundColor': color + '99', # 60% opacity fill - 'fill': False, - 'tension': 0.0, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": group, + "data": [data_map[year].get(group, 0) for year in years_set], + "borderColor": color, + "backgroundColor": color + "99", # 60% opacity fill + "fill": False, + "tension": 0.0, + "pointColor": color, + "pointBackgroundColor": color, + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, }) if not other_bin_is_empty: datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(year, 0) for year in years_set], - 'borderColor': 'black', - 'fill': False, - 'tension': 0.0, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": "Other", + "data": [other_totals.get(year, 0) for year in years_set], + "borderColor": "black", + "fill": False, + "tension": 0.0, + "pointColor": "black", + "pointBackgroundColor": "black", + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, }) return years_set, datasets -def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'level') -> Any: +def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "level") -> Any: """Render the documents timeline page with document statistics over time. Args: @@ -253,45 +263,54 @@ def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'l Returns: Rendered response for the documents timeline template. + """ # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '10')), 100)) + top_n = max(1, min(int(request.GET.get("top", "10")), 100)) except (ValueError, TypeError): top_n = 10 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - - if stats_type == 'stream': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'stream__name', top_n) - elif stats_type == 'level' and doc_type == 'draft': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'intended_std_level_id', top_n) - elif stats_type == 'level' and doc_type == 'rfc': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'std_level_id', top_n) - elif stats_type == 'wg': - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, 'group__name', top_n) + return render(request, + "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + + if stats_type == "stream": + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "stream__name", top_n) + elif stats_type == "level" and doc_type == "draft": + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "intended_std_level_id", top_n) + elif stats_type == "level" and doc_type == "rfc": + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "std_level_id", top_n) + elif stats_type == "wg": + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "group__name", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, + "labels": total_labels, + "datasets": total_data_sets, } # Prepare the list of choice buttons for the template possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_timeline, kwargs={'doc_type': 'draft', 'stats_type': stats_type})), - ("rfc", "RFC", urlreverse(documents_timeline, kwargs={'doc_type': 'rfc', 'stats_type': stats_type})), + ("draft", "Drafts", urlreverse(documents_timeline, + kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("rfc", "RFC", urlreverse(documents_timeline, + kwargs={"doc_type": "rfc", "stats_type": stats_type})), ] possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'stream'})), - ("wg", "Working Groups", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'wg'})), + ("stream", "Streams", urlreverse(documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": "stream"})), + ("wg", "Working Groups", urlreverse(documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": "wg"})), ] - if doc_type == 'draft': - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) - elif doc_type == 'rfc': - possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, kwargs={'doc_type': doc_type, 'stats_type': 'level'}))) + if doc_type == "draft": + possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": "level"}))) + elif doc_type == "rfc": + possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": "level"}))) return render(request, "stats/documents_timeline.html", { "top_n": top_n, @@ -299,7 +318,8 @@ def documents_timeline(request: Any, doc_type: str = 'rfc', stats_type: str = 'l "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, - "total_url": urlreverse(documents_total, kwargs={'doc_type': doc_type, 'stats_type': stats_type}), + "total_url": urlreverse(documents_total, + kwargs={"doc_type": doc_type, "stats_type": stats_type}), "doc_type": doc_type, "stats_type": stats_type, "chart_data": chart_data, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 1e9c98eb69e..4a917569bac 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -1,33 +1,36 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -# -*- coding: utf-8 -*- -from typing import Optional, Tuple, List, Dict, Any from collections import defaultdict - -import debug # pyflakes:ignore +from typing import Any from django.conf import settings +from django.core.cache import cache from django.db.models import Count from django.http import HttpResponseRedirect -from django.shortcuts import render, get_object_or_404 +from django.shortcuts import get_object_or_404, render from django.urls import reverse as urlreverse -from django.core.cache import cache -from ietf.meeting.models import Registration, Meeting -from ietf.stats.utils import color_from_hash, get_aliased_affiliations, get_aliased_countries, check_top_n_choice, get_top_n_choices from ietf.meeting.helpers import get_current_ietf_meeting_num +from ietf.meeting.models import Meeting, Registration +from ietf.stats.utils import ( + check_top_n_choice, + color_from_hash, + get_aliased_affiliations, + get_aliased_countries, + get_top_n_choices, +) # Constants FIRST_MEETING_WITH_REGISTRATION_DATA = 72 def _build_timeline_datasets( - top_items: List[str], - data_map: Dict[str, Dict[str, int]], - sorted_meetings: List[str], - other_totals: Dict[str, int], + top_items: list[str], + data_map: dict[str, dict[str, int]], + sorted_meetings: list[str], + other_totals: dict[str, int], include_background_color: bool = False, -) -> List[Dict[str, Any]]: +) -> list[dict[str, Any]]: """Build Chart.js datasets for timeline charts. Args: @@ -39,49 +42,50 @@ def _build_timeline_datasets( Returns: List of Chart.js dataset dictionaries. + """ - datasets: List[Dict[str, Any]] = [] + datasets: list[dict[str, Any]] = [] for item in top_items: color = color_from_hash(item) dataset = { - 'label': item, - 'data': [data_map[item].get(m, 0) for m in sorted_meetings], - 'borderColor': color, - 'fill': bool(include_background_color), - 'tension': 0.0 if include_background_color else 0.3, - 'pointColor': color, - 'pointBackgroundColor': color, - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": item, + "data": [data_map[item].get(m, 0) for m in sorted_meetings], + "borderColor": color, + "fill": bool(include_background_color), + "tension": 0.0 if include_background_color else 0.3, + "pointColor": color, + "pointBackgroundColor": color, + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, } if include_background_color: - dataset['backgroundColor'] = color + '99' + dataset["backgroundColor"] = color + "99" datasets.append(dataset) # Add "Other" category datasets.append({ - 'label': 'Other', - 'data': [other_totals.get(m, 0) for m in sorted_meetings], - 'borderColor': 'black', - 'fill': bool(include_background_color), - 'tension': 0.0 if include_background_color else 0.3, - 'pointColor': 'black', - 'pointBackgroundColor': 'black', - 'pointRadius': 4, - 'pointHoverRadius': 6, - 'borderWidth': 2, + "label": "Other", + "data": [other_totals.get(m, 0) for m in sorted_meetings], + "borderColor": "black", + "fill": bool(include_background_color), + "tension": 0.0 if include_background_color else 0.3, + "pointColor": "black", + "pointBackgroundColor": "black", + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, }) if include_background_color: - datasets[-1]['backgroundColor'] = '#00000099' + datasets[-1]["backgroundColor"] = "#00000099" return datasets def _build_pie_chart_data( - items_with_counts: List[Tuple[str, int]], + items_with_counts: list[tuple[str, int]], top_n: int = 20, -) -> Tuple[List[str], List[int], int]: +) -> tuple[list[str], list[int], int]: """Build pie chart data from sorted items. Args: @@ -90,9 +94,10 @@ def _build_pie_chart_data( Returns: Tuple of (labels, data, total). + """ - labels: List[str] = [] - data: List[int] = [] + labels: list[str] = [] + data: list[int] = [] total = 0 for item, count in items_with_counts[:top_n]: @@ -106,22 +111,25 @@ def _build_pie_chart_data( total += count if other_total > 0: - labels.append('Other') + labels.append("Other") data.append(other_total) return labels, data, total -def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: +def get_affiliation_data_for_meetings(attendance_type: str | None = None, + top_n: int = 20) -> tuple[list[str], list[dict[str, Any]]]: """Get affiliation participation data for meetings timeline chart. Args: attendance_type: Optional filter for attendance type (e.g., 'onsite'). + top_n: Number of top items to return. Returns: Tuple of (sorted_meetings, datasets) for Chart.js. + """ - cache_key = f'stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}' + cache_key = f"stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}" sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): @@ -130,44 +138,46 @@ def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top base_registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) else: base_registrations = Registration.objects.all() - registrations = base_registrations.values('affiliation', 'meeting__number') - + registrations = base_registrations.values("affiliation", "meeting__number") + # Prepare affiliation data, applying canonicalization and aliasing - alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + alias_map = get_aliased_affiliations(affiliation + for affiliation + in registrations.values_list("affiliation", flat=True)) # Count per canonicalized affiliation - organization: Dict[str, int] = {} + organization: dict[str, int] = {} meetings_set: set[str] = set() - org_totals: Dict[str, int] = defaultdict(int) - data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {org: {meeting: count}} - + org_totals: dict[str, int] = defaultdict(int) + data_map: dict[str, dict[str, int]] = defaultdict(dict) # {org: {meeting: count}} + for reg in registrations: - meeting = reg['meeting__number'] + meeting = reg["meeting__number"] meetings_set.add(meeting) - if not reg['affiliation'] or not reg['affiliation'].strip(): - affiliation = 'Unspecified' - else: - affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) + if not reg["affiliation"] or not reg["affiliation"].strip(): + affiliation = "Unspecified" + else: + affiliation = alias_map.get(reg["affiliation"], reg["affiliation"]) organization[affiliation] = organization.get(affiliation, 0) + 1 org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 - + # ── Step 2: Sort meetings numerically rather than alphabetically ── sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - + # ── Step 3: Get top N countries ── top_orgs = sorted( org_totals.keys(), key=lambda c: org_totals[c], - reverse=True + reverse=True, )[:top_n] non_top_orgs = set(org_totals.keys()) - set(top_orgs) - other_totals: Dict[str, int] = defaultdict(int) + other_totals: dict[str, int] = defaultdict(int) for m in sorted_meetings: other_totals[m] = 0 for c in non_top_orgs: other_totals[m] += int(data_map[c].get(m, 0)) - + # ── Step 4: Build Chart.js datasets ── datasets = _build_timeline_datasets(top_orgs, data_map, sorted_meetings, other_totals) cache.set( @@ -178,16 +188,19 @@ def get_affiliation_data_for_meetings(attendance_type: Optional[str] = None, top return sorted_meetings, datasets -def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: +def get_country_data_for_meetings(attendance_type: str | None = None, + top_n: int = 20) -> tuple[list[str], list[dict[str, Any]]]: """Get country participation data for meetings timeline chart. Args: attendance_type: Optional filter for attendance type (e.g., 'onsite'). + top_n: Number of top items to return. Returns: Tuple of (sorted_meetings, datasets) for Chart.js. + """ - cache_key = f'stats:get_country_data_for_meetings:{attendance_type}-{top_n}' + cache_key = f"stats:get_country_data_for_meetings:{attendance_type}-{top_n}" sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): # Get registration status counts, aggregated by country_code @@ -198,50 +211,52 @@ def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: queryset = ( base_registrations .values( - 'meeting__number', # e.g. "118", "119", "120" - 'country_code' # country code of the participant + "meeting__number", # e.g. "118", "119", "120" + "country_code", # country code of the participant ) - .annotate(participant_count=Count('id')) - .order_by('meeting__number') # chronological order + .annotate(participant_count=Count("id")) + .order_by("meeting__number") # chronological order ) # Prepare country affiliation data, applying canonicalization and aliasing # Mainly used to conver 2-letter country code into a full name # Could possible use Country directly - alias_map = get_aliased_countries(country_code for country_code in queryset.values_list('country_code', flat=True)) + alias_map = get_aliased_countries(country_code + for country_code + in queryset.values_list("country_code", flat=True)) # ── Step 1: Collect all meetings and country totals ── meetings_set: set[str] = set() - country_totals: Dict[str, int] = defaultdict(int) - data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {country: {meeting: count}} - + country_totals: dict[str, int] = defaultdict(int) + data_map: dict[str, dict[str, int]] = defaultdict(dict) # {country: {meeting: count}} + for row in queryset: - meeting = row['meeting__number'] - country = alias_map.get(row['country_code'], row['country_code']) - count = row['participant_count'] - + meeting = row["meeting__number"] + country = alias_map.get(row["country_code"], row["country_code"]) + count = row["participant_count"] + meetings_set.add(meeting) country_totals[country] += count data_map[country][meeting] = count - + # ── Step 2: Sort meetings numerically rather than alphabetically ── sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) - + # ── Step 3: Get top N countries ── top_countries = sorted( country_totals.keys(), key=lambda c: country_totals[c], - reverse=True + reverse=True, )[:top_n] - + # -- Step 3.bis do the 'other' category -- non_top_countries = set(country_totals.keys()) - set(top_countries) - other_totals: Dict[str, int] = defaultdict(int) + other_totals: dict[str, int] = defaultdict(int) for m in sorted_meetings: other_totals[m] = 0 for c in non_top_countries: other_totals[m] += int(data_map[c].get(m, 0)) - + # ── Step 4: Build Chart.js datasets ── datasets = _build_timeline_datasets(top_countries, data_map, sorted_meetings, other_totals) cache.set( @@ -252,45 +267,52 @@ def get_country_data_for_meetings(attendance_type: Optional[str] = None, top_n: return sorted_meetings, datasets -def get_data_for_meetings(top_n: int = 20) -> Tuple[List[str], List[Dict[str, Any]]]: +def get_data_for_meetings(top_n: int = 20) -> tuple[list[str], list[dict[str, Any]]]: """Get total participation data by attendance type for meetings timeline chart. + Args: + top_n: Number of top items to display in the chart. + Returns: Tuple of (sorted_meetings, datasets) for Chart.js. + """ - cache_key = f'stats:get_data_for_meetings:{top_n}' + cache_key = f"stats:get_data_for_meetings:{top_n}" sorted_meetings, datasets = cache.get(cache_key, (None, None)) if (sorted_meetings, datasets) == (None, None): # Get registration status counts, aggregated by ticket types - base_registrations = Registration.objects.filter(tickets__attendance_type__in=['onsite', 'remote']) + base_registrations = ( + Registration.objects + .filter(tickets__attendance_type__in=["onsite", "remote"]) + ) queryset = ( base_registrations .values( - 'meeting__number', # e.g. "118", "119", "120" - 'tickets__attendance_type' + "meeting__number", # e.g. "118", "119", "120" + "tickets__attendance_type", ) - .annotate(participant_count=Count('id')) - .order_by('meeting__number') # chronological order + .annotate(participant_count=Count("id")) + .order_by("meeting__number") # chronological order ) - + # ── Step 1: Collect all meetings and tickets totals ── meetings_set: set[str] = set() - tickets_totals: Dict[str, int] = defaultdict(int) - data_map: Dict[str, Dict[str, int]] = defaultdict(dict) # {ticket: {meeting: count}} - + tickets_totals: dict[str, int] = defaultdict(int) + data_map: dict[str, dict[str, int]] = defaultdict(dict) # {ticket: {meeting: count}} + for row in queryset: - meeting = row['meeting__number'] - ticket = row['tickets__attendance_type'] - count = row['participant_count'] - + meeting = row["meeting__number"] + ticket = row["tickets__attendance_type"] + count = row["participant_count"] + meetings_set.add(meeting) tickets_totals[ticket] += count data_map[ticket][meeting] = count - + # ── Step 2: Sort meetings numerically rather than alphabetically ── sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) ticket_types = tickets_totals.keys() - + # ── Step 4: Build Chart.js datasets ── datasets = _build_timeline_datasets(list(ticket_types), data_map, sorted_meetings, {}, include_background_color=True) cache.set( @@ -300,74 +322,82 @@ def get_data_for_meetings(top_n: int = 20) -> Tuple[List[str], List[Dict[str, An ) return sorted_meetings, datasets -def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: +def meetings_timeline(request: Any, stats_type: str = "country") -> Any: """Render the meetings timeline page with participation statistics over time. Args: request: The HTTP request object. stats_type: Type of statistics ('country' or 'total'). - top_n: Number of top items to show (for country stats). Returns: Rendered response for the meetings timeline template. + """ # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + top_n = max(1, min(int(request.GET.get("top", "20")), 100)) except ValueError: top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + return render(request, + "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - if stats_type == 'total': + if stats_type == "total": total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) - in_person_labels: List[str] = [] - in_person_data_sets: List[Dict[str, Any]] = [] - plural_stats_type = '' - elif stats_type == 'affiliation': + in_person_labels: list[str] = [] + in_person_data_sets: list[dict[str, Any]] = [] + plural_stats_type = "" + elif stats_type == "affiliation": total_labels, total_data_sets = get_affiliation_data_for_meetings(top_n=top_n) - in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type='onsite', top_n=top_n) - plural_stats_type = 'affiliations' - elif stats_type == 'country': + in_person_labels, in_person_data_sets = get_affiliation_data_for_meetings(attendance_type="onsite", top_n=top_n) + plural_stats_type = "affiliations" + elif stats_type == "country": total_labels, total_data_sets = get_country_data_for_meetings(top_n=top_n) - in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type='onsite', top_n=top_n) - plural_stats_type = 'countries' + in_person_labels, in_person_data_sets = get_country_data_for_meetings(attendance_type="onsite", top_n=top_n) + plural_stats_type = "countries" else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) total_chart_data = { - 'labels': total_labels, - 'datasets': total_data_sets, + "labels": total_labels, + "datasets": total_data_sets, } # On per country/affiliation have a separate graph for inperson - if stats_type == 'total': + if stats_type == "total": in_person_chart_data = None else: in_person_chart_data = { - 'labels': in_person_labels, - 'datasets': in_person_data_sets, + "labels": in_person_labels, + "datasets": in_person_data_sets, } # Prepare the list of choice buttons for the template possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meetings_timeline, kwargs={'stats_type': 'affiliation'})), - ("country", "Per country", urlreverse(meetings_timeline, kwargs={'stats_type': 'country'})), - ("total", "Total", urlreverse(meetings_timeline, kwargs={'stats_type': 'total'})), + ("affiliation", "Per affiliation", urlreverse(meetings_timeline, + kwargs={"stats_type": "affiliation"})), + ("country", "Per country", urlreverse(meetings_timeline, + kwargs={"stats_type": "country"})), + ("total", "Total", urlreverse(meetings_timeline, + kwargs={"stats_type": "total"})), ] current_meeting = get_current_ietf_meeting_num() - if stats_type == 'total': - possible_stats_type = 'country' + if stats_type == "total": + possible_stats_type = "country" else: possible_stats_type = stats_type - possible_meeting_numbers: List[Tuple[str | int, str]] = [ - ('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type})), - (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)-1, 'stats_type': possible_stats_type})), - (int(current_meeting), urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting), 'stats_type': possible_stats_type})), - (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(current_meeting)+1, 'stats_type': possible_stats_type}))] + possible_meeting_numbers: list[tuple[str | int, str]] = [ + ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), + (int(current_meeting)-1, urlreverse(meeting_stats, + kwargs={"meeting_number": int(current_meeting)-1, "stats_type": possible_stats_type})), + (int(current_meeting), urlreverse(meeting_stats, + kwargs={"meeting_number": int(current_meeting), "stats_type": possible_stats_type})), + (int(current_meeting)+1, urlreverse(meeting_stats, + kwargs={"meeting_number": int(current_meeting)+1, "stats_type": possible_stats_type}))] return render(request, "stats/meetings_timeline.html", { "top_n": top_n, @@ -380,65 +410,79 @@ def meetings_timeline(request: Any, stats_type: str = 'country') -> Any: "in_person_chart_data": in_person_chart_data, }) -def get_affiliation_data_for_meeting(meeting_number: str, top_n: int = 20, attendance_type: Optional[str] = None) -> Tuple[List[str], List[int], int]: +def get_affiliation_data_for_meeting(meeting_number: str, top_n: int = 20, + attendance_type: str | None = None) -> tuple[list[str], list[int], int]: """Get affiliation participation data for a specific meeting. Args: meeting_number: The meeting number. + top_n: Number of top items to display in the chart. attendance_type: Optional filter for attendance type. Returns: - Tuple of (labels, data, total) for chart display. + Tuple of (labels, data, total) for chart.js display. + """ # Get registration status details base_registrations = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: base_registrations = base_registrations.filter(tickets__attendance_type=attendance_type) - registrations = base_registrations.values('affiliation') + registrations = base_registrations.values("affiliation") - alias_map = get_aliased_affiliations(affiliation for affiliation in registrations.values_list('affiliation', flat=True)) + alias_map = get_aliased_affiliations(affiliation for affiliation + in registrations.values_list("affiliation", flat=True)) # Count per canonicalized affiliation - organization: Dict[str, int] = {} + organization: dict[str, int] = {} for reg in registrations: - if not reg['affiliation'] or not reg['affiliation'].strip(): - affiliation = 'Unspecified' + if not reg["affiliation"] or not reg["affiliation"].strip(): + affiliation = "Unspecified" else: - affiliation = alias_map.get(reg['affiliation'], reg['affiliation']) + affiliation = alias_map.get(reg["affiliation"], reg["affiliation"]) organization[affiliation] = organization.get(affiliation, 0) + 1 # Sort to have the largest count first (nicer in pie chart) sorted_orgs = sorted(organization.items(), key=lambda t: t[1], reverse=True) return _build_pie_chart_data(sorted_orgs, top_n) -def get_country_data_for_meeting(meeting_number: str, top_n: int = 20, attendance_type: Optional[str] = None) -> Tuple[List[str], List[int], int]: +def get_country_data_for_meeting(meeting_number: str, top_n: int = 20, + attendance_type: str | None = None) -> tuple[list[str], list[int], int]: """Get country participation data for a specific meeting. Args: meeting_number: The meeting number. - minimum_required: Minimum count to include in main data (others go to 'Other'). + top_n: Number of top items to display in the chart. attendance_type: Optional filter for attendance type. Returns: - Tuple of (labels, data, total) for chart display. + Tuple of (labels, data, total) for chart.js display. + """ # Get registration status counts, aggregated by country_code base_registration_counts = Registration.objects.filter(meeting__number=meeting_number) if attendance_type: - base_registration_counts = base_registration_counts.filter(tickets__attendance_type=attendance_type) - registration_counts = base_registration_counts.values('country_code').annotate(count=Count('country_code')).order_by('-count') + base_registration_counts = ( + base_registration_counts + .filter(tickets__attendance_type=attendance_type) + ) + registration_counts = ( + base_registration_counts + .values("country_code") + .annotate(count=Count("country_code")) + .order_by("-count") + ) + + alias_map = get_aliased_countries(reg for reg in registration_counts.values_list("country_code", flat=True)) - alias_map = get_aliased_countries(reg for reg in registration_counts.values_list('country_code', flat=True)) - # Convert queryset to list of (label, count) tuples items_with_counts = [ - (alias_map.get(item['country_code'], item['country_code']), item['count']) + (alias_map.get(item["country_code"], item["country_code"]), item["count"]) for item in registration_counts ] - + return _build_pie_chart_data(items_with_counts, top_n) -def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type: str = 'country') -> Any: +def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: str = "country") -> Any: """Render statistics for a specific meeting. Args: @@ -448,66 +492,77 @@ def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type Returns: Rendered response for the meeting stats template. + """ current_meeting_number = get_current_ietf_meeting_num() if meeting_number is None: meeting_number = current_meeting_number this_meeting = get_object_or_404( - Meeting.objects.filter(type_id="ietf"), number=meeting_number + Meeting.objects.filter(type_id="ietf"), number=meeting_number, ) # Query parameters (from ?key=value) try: - top_n = max(1, min(int(request.GET.get('top', '20')), 100)) + top_n = max(1, min(int(request.GET.get("top", "20")), 100)) except ValueError: top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - if stats_type == 'affiliation': + if stats_type == "affiliation": total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) - in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') - elif stats_type == 'country': + in_person_labels, in_person_data, in_person_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n, attendance_type="onsite") + elif stats_type == "country": total_labels, total_data, total_total = get_country_data_for_meeting(meeting_number, top_n=top_n) - in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, top_n=top_n, attendance_type='onsite') + in_person_labels, in_person_data, in_person_total = get_country_data_for_meeting(meeting_number, top_n=top_n, attendance_type="onsite") else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) total_chart_data = { - 'labels': total_labels, - 'datasets': [{ - 'label': f'Total Registrations by {stats_type}', - 'data': total_data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in total_labels], - 'borderColor': '#ffffff', - 'borderWidth': 2, - }] + "labels": total_labels, + "datasets": [{ + "label": f"Total Registrations by {stats_type}", + "data": total_data, + "backgroundColor": [color_from_hash(label) + if label else "#202020" + for label in total_labels], + "borderColor": "#ffffff", + "borderWidth": 2, + }], } in_person_chart_data = { - 'labels': in_person_labels, - 'datasets': [{ - 'label': f'In Person Registrations by {stats_type}', - 'data': in_person_data, - 'backgroundColor': [color_from_hash(label) if label else '#202020' for label in in_person_labels], - 'borderColor': '#ffffff', - 'borderWidth': 2, - }] + "labels": in_person_labels, + "datasets": [{ + "label": f"In Person Registrations by {stats_type}", + "data": in_person_data, + "backgroundColor": [color_from_hash(label) + if label else "#202020" + for label in in_person_labels], + "borderColor": "#ffffff", + "borderWidth": 2, + }], } # Prepare the list of choice buttons for the template possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'affiliation'})), - ("country", "Per country", urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': 'country'})), + ("affiliation", "Per affiliation", urlreverse(meeting_stats, + kwargs={"meeting_number": meeting_number, "stats_type": "affiliation"})), + ("country", "Per country", urlreverse(meeting_stats, + kwargs={"meeting_number": meeting_number, "stats_type": "country"})), ] # Prepare the list of meeting number buttons for the template - possible_meeting_numbers: List[Tuple[str | int, str]] = [('All', urlreverse(meetings_timeline, kwargs={'stats_type': stats_type}))] + possible_meeting_numbers: list[tuple[str | int, str]] = [("All", urlreverse(meetings_timeline, + kwargs={"stats_type": stats_type}))] if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: - possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)-1, 'stats_type': stats_type}))) - possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, kwargs={'meeting_number': meeting_number, 'stats_type': stats_type}))) + possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, + kwargs={"meeting_number": int(meeting_number)-1, "stats_type": stats_type}))) + possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, + kwargs={"meeting_number": meeting_number, "stats_type": stats_type}))) if int(meeting_number) <= int(current_meeting_number): # Allow current meeting +1 - possible_meeting_numbers.append((int(meeting_number)+1, urlreverse(meeting_stats, kwargs={'meeting_number': int(meeting_number)+1, 'stats_type': stats_type}))) + possible_meeting_numbers.append((int(meeting_number)+1, urlreverse(meeting_stats, + kwargs={"meeting_number": int(meeting_number)+1, "stats_type": stats_type}))) return render(request, "stats/meeting_stats.html", { "meeting_number": meeting_number, @@ -522,5 +577,5 @@ def meeting_stats(request: Any, meeting_number: Optional[str] = None, stats_type "total_chart_data": total_chart_data, "total_total": total_total, "in_person_chart_data": in_person_chart_data, - "in_person_total": in_person_total + "in_person_total": in_person_total, }) From bb10e9f3b62b842cb4e2563e9c6f1a979abc9547 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 4 Jul 2026 05:55:47 +0000 Subject: [PATCH 127/181] Tame the UI to avoid per country stats about RFC to bypass RfcAuthor current limitation --- ietf/stats/views_authors.py | 48 ++++++++++++++++++++++++------------- 1 file changed, 31 insertions(+), 17 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 582212e0e01..52f52911d28 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -1,14 +1,13 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved +from collections import defaultdict + from django.conf import settings +from django.core.cache import cache from django.db.models import Count, Q from django.http import HttpRequest, HttpResponse, HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse -from django.core.cache import cache -from collections import defaultdict - -import debug # pyflakes:ignore from ietf.doc.models import DocumentAuthor, RfcAuthor from ietf.stats.utils import ( @@ -19,6 +18,7 @@ get_top_n_choices, ) + def get_authors_total_data_for_documents(doc_type: str = "all", group_by: str = "country", top_n: int = 20) -> dict[str, object]: @@ -132,27 +132,33 @@ def authors_total(request: HttpRequest, doc_type: str = "all", top_n = 10 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", + return render(request, + "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == "affiliation": chart_data = get_authors_total_data_for_documents(doc_type, "affiliation", top_n) elif stats_type == "country": + if doc_type in ["all", "rfc"]: + return render(request, + "stats/error.html", + {"message": f"Country information not (yet) available for {doc_type} documents from the RFC Editor."}) chart_data = get_authors_total_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) # Prepare the list of choice buttons for the template + # A little tricky/ugly has in Juy 2026 there is no more country information for RFCs, + # so we don't want to show that option for RFCs or all documents possible_docs_types = [ - ("all", "All documents", urlreverse(authors_total, kwargs={"doc_type": "all", "stats_type": stats_type})), ("draft", "Drafts", urlreverse(authors_total, kwargs={"doc_type": "draft", "stats_type": stats_type})), ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), - ("rfc", "RFCs", urlreverse(authors_total, kwargs={"doc_type": "rfc", "stats_type": stats_type})), - ] - possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "affiliation"})), - ("country", "Country", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "country"})), ] + if stats_type != "country": + possible_docs_types = [("all", "All documents", urlreverse(authors_total, kwargs={"doc_type": "all", "stats_type": stats_type}))] + possible_docs_types + [("rfc", "RFCs", urlreverse(authors_total, kwargs={"doc_type": "rfc", "stats_type": stats_type})) ] + possible_stats_types = [("affiliation", "Affiliation", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "affiliation"}))] + if doc_type not in ["all", "rfc"]: + possible_stats_types.append(("country", "Country", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "country"}))) return render(request, "stats/documents_total.html", { "top_n": top_n, @@ -328,11 +334,17 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + return render(request, + "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) if stats_type == "affiliation": total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "affiliation", top_n) elif stats_type == "country": + if doc_type in ["all", "rfc"]: + return render(request, + "stats/error.html", + {"message": f"Country information not (yet) available for {doc_type} documents from the RFC Editor."}) total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -344,15 +356,17 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st # Prepare the list of choice buttons for the template possible_docs_types = [ - ("all", "All documents", urlreverse(authors_timeline, kwargs={"doc_type": "all", "stats_type": stats_type})), ("draft", "Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "draft", "stats_type": stats_type})), ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), - ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={"doc_type": "rfc", "stats_type": stats_type})), ] + if stats_type != "country": + possible_docs_types = [("all", "All documents", urlreverse(authors_timeline, kwargs={"doc_type": "all", "stats_type": stats_type})), + ] + possible_docs_types + [ + ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={"doc_type": "rfc", "stats_type": stats_type}))] possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "affiliation"})), - ("country", "Country", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "country"})), - ] + ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "affiliation"}))] + if doc_type not in ["all", "rfc"]: + possible_stats_types.append(("country", "Country", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "country"}))) return render(request, "stats/documents_timeline.html", { "top_n": top_n, From 1165661f5be63b52e098c99c20f11f894cb47a4b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 5 Jul 2026 05:52:36 +0000 Subject: [PATCH 128/181] Nicer identation --- ietf/stats/views_authors.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 52f52911d28..92fd746ff4a 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -230,16 +230,16 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str year_group_list = [] if draft_queryset is not None: year_group_list += [ - (row.document.pub_date().year, getattr(row, group_by)) - for row in draft_queryset - if row.document.pub_date() is not None - ] + (row.document.pub_date().year, getattr(row, group_by)) + for row in draft_queryset + if row.document.pub_date() is not None + ] if rfc_queryset is not None: year_group_list += [ - (row.document.pub_date().year, getattr(row, group_by)) - for row in rfc_queryset - if row.document.pub_date() is not None - ] + (row.document.pub_date().year, getattr(row, group_by)) + for row in rfc_queryset + if row.document.pub_date() is not None + ] if group_by == "affiliation": alias_map = get_aliased_affiliations(group for _, group in year_group_list) From 0f7804c7c8029edee6165ccca9bd90b1c2fee2e5 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 5 Jul 2026 05:52:45 +0000 Subject: [PATCH 129/181] More robust tests --- ietf/stats/tests.py | 54 +++++++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 22 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 421cf20c754..14d02208503 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -78,11 +78,13 @@ def test_document_stats(self): rfcBcpIAB2 = WgRfcFactory(std_level_id="bcp", stream_id="iab") DocEventFactory(type="published_rfc", doc=rfcBcpIAB2, time=time1960) wgDraftPsGroup1 = WgDraftFactory(name="draft-ietf-" + group1.acronym + "-random-thing", intended_std_level_id="ps", group=group1) - NewRevisionDocEventFactory(doc=wgDraftPsGroup1, time=time1960) + # Using NewRevisionDocEventFactory(doc=wgDraftPsGroup1, rev="01", time=time1960) does not work + # as pub_date() always use the latest, i.e., more recent "new_revision" event, which is not what we want for this test. + wgDraftPsGroup1.docevent_set.filter(type="new_revision").update(time=time1960) + # The next 2 draft Documents have an auto-created "new_revision" event dated now, which is what we want for this test. wgDraftPsGroup2 = WgDraftFactory(name="draft-ietf-" + group2.acronym + "-random-thing", intended_std_level_id="inf", group=group2) - NewRevisionDocEventFactory(doc=wgDraftPsGroup2, time=timeNow) + # This one has no stream specified and no WG, so it will be counted as "Unspecified" in the stream statistics. draftExp = DocumentFactory(type_id="draft", intended_std_level_id="exp") - NewRevisionDocEventFactory(doc=draftExp, time=timeNow) # Let's create some authors, first get some test strings for affiliations and countries affiliation = factory.Faker("company").evaluate(None, None, {"locale": None}) @@ -92,20 +94,15 @@ def test_document_stats(self): if re.sub(r",?\s*\S+\s*$", "", affiliation) != "": affiliation = re.sub(r",?\s*\S+\s*$", "", affiliation) country = factory.Faker("country").evaluate(None, None, {"locale": None}) + # Later tests assume country is not BE/USA + # Let also ensure that the country is a single word to avoid wrongly canonicalised names + # Such as Brunei Darussalam or Lao People's Democratic Republic, which are not canonicalised in the tests below. + while country in {"Belgium", "United States of America"} or " " in country: + country = factory.Faker("country").evaluate(None, None, {"locale": None}) # Factory sometimes generates country names that are not exactly canonical # causing problems in the tests below. if country == "Korea": country = "South Korea" - elif country == "Brunei Darussalam": - country = "Brunei" - elif country == "Cape Verde": - country = "Cabo Verde" - elif country == "Lao People's Democratic Republic": - country = "Laos" - elif country == "British Virgin Islands": - country = "Virgin Islands" - elif country == "Pitcairn Islands": - country = "Pitcairn" # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending="llc\\.?") @@ -169,31 +166,38 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [yearNow]) + self.assertTrue(chart_data["labels"] == [year1960, yearNow], + msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]") self.assertTrue( any( - ds["label"] == "IETF" and ds["data"] == [2] + ds["label"] == "IETF" and ds["data"] == [1, 1] for ds in chart_data["datasets"] ), ) self.assertTrue( any( - ds["label"] == "Unspecified" and ds["data"] == [1] + ds["label"] == "Unspecified" and ds["data"] == [0, 1] for ds in chart_data["datasets"] ), ) # Test#4 the authors specific statistics: for all docs about the countries + # With the current production data, there is an error message, so check for it r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "all", "stats_type": "country"})) self.assertEqual(r.status_code, 200) - self.assertContains(r, "All Authors by Country") + self.assertContains(r, "Country information not (yet) available") + # Test#4.bis the authors specific statistics: for all docs about the countries + r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "draft", "stats_type": "country"})) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Draft Authors by Country") # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertTrue(chart_data["labels"] == [year1960, yearNow], + msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]") self.assertTrue( any( - ds["label"] == "United States of America" and ds["data"] == [2, 1] + ds["label"] == "United States of America" and ds["data"] == [0, 1] for ds in chart_data["datasets"] ), ) @@ -203,6 +207,12 @@ def test_document_stats(self): for ds in chart_data["datasets"] ), ) + self.assertTrue( + any( + ds["label"] == country and ds["data"] == [1, 1] + for ds in chart_data["datasets"] + ), + ) # Test#5 the authors specific statistics: for all all rfcs about the affiliation r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "affiliation"})) @@ -238,21 +248,21 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [yearNow]) + self.assertTrue(chart_data["labels"] == [year1960, yearNow]) # Test sometimes failing below with the factory country name being different from the country name in the chart data, # even though they should be the same country. # Using casefold to make the comparison more robust, as the country names in the chart data are title-cased # while the factory can return them in different cases. self.assertTrue( any( - ds["label"].casefold() == country.casefold() and ds["data"] == [2] + ds["label"].casefold() == country.casefold() and ds["data"] == [1, 1] for ds in chart_data["datasets"] ), msg=f"Country '{country}' not found in chart data labels: {chart_data['datasets']}", ) self.assertTrue( any( - ds["label"] == "Belgium" and ds["data"] == [1] + ds["label"] == "Belgium" and ds["data"] == [0, 1] for ds in chart_data["datasets"] ), ) From 2e42be15280b60b5ca44842f76267f4c7ee4ed29 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 5 Jul 2026 06:43:31 +0000 Subject: [PATCH 130/181] Select faster default statistics --- ietf/templates/base/menu.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index a131e3b87bb..c27ea4a7be9 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -441,12 +441,12 @@

      - {% if stats_type == 'total' %} + {% if stats_type == 'reg_type' %} This page provides a timeline of meeting registrations. {% else %} This page provides a timeline of meeting registrations by {{ stats_type }} with a limit of {{ top_n }} {{ plural_stats_type }}. @@ -57,7 +57,7 @@

      - {% if stats_type == 'total' %} + {% if stats_type == 'reg_type' %}

      Total Registrations

      {% else %}

      Total Registrations by {{ stats_type|title }}

      @@ -66,9 +66,9 @@

      Total Registrations by {{ stats_type|title }}

      - {% if stats_type != 'total' %} + {% if stats_type != 'reg_type' %}
      - {% if stats_type == 'total' %} + {% if stats_type == 'reg_type' %}

      Total In Person Registrations

      {% else %}

      In Person Registrations by {{ stats_type|title }}

      From aed7bbb21f126df742dfa50bdf9dfd6a9634a600 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 12 Jul 2026 12:33:58 +0000 Subject: [PATCH 137/181] Slighlty better templace for registration types timeiine --- ietf/templates/stats/meetings_timeline.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 1e979af116f..c6d28f00331 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -58,7 +58,7 @@

      {% if stats_type == 'reg_type' %} -

      Total Registrations

      +

      Total Registrations by Registration Types

      {% else %}

      Total Registrations by {{ stats_type|title }}

      {% endif %} From b492d6b39c3ed5e73e9024534ae2a150aa06fe43 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 14 Jul 2026 07:59:00 +0000 Subject: [PATCH 138/181] Add CSV download for per meeting statistics --- ietf/stats/tests.py | 8 ++++++++ ietf/stats/views_meetings.py | 20 +++++++++++++++++++- ietf/templates/stats/meeting_stats.html | 20 +++++++++++++++++--- 3 files changed, 44 insertions(+), 4 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 4e14ec98d21..733ef57140c 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -341,6 +341,14 @@ def test_meeting_stats(self): for ds in in_person_data["datasets"] ), ) + # Test for CSV download of the meeting stats per affiliation + r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "125", "stats_type": "affiliation"}) + "?download=total&top_n=5") + self.assertEqual(r.status_code, 200) + self.assertEqual(r["Content-Type"], "text/csv") + self.assertIn("attachment;", r["Content-Disposition"]) + csv_lines = r.content.decode("utf-8").splitlines() + self.assertTrue(csv_lines[0].startswith('"affiliation","count"')) + self.assertTrue(csv_lines[1].startswith('"Example",25')) # Test the global meetings timeline r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "reg_type"})) self.assertEqual(r.status_code, 200) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 8047b7ebf9d..debff6df235 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -2,11 +2,12 @@ from collections import defaultdict from typing import Any +import csv from django.conf import settings from django.core.cache import cache from django.db.models import Count -from django.http import HttpResponseRedirect +from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import get_object_or_404, render from django.urls import reverse as urlreverse @@ -519,6 +520,23 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + # Handle the download of CSV data if requested + download = request.GET.get("download") + if download in ("total", "in_person"): + if download == "total": + labels, data = total_labels, total_data + else: + labels, data = in_person_labels, in_person_data + + response = HttpResponse(content_type="text/csv") + # Let's set the filename to include the stats_type, download type, and meeting number (even if template sets it, this ensures the correct filename is used) + response["Content-Disposition"] = f'attachment; filename="{stats_type}-{download}-{meeting_number}.csv"' + writer = csv.writer(response, quoting=csv.QUOTE_NONNUMERIC, lineterminator="\n", dialect="excel") + writer.writerow([stats_type, "count"]) + for label, count in zip(labels, data): + writer.writerow([label, count]) + return response + total_chart_data = { "labels": total_labels, "datasets": [{ diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index 748d960da27..65468417e5d 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -53,13 +53,25 @@

      -

      Total Registrations by {{ stats_type|title }} ({{ total_total}} in total)

      +

      + Total Registrations by {{ stats_type|title }} ({{ total_total}} in total) + + + +

      -

      In Person Registrations by {{ stats_type|title }} ({{ in_person_total}} in total)

      +

      + In Person Registrations by {{ stats_type|title }} ({{ in_person_total}} in total) + + + +

      @@ -67,7 +79,9 @@

      In Person Registrations by {{ stats_type|title }} ({{ in_person_total}} in t

      - Click on a legend at the bottom to hide it and rescale the graph. + Hover over a slice to see the count and percentage of total registrations. + Click on a legend at the bottom to hide it and rescale the graph; click again to show it. + Click on to download the data as a CSV file.

      {% endblock %} \ No newline at end of file From 7564dfb1ec86e36db8302ea3973394c1cdfa8bba Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 14 Jul 2026 09:47:48 +0000 Subject: [PATCH 139/181] Add CSV download for meetings timeline --- ietf/stats/tests.py | 10 +++++++++ ietf/stats/views_meetings.py | 21 +++++++++++++++++++ ietf/templates/stats/meetings_timeline.html | 23 ++++++++++++--------- 3 files changed, 44 insertions(+), 10 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 733ef57140c..20aa097b950 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -355,6 +355,16 @@ def test_meeting_stats(self): self.assertContains(r, "/stats/meetings/124/country") self.assertContains(r, "/stats/meetings/125/country") self.assertContains(r, "This page provides a timeline of meeting registrations.") + # Test for CSV download of the meetings timeline per affiliation + r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"}) + "?download=total&top_n=5") + self.assertEqual(r.status_code, 200) + self.assertEqual(r["Content-Type"], "text/csv") + self.assertIn("attachment;", r["Content-Disposition"]) + body = r.content.decode("utf-8") + csv_lines = body.splitlines() + self.assertTrue(csv_lines[0].startswith('"IETF meeting","affiliation","count"')) + self.assertTrue(csv_lines[1].startswith('124,"Example",0')) + self.assertIn('125,"Test",15', body) def test_meeting_stats_for_bad_meeting(self): self.assertFalse(Meeting.objects.filter(number=676767).exists()) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index debff6df235..7afdda9f4fc 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -361,6 +361,26 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) + # Handle the download of CSV data if requested + download = request.GET.get("download") + if download in ("total", "in_person"): + if download == "total": + labels, data_sets = total_labels, total_data_sets + else: + labels, data_sets = in_person_labels, in_person_data_sets + + response = HttpResponse(content_type="text/csv") + # Let's set the filename to include the stats_type, download type, and meeting number (even if template sets it, this ensures the correct filename is used) + response["Content-Disposition"] = f'attachment; filename="{stats_type}-{download}-all.csv"' + writer = csv.writer(response, quoting=csv.QUOTE_NONNUMERIC, lineterminator="\n", dialect="excel") + writer.writerow(["IETF meeting", stats_type, "count"]) + for meeting_nr in labels: + for ds in data_sets: + count = ds["data"][labels.index(meeting_nr)] + writer.writerow([int(meeting_nr), ds["label"], count]) + return response + + # Not for download, prepare the chart data for rendering in the template total_chart_data = { "labels": total_labels, "datasets": total_data_sets, @@ -537,6 +557,7 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s writer.writerow([label, count]) return response + # Not for download, prepare the chart data for rendering in the template total_chart_data = { "labels": total_labels, "datasets": [{ diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index c6d28f00331..317c5fc44f4 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -57,22 +57,24 @@

      - {% if stats_type == 'reg_type' %} -

      Total Registrations by Registration Types

      - {% else %} -

      Total Registrations by {{ stats_type|title }}

      - {% endif %} +

      Total Registrations by {{ stats_type|title }} + + + +

      {% if stats_type != 'reg_type' %}
      - {% if stats_type == 'reg_type' %} -

      Total In Person Registrations

      - {% else %} -

      In Person Registrations by {{ stats_type|title }}

      - {% endif %} +

      In Person Registrations by {{ stats_type|title }} + + + +

      @@ -86,6 +88,7 @@

      In Person Registrations by {{ stats_type|title }}

      Panning can be done via the mouse or with a finger. Zooming is done via the mouse wheel or via a pinch gesture. Press ESC or click to reset panning/zooming. + Click on to download the data as a CSV file.

      {% endblock %} \ No newline at end of file From 1cfbc6cb36d53c110b4b1f0d54d54d7baec29e15 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 14 Jul 2026 15:28:44 +0000 Subject: [PATCH 140/181] Ruff for long lines... --- ietf/stats/tests.py | 322 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 262 insertions(+), 60 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 20aa097b950..0a5bd4a0b6a 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -46,11 +46,17 @@ def test_stats_index(self): MeetingFactory(type_id="ietf", number="124", date=timezone.now()) url = urlreverse(ietf.stats.views.stats_index) r = self.client.get(url) - self.assertEqual(r.status_code, 200, - msg=f"Unexpected status code {r.status_code} for URL {url}") + self.assertEqual( + r.status_code, + 200, + msg=f"Unexpected status code {r.status_code} for URL {url}", + ) def test_invalid_top_n(self): - url = urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "country"}) + url = urlreverse( + ietf.stats.views_authors.authors_timeline, + kwargs={"doc_type": "rfc", "stats_type": "country"}, + ) r = self.client.get(url + "?top=3") self.assertEqual(r.status_code, 200) self.assertContains(r, "There was an error in your request") @@ -59,7 +65,9 @@ def test_invalid_top_n(self): def test_document_stats(self): timeNow = timezone.now() yearNow = timeNow.year - time1960 = datetime.datetime(1960, 7, 26, 12, 13, 14, tzinfo=datetime.timezone.utc) + time1960 = datetime.datetime( + 1960, 7, 26, 12, 13, 14, tzinfo=datetime.timezone.utc + ) year1960 = time1960.year # Let's create some WGs @@ -77,12 +85,20 @@ def test_document_stats(self): DocEventFactory(type="published_rfc", doc=rfcBcpIAB1, time=time1960) rfcBcpIAB2 = WgRfcFactory(std_level_id="bcp", stream_id="iab") DocEventFactory(type="published_rfc", doc=rfcBcpIAB2, time=time1960) - wgDraftPsGroup1 = WgDraftFactory(name="draft-ietf-" + group1.acronym + "-random-thing", intended_std_level_id="ps", group=group1) + wgDraftPsGroup1 = WgDraftFactory( + name="draft-ietf-" + group1.acronym + "-random-thing", + intended_std_level_id="ps", + group=group1, + ) # Using NewRevisionDocEventFactory(doc=wgDraftPsGroup1, rev="01", time=time1960) does not work # as pub_date() always use the latest, i.e., more recent "new_revision" event, which is not what we want for this test. wgDraftPsGroup1.docevent_set.filter(type="new_revision").update(time=time1960) # The next 2 draft Documents have an auto-created "new_revision" event dated now, which is what we want for this test. - wgDraftPsGroup2 = WgDraftFactory(name="draft-ietf-" + group2.acronym + "-random-thing", intended_std_level_id="inf", group=group2) + wgDraftPsGroup2 = WgDraftFactory( + name="draft-ietf-" + group2.acronym + "-random-thing", + intended_std_level_id="inf", + group=group2, + ) # This one has no stream specified and no WG, so it will be counted as "Unspecified" in the stream statistics. draftExp = DocumentFactory(type_id="draft", intended_std_level_id="exp") @@ -94,7 +110,7 @@ def test_document_stats(self): if re.sub(r",?\s*\S+\s*$", "", affiliation) != "": affiliation = re.sub(r",?\s*\S+\s*$", "", affiliation) country = factory.Faker("country").evaluate(None, None, {"locale": None}) - # Later tests assume country is not BE/USA + # Later tests assume country is not BE/USA # Let also ensure that the country is a single word to avoid wrongly canonicalised names # Such as Brunei Darussalam or Lao People's Democratic Republic, which are not canonicalised in the tests below. while country in {"Belgium", "United States of America"} or " " in country: @@ -112,18 +128,41 @@ def test_document_stats(self): AffiliationMainNameFactory(main_name="Cisco") RfcAuthorFactory(document=rfcPsGroup1, affiliation=affiliation, country=country) - RfcAuthorFactory(document=rfcExpGroup1, affiliation=affiliation + ", LLC", country=country) - RfcAuthorFactory(document=rfcExpGroup1, affiliation=factory.Faker("company"), country=factory.Faker("country")) - DocumentAuthorFactory(document=wgDraftPsGroup1, affiliation=affiliation + " AG", country=country) - RfcAuthorFactory(document=rfcInfGroup2, affiliation="CiScO InC.", country=country) - DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation="CISCO corp.", country="belgique") - DocumentAuthorFactory(document=wgDraftPsGroup2, affiliation=affiliation, country=country) - RfcAuthorFactory(document=rfcBcpIAB1, affiliation="CiScO PTY LTD", country="UnItEd StAtEs") + RfcAuthorFactory( + document=rfcExpGroup1, affiliation=affiliation + ", LLC", country=country + ) + RfcAuthorFactory( + document=rfcExpGroup1, + affiliation=factory.Faker("company"), + country=factory.Faker("country"), + ) + DocumentAuthorFactory( + document=wgDraftPsGroup1, affiliation=affiliation + " AG", country=country + ) + RfcAuthorFactory( + document=rfcInfGroup2, affiliation="CiScO InC.", country=country + ) + DocumentAuthorFactory( + document=wgDraftPsGroup2, affiliation="CISCO corp.", country="belgique" + ) + DocumentAuthorFactory( + document=wgDraftPsGroup2, affiliation=affiliation, country=country + ) + RfcAuthorFactory( + document=rfcBcpIAB1, affiliation="CiScO PTY LTD", country="UnItEd StAtEs" + ) RfcAuthorFactory(document=rfcBcpIAB2, affiliation=affiliation, country="usa") - DocumentAuthorFactory(document=draftExp, affiliation=affiliation + ",inc", country="U.S.A.") + DocumentAuthorFactory( + document=draftExp, affiliation=affiliation + ",inc", country="U.S.A." + ) # Test#1 the documents specific statistics: for RFC about the level - r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "level"})) + r = self.client.get( + urlreverse( + ietf.stats.views_documents.documents_timeline, + kwargs={"doc_type": "rfc", "stats_type": "level"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Specific lines can be removed") self.assertContains(r, "Rfc Documents by Level") @@ -145,7 +184,12 @@ def test_document_stats(self): ) # Test#2 the documents specific statistics: for RFC about the WG - r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "rfc", "stats_type": "wg"})) + r = self.client.get( + urlreverse( + ietf.stats.views_documents.documents_timeline, + kwargs={"doc_type": "rfc", "stats_type": "wg"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Rfc Documents by Wg") # Extract the JSON embedded in the response @@ -160,14 +204,21 @@ def test_document_stats(self): ) # Test#3 the documents specific statistics: for drafts about the streams - r = self.client.get(urlreverse(ietf.stats.views_documents.documents_timeline, kwargs={"doc_type": "draft", "stats_type": "stream"})) + r = self.client.get( + urlreverse( + ietf.stats.views_documents.documents_timeline, + kwargs={"doc_type": "draft", "stats_type": "stream"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Documents by Stream") # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow], - msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]") + self.assertTrue( + chart_data["labels"] == [year1960, yearNow], + msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]", + ) self.assertTrue( any( ds["label"] == "IETF" and ds["data"] == [1, 1] @@ -183,18 +234,30 @@ def test_document_stats(self): # Test#4 the authors specific statistics: for all docs about the countries # With the current production data, there is an error message, so check for it - r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "all", "stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_authors.authors_timeline, + kwargs={"doc_type": "all", "stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Country information not (yet) available") # Test#4.bis the authors specific statistics: for all docs about the countries - r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "draft", "stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_authors.authors_timeline, + kwargs={"doc_type": "draft", "stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Authors by Country") # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow], - msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]") + self.assertTrue( + chart_data["labels"] == [year1960, yearNow], + msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]", + ) self.assertTrue( any( ds["label"] == "United States of America" and ds["data"] == [0, 1] @@ -215,7 +278,12 @@ def test_document_stats(self): ) # Test#5 the authors specific statistics: for all all rfcs about the affiliation - r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "rfc", "stats_type": "affiliation"})) + r = self.client.get( + urlreverse( + ietf.stats.views_authors.authors_timeline, + kwargs={"doc_type": "rfc", "stats_type": "affiliation"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Rfc Authors by Affiliation") # Extract the JSON embedded in the response @@ -224,7 +292,8 @@ def test_document_stats(self): self.assertTrue(chart_data["labels"] == [year1960, yearNow]) self.assertTrue( any( - ds["label"].casefold() == affiliation.casefold() and ds["data"] == [3, 0] + ds["label"].casefold() == affiliation.casefold() + and ds["data"] == [3, 0] for ds in chart_data["datasets"] ), ) @@ -242,7 +311,12 @@ def test_document_stats(self): ) # Test#6 the authors specific statistics: for all WG drafts about the country - r = self.client.get(urlreverse(ietf.stats.views_authors.authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_authors.authors_timeline, + kwargs={"doc_type": "wg-draft", "stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Wg-Draft Authors by Country") # Extract the JSON embedded in the response @@ -268,7 +342,12 @@ def test_document_stats(self): ) # Test#7 the authors specific statistics global - r = self.client.get(urlreverse(ietf.stats.views_authors.authors_total, kwargs={"doc_type": "draft", "stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_authors.authors_total, + kwargs={"doc_type": "draft", "stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Authors by Country") # Extract the JSON embedded in the response @@ -282,7 +361,12 @@ def test_document_stats(self): self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) # Test#8 the documents specific statistics global - r = self.client.get(urlreverse(ietf.stats.views_documents.documents_total, kwargs={"doc_type": "draft", "stats_type": "wg"})) + r = self.client.get( + urlreverse( + ietf.stats.views_documents.documents_total, + kwargs={"doc_type": "draft", "stats_type": "wg"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Draft Documents by Wg") # Extract the JSON embedded in the response @@ -295,43 +379,101 @@ def test_document_stats(self): def test_meeting_stats(self): meeting124 = MeetingFactory(type_id="ietf", number="124", date=timezone.now()) - meeting125 = MeetingFactory(type_id="ietf", number="125", date=timezone.now() + datetime.timedelta(days=120)) - RegistrationFactory.create_batch(15, meeting=meeting124, with_ticket={"attendance_type_id": "onsite"}, attended=True) - RegistrationFactory(meeting=meeting124, with_ticket={"attendance_type_id": "onsite"}, attended=False) - RegistrationFactory.create_batch(14, meeting=meeting124, with_ticket={"attendance_type_id": "remote"}, attended=True) - RegistrationFactory(meeting=meeting124, with_ticket={"attendance_type_id": "remote"}, attended=False) - RegistrationFactory.create_batch(15, meeting=meeting125, affiliation="Test LLC", with_ticket={"attendance_type_id": "remote"}, attended=False) - RegistrationFactory.create_batch(25, meeting=meeting125, affiliation="Example, Ltd", with_ticket={"attendance_type_id": "onsite"}, attended=False) + meeting125 = MeetingFactory( + type_id="ietf", + number="125", + date=timezone.now() + datetime.timedelta(days=120), + ) + RegistrationFactory.create_batch( + 15, + meeting=meeting124, + with_ticket={"attendance_type_id": "onsite"}, + attended=True, + ) + RegistrationFactory( + meeting=meeting124, + with_ticket={"attendance_type_id": "onsite"}, + attended=False, + ) + RegistrationFactory.create_batch( + 14, + meeting=meeting124, + with_ticket={"attendance_type_id": "remote"}, + attended=True, + ) + RegistrationFactory( + meeting=meeting124, + with_ticket={"attendance_type_id": "remote"}, + attended=False, + ) + RegistrationFactory.create_batch( + 15, + meeting=meeting125, + affiliation="Test LLC", + with_ticket={"attendance_type_id": "remote"}, + attended=False, + ) + RegistrationFactory.create_batch( + 25, + meeting=meeting125, + affiliation="Example, Ltd", + with_ticket={"attendance_type_id": "onsite"}, + attended=False, + ) # Create the various aliases ancilliary content AffiliationIgnoredEndingFactory(ending="llc\\.?") AffiliationIgnoredEndingFactory(ending="ltd\\.?") # Test the meeting specific statitistics per affiliation and per country - r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "affiliation"})) + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meeting_stats, + kwargs={"meeting_number": "124", "stats_type": "affiliation"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Affiliation (31 in total)") self.assertContains(r, "In Person Registrations by Affiliation (16 in total)") self.assertContains(r, "/stats/meetings/124/affiliation") self.assertContains(r, "/stats/meetings/125/affiliation") - r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "124", "stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meeting_stats, + kwargs={"meeting_number": "124", "stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "Total Registrations by Country (31 in total)") self.assertContains(r, "In Person Registrations by Country (16 in total)") self.assertContains(r, "/stats/meetings/124/country") self.assertContains(r, "/stats/meetings/125/country") # Test the meetings timeline per country - r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "country"})) + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": "country"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meetings/124/country") self.assertContains(r, "/stats/meetings/125/country") - self.assertContains(r, "This page provides a timeline of meeting registrations by country") + self.assertContains( + r, "This page provides a timeline of meeting registrations by country" + ) # Test the meetings timeline per affiliation - r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"})) + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": "affiliation"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meetings/124/affiliation") self.assertContains(r, "/stats/meetings/125/affiliation") - self.assertContains(r, "This page provides a timeline of meeting registrations by affiliation") + self.assertContains( + r, "This page provides a timeline of meeting registrations by affiliation" + ) # Extract the JSON embedded in the response pq = PyQuery(r.content) in_person_data = json.loads(pq.find("script#in-person-chart-data").text()) @@ -342,7 +484,13 @@ def test_meeting_stats(self): ), ) # Test for CSV download of the meeting stats per affiliation - r = self.client.get(urlreverse(ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "125", "stats_type": "affiliation"}) + "?download=total&top_n=5") + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meeting_stats, + kwargs={"meeting_number": "125", "stats_type": "affiliation"}, + ) + + "?download=total&top_n=5" + ) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") self.assertIn("attachment;", r["Content-Disposition"]) @@ -350,13 +498,26 @@ def test_meeting_stats(self): self.assertTrue(csv_lines[0].startswith('"affiliation","count"')) self.assertTrue(csv_lines[1].startswith('"Example",25')) # Test the global meetings timeline - r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "reg_type"})) + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": "reg_type"}, + ) + ) self.assertEqual(r.status_code, 200) self.assertContains(r, "/stats/meetings/124/country") self.assertContains(r, "/stats/meetings/125/country") - self.assertContains(r, "This page provides a timeline of meeting registrations.") + self.assertContains( + r, "This page provides a timeline of meeting registrations." + ) # Test for CSV download of the meetings timeline per affiliation - r = self.client.get(urlreverse(ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"}) + "?download=total&top_n=5") + r = self.client.get( + urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": "affiliation"}, + ) + + "?download=total&top_n=5" + ) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") self.assertIn("attachment;", r["Content-Disposition"]) @@ -399,8 +560,12 @@ def test_known_country_list(self): def test_review_stats(self): reviewer = PersonFactory() review_req = ReviewRequestFactory(state_id="assigned") - ReviewAssignmentFactory(review_request=review_req, state_id="assigned", reviewer=reviewer.email_set.first()) - RoleFactory(group=review_req.team,name_id="reviewer",person=reviewer) + ReviewAssignmentFactory( + review_request=review_req, + state_id="assigned", + reviewer=reviewer.email_set.first(), + ) + RoleFactory(group=review_req.team, name_id="reviewer", person=reviewer) ReviewerSettingsFactory(team=review_req.team, person=reviewer) PersonFactory(user__username="plain") @@ -409,7 +574,9 @@ def test_review_stats(self): login_testing_unauthorized(self, "secretary", url) - completion_url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "completion" }) + completion_url = urlreverse( + ietf.stats.views_reviews.review_stats, kwargs={"stats_type": "completion"} + ) r = self.client.get(url) self.assertEqual(r.status_code, 302) @@ -423,7 +590,9 @@ def test_review_stats(self): # check tabular self.client.login(username="secretary", password="secretary+password") for stats_type in ["completion", "results", "states"]: - url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": stats_type }) + url = urlreverse( + ietf.stats.views_reviews.review_stats, kwargs={"stats_type": stats_type} + ) r = self.client.get(url) self.assertEqual(r.status_code, 200) q = PyQuery(r.content) @@ -432,7 +601,9 @@ def test_review_stats(self): # check stacked chart - url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) + url = urlreverse( + ietf.stats.views_reviews.review_stats, kwargs={"stats_type": "time"} + ) url += f"?team={review_req.team.acronym}" r = self.client.get(url) self.assertEqual(r.status_code, 200) @@ -449,7 +620,9 @@ def test_review_stats(self): self.assertTrue(q("#stats-time-graph")) # check non-stacked chart - url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "time" }) + url = urlreverse( + ietf.stats.views_reviews.review_stats, kwargs={"stats_type": "time"} + ) url += f"?team={review_req.team.acronym}" url += "&completion=not_completed" r = self.client.get(url) @@ -458,12 +631,17 @@ def test_review_stats(self): # Ignore the timestamp elements, just check that the data is correct self.assertEqual(len(non_stacked_data), 1) self.assertEqual(non_stacked_data[0]["color"], "#3d22b3") - self.assertEqual(non_stacked_data[0]["data"], [[non_stacked_data[0]["data"][0][0], 0]]) + self.assertEqual( + non_stacked_data[0]["data"], [[non_stacked_data[0]["data"][0][0], 0]] + ) q = PyQuery(r.content) self.assertTrue(q("#stats-time-graph")) # check reviewer level - url = urlreverse(ietf.stats.views_reviews.review_stats, kwargs={ "stats_type": "completion", "acronym": review_req.team.acronym }) + url = urlreverse( + ietf.stats.views_reviews.review_stats, + kwargs={"stats_type": "completion", "acronym": review_req.team.acronym}, + ) r = self.client.get(url) self.assertEqual(r.status_code, 200) q = PyQuery(r.content) @@ -532,8 +710,20 @@ def test_summary_counts(self): submitter_email="submitter@example.com", ) sub.authors = [ - {"name": "Author One", "email": "author1@example.com", "affiliation": "", "country": "", "errors": []}, - {"name": "Author Two", "email": "author2@example.com", "affiliation": "", "country": "", "errors": []}, + { + "name": "Author One", + "email": "author1@example.com", + "affiliation": "", + "country": "", + "errors": [], + }, + { + "name": "Author Two", + "email": "author2@example.com", + "affiliation": "", + "country": "", + "errors": [], + }, ] sub.save() NewRevisionDocEventFactory( @@ -554,7 +744,9 @@ def test_summary_counts(self): doc=extra.doc, ) - url = urlreverse(ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)}) + url = urlreverse( + ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)} + ) r = self.client.get(url) self.assertEqual(r.status_code, 200) self.assertEqual(r.context["year"], year) @@ -574,11 +766,19 @@ def test_download_authors_csv(self): submission_date=datetime.date(year, 4, 1), ) sub.authors = [ - {"name": "Author", "email": "csvauthor@example.com", "affiliation": "", "country": "", "errors": []}, + { + "name": "Author", + "email": "csvauthor@example.com", + "affiliation": "", + "country": "", + "errors": [], + }, ] sub.save() - url = urlreverse(ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)}) + url = urlreverse( + ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)} + ) r = self.client.get(url, {"download": "authors"}) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") @@ -596,7 +796,9 @@ def test_download_submitters_csv(self): submitter_email="csvsubmitter@example.com", ) - url = urlreverse(ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)}) + url = urlreverse( + ietf.stats.views.annual_report_inputs, kwargs={"year": str(year)} + ) r = self.client.get(url, {"download": "submitters"}) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") From c9c84d805e14229f56156b08b17760640a073c9b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 18 Jul 2026 12:47:04 +0000 Subject: [PATCH 141/181] Ensure that "IAB" is not canonicalised in to "I" --- ietf/stats/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 9621023398b..32a9051a184 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -54,7 +54,9 @@ def compile_affiliation_ending_stripping_regexp(): parts.append(ending_re) - re_str = ",? *({}) *$".format("|".join(parts)) + # Build a regexp that matches any of the endings at the end of a string, + # optionally preceded by whitespace or commas. The regexp is case-insensitive. + re_str = "(?:, *| +)({}) *$".format("|".join(parts)) return re.compile(re_str, re.IGNORECASE) From 5d01907d241a20d951acc33124cdbc6fd5b51dcc Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 14:13:37 +0000 Subject: [PATCH 142/181] add stats/usedaffiliations to display all affiliation canonicalisation (temporary) --- ietf/stats/urls.py | 2 + ietf/stats/views.py | 35 ++++++++++++++++++ .../stats/used_affiliations_list.html | 37 +++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 ietf/templates/stats/used_affiliations_list.html diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index e5a8c7de36b..8e778477f31 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -15,8 +15,10 @@ url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_timeline), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/total/$", views_documents.documents_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), + url(r"^usedaffiliations/$", views.used_affiliations_list), url(r"^knowncountries/$", views.known_countries_list), url(r"^meetings/(?:(?Paffiliation|country|reg_type)/)?$", views_meetings.meetings_timeline), url(r"^meetings/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views_reviews.review_stats), + url(r"^usedaffiliations/$", views.used_affiliations_list), ] diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 6f31160b8b4..3e179b832c6 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -3,14 +3,18 @@ import csv import datetime +from encodings.aliases import aliases from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse +from django.db.models import Count from ietf.ietfauth.utils import role_required from ietf.meeting.helpers import get_current_ietf_meeting_num from ietf.name.models import CountryName +from ietf.doc.models import DocumentAuthor +from ietf.stats.utils import get_aliased_affiliations def stats_index(request): @@ -20,6 +24,37 @@ def stats_index(request): "current_meeting": current_meeting, }) +def used_affiliations_list(request): + """Render a list of used affiliations in the DocAuthor model with their aliases.""" + qs = ( + DocumentAuthor.objects + .filter(document__type_id="draft") + .values('affiliation') + .annotate(author_count=Count("person", distinct=True)) + ) + + affiliations = [] + for row in qs: + affiliation = row['affiliation'] + author_count = row['author_count'] + aliases_map = get_aliased_affiliations([affiliation]) + if affiliation in aliases_map: + if aliases_map[affiliation] != affiliation: + canonical = aliases_map[affiliation] + else: + canonical = '' # affiliation is already canonical + else: + canonical = '' # Nothing was found, affiliation is assumed to be canonical + affiliations.append({ + "affiliation": affiliation, + "author_count": author_count, + "canonical": canonical, + }) + + return render(request, "stats/used_affiliations_list.html", { + "affiliations": affiliations, + }) + def known_countries_list(request): """Render a list of known countries with their aliases.""" countries = CountryName.objects.prefetch_related("countryalias_set") diff --git a/ietf/templates/stats/used_affiliations_list.html b/ietf/templates/stats/used_affiliations_list.html new file mode 100644 index 00000000000..c468824baf3 --- /dev/null +++ b/ietf/templates/stats/used_affiliations_list.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% load origin %} +{% load ietf_filters static %} +{% block pagehead %} + +{% endblock %} +{% block content %} + {% origin %} +

      + {% block title %}Used Affiliations in IETF Drafts{% endblock %} +

      +

      + In case you think an affiliation mapping is wrong from the list, you can + file a ticket. +

      + + + + + + + + + + {% for a in affiliations %} + + + + + + {% endfor %} + +
      Affiliation in IETF DraftsNumber of OccurrencesCanonicalised Affiliation
      {{ a.affiliation }}{{ a.author_count }}{{ a.canonical }}
      + {% endblock %} + {% block js %} + + {% endblock %} \ No newline at end of file From 759f72aebd272840254f721d96340afa23deb1df Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 14:32:42 +0000 Subject: [PATCH 143/181] Stats static JS files are now prefixed by stats_ to avoid overwriting... --- ...colors-npm-0.3.1-7e93d38139-de4f87b5bb.zip | Bin 25077 -> 0 bytes ietf/static/js/document_timeline.js | 346 +++++++++++++----- ietf/static/js/stats_document_timeline.js | 89 +++++ ...ument_total.js => stats_document_total.js} | 0 .../js/{meeting_stats.js => stats_meeting.js} | 0 ..._timeline.js => stats_meeting_timeline.js} | 0 ietf/templates/stats/documents_timeline.html | 2 +- ietf/templates/stats/documents_total.html | 2 +- ietf/templates/stats/meeting_stats.html | 2 +- ietf/templates/stats/meetings_timeline.html | 2 +- package.json | 7 +- 11 files changed, 360 insertions(+), 90 deletions(-) delete mode 100644 .yarn/cache/chartjs-plugin-autocolors-npm-0.3.1-7e93d38139-de4f87b5bb.zip create mode 100644 ietf/static/js/stats_document_timeline.js rename ietf/static/js/{document_total.js => stats_document_total.js} (100%) rename ietf/static/js/{meeting_stats.js => stats_meeting.js} (100%) rename ietf/static/js/{meeting_timeline.js => stats_meeting_timeline.js} (100%) diff --git a/.yarn/cache/chartjs-plugin-autocolors-npm-0.3.1-7e93d38139-de4f87b5bb.zip b/.yarn/cache/chartjs-plugin-autocolors-npm-0.3.1-7e93d38139-de4f87b5bb.zip deleted file mode 100644 index 16cdf8839941d1f76a22c32a53035ce8e109d460..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25077 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 diff --git a/ietf/static/js/document_timeline.js b/ietf/static/js/document_timeline.js index 6683ab1b22a..d8532c36233 100644 --- a/ietf/static/js/document_timeline.js +++ b/ietf/static/js/document_timeline.js @@ -1,89 +1,269 @@ -// Copyright The IETF Trust 2026, All Rights Reserved -import Chart from 'chart.js/auto' -import zoomPlugin from 'chartjs-plugin-zoom' - -document.addEventListener('DOMContentLoaded', () => { - Chart.register(zoomPlugin) // enable the zoom plugin - - // ── Safely parse JSON data injected from Django view ── - const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; - const stackedLines = false ; - - function displayChart (id, data) { - const ctx = document.getElementById(id).getContext('2d') ; - return new Chart(ctx, { - type: 'line', - data: data, - options: { - responsive: true, - scales: { - y: { - stacked: stackedLines, - }, - x: { - title: { - display: true, - text: 'Year', - }, - }, - }, - plugins: { - legend: { - position: 'bottom', - labels: { - usePointStyle: true, - padding: 15, - font: { size: 12 }, - }, - }, - tooltip: { - backgroundColor: 'rgba(0,0,0,0.8)', - titleFont: { size: 14 }, - bodyFont: { size: 13 }, - callbacks: { - title: function(items) { - return `${items[0].label}`; - }, - label: function(context) { - return ` ${context.dataset.label}: ${context.parsed.y} documents`; - } - } - }, - zoom: { - zoom: { - wheel: { - enabled: true, - modifierKey: 'alt' // Alt + scroll wheel to zoom - }, // scroll to zoom - pinch: { - enabled: true - - }, // pinch on mobile - drag: { // drag to select range - enabled: true, - modifierKey: 'alt' - }, - mode: 'xy', // zoom X-axis and Y-axis - }, - pan: { - enabled: true, - modifierKey: 'alt', - mode: 'xy', // pan X-axis and Y-axis - }, - }, - } +"use strict"; + +var data; +var x_scale; +var bar_y; +var bar_height; +var y_label_width; +var x_axis; +var width; +var now; + +function expiration_date(d) { + return new Date(d.published.getTime() + 1000 * 60 * 60 * 24 * 185); +} + +function max(arr) { + return Math.max.apply(null, Object.keys(arr) + .map(function (e) { + return arr[e]; + })); +} + +function offset(d) { + if (bar_y[d.name] === undefined) { + var m = Object.keys(bar_y) + .length === 0 ? -bar_height : max(bar_y); + bar_y[d.name] = m + bar_height; + } + return "translate(" + x_scale(d.published) + ", " + bar_y[d.name] + ")"; +} + +function bar_width(d, i) { + // check for next rev of this name, or published RFC + for (i++; i < data.length; i++) { + if (data[i].name === d.name || data[i].name.match(/^rfc/)) { break; } + } + + var w; + if (d.name.match(/^draft-/)) { + // don't extend the bar past the expiration date of the document + w = i === data.length ? expiration_date(d) : data[i].published; + w = w > expiration_date(d) ? expiration_date(d) : w; + } else { + // documents other than drafts don't expire after 185 days + w = i === data.length ? new Date() : data[i].published; + } + return x_scale(w) - x_scale(d.published); +} + +function scale_x() { + // scale data to width of container minus y label width + x_scale = d3.scaleTime() + .domain([ + d3.min(data, function (d) { return d.published; }), + d3.max(data, function (d) { return d.published; }) + ]) + .range([y_label_width, width]); + + // if the end of the timeline is past the current date, show it + var tv = data.slice(0, -1); + now = Date.now(); + if (tv[tv.length - 1].published > now) { tv.push(new Date(now)); } + + // x label format + var format = d3.timeFormat("%b %Y"); + + // resort data by publication time to suppress some ticks if they are closer + // than 12px and have a different label from the one before; and don't add a + // tick for the final pseudo entry + tv = tv.sort(function (a, b) { return a.published - b.published; }) + .map(function (d, i, arr) { + if (i === 0 || + x_scale(d.published) > x_scale(arr[i - 1].published) + 12 && + format(d.published) !== format(arr[i - 1].published)) { + return d.published; } }) + .filter(function (d) { return d !== undefined; }); + + x_axis = d3.axisBottom(x_scale) + .tickValues(tv) + .tickFormat(function (d) { + if (d.getTime() < now) { return format(d); } + return "Now"; + }); +} + +function update_x_axis() { + d3.select("#doc-timeline svg .x.axis") + .call(x_axis) + .selectAll("text") + .style("text-anchor", "end") + .attr("transform", "translate(-14, 2) rotate(-60)"); +} + +function update_timeline() { + bar_y = {}; + scale_x(); + var chart = d3.select("#doc-timeline svg") + .attr("width", width); + // enter data (skip the last pseudo entry) + var bar = chart.selectAll("g") + .data(data.slice(0, -1)); + bar.attr("transform", offset) + .select("rect") + .attr("width", bar_width); + update_x_axis(); +} + +function draw_timeline() { + bar_height = parseFloat($("body") + .css("line-height")); + + var div = $("#doc-timeline"); + div.addClass("my-3"); + if (div.is(":empty")) { + div.append(""); } + var chart = d3.select("#doc-timeline svg") + .attr("width", width); - const documentsChart = displayChart('documentsChart', chartData) ; + var defs = chart.append("defs"); + var fade = defs.append("linearGradient") + .attr("id", "maskGradient"); + fade.append("stop") + .attr("offset", 0.9) + .attr("stop-color", "white") + .attr("stop-opacity", 1); + fade.append("stop") + .attr("offset", 1) + .attr("stop-color", "white") + .attr("stop-opacity", 0); + + var mask = defs.append("mask") + .attr("id", "fade") + .attr("maskContentUnits", "objectBoundingBox"); + mask.append("rect") + .attr("height", 1) + .attr("width", 1) + .attr("fill", "url(#maskGradient)"); + + var y_labels = data + .map(function (d) { return d.name; }) + .filter(function (val, i, self) { return self.indexOf(val) === i; }); + + // calculate the width of the widest y axis label by drawing them off-screen + // and measuring the bounding boxes + y_label_width = 10 + d3.max(y_labels, function (l) { + var lw; + var text = chart.append("text"); + text + .attr("class", "y axis") + .attr("transform", "translate(0, " + -bar_height + ")"); + text + .text(l) + .each(function () { + lw = this.getBBox() + .width; + }) + .remove() + .remove(); + return lw; + }); + + // update + update_timeline(); + + // re-order data by document name, for CSS background color alternation + var ndata = []; + y_labels.forEach(function (l) { + ndata = ndata.concat(data.filter(function (d) { + return d.name === + l; + })); + }); + data = ndata; + + // enter data (skip the last pseudo entry) + var bar = chart.selectAll("g") + .data(data.slice(0, -1)); + var g = bar.enter() + .append("g"); + g.attr("class", "bar") + .attr("transform", offset); + var a = g.append("a"); + a.attr("xlink:href", function (d) { return d.url; }); + var rect = a.append("rect") + .attr("height", bar_height) + .attr("width", bar_width) + .attr("class", "btn") + .attr("type", "button") + .attr("mask", function (d, i) { + // apply gradient if the document is a draft and expired + if (d.name.match(/^draft-/) && + bar_width(d, i) >= x_scale(expiration_date(d)) - + x_scale(d.published)) { + return "url(#fade)"; + } + }); + + var text = g.append("text"); + text.attr("x", 3) + .attr("y", bar_height / 2); + text.text(function (d) { return d.rev; }); + + var y_scale = d3.scalePoint() + .domain(y_labels) + .range([0, max(bar_y) + bar_height]); + + var y_axis = d3.axisLeft(y_scale) + .tickValues(y_labels); + + chart.append("g") + .attr("class", "x axis") + .attr("transform", "translate(0, " + (max(bar_y) + bar_height) + ")"); + update_x_axis(); + + var g = chart.append("g"); + g + .attr("class", "y axis") + .attr("transform", "translate(10, " + bar_height / 2 + ")"); + g + .call(y_axis) + .selectAll("text") + .style("text-anchor", "start"); + + // set height of timeline + var x_label_height; + d3.select(".x.axis") + .each(function () { + x_label_height = this.getBBox() + .height; + }); + chart.attr("height", max(bar_y) + bar_height + x_label_height); +} + +d3.json("doc.json") + .then(function (json) { + data = json.rev_history; + + if (data.length) { + // make js dates out of publication dates + data.forEach(function (d) { d.published = new Date(d.published); }); + + // add pseudo entry when the ID will expire + data.push({ + name: "", + rev: "", + published: expiration_date(data[data.length - 1]) + }); + + width = $("#doc-timeline") + .width(); + draw_timeline(); + } + }); - document.addEventListener('keydown', (event) => { - if (event.key === 'Escape') { - documentsChart.resetZoom() +$(window) + .on({ + resize: function () { + var g = $("#doc-timeline svg"); + g.remove(); + width = $("#doc-timeline") + .width(); + $("#doc-timeline") + .append(g); + update_timeline(); } - }) - document.getElementById('resetButton').addEventListener('click', () => { - documentsChart.resetZoom() - }) -}) + }); diff --git a/ietf/static/js/stats_document_timeline.js b/ietf/static/js/stats_document_timeline.js new file mode 100644 index 00000000000..6683ab1b22a --- /dev/null +++ b/ietf/static/js/stats_document_timeline.js @@ -0,0 +1,89 @@ +// Copyright The IETF Trust 2026, All Rights Reserved +import Chart from 'chart.js/auto' +import zoomPlugin from 'chartjs-plugin-zoom' + +document.addEventListener('DOMContentLoaded', () => { + Chart.register(zoomPlugin) // enable the zoom plugin + + // ── Safely parse JSON data injected from Django view ── + const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; + const stackedLines = false ; + + function displayChart (id, data) { + const ctx = document.getElementById(id).getContext('2d') ; + return new Chart(ctx, { + type: 'line', + data: data, + options: { + responsive: true, + scales: { + y: { + stacked: stackedLines, + }, + x: { + title: { + display: true, + text: 'Year', + }, + }, + }, + plugins: { + legend: { + position: 'bottom', + labels: { + usePointStyle: true, + padding: 15, + font: { size: 12 }, + }, + }, + tooltip: { + backgroundColor: 'rgba(0,0,0,0.8)', + titleFont: { size: 14 }, + bodyFont: { size: 13 }, + callbacks: { + title: function(items) { + return `${items[0].label}`; + }, + label: function(context) { + return ` ${context.dataset.label}: ${context.parsed.y} documents`; + } + } + }, + zoom: { + zoom: { + wheel: { + enabled: true, + modifierKey: 'alt' // Alt + scroll wheel to zoom + }, // scroll to zoom + pinch: { + enabled: true + + }, // pinch on mobile + drag: { // drag to select range + enabled: true, + modifierKey: 'alt' + }, + mode: 'xy', // zoom X-axis and Y-axis + }, + pan: { + enabled: true, + modifierKey: 'alt', + mode: 'xy', // pan X-axis and Y-axis + }, + }, + } + } + }) + } + + const documentsChart = displayChart('documentsChart', chartData) ; + + document.addEventListener('keydown', (event) => { + if (event.key === 'Escape') { + documentsChart.resetZoom() + } + }) + document.getElementById('resetButton').addEventListener('click', () => { + documentsChart.resetZoom() + }) +}) diff --git a/ietf/static/js/document_total.js b/ietf/static/js/stats_document_total.js similarity index 100% rename from ietf/static/js/document_total.js rename to ietf/static/js/stats_document_total.js diff --git a/ietf/static/js/meeting_stats.js b/ietf/static/js/stats_meeting.js similarity index 100% rename from ietf/static/js/meeting_stats.js rename to ietf/static/js/stats_meeting.js diff --git a/ietf/static/js/meeting_timeline.js b/ietf/static/js/stats_meeting_timeline.js similarity index 100% rename from ietf/static/js/meeting_timeline.js rename to ietf/static/js/stats_meeting_timeline.js diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 07ed6e3e4a3..31c0687f955 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -4,7 +4,7 @@ {% load ietf_filters static django_bootstrap5 %} {% block js %} {{ chart_data|json_script:"chart_data" }} - + {% endblock %} {% block content %} {% origin %} diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index a974f1a1b7f..0e0d0b17687 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -5,7 +5,7 @@ {% block js %} {{ chart_data|json_script:"chart_data" }} {{ objects|json_script:"objects" }} - + {% endblock %} {% block content %} {% origin %} diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index 65468417e5d..69508c3b82f 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -5,7 +5,7 @@ {% block js %} {{ total_chart_data|json_script:"total-chart-data" }} {{ in_person_chart_data|json_script:"in-person-chart-data" }} - + {% endblock %} {% block content %} {% origin %} diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 317c5fc44f4..45ecc928ab4 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -6,7 +6,7 @@ {{ total_chart_data|json_script:"total-chart-data" }} {{ in_person_chart_data|json_script:"in-person-chart-data" }} {{ stats_type|json_script:"stats-type-data" }} - + {% endblock %} {% block content %} {% origin %} diff --git a/package.json b/package.json index 664264c2e70..8a7bf41f269 100644 --- a/package.json +++ b/package.json @@ -129,7 +129,6 @@ "ietf/static/js/document_html.js", "ietf/static/js/document_relations.js", "ietf/static/js/document_timeline.js", - "ietf/static/js/document_total.js", "ietf/static/js/draft-submit.js", "ietf/static/js/edit-meeting-schedule.js", "ietf/static/js/edit-meeting-timeslots-and-misc-sessions.js", @@ -150,8 +149,10 @@ "ietf/static/js/manage-community-list.js", "ietf/static/js/manage-review-requests.js", "ietf/static/js/meeting-interim-request.js", - "ietf/static/js/meeting_stats.js", - "ietf/static/js/meeting_timeline.js", + "ietf/static/js/stats_document_timeline.js", + "ietf/static/js/stats_document_total.js", + "ietf/static/js/stats_meeting.js", + "ietf/static/js/stats_meeting_timeline.js", "ietf/static/js/moment.js", "ietf/static/js/navbar-doc-search.js", "ietf/static/js/password_strength.js", From f2a77772428bbcf7efae08900484679d74ce0a00 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 14:42:25 +0000 Subject: [PATCH 144/181] Merge from current main branch --- .gitignore | 1 + k8s/settings_local.py | 66 ++++++++++++++++++++++++------------------- 2 files changed, 38 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 84bc800e3b8..ccc7a46b08d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_store datatracker.sublime-project datatracker.sublime-workspace +/.claude /.coverage /.factoryboy_random_state /.mypy_cache diff --git a/k8s/settings_local.py b/k8s/settings_local.py index 5e49bd5cbc4..e12599e18e9 100644 --- a/k8s/settings_local.py +++ b/k8s/settings_local.py @@ -50,37 +50,19 @@ def _multiline_to_list(s): else: raise RuntimeError("DATATRACKER_YOUTUBE_API_KEY must be set") -_GITHUB_BACKUP_API_KEY = os.environ.get("DATATRACKER_GITHUB_BACKUP_API_KEY", None) -if _GITHUB_BACKUP_API_KEY is not None: - GITHUB_BACKUP_API_KEY = _GITHUB_BACKUP_API_KEY -else: - raise RuntimeError("DATATRACKER_GITHUB_BACKUP_API_KEY must be set") - -_API_KEY_TYPE = os.environ.get("DATATRACKER_API_KEY_TYPE", None) -if _API_KEY_TYPE is not None: - API_KEY_TYPE = _API_KEY_TYPE -else: - raise RuntimeError("DATATRACKER_API_KEY_TYPE must be set") - -_API_PUBLIC_KEY_PEM_B64 = os.environ.get("DATATRACKER_API_PUBLIC_KEY_PEM_B64", None) -if _API_PUBLIC_KEY_PEM_B64 is not None: - API_PUBLIC_KEY_PEM = b64decode(_API_PUBLIC_KEY_PEM_B64) -else: - raise RuntimeError("DATATRACKER_API_PUBLIC_KEY_PEM_B64 must be set") - -_API_PRIVATE_KEY_PEM_B64 = os.environ.get("DATATRACKER_API_PRIVATE_KEY_PEM_B64", None) -if _API_PRIVATE_KEY_PEM_B64 is not None: - API_PRIVATE_KEY_PEM = b64decode(_API_PRIVATE_KEY_PEM_B64) -else: - raise RuntimeError("DATATRACKER_API_PRIVATE_KEY_PEM_B64 must be set") - -_RED_PRECOMPUTER_TRIGGER_RETRY_DELAY = os.environ.get("DATATRACKER_RED_PRECOMPUTER_TRIGGER_RETRY_DELAY", None) +_RED_PRECOMPUTER_TRIGGER_RETRY_DELAY = os.environ.get( + "DATATRACKER_RED_PRECOMPUTER_TRIGGER_RETRY_DELAY", None +) if _RED_PRECOMPUTER_TRIGGER_RETRY_DELAY is not None: - RED_PRECOMPUTER_TRIGGER_RETRY_DELAY = _RED_PRECOMPUTER_TRIGGER_RETRY_DELAY -_RED_PRECOMPUTER_TRIGGER_MAX_RETRIES = os.environ.get("DATATRACKER_RED_PRECOMPUTER_TRIGGER_MAX_RETRIES", None) + RED_PRECOMPUTER_TRIGGER_RETRY_DELAY = _RED_PRECOMPUTER_TRIGGER_RETRY_DELAY +_RED_PRECOMPUTER_TRIGGER_MAX_RETRIES = os.environ.get( + "DATATRACKER_RED_PRECOMPUTER_TRIGGER_MAX_RETRIES", None +) if _RED_PRECOMPUTER_TRIGGER_MAX_RETRIES is not None: RED_PRECOMPUTER_TRIGGER_MAX_RETRIES = _RED_PRECOMPUTER_TRIGGER_MAX_RETRIES -_TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL = os.environ.get("DATATRACKER_TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL", None) +_TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL = os.environ.get( + "DATATRACKER_TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL", None +) if _TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL is not None: TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL = _TRIGGER_RED_PRECOMPUTE_MULTIPLE_URL @@ -211,6 +193,9 @@ def _multiline_to_list(s): "client_id": _MEETECHO_CLIENT_ID, "client_secret": _MEETECHO_CLIENT_SECRET, "request_timeout": 3.01, # python-requests doc recommend slightly > a multiple of 3 seconds + "slides_notify_time": int( + os.environ.get("DATATRACKER_MEETECHO_SLIDES_NOTIFY_TIME_MINUTES", "15") + ), } else: raise RuntimeError( @@ -396,6 +381,7 @@ def _multiline_to_list(s): "and DATATRACKER_BLOB_STORE_SECRET_KEY must be set" ) _blob_store_bucket_prefix = os.environ.get("DATATRACKER_BLOB_STORE_BUCKET_PREFIX", "") +_blob_store_bucket_suffix = os.environ.get("DATATRACKER_BLOB_STORE_BUCKET_SUFFIX", "") _blob_store_enable_profiling = ( os.environ.get("DATATRACKER_BLOB_STORE_ENABLE_PROFILING", "false").lower() == "true" ) @@ -415,6 +401,9 @@ def _multiline_to_list(s): if storagename in ["staging"]: continue replica_storagename = f"r2-{storagename}" + adjusted_bucket_name = ( + _blob_store_bucket_prefix + storagename + _blob_store_bucket_suffix + ).strip() STORAGES[replica_storagename] = { "BACKEND": "ietf.doc.storage.MetadataS3Storage", "OPTIONS": dict( @@ -431,7 +420,7 @@ def _multiline_to_list(s): retries={"total_max_attempts": _blob_store_max_attempts}, ), verify=False, - bucket_name=f"{_blob_store_bucket_prefix}{storagename}".strip(), + bucket_name=adjusted_bucket_name, ietf_log_blob_timing=_blob_store_enable_profiling, ), } @@ -500,3 +489,22 @@ def _multiline_to_list(s): os.environ.get("DATATRACKER_SEARCHINDEX_TASK_MAX_RETRIES", "12") ), } + +# Errata system api configuration +ERRATA_METADATA_NOTIFICATION_API_KEY = os.environ.get( + "DATATRACKER_ERRATA_METADATA_NOTIFICATION_API_KEY", None +) +if ERRATA_METADATA_NOTIFICATION_API_KEY is not None: + ERRATA_METADATA_NOTIFICATION_URL = os.environ.get( + "DATATRACKER_ERRATA_METADATA_NOTIFICATION_URL", None + ) + if ERRATA_METADATA_NOTIFICATION_URL is None: + raise RuntimeError( + "DATATRACKER_ERRATA_METADATA_NOTIFICATION_URL must be set if " + "DATATRACKER_ERRATA_METADATA_NOTIFICATION_API_KEY is provided" + ) + +# name (with path) of errata.json in the red bucket +ERRATA_JSON_BLOB_NAME = os.environ.get( + "DATATRACKER_ERRATA_JSON_BLOB_NAME", "other/errata.json" +) From 92f4ce9e7bdff1cf1db5ee1fc55fcc2f79f76ea1 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 14:50:13 +0000 Subject: [PATCH 145/181] Merging to main branch - bis --- .pnp.cjs | 19634 ---------------------------------------------------- yarn.lock | 8328 ---------------------- 2 files changed, 27962 deletions(-) delete mode 100644 .pnp.cjs delete mode 100644 yarn.lock diff --git a/.pnp.cjs b/.pnp.cjs deleted file mode 100644 index 3791c2dd32f..00000000000 --- a/.pnp.cjs +++ /dev/null @@ -1,19634 +0,0 @@ -#!/usr/bin/env node -/* eslint-disable */ - -try { - Object.freeze({}).detectStrictMode = true; -} catch (error) { - throw new Error(`The whole PnP file got strict-mode-ified, which is known to break (Emscripten libraries aren't strict mode). This usually happens when the file goes through Babel.`); -} - -function $$SETUP_STATE(hydrateRuntimeState, basePath) { - return hydrateRuntimeState(JSON.parse('{\ - "__info": [\ - "This file is automatically generated. Do not touch it, or risk",\ - "your modifications being lost. We also recommend you not to read",\ - "it either without using the @yarnpkg/pnp package, as the data layout",\ - "is entirely unspecified and WILL change from a version to another."\ - ],\ - "dependencyTreeRoots": [\ - {\ - "name": "root-workspace-0b6124",\ - "reference": "workspace:."\ - }\ - ],\ - "enableTopLevelFallback": true,\ - "ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\ - "fallbackExclusionList": [\ - ["root-workspace-0b6124", ["workspace:."]]\ - ],\ - "fallbackPool": [\ - ],\ - "packageRegistryData": [\ - [null, [\ - [null, {\ - "packageLocation": "./",\ - "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@kurkle/color", "npm:0.3.1"],\ - ["@parcel/optimizer-data-url", "npm:2.12.0"],\ - ["@parcel/transformer-inline-string", "npm:2.12.0"],\ - ["@parcel/transformer-sass", "npm:2.12.0"],\ - ["@popperjs/core", "npm:2.11.8"],\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ - ["@twuni/emojify", "npm:1.0.2"],\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ - ["@vue/language-plugin-pug", "npm:2.0.7"],\ - ["bootstrap", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.3"],\ - ["bootstrap-icons", "npm:1.11.3"],\ - ["browser-fs-access", "npm:0.35.0"],\ - ["browserlist", "npm:1.0.1"],\ - ["c8", "npm:9.1.0"],\ - ["caniuse-lite", "npm:1.0.30001603"],\ - ["chart.js", "npm:4.5.1"],\ - ["chartjs-plugin-zoom", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0"],\ - ["d3", "npm:7.9.0"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-config-standard", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0"],\ - ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ - ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ - ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.24.0"],\ - ["file-saver", "npm:2.0.5"],\ - ["highcharts", "npm:11.4.0"],\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.18.1"],\ - ["ical.js", "npm:1.5.0"],\ - ["jquery", "npm:3.7.1"],\ - ["jquery-migrate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1"],\ - ["js-cookie", "npm:3.0.5"],\ - ["list.js", "npm:2.3.1"],\ - ["lodash", "npm:4.17.21"],\ - ["lodash-es", "npm:4.17.21"],\ - ["luxon", "npm:3.4.4"],\ - ["moment", "npm:2.30.1"],\ - ["moment-timezone", "npm:0.5.45"],\ - ["ms", "npm:2.1.3"],\ - ["murmurhash-js", "npm:1.0.0"],\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.38.1"],\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.12.0"],\ - ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ - ["pinia-plugin-persist", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0"],\ - ["pug", "npm:3.0.2"],\ - ["sass", "npm:1.72.0"],\ - ["seedrandom", "npm:3.0.5"],\ - ["select2", "npm:4.1.0-rc.0"],\ - ["select2-bootstrap-5-theme", "npm:1.3.0"],\ - ["send", "npm:0.18.0"],\ - ["shepherd.js", "npm:11.2.0"],\ - ["slugify", "npm:1.6.6"],\ - ["sortablejs", "npm:1.15.2"],\ - ["vanillajs-datepicker", "npm:1.3.4"],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.3.0"],\ - ["zxcvbn", "npm:4.4.2"]\ - ],\ - "linkType": "SOFT"\ - }]\ - ]],\ - ["@aashutoshrathi/word-wrap", [\ - ["npm:1.2.6", {\ - "packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-ada901b9e7.zip/node_modules/@aashutoshrathi/word-wrap/",\ - "packageDependencies": [\ - ["@aashutoshrathi/word-wrap", "npm:1.2.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/code-frame", [\ - ["npm:7.16.7", {\ - "packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.16.7-093eb9e124-db2f7faa31.zip/node_modules/@babel/code-frame/",\ - "packageDependencies": [\ - ["@babel/code-frame", "npm:7.16.7"],\ - ["@babel/highlight", "npm:7.17.12"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/helper-validator-identifier", [\ - ["npm:7.16.7", {\ - "packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip/node_modules/@babel/helper-validator-identifier/",\ - "packageDependencies": [\ - ["@babel/helper-validator-identifier", "npm:7.16.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/highlight", [\ - ["npm:7.17.12", {\ - "packageLocation": "./.yarn/cache/@babel-highlight-npm-7.17.12-73223b881e-841a11aa35.zip/node_modules/@babel/highlight/",\ - "packageDependencies": [\ - ["@babel/highlight", "npm:7.17.12"],\ - ["@babel/helper-validator-identifier", "npm:7.16.7"],\ - ["chalk", "npm:2.4.2"],\ - ["js-tokens", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/parser", [\ - ["npm:7.18.4", {\ - "packageLocation": "./.yarn/cache/@babel-parser-npm-7.18.4-63fd355e07-e05b2dc720.zip/node_modules/@babel/parser/",\ - "packageDependencies": [\ - ["@babel/parser", "npm:7.18.4"],\ - ["@babel/types", "npm:7.18.4"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.23.9", {\ - "packageLocation": "./.yarn/cache/@babel-parser-npm-7.23.9-720a0b56cb-e7cd4960ac.zip/node_modules/@babel/parser/",\ - "packageDependencies": [\ - ["@babel/parser", "npm:7.23.9"],\ - ["@babel/types", "npm:7.18.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/runtime", [\ - ["npm:7.23.2", {\ - "packageLocation": "./.yarn/cache/@babel-runtime-npm-7.23.2-d013d6cf7e-6c4df4839e.zip/node_modules/@babel/runtime/",\ - "packageDependencies": [\ - ["@babel/runtime", "npm:7.23.2"],\ - ["regenerator-runtime", "npm:0.14.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/types", [\ - ["npm:7.18.4", {\ - "packageLocation": "./.yarn/cache/@babel-types-npm-7.18.4-758c2695f8-85df59beb9.zip/node_modules/@babel/types/",\ - "packageDependencies": [\ - ["@babel/types", "npm:7.18.4"],\ - ["@babel/helper-validator-identifier", "npm:7.16.7"],\ - ["to-fast-properties", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@bcoe/v8-coverage", [\ - ["npm:0.2.3", {\ - "packageLocation": "./.yarn/cache/@bcoe-v8-coverage-npm-0.2.3-9e27b3c57e-850f930553.zip/node_modules/@bcoe/v8-coverage/",\ - "packageDependencies": [\ - ["@bcoe/v8-coverage", "npm:0.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@css-render/plugin-bem", [\ - ["npm:0.15.12", {\ - "packageLocation": "./.yarn/cache/@css-render-plugin-bem-npm-0.15.12-bf8b43dc1f-9fa7ddd62b.zip/node_modules/@css-render/plugin-bem/",\ - "packageDependencies": [\ - ["@css-render/plugin-bem", "npm:0.15.12"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-plugin-bem-virtual-105b1b654b/0/cache/@css-render-plugin-bem-npm-0.15.12-bf8b43dc1f-9fa7ddd62b.zip/node_modules/@css-render/plugin-bem/",\ - "packageDependencies": [\ - ["@css-render/plugin-bem", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12"],\ - ["@types/css-render", null],\ - ["css-render", "npm:0.15.12"]\ - ],\ - "packagePeers": [\ - "@types/css-render",\ - "css-render"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@css-render/vue3-ssr", [\ - ["npm:0.15.10", {\ - "packageLocation": "./.yarn/cache/@css-render-vue3-ssr-npm-0.15.10-b8526cc313-7977e0c440.zip/node_modules/@css-render/vue3-ssr/",\ - "packageDependencies": [\ - ["@css-render/vue3-ssr", "npm:0.15.10"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:0.15.12", {\ - "packageLocation": "./.yarn/cache/@css-render-vue3-ssr-npm-0.15.12-a130f4db3a-a5505ae161.zip/node_modules/@css-render/vue3-ssr/",\ - "packageDependencies": [\ - ["@css-render/vue3-ssr", "npm:0.15.12"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:2366be83ef58a728ebb5a5e9ed4600f4465f98b2a844262fcfbe89415361d5d5f9e964ec3b9a72d6a5004f37c1024d017c65e67473dd9cc39cd61f51768c65e6#npm:0.15.10", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-8cb63dbe2e/0/cache/@css-render-vue3-ssr-npm-0.15.10-b8526cc313-7977e0c440.zip/node_modules/@css-render/vue3-ssr/",\ - "packageDependencies": [\ - ["@css-render/vue3-ssr", "virtual:2366be83ef58a728ebb5a5e9ed4600f4465f98b2a844262fcfbe89415361d5d5f9e964ec3b9a72d6a5004f37c1024d017c65e67473dd9cc39cd61f51768c65e6#npm:0.15.10"],\ - ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12", {\ - "packageLocation": "./.yarn/__virtual__/@css-render-vue3-ssr-virtual-18db73fb22/0/cache/@css-render-vue3-ssr-npm-0.15.12-a130f4db3a-a5505ae161.zip/node_modules/@css-render/vue3-ssr/",\ - "packageDependencies": [\ - ["@css-render/vue3-ssr", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12"],\ - ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@emotion/hash", [\ - ["npm:0.8.0", {\ - "packageLocation": "./.yarn/cache/@emotion-hash-npm-0.8.0-0104f4bbf3-4b35d88a97.zip/node_modules/@emotion/hash/",\ - "packageDependencies": [\ - ["@emotion/hash", "npm:0.8.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/android-arm", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-android-arm-npm-0.18.20-a30c33e9ed/node_modules/@esbuild/android-arm/",\ - "packageDependencies": [\ - ["@esbuild/android-arm", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/android-arm64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-android-arm64-npm-0.18.20-fd4fb45ae7/node_modules/@esbuild/android-arm64/",\ - "packageDependencies": [\ - ["@esbuild/android-arm64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/android-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-android-x64-npm-0.18.20-22b610e3f4/node_modules/@esbuild/android-x64/",\ - "packageDependencies": [\ - ["@esbuild/android-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/darwin-arm64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-darwin-arm64-npm-0.18.20-00b3504077/node_modules/@esbuild/darwin-arm64/",\ - "packageDependencies": [\ - ["@esbuild/darwin-arm64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/darwin-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-darwin-x64-npm-0.18.20-767fe27d1b/node_modules/@esbuild/darwin-x64/",\ - "packageDependencies": [\ - ["@esbuild/darwin-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/freebsd-arm64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-freebsd-arm64-npm-0.18.20-797e8c8987/node_modules/@esbuild/freebsd-arm64/",\ - "packageDependencies": [\ - ["@esbuild/freebsd-arm64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/freebsd-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-freebsd-x64-npm-0.18.20-f7563ff3dd/node_modules/@esbuild/freebsd-x64/",\ - "packageDependencies": [\ - ["@esbuild/freebsd-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-arm", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-arm-npm-0.18.20-06b400b09e/node_modules/@esbuild/linux-arm/",\ - "packageDependencies": [\ - ["@esbuild/linux-arm", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-arm64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-arm64-npm-0.18.20-7b48b328fe/node_modules/@esbuild/linux-arm64/",\ - "packageDependencies": [\ - ["@esbuild/linux-arm64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-ia32", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-ia32-npm-0.18.20-2f5a035f9e/node_modules/@esbuild/linux-ia32/",\ - "packageDependencies": [\ - ["@esbuild/linux-ia32", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-loong64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-loong64-npm-0.18.20-e91b93ee90/node_modules/@esbuild/linux-loong64/",\ - "packageDependencies": [\ - ["@esbuild/linux-loong64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-mips64el", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-mips64el-npm-0.18.20-a5e9429f2a/node_modules/@esbuild/linux-mips64el/",\ - "packageDependencies": [\ - ["@esbuild/linux-mips64el", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-ppc64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-ppc64-npm-0.18.20-218f398134/node_modules/@esbuild/linux-ppc64/",\ - "packageDependencies": [\ - ["@esbuild/linux-ppc64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-riscv64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-riscv64-npm-0.18.20-6a2972f753/node_modules/@esbuild/linux-riscv64/",\ - "packageDependencies": [\ - ["@esbuild/linux-riscv64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-s390x", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-s390x-npm-0.18.20-ff9d596142/node_modules/@esbuild/linux-s390x/",\ - "packageDependencies": [\ - ["@esbuild/linux-s390x", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/linux-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-linux-x64-npm-0.18.20-de8e99b449/node_modules/@esbuild/linux-x64/",\ - "packageDependencies": [\ - ["@esbuild/linux-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/netbsd-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-netbsd-x64-npm-0.18.20-39b460150f/node_modules/@esbuild/netbsd-x64/",\ - "packageDependencies": [\ - ["@esbuild/netbsd-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/openbsd-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-openbsd-x64-npm-0.18.20-90ab921595/node_modules/@esbuild/openbsd-x64/",\ - "packageDependencies": [\ - ["@esbuild/openbsd-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/sunos-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-sunos-x64-npm-0.18.20-d18b46b343/node_modules/@esbuild/sunos-x64/",\ - "packageDependencies": [\ - ["@esbuild/sunos-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/win32-arm64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-win32-arm64-npm-0.18.20-a58fe6c6a3/node_modules/@esbuild/win32-arm64/",\ - "packageDependencies": [\ - ["@esbuild/win32-arm64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/win32-ia32", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-win32-ia32-npm-0.18.20-d7ee926338/node_modules/@esbuild/win32-ia32/",\ - "packageDependencies": [\ - ["@esbuild/win32-ia32", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@esbuild/win32-x64", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/@esbuild-win32-x64-npm-0.18.20-37a9ab2bda/node_modules/@esbuild/win32-x64/",\ - "packageDependencies": [\ - ["@esbuild/win32-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@eslint-community/eslint-utils", [\ - ["npm:4.4.0", {\ - "packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ - "packageDependencies": [\ - ["@eslint-community/eslint-utils", "npm:4.4.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-1c7da85a1a/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ - "packageDependencies": [\ - ["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-visitor-keys", "npm:3.3.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@eslint-community/regexpp", [\ - ["npm:4.10.0", {\ - "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-2a6e345429.zip/node_modules/@eslint-community/regexpp/",\ - "packageDependencies": [\ - ["@eslint-community/regexpp", "npm:4.10.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.8.0", {\ - "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.8.0-92ece47e3d-601e6d033d.zip/node_modules/@eslint-community/regexpp/",\ - "packageDependencies": [\ - ["@eslint-community/regexpp", "npm:4.8.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@eslint/eslintrc", [\ - ["npm:2.1.4", {\ - "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-10957c7592.zip/node_modules/@eslint/eslintrc/",\ - "packageDependencies": [\ - ["@eslint/eslintrc", "npm:2.1.4"],\ - ["ajv", "npm:6.12.6"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["espree", "npm:9.6.1"],\ - ["globals", "npm:13.19.0"],\ - ["ignore", "npm:5.2.0"],\ - ["import-fresh", "npm:3.3.0"],\ - ["js-yaml", "npm:4.1.0"],\ - ["minimatch", "npm:3.1.2"],\ - ["strip-json-comments", "npm:3.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@eslint/js", [\ - ["npm:8.57.0", {\ - "packageLocation": "./.yarn/cache/@eslint-js-npm-8.57.0-00ead3710a-315dc65b0e.zip/node_modules/@eslint/js/",\ - "packageDependencies": [\ - ["@eslint/js", "npm:8.57.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@floating-ui/core", [\ - ["npm:1.4.1", {\ - "packageLocation": "./.yarn/cache/@floating-ui-core-npm-1.4.1-fe89c45d92-be4ab864fe.zip/node_modules/@floating-ui/core/",\ - "packageDependencies": [\ - ["@floating-ui/core", "npm:1.4.1"],\ - ["@floating-ui/utils", "npm:0.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@floating-ui/dom", [\ - ["npm:1.5.2", {\ - "packageLocation": "./.yarn/cache/@floating-ui-dom-npm-1.5.2-f1b8ca0c30-3c71eed50b.zip/node_modules/@floating-ui/dom/",\ - "packageDependencies": [\ - ["@floating-ui/dom", "npm:1.5.2"],\ - ["@floating-ui/core", "npm:1.4.1"],\ - ["@floating-ui/utils", "npm:0.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@floating-ui/utils", [\ - ["npm:0.1.2", {\ - "packageLocation": "./.yarn/cache/@floating-ui-utils-npm-0.1.2-22eefe56f0-3e29fd3c69.zip/node_modules/@floating-ui/utils/",\ - "packageDependencies": [\ - ["@floating-ui/utils", "npm:0.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/bootstrap5", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-bootstrap5-npm-6.1.11-6e0fbf281a-a0c3b94346.zip/node_modules/@fullcalendar/bootstrap5/",\ - "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-bootstrap5-virtual-50942c1c6f/0/cache/@fullcalendar-bootstrap5-npm-6.1.11-6e0fbf281a-a0c3b94346.zip/node_modules/@fullcalendar/bootstrap5/",\ - "packageDependencies": [\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/core", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-core-npm-6.1.11-ae049c8ace-0078a6f96b.zip/node_modules/@fullcalendar/core/",\ - "packageDependencies": [\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["preact", "npm:10.12.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/daygrid", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-daygrid-npm-6.1.11-2187ca1b8f-6eb5606de5.zip/node_modules/@fullcalendar/daygrid/",\ - "packageDependencies": [\ - ["@fullcalendar/daygrid", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-daygrid-virtual-b91d1ffe14/0/cache/@fullcalendar-daygrid-npm-6.1.11-2187ca1b8f-6eb5606de5.zip/node_modules/@fullcalendar/daygrid/",\ - "packageDependencies": [\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/icalendar", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-icalendar-npm-6.1.11-73807e790d-4e6eff15a8.zip/node_modules/@fullcalendar/icalendar/",\ - "packageDependencies": [\ - ["@fullcalendar/icalendar", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-icalendar-virtual-636a290006/0/cache/@fullcalendar-icalendar-npm-6.1.11-73807e790d-4e6eff15a8.zip/node_modules/@fullcalendar/icalendar/",\ - "packageDependencies": [\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null],\ - ["@types/ical.js", null],\ - ["ical.js", "npm:1.5.0"]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core",\ - "@types/ical.js",\ - "ical.js"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/interaction", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-interaction-npm-6.1.11-39630596c7-c67d4cfa0b.zip/node_modules/@fullcalendar/interaction/",\ - "packageDependencies": [\ - ["@fullcalendar/interaction", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-interaction-virtual-3ebf8b0646/0/cache/@fullcalendar-interaction-npm-6.1.11-39630596c7-c67d4cfa0b.zip/node_modules/@fullcalendar/interaction/",\ - "packageDependencies": [\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/list", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-list-npm-6.1.11-8f1846f302-84a8cd6e63.zip/node_modules/@fullcalendar/list/",\ - "packageDependencies": [\ - ["@fullcalendar/list", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-list-virtual-1c555df506/0/cache/@fullcalendar-list-npm-6.1.11-8f1846f302-84a8cd6e63.zip/node_modules/@fullcalendar/list/",\ - "packageDependencies": [\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/luxon3", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-luxon3-npm-6.1.11-3e90656a71-8e7f45aab2.zip/node_modules/@fullcalendar/luxon3/",\ - "packageDependencies": [\ - ["@fullcalendar/luxon3", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-luxon3-virtual-38643019c2/0/cache/@fullcalendar-luxon3-npm-6.1.11-3e90656a71-8e7f45aab2.zip/node_modules/@fullcalendar/luxon3/",\ - "packageDependencies": [\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null],\ - ["@types/luxon", null],\ - ["luxon", "npm:3.4.4"]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core",\ - "@types/luxon",\ - "luxon"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/timegrid", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-timegrid-npm-6.1.11-1d43455bfd-4a11e6dd90.zip/node_modules/@fullcalendar/timegrid/",\ - "packageDependencies": [\ - ["@fullcalendar/timegrid", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-timegrid-virtual-5e951d78a6/0/cache/@fullcalendar-timegrid-npm-6.1.11-1d43455bfd-4a11e6dd90.zip/node_modules/@fullcalendar/timegrid/",\ - "packageDependencies": [\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@types/fullcalendar__core", null]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@fullcalendar/vue3", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/@fullcalendar-vue3-npm-6.1.11-f6b8b48da4-5891a596e9.zip/node_modules/@fullcalendar/vue3/",\ - "packageDependencies": [\ - ["@fullcalendar/vue3", "npm:6.1.11"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11", {\ - "packageLocation": "./.yarn/__virtual__/@fullcalendar-vue3-virtual-cb317bc2d1/0/cache/@fullcalendar-vue3-npm-6.1.11-f6b8b48da4-5891a596e9.zip/node_modules/@fullcalendar/vue3/",\ - "packageDependencies": [\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@types/fullcalendar__core", null],\ - ["@types/vue", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@fullcalendar/core",\ - "@types/fullcalendar__core",\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@gar/promisify", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/@gar-promisify-npm-1.1.3-ac1a325862-4059f790e2.zip/node_modules/@gar/promisify/",\ - "packageDependencies": [\ - ["@gar/promisify", "npm:1.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@html-validate/stylish", [\ - ["npm:4.1.0", {\ - "packageLocation": "./.yarn/cache/@html-validate-stylish-npm-4.1.0-aba0cf2d6c-4af90db4f9.zip/node_modules/@html-validate/stylish/",\ - "packageDependencies": [\ - ["@html-validate/stylish", "npm:4.1.0"],\ - ["kleur", "npm:4.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@humanwhocodes/config-array", [\ - ["npm:0.11.14", {\ - "packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.11.14-94a02fcc87-861ccce9ea.zip/node_modules/@humanwhocodes/config-array/",\ - "packageDependencies": [\ - ["@humanwhocodes/config-array", "npm:0.11.14"],\ - ["@humanwhocodes/object-schema", "npm:2.0.2"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["minimatch", "npm:3.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@humanwhocodes/module-importer", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-0fd22007db.zip/node_modules/@humanwhocodes/module-importer/",\ - "packageDependencies": [\ - ["@humanwhocodes/module-importer", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@humanwhocodes/object-schema", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-2.0.2-77b42018f9-2fc1150336.zip/node_modules/@humanwhocodes/object-schema/",\ - "packageDependencies": [\ - ["@humanwhocodes/object-schema", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@isaacs/cliui", [\ - ["npm:8.0.2", {\ - "packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-4a473b9b32.zip/node_modules/@isaacs/cliui/",\ - "packageDependencies": [\ - ["@isaacs/cliui", "npm:8.0.2"],\ - ["string-width", "npm:5.1.2"],\ - ["string-width-cjs", [\ - "string-width",\ - "npm:4.2.3"\ - ]],\ - ["strip-ansi", "npm:7.0.1"],\ - ["strip-ansi-cjs", [\ - "strip-ansi",\ - "npm:6.0.1"\ - ]],\ - ["wrap-ansi", "npm:8.1.0"],\ - ["wrap-ansi-cjs", [\ - "wrap-ansi",\ - "npm:7.0.0"\ - ]]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@istanbuljs/schema", [\ - ["npm:0.1.3", {\ - "packageLocation": "./.yarn/cache/@istanbuljs-schema-npm-0.1.3-466bd3eaaa-5282759d96.zip/node_modules/@istanbuljs/schema/",\ - "packageDependencies": [\ - ["@istanbuljs/schema", "npm:0.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@jridgewell/resolve-uri", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/@jridgewell-resolve-uri-npm-3.1.0-6ff2351e61-b5ceaaf9a1.zip/node_modules/@jridgewell/resolve-uri/",\ - "packageDependencies": [\ - ["@jridgewell/resolve-uri", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@jridgewell/sourcemap-codec", [\ - ["npm:1.4.14", {\ - "packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.14-f5f0630788-61100637b6.zip/node_modules/@jridgewell/sourcemap-codec/",\ - "packageDependencies": [\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.4.15", {\ - "packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.15-a055fb62cf-b881c7e503.zip/node_modules/@jridgewell/sourcemap-codec/",\ - "packageDependencies": [\ - ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@jridgewell/trace-mapping", [\ - ["npm:0.3.14", {\ - "packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.14-c78fcccfdf-b9537b9630.zip/node_modules/@jridgewell/trace-mapping/",\ - "packageDependencies": [\ - ["@jridgewell/trace-mapping", "npm:0.3.14"],\ - ["@jridgewell/resolve-uri", "npm:3.1.0"],\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@juggle/resize-observer", [\ - ["npm:3.3.1", {\ - "packageLocation": "./.yarn/cache/@juggle-resize-observer-npm-3.3.1-f36d80a4f0-ddabc40442.zip/node_modules/@juggle/resize-observer/",\ - "packageDependencies": [\ - ["@juggle/resize-observer", "npm:3.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@kurkle/color", [\ - ["npm:0.3.1", {\ - "packageLocation": "./.yarn/cache/@kurkle-color-npm-0.3.1-174f3d038c-e6be5c081b.zip/node_modules/@kurkle/color/",\ - "packageDependencies": [\ - ["@kurkle/color", "npm:0.3.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.3.4", {\ - "packageLocation": "./.yarn/cache/@kurkle-color-npm-0.3.4-fbd637031f-b95c6abe02.zip/node_modules/@kurkle/color/",\ - "packageDependencies": [\ - ["@kurkle/color", "npm:0.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lezer/common", [\ - ["npm:0.15.12", {\ - "packageLocation": "./.yarn/cache/@lezer-common-npm-0.15.12-62017272b0-dae6581618.zip/node_modules/@lezer/common/",\ - "packageDependencies": [\ - ["@lezer/common", "npm:0.15.12"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lezer/lr", [\ - ["npm:0.15.8", {\ - "packageLocation": "./.yarn/cache/@lezer-lr-npm-0.15.8-8c481c39cd-e741225d6a.zip/node_modules/@lezer/lr/",\ - "packageDependencies": [\ - ["@lezer/lr", "npm:0.15.8"],\ - ["@lezer/common", "npm:0.15.12"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-darwin-arm64", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-darwin-arm64-npm-2.5.2-ba0aa88b93/node_modules/@lmdb/lmdb-darwin-arm64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-darwin-arm64", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-darwin-arm64-npm-2.8.5-a9ab00615c/node_modules/@lmdb/lmdb-darwin-arm64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-darwin-arm64", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-darwin-x64", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-darwin-x64-npm-2.5.2-237e0d1098/node_modules/@lmdb/lmdb-darwin-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-darwin-x64", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-darwin-x64-npm-2.8.5-080b8c9329/node_modules/@lmdb/lmdb-darwin-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-darwin-x64", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-linux-arm", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-arm-npm-2.5.2-173e06820e/node_modules/@lmdb/lmdb-linux-arm/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-arm", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-arm-npm-2.8.5-081004004c/node_modules/@lmdb/lmdb-linux-arm/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-arm", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-linux-arm64", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-arm64-npm-2.5.2-29a971842e/node_modules/@lmdb/lmdb-linux-arm64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-arm64", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-arm64-npm-2.8.5-9dfda9f24f/node_modules/@lmdb/lmdb-linux-arm64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-arm64", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-linux-x64", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-x64-npm-2.5.2-ca846c82b3/node_modules/@lmdb/lmdb-linux-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-x64", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-linux-x64-npm-2.8.5-0f668ba9a7/node_modules/@lmdb/lmdb-linux-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-linux-x64", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@lmdb/lmdb-win32-x64", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-win32-x64-npm-2.5.2-b6c28f5123/node_modules/@lmdb/lmdb-win32-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-win32-x64", "npm:2.5.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/@lmdb-lmdb-win32-x64-npm-2.8.5-3702de4edb/node_modules/@lmdb/lmdb-win32-x64/",\ - "packageDependencies": [\ - ["@lmdb/lmdb-win32-x64", "npm:2.8.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@mischnic/json-sourcemap", [\ - ["npm:0.1.0", {\ - "packageLocation": "./.yarn/cache/@mischnic-json-sourcemap-npm-0.1.0-4b4af227b1-a30eda9eb0.zip/node_modules/@mischnic/json-sourcemap/",\ - "packageDependencies": [\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@lezer/common", "npm:0.15.12"],\ - ["@lezer/lr", "npm:0.15.8"],\ - ["json5", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-darwin-arm64", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-darwin-arm64-npm-2.0.2-be5249cbca/node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-darwin-arm64", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-darwin-arm64-npm-3.0.2-18ac236cc4/node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-darwin-arm64", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-darwin-x64", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-darwin-x64-npm-2.0.2-aaad2bbcdd/node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-darwin-x64", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-darwin-x64-npm-3.0.2-39dd07082a/node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-darwin-x64", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-arm-npm-2.0.2-bfe5ad30af/node_modules/@msgpackr-extract/msgpackr-extract-linux-arm/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-arm", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-arm-npm-3.0.2-808a652e0b/node_modules/@msgpackr-extract/msgpackr-extract-linux-arm/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-arm", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm64", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-arm64-npm-2.0.2-73fc5b0175/node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-arm64", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-arm64-npm-3.0.2-cfbf50d4c6/node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-arm64", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-linux-x64", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-x64-npm-2.0.2-028869dc6b/node_modules/@msgpackr-extract/msgpackr-extract-linux-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-x64", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-linux-x64-npm-3.0.2-262fca760d/node_modules/@msgpackr-extract/msgpackr-extract-linux-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-linux-x64", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@msgpackr-extract/msgpackr-extract-win32-x64", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-win32-x64-npm-2.0.2-c54981be26/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-win32-x64", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/@msgpackr-extract-msgpackr-extract-win32-x64-npm-3.0.2-c627beab89/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/",\ - "packageDependencies": [\ - ["@msgpackr-extract/msgpackr-extract-win32-x64", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@nodelib/fs.scandir", [\ - ["npm:2.1.5", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-a970d595bd.zip/node_modules/@nodelib/fs.scandir/",\ - "packageDependencies": [\ - ["@nodelib/fs.scandir", "npm:2.1.5"],\ - ["@nodelib/fs.stat", "npm:2.0.5"],\ - ["run-parallel", "npm:1.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@nodelib/fs.stat", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\ - "packageDependencies": [\ - ["@nodelib/fs.stat", "npm:2.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@nodelib/fs.walk", [\ - ["npm:1.2.8", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-190c643f15.zip/node_modules/@nodelib/fs.walk/",\ - "packageDependencies": [\ - ["@nodelib/fs.walk", "npm:1.2.8"],\ - ["@nodelib/fs.scandir", "npm:2.1.5"],\ - ["fastq", "npm:1.13.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@npmcli/fs", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/@npmcli-fs-npm-2.1.0-3b106d08bc-6ec6d678af.zip/node_modules/@npmcli/fs/",\ - "packageDependencies": [\ - ["@npmcli/fs", "npm:2.1.0"],\ - ["@gar/promisify", "npm:1.1.3"],\ - ["semver", "npm:7.3.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@npmcli/move-file", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/@npmcli-move-file-npm-2.0.0-d8bd1d35d2-1388777b50.zip/node_modules/@npmcli/move-file/",\ - "packageDependencies": [\ - ["@npmcli/move-file", "npm:2.0.0"],\ - ["mkdirp", "npm:1.0.4"],\ - ["rimraf", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/bundler-default", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-bundler-default-npm-2.12.0-9ba57d919c-f211a76f55.zip/node_modules/@parcel/bundler-default/",\ - "packageDependencies": [\ - ["@parcel/bundler-default", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/graph", "npm:3.2.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/cache", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-cache-npm-2.12.0-3389909f2c-a45e799809.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-cache-npm-2.6.2-7c97030a45-e7b540fe10.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "npm:2.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-a2e9499dbb/0/cache/@parcel-cache-npm-2.12.0-3389909f2c-a45e799809.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["lmdb", "npm:2.8.5"]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-f3b3d44508/0/cache/@parcel-cache-npm-2.6.2-7c97030a45-e7b540fe10.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@types/parcel__core", null],\ - ["lmdb", "npm:2.5.2"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-cache-virtual-6f5cc88243/0/cache/@parcel-cache-npm-2.12.0-3389909f2c-a45e799809.zip/node_modules/@parcel/cache/",\ - "packageDependencies": [\ - ["@parcel/cache", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["lmdb", "npm:2.8.5"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/codeframe", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-codeframe-npm-2.12.0-aa8027940e-265c4d7ebe.zip/node_modules/@parcel/codeframe/",\ - "packageDependencies": [\ - ["@parcel/codeframe", "npm:2.12.0"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-codeframe-npm-2.6.2-39f0ef1504-3253f42b90.zip/node_modules/@parcel/codeframe/",\ - "packageDependencies": [\ - ["@parcel/codeframe", "npm:2.6.2"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/compressor-raw", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-compressor-raw-npm-2.12.0-19f313c172-16c56704f3.zip/node_modules/@parcel/compressor-raw/",\ - "packageDependencies": [\ - ["@parcel/compressor-raw", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/config-default", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-config-default-npm-2.12.0-aefd3c699e-72877c5dc4.zip/node_modules/@parcel/config-default/",\ - "packageDependencies": [\ - ["@parcel/config-default", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:fdd74b573cf769bcde15fb47c39fbe0d73f59838182900fd59d3d43b2214ea01b1d45084fb49d0c192fc3e8a49adea5782afcb7fe14e09c63bedaf09f4939e35#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-config-default-virtual-284acdc258/0/cache/@parcel-config-default-npm-2.12.0-aefd3c699e-72877c5dc4.zip/node_modules/@parcel/config-default/",\ - "packageDependencies": [\ - ["@parcel/config-default", "virtual:fdd74b573cf769bcde15fb47c39fbe0d73f59838182900fd59d3d43b2214ea01b1d45084fb49d0c192fc3e8a49adea5782afcb7fe14e09c63bedaf09f4939e35#npm:2.12.0"],\ - ["@parcel/bundler-default", "npm:2.12.0"],\ - ["@parcel/compressor-raw", "npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/namer-default", "npm:2.12.0"],\ - ["@parcel/optimizer-css", "npm:2.12.0"],\ - ["@parcel/optimizer-htmlnano", "npm:2.12.0"],\ - ["@parcel/optimizer-image", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/optimizer-svgo", "npm:2.12.0"],\ - ["@parcel/optimizer-swc", "npm:2.12.0"],\ - ["@parcel/packager-css", "npm:2.12.0"],\ - ["@parcel/packager-html", "npm:2.12.0"],\ - ["@parcel/packager-js", "npm:2.12.0"],\ - ["@parcel/packager-raw", "npm:2.12.0"],\ - ["@parcel/packager-svg", "npm:2.12.0"],\ - ["@parcel/packager-wasm", "npm:2.12.0"],\ - ["@parcel/reporter-dev-server", "npm:2.12.0"],\ - ["@parcel/resolver-default", "npm:2.12.0"],\ - ["@parcel/runtime-browser-hmr", "npm:2.12.0"],\ - ["@parcel/runtime-js", "npm:2.12.0"],\ - ["@parcel/runtime-react-refresh", "npm:2.12.0"],\ - ["@parcel/runtime-service-worker", "npm:2.12.0"],\ - ["@parcel/transformer-babel", "npm:2.12.0"],\ - ["@parcel/transformer-css", "npm:2.12.0"],\ - ["@parcel/transformer-html", "npm:2.12.0"],\ - ["@parcel/transformer-image", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/transformer-js", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/transformer-json", "npm:2.12.0"],\ - ["@parcel/transformer-postcss", "npm:2.12.0"],\ - ["@parcel/transformer-posthtml", "npm:2.12.0"],\ - ["@parcel/transformer-raw", "npm:2.12.0"],\ - ["@parcel/transformer-react-refresh-wrap", "npm:2.12.0"],\ - ["@parcel/transformer-svg", "npm:2.12.0"],\ - ["@types/parcel__core", null]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/core", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-core-npm-2.12.0-8f08b883d4-5bf6746308.zip/node_modules/@parcel/core/",\ - "packageDependencies": [\ - ["@parcel/core", "npm:2.12.0"],\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@parcel/cache", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/events", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/graph", "npm:3.2.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/package-manager", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/profiler", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["abortcontroller-polyfill", "npm:1.7.3"],\ - ["base-x", "npm:3.0.9"],\ - ["browserslist", "npm:4.20.3"],\ - ["clone", "npm:2.1.2"],\ - ["dotenv", "npm:7.0.0"],\ - ["dotenv-expand", "npm:5.1.0"],\ - ["json5", "npm:2.2.1"],\ - ["msgpackr", "npm:1.10.1"],\ - ["nullthrows", "npm:1.1.1"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-core-npm-2.6.2-f04091cfa7-f550cbbd5e.zip/node_modules/@parcel/core/",\ - "packageDependencies": [\ - ["@parcel/core", "npm:2.6.2"],\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@parcel/cache", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/events", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/graph", "npm:2.6.2"],\ - ["@parcel/hash", "npm:2.6.2"],\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/package-manager", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/plugin", "npm:2.6.2"],\ - ["@parcel/source-map", "npm:2.0.5"],\ - ["@parcel/types", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@parcel/workers", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["abortcontroller-polyfill", "npm:1.7.3"],\ - ["base-x", "npm:3.0.9"],\ - ["browserslist", "npm:4.20.3"],\ - ["clone", "npm:2.1.2"],\ - ["dotenv", "npm:7.0.0"],\ - ["dotenv-expand", "npm:5.1.0"],\ - ["json5", "npm:2.2.1"],\ - ["msgpackr", "npm:1.6.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["semver", "npm:5.7.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/diagnostic", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-diagnostic-npm-2.12.0-6e89ddad28-a4b918c1a0.zip/node_modules/@parcel/diagnostic/",\ - "packageDependencies": [\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-diagnostic-npm-2.6.2-ad66c9d460-c20c7b12c4.zip/node_modules/@parcel/diagnostic/",\ - "packageDependencies": [\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/events", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-events-npm-2.12.0-e6eff18c8c-136a8a2921.zip/node_modules/@parcel/events/",\ - "packageDependencies": [\ - ["@parcel/events", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-events-npm-2.6.2-c1dc15633e-272898db0c.zip/node_modules/@parcel/events/",\ - "packageDependencies": [\ - ["@parcel/events", "npm:2.6.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/fs", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-fs-npm-2.12.0-3c46842e62-43d454d55d.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-fs-npm-2.6.2-1670f601e3-b5e324d93b.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "npm:2.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-762e5c5add/0/cache/@parcel-fs-npm-2.12.0-3c46842e62-43d454d55d.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/watcher", "npm:2.0.7"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@types/parcel__core", null]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-cfea854226/0/cache/@parcel-fs-npm-2.6.2-1670f601e3-b5e324d93b.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/fs-search", "npm:2.6.2"],\ - ["@parcel/types", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@parcel/watcher", "npm:2.0.5"],\ - ["@parcel/workers", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@types/parcel__core", null]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-fs-virtual-ae7dde1116/0/cache/@parcel-fs-npm-2.12.0-3c46842e62-43d454d55d.zip/node_modules/@parcel/fs/",\ - "packageDependencies": [\ - ["@parcel/fs", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/watcher", "npm:2.0.7"],\ - ["@parcel/workers", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@types/parcel__core", null]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/fs-search", [\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/unplugged/@parcel-fs-search-npm-2.6.2-babb086a28/node_modules/@parcel/fs-search/",\ - "packageDependencies": [\ - ["@parcel/fs-search", "npm:2.6.2"],\ - ["detect-libc", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/graph", [\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-graph-npm-2.6.2-21a1647d01-74490009e8.zip/node_modules/@parcel/graph/",\ - "packageDependencies": [\ - ["@parcel/graph", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.2.0", {\ - "packageLocation": "./.yarn/cache/@parcel-graph-npm-3.2.0-92821d4289-b4d31624fc.zip/node_modules/@parcel/graph/",\ - "packageDependencies": [\ - ["@parcel/graph", "npm:3.2.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/hash", [\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/unplugged/@parcel-hash-npm-2.6.2-b2130ce130/node_modules/@parcel/hash/",\ - "packageDependencies": [\ - ["@parcel/hash", "npm:2.6.2"],\ - ["detect-libc", "npm:1.0.3"],\ - ["xxhash-wasm", "npm:0.4.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/logger", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-logger-npm-2.12.0-7d2f85a906-be3fe9d9ea.zip/node_modules/@parcel/logger/",\ - "packageDependencies": [\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/events", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-logger-npm-2.6.2-d7fe563ebb-d3536408da.zip/node_modules/@parcel/logger/",\ - "packageDependencies": [\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/events", "npm:2.6.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/markdown-ansi", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-markdown-ansi-npm-2.12.0-6b0fe453df-850ee665d9.zip/node_modules/@parcel/markdown-ansi/",\ - "packageDependencies": [\ - ["@parcel/markdown-ansi", "npm:2.12.0"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-markdown-ansi-npm-2.6.2-16ce118d53-742c64c5db.zip/node_modules/@parcel/markdown-ansi/",\ - "packageDependencies": [\ - ["@parcel/markdown-ansi", "npm:2.6.2"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/namer-default", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-namer-default-npm-2.12.0-28980cfd47-dc92ec0945.zip/node_modules/@parcel/namer-default/",\ - "packageDependencies": [\ - ["@parcel/namer-default", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/node-resolver-core", [\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/@parcel-node-resolver-core-npm-3.3.0-53804df663-acc3721678.zip/node_modules/@parcel/node-resolver-core/",\ - "packageDependencies": [\ - ["@parcel/node-resolver-core", "npm:3.3.0"],\ - ["@mischnic/json-sourcemap", "npm:0.1.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-css", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-css-npm-2.12.0-f95bd4d060-abcdf58c29.zip/node_modules/@parcel/optimizer-css/",\ - "packageDependencies": [\ - ["@parcel/optimizer-css", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["browserslist", "npm:4.20.3"],\ - ["lightningcss", "npm:1.17.1"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-data-url", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-data-url-npm-2.12.0-dad3731170-0397293961.zip/node_modules/@parcel/optimizer-data-url/",\ - "packageDependencies": [\ - ["@parcel/optimizer-data-url", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["isbinaryfile", "npm:4.0.10"],\ - ["mime", "npm:2.6.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-htmlnano", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-htmlnano-npm-2.12.0-cdd2835c12-64e571f56f.zip/node_modules/@parcel/optimizer-htmlnano/",\ - "packageDependencies": [\ - ["@parcel/optimizer-htmlnano", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["htmlnano", "virtual:cdd2835c1202e86fad55b2266578ff3755267672440481af37bdfff670fd205f561469a10385c20d1ff403af7fad49006bc71ffff21d12592a8ebd0c8be79c0c#npm:2.0.2"],\ - ["nullthrows", "npm:1.1.1"],\ - ["posthtml", "npm:0.16.6"],\ - ["svgo", "npm:2.8.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-image", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-image-npm-2.12.0-4cbc56f72d-7d28379bf1.zip/node_modules/@parcel/optimizer-image/",\ - "packageDependencies": [\ - ["@parcel/optimizer-image", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-optimizer-image-virtual-8c3b1760b5/0/cache/@parcel-optimizer-image-npm-2.12.0-4cbc56f72d-7d28379bf1.zip/node_modules/@parcel/optimizer-image/",\ - "packageDependencies": [\ - ["@parcel/optimizer-image", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@types/parcel__core", null]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-svgo", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-svgo-npm-2.12.0-08c0f1b17f-d3a4d2de9f.zip/node_modules/@parcel/optimizer-svgo/",\ - "packageDependencies": [\ - ["@parcel/optimizer-svgo", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["svgo", "npm:2.8.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/optimizer-swc", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-optimizer-swc-npm-2.12.0-fb535e4283-0b7fdf3df1.zip/node_modules/@parcel/optimizer-swc/",\ - "packageDependencies": [\ - ["@parcel/optimizer-swc", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@swc/core", "virtual:5f8211ac5fe0096c8679c8fc747f0917af84ce168460ce1b592cb42613ababf55139691f5b329cd10e1e2b99af39861401c7b9633ed396447c506b02a80144b0#npm:1.3.62"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/package-manager", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-package-manager-npm-2.12.0-fc90aacf70-a517e9efe1.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-package-manager-npm-2.6.2-41edbfb7da-0c7dfce953.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "npm:2.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-8612c9adea/0/cache/@parcel-package-manager-npm-2.12.0-fc90aacf70-a517e9efe1.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/node-resolver-core", "npm:3.3.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@swc/core", "virtual:5f8211ac5fe0096c8679c8fc747f0917af84ce168460ce1b592cb42613ababf55139691f5b329cd10e1e2b99af39861401c7b9633ed396447c506b02a80144b0#npm:1.3.62"],\ - ["@types/parcel__core", null],\ - ["semver", "npm:7.5.4"]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-423c759aca/0/cache/@parcel-package-manager-npm-2.6.2-41edbfb7da-0c7dfce953.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/types", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@parcel/workers", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@types/parcel__core", null],\ - ["semver", "npm:5.7.1"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-package-manager-virtual-5f8211ac5f/0/cache/@parcel-package-manager-npm-2.12.0-fc90aacf70-a517e9efe1.zip/node_modules/@parcel/package-manager/",\ - "packageDependencies": [\ - ["@parcel/package-manager", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/node-resolver-core", "npm:3.3.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@swc/core", "virtual:5f8211ac5fe0096c8679c8fc747f0917af84ce168460ce1b592cb42613ababf55139691f5b329cd10e1e2b99af39861401c7b9633ed396447c506b02a80144b0#npm:1.3.62"],\ - ["@types/parcel__core", null],\ - ["semver", "npm:7.5.4"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-css", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-css-npm-2.12.0-b1c27a8323-684aaa1d85.zip/node_modules/@parcel/packager-css/",\ - "packageDependencies": [\ - ["@parcel/packager-css", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["lightningcss", "npm:1.17.1"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-html", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-html-npm-2.12.0-ad361b1265-ee558ad616.zip/node_modules/@parcel/packager-html/",\ - "packageDependencies": [\ - ["@parcel/packager-html", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["posthtml", "npm:0.16.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-js", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-js-npm-2.12.0-093e3200cd-2189b7ff15.zip/node_modules/@parcel/packager-js/",\ - "packageDependencies": [\ - ["@parcel/packager-js", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["globals", "npm:13.15.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-raw", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-raw-npm-2.12.0-b7f15635f8-39ce2fc7ae.zip/node_modules/@parcel/packager-raw/",\ - "packageDependencies": [\ - ["@parcel/packager-raw", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-svg", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-svg-npm-2.12.0-fa921ce522-436ac9ea39.zip/node_modules/@parcel/packager-svg/",\ - "packageDependencies": [\ - ["@parcel/packager-svg", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["posthtml", "npm:0.16.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/packager-wasm", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-packager-wasm-npm-2.12.0-ec551a9e29-a10e1cd988.zip/node_modules/@parcel/packager-wasm/",\ - "packageDependencies": [\ - ["@parcel/packager-wasm", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/plugin", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-plugin-npm-2.12.0-947dec85d3-0b52f1dd06.zip/node_modules/@parcel/plugin/",\ - "packageDependencies": [\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-plugin-npm-2.6.2-d1ea2dda44-23da0fa372.zip/node_modules/@parcel/plugin/",\ - "packageDependencies": [\ - ["@parcel/plugin", "npm:2.6.2"],\ - ["@parcel/types", "npm:2.6.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/profiler", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-profiler-npm-2.12.0-69720a23ab-b683b74e10.zip/node_modules/@parcel/profiler/",\ - "packageDependencies": [\ - ["@parcel/profiler", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/events", "npm:2.12.0"],\ - ["chrome-trace-event", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/reporter-cli", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-cli-npm-2.12.0-b3e4c5fe19-8cc524fa15.zip/node_modules/@parcel/reporter-cli/",\ - "packageDependencies": [\ - ["@parcel/reporter-cli", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["chalk", "npm:4.1.2"],\ - ["term-size", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/reporter-dev-server", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-dev-server-npm-2.12.0-aed1d2c68c-43957b4656.zip/node_modules/@parcel/reporter-dev-server/",\ - "packageDependencies": [\ - ["@parcel/reporter-dev-server", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/reporter-tracer", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-reporter-tracer-npm-2.12.0-5cec9ab2d5-24cddacd19.zip/node_modules/@parcel/reporter-tracer/",\ - "packageDependencies": [\ - ["@parcel/reporter-tracer", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["chrome-trace-event", "npm:1.0.3"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/resolver-default", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-resolver-default-npm-2.12.0-8da790891c-f3652eea09.zip/node_modules/@parcel/resolver-default/",\ - "packageDependencies": [\ - ["@parcel/resolver-default", "npm:2.12.0"],\ - ["@parcel/node-resolver-core", "npm:3.3.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/runtime-browser-hmr", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-browser-hmr-npm-2.12.0-6f0da66673-bbba57ecee.zip/node_modules/@parcel/runtime-browser-hmr/",\ - "packageDependencies": [\ - ["@parcel/runtime-browser-hmr", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/runtime-js", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-js-npm-2.12.0-e21acc0f42-6afa3e7eb2.zip/node_modules/@parcel/runtime-js/",\ - "packageDependencies": [\ - ["@parcel/runtime-js", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/runtime-react-refresh", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-react-refresh-npm-2.12.0-2b09615691-41aee9a874.zip/node_modules/@parcel/runtime-react-refresh/",\ - "packageDependencies": [\ - ["@parcel/runtime-react-refresh", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["react-error-overlay", "npm:6.0.9"],\ - ["react-refresh", "npm:0.9.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/runtime-service-worker", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-runtime-service-worker-npm-2.12.0-7d227ff0bf-c71246428e.zip/node_modules/@parcel/runtime-service-worker/",\ - "packageDependencies": [\ - ["@parcel/runtime-service-worker", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/rust", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/unplugged/@parcel-rust-npm-2.12.0-0cf943f3e5/node_modules/@parcel/rust/",\ - "packageDependencies": [\ - ["@parcel/rust", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/source-map", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/unplugged/@parcel-source-map-npm-2.0.5-2444d2c092/node_modules/@parcel/source-map/",\ - "packageDependencies": [\ - ["@parcel/source-map", "npm:2.0.5"],\ - ["detect-libc", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/unplugged/@parcel-source-map-npm-2.1.1-09e4d79db4/node_modules/@parcel/source-map/",\ - "packageDependencies": [\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["detect-libc", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-babel", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-babel-npm-2.12.0-953de52432-b8c457c0be.zip/node_modules/@parcel/transformer-babel/",\ - "packageDependencies": [\ - ["@parcel/transformer-babel", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["browserslist", "npm:4.20.3"],\ - ["json5", "npm:2.2.1"],\ - ["nullthrows", "npm:1.1.1"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-css", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-css-npm-2.12.0-24ddc31ae3-3a6f16321d.zip/node_modules/@parcel/transformer-css/",\ - "packageDependencies": [\ - ["@parcel/transformer-css", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["browserslist", "npm:4.20.3"],\ - ["lightningcss", "npm:1.17.1"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-html", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-html-npm-2.12.0-be2b9ee40c-7fcfac62ca.zip/node_modules/@parcel/transformer-html/",\ - "packageDependencies": [\ - ["@parcel/transformer-html", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["posthtml", "npm:0.16.6"],\ - ["posthtml-parser", "npm:0.10.2"],\ - ["posthtml-render", "npm:3.0.0"],\ - ["semver", "npm:7.5.4"],\ - ["srcset", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-image", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-image-npm-2.12.0-53f04e21c0-0a1581eacc.zip/node_modules/@parcel/transformer-image/",\ - "packageDependencies": [\ - ["@parcel/transformer-image", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-transformer-image-virtual-acc9c20c9c/0/cache/@parcel-transformer-image-npm-2.12.0-53f04e21c0-0a1581eacc.zip/node_modules/@parcel/transformer-image/",\ - "packageDependencies": [\ - ["@parcel/transformer-image", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-inline-string", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-inline-string-npm-2.12.0-a33f10bafa-5f63c08695.zip/node_modules/@parcel/transformer-inline-string/",\ - "packageDependencies": [\ - ["@parcel/transformer-inline-string", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-js", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-js-npm-2.12.0-404d54db18-b9fe4c887b.zip/node_modules/@parcel/transformer-js/",\ - "packageDependencies": [\ - ["@parcel/transformer-js", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-transformer-js-virtual-567f83ac24/0/cache/@parcel-transformer-js-npm-2.12.0-404d54db18-b9fe4c887b.zip/node_modules/@parcel/transformer-js/",\ - "packageDependencies": [\ - ["@parcel/transformer-js", "virtual:284acdc258f2328e304855ff98dec9e5e8952a2bd7797a2e11c082f6cad2e0d3068e07fb498d46b810d8efae36becee510ac53186a75e438e809dc472f832ab2#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@swc/helpers", "npm:0.5.1"],\ - ["@types/parcel__core", null],\ - ["browserslist", "npm:4.20.3"],\ - ["nullthrows", "npm:1.1.1"],\ - ["regenerator-runtime", "npm:0.13.9"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-json", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-json-npm-2.12.0-652d8d99d2-a711cb65a8.zip/node_modules/@parcel/transformer-json/",\ - "packageDependencies": [\ - ["@parcel/transformer-json", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["json5", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-postcss", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-postcss-npm-2.12.0-f0cfb95fac-b210044a7f.zip/node_modules/@parcel/transformer-postcss/",\ - "packageDependencies": [\ - ["@parcel/transformer-postcss", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["clone", "npm:2.1.2"],\ - ["nullthrows", "npm:1.1.1"],\ - ["postcss-value-parser", "npm:4.2.0"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-posthtml", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-posthtml-npm-2.12.0-41c570db12-b62582ae7e.zip/node_modules/@parcel/transformer-posthtml/",\ - "packageDependencies": [\ - ["@parcel/transformer-posthtml", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["posthtml", "npm:0.16.6"],\ - ["posthtml-parser", "npm:0.10.2"],\ - ["posthtml-render", "npm:3.0.0"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-raw", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-raw-npm-2.12.0-bd2cb66ddf-de6681e2e7.zip/node_modules/@parcel/transformer-raw/",\ - "packageDependencies": [\ - ["@parcel/transformer-raw", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-react-refresh-wrap", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.12.0-59ed68910f-9aba8c1ab0.zip/node_modules/@parcel/transformer-react-refresh-wrap/",\ - "packageDependencies": [\ - ["@parcel/transformer-react-refresh-wrap", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["react-refresh", "npm:0.9.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-sass", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-sass-npm-2.12.0-ef787eef35-ce6b4d329b.zip/node_modules/@parcel/transformer-sass/",\ - "packageDependencies": [\ - ["@parcel/transformer-sass", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["sass", "npm:1.52.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/transformer-svg", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-transformer-svg-npm-2.12.0-f41b181676-92b7c65894.zip/node_modules/@parcel/transformer-svg/",\ - "packageDependencies": [\ - ["@parcel/transformer-svg", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/plugin", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["nullthrows", "npm:1.1.1"],\ - ["posthtml", "npm:0.16.6"],\ - ["posthtml-parser", "npm:0.10.2"],\ - ["posthtml-render", "npm:3.0.0"],\ - ["semver", "npm:7.5.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/types", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-types-npm-2.12.0-ffe47febbf-250f95580c.zip/node_modules/@parcel/types/",\ - "packageDependencies": [\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/cache", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/package-manager", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["@parcel/workers", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["utility-types", "npm:3.10.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-types-npm-2.6.2-aa1797faca-16f3c3ac36.zip/node_modules/@parcel/types/",\ - "packageDependencies": [\ - ["@parcel/types", "npm:2.6.2"],\ - ["@parcel/cache", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/fs", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/package-manager", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/source-map", "npm:2.0.5"],\ - ["@parcel/workers", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["utility-types", "npm:3.10.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/utils", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-utils-npm-2.12.0-d8a9a48a66-ba80a60fed.zip/node_modules/@parcel/utils/",\ - "packageDependencies": [\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@parcel/codeframe", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/markdown-ansi", "npm:2.12.0"],\ - ["@parcel/rust", "npm:2.12.0"],\ - ["@parcel/source-map", "npm:2.1.1"],\ - ["chalk", "npm:4.1.2"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-utils-npm-2.6.2-cab87aed21-a74fdca966.zip/node_modules/@parcel/utils/",\ - "packageDependencies": [\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@parcel/codeframe", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/hash", "npm:2.6.2"],\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/markdown-ansi", "npm:2.6.2"],\ - ["@parcel/source-map", "npm:2.0.5"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/watcher", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/unplugged/@parcel-watcher-npm-2.0.5-bda35fb0f8/node_modules/@parcel/watcher/",\ - "packageDependencies": [\ - ["@parcel/watcher", "npm:2.0.5"],\ - ["node-addon-api", "npm:3.2.1"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build", "npm:4.4.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.0.7", {\ - "packageLocation": "./.yarn/unplugged/@parcel-watcher-npm-2.0.7-8a0c8cf0fd/node_modules/@parcel/watcher/",\ - "packageDependencies": [\ - ["@parcel/watcher", "npm:2.0.7"],\ - ["node-addon-api", "npm:3.2.1"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build", "npm:4.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@parcel/workers", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/@parcel-workers-npm-2.12.0-3ddd4664bc-e19c3c0a66.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/@parcel-workers-npm-2.6.2-a30e38db52-92b65cd3fd.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "npm:2.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-fbd6240557/0/cache/@parcel-workers-npm-2.12.0-3ddd4664bc-e19c3c0a66.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/profiler", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "packagePeers": [\ - "@parcel/core",\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-fa9718ade0/0/cache/@parcel-workers-npm-2.6.2-a30e38db52-92b65cd3fd.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "virtual:aa1797faca4a934b86d07dfa52e0db4db288b85fed415e745782ef9bd4bd39771970f9017a79cb7ed092d23d2539cea12a1cec949dfa0bb86e0fda2290caa70e#npm:2.6.2"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.6.2"],\ - ["@parcel/logger", "npm:2.6.2"],\ - ["@parcel/types", "npm:2.6.2"],\ - ["@parcel/utils", "npm:2.6.2"],\ - ["@types/parcel__core", null],\ - ["chrome-trace-event", "npm:1.0.3"],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/@parcel-workers-virtual-0f6ac1cb6e/0/cache/@parcel-workers-npm-2.12.0-3ddd4664bc-e19c3c0a66.zip/node_modules/@parcel/workers/",\ - "packageDependencies": [\ - ["@parcel/workers", "virtual:ffe47febbf7847f9b64454e506be514f3cbd8bbd1821ba64e8e762685b5100c3f7867a926c2aa7f5349f2a1370184e7d2f8f70428bcab9b21701f56d9632c378#npm:2.12.0"],\ - ["@parcel/core", "npm:2.6.2"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/profiler", "npm:2.12.0"],\ - ["@parcel/types", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@pkgjs/parseargs", [\ - ["npm:0.11.0", {\ - "packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-6ad6a00fc4.zip/node_modules/@pkgjs/parseargs/",\ - "packageDependencies": [\ - ["@pkgjs/parseargs", "npm:0.11.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@popperjs/core", [\ - ["npm:2.11.5", {\ - "packageLocation": "./.yarn/cache/@popperjs-core-npm-2.11.5-a338f16bd4-fd7f9dca3f.zip/node_modules/@popperjs/core/",\ - "packageDependencies": [\ - ["@popperjs/core", "npm:2.11.5"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.11.8", {\ - "packageLocation": "./.yarn/cache/@popperjs-core-npm-2.11.8-f1692e11a0-e5c69fdebf.zip/node_modules/@popperjs/core/",\ - "packageDependencies": [\ - ["@popperjs/core", "npm:2.11.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@rollup/pluginutils", [\ - ["npm:5.1.0", {\ - "packageLocation": "./.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip/node_modules/@rollup/pluginutils/",\ - "packageDependencies": [\ - ["@rollup/pluginutils", "npm:5.1.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0", {\ - "packageLocation": "./.yarn/__virtual__/@rollup-pluginutils-virtual-e968017249/0/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-3cc5a6d914.zip/node_modules/@rollup/pluginutils/",\ - "packageDependencies": [\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ - ["@types/estree", "npm:1.0.0"],\ - ["@types/rollup", null],\ - ["estree-walker", "npm:2.0.2"],\ - ["picomatch", "npm:2.3.1"],\ - ["rollup", null]\ - ],\ - "packagePeers": [\ - "@types/rollup",\ - "rollup"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@sidvind/better-ajv-errors", [\ - ["npm:2.1.3", {\ - "packageLocation": "./.yarn/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip/node_modules/@sidvind/better-ajv-errors/",\ - "packageDependencies": [\ - ["@sidvind/better-ajv-errors", "npm:2.1.3"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:640261ed3b7a9880a388cc504caacf8ea790dd52f1cb31fbc3be445cb2adc6e73fc87097de620863105eb917510145ef2457d30000c7361456ab67ec0b895136#npm:2.1.3", {\ - "packageLocation": "./.yarn/__virtual__/@sidvind-better-ajv-errors-virtual-ff98ba00e3/0/cache/@sidvind-better-ajv-errors-npm-2.1.3-e3d1c524a8-949cb805a1.zip/node_modules/@sidvind/better-ajv-errors/",\ - "packageDependencies": [\ - ["@sidvind/better-ajv-errors", "virtual:640261ed3b7a9880a388cc504caacf8ea790dd52f1cb31fbc3be445cb2adc6e73fc87097de620863105eb917510145ef2457d30000c7361456ab67ec0b895136#npm:2.1.3"],\ - ["@babel/code-frame", "npm:7.16.7"],\ - ["@types/ajv", null],\ - ["ajv", "npm:8.11.0"],\ - ["chalk", "npm:4.1.2"]\ - ],\ - "packagePeers": [\ - "@types/ajv",\ - "ajv"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-virtual-8fda1c3f9b/node_modules/@swc/core/",\ - "packageDependencies": [\ - ["@swc/core", "npm:1.3.62"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:5f8211ac5fe0096c8679c8fc747f0917af84ce168460ce1b592cb42613ababf55139691f5b329cd10e1e2b99af39861401c7b9633ed396447c506b02a80144b0#npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-virtual-8fda1c3f9b/node_modules/@swc/core/",\ - "packageDependencies": [\ - ["@swc/core", "virtual:5f8211ac5fe0096c8679c8fc747f0917af84ce168460ce1b592cb42613ababf55139691f5b329cd10e1e2b99af39861401c7b9633ed396447c506b02a80144b0#npm:1.3.62"],\ - ["@swc/core-darwin-arm64", "npm:1.3.62"],\ - ["@swc/core-darwin-x64", "npm:1.3.62"],\ - ["@swc/core-linux-arm-gnueabihf", "npm:1.3.62"],\ - ["@swc/core-linux-arm64-gnu", "npm:1.3.62"],\ - ["@swc/core-linux-arm64-musl", "npm:1.3.62"],\ - ["@swc/core-linux-x64-gnu", "npm:1.3.62"],\ - ["@swc/core-linux-x64-musl", "npm:1.3.62"],\ - ["@swc/core-win32-arm64-msvc", "npm:1.3.62"],\ - ["@swc/core-win32-ia32-msvc", "npm:1.3.62"],\ - ["@swc/core-win32-x64-msvc", "npm:1.3.62"],\ - ["@swc/helpers", null],\ - ["@types/swc__helpers", null]\ - ],\ - "packagePeers": [\ - "@swc/helpers",\ - "@types/swc__helpers"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-darwin-arm64", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-darwin-arm64-npm-1.3.62-b4af5d9b32/node_modules/@swc/core-darwin-arm64/",\ - "packageDependencies": [\ - ["@swc/core-darwin-arm64", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-darwin-x64", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-darwin-x64-npm-1.3.62-7d7bc99502/node_modules/@swc/core-darwin-x64/",\ - "packageDependencies": [\ - ["@swc/core-darwin-x64", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-linux-arm-gnueabihf", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-linux-arm-gnueabihf-npm-1.3.62-2528581a9c/node_modules/@swc/core-linux-arm-gnueabihf/",\ - "packageDependencies": [\ - ["@swc/core-linux-arm-gnueabihf", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-linux-arm64-gnu", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-linux-arm64-gnu-npm-1.3.62-7b527a3356/node_modules/@swc/core-linux-arm64-gnu/",\ - "packageDependencies": [\ - ["@swc/core-linux-arm64-gnu", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-linux-arm64-musl", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-linux-arm64-musl-npm-1.3.62-5faf35783f/node_modules/@swc/core-linux-arm64-musl/",\ - "packageDependencies": [\ - ["@swc/core-linux-arm64-musl", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-linux-x64-gnu", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-linux-x64-gnu-npm-1.3.62-1fc43a8907/node_modules/@swc/core-linux-x64-gnu/",\ - "packageDependencies": [\ - ["@swc/core-linux-x64-gnu", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-linux-x64-musl", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-linux-x64-musl-npm-1.3.62-ffabf9bf27/node_modules/@swc/core-linux-x64-musl/",\ - "packageDependencies": [\ - ["@swc/core-linux-x64-musl", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-win32-arm64-msvc", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-win32-arm64-msvc-npm-1.3.62-f4199145ca/node_modules/@swc/core-win32-arm64-msvc/",\ - "packageDependencies": [\ - ["@swc/core-win32-arm64-msvc", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-win32-ia32-msvc", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-win32-ia32-msvc-npm-1.3.62-56dc98262c/node_modules/@swc/core-win32-ia32-msvc/",\ - "packageDependencies": [\ - ["@swc/core-win32-ia32-msvc", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/core-win32-x64-msvc", [\ - ["npm:1.3.62", {\ - "packageLocation": "./.yarn/unplugged/@swc-core-win32-x64-msvc-npm-1.3.62-200450bac0/node_modules/@swc/core-win32-x64-msvc/",\ - "packageDependencies": [\ - ["@swc/core-win32-x64-msvc", "npm:1.3.62"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@swc/helpers", [\ - ["npm:0.5.1", {\ - "packageLocation": "./.yarn/cache/@swc-helpers-npm-0.5.1-424376f311-71e0e27234.zip/node_modules/@swc/helpers/",\ - "packageDependencies": [\ - ["@swc/helpers", "npm:0.5.1"],\ - ["tslib", "npm:2.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@tootallnate/once", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/@tootallnate-once-npm-2.0.0-e36cf4f140-ad87447820.zip/node_modules/@tootallnate/once/",\ - "packageDependencies": [\ - ["@tootallnate/once", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@trysound/sax", [\ - ["npm:0.2.0", {\ - "packageLocation": "./.yarn/cache/@trysound-sax-npm-0.2.0-9f763d0295-11226c39b5.zip/node_modules/@trysound/sax/",\ - "packageDependencies": [\ - ["@trysound/sax", "npm:0.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@twuni/emojify", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/@twuni-emojify-npm-1.0.2-a45d6eb0a7-0044c83b05.zip/node_modules/@twuni/emojify/",\ - "packageDependencies": [\ - ["@twuni/emojify", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/estree", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/@types-estree-npm-1.0.0-eddde5b631-910d97fb70.zip/node_modules/@types/estree/",\ - "packageDependencies": [\ - ["@types/estree", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/hammerjs", [\ - ["npm:2.0.46", {\ - "packageLocation": "./.yarn/cache/@types-hammerjs-npm-2.0.46-de99d4d9d1-caba6ec788.zip/node_modules/@types/hammerjs/",\ - "packageDependencies": [\ - ["@types/hammerjs", "npm:2.0.46"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/istanbul-lib-coverage", [\ - ["npm:2.0.4", {\ - "packageLocation": "./.yarn/cache/@types-istanbul-lib-coverage-npm-2.0.4-734954bb56-a25d7589ee.zip/node_modules/@types/istanbul-lib-coverage/",\ - "packageDependencies": [\ - ["@types/istanbul-lib-coverage", "npm:2.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/json5", [\ - ["npm:0.0.29", {\ - "packageLocation": "./.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-e60b153664.zip/node_modules/@types/json5/",\ - "packageDependencies": [\ - ["@types/json5", "npm:0.0.29"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/katex", [\ - ["npm:0.16.5", {\ - "packageLocation": "./.yarn/cache/@types-katex-npm-0.16.5-ff9336f176-a1ce22cd87.zip/node_modules/@types/katex/",\ - "packageDependencies": [\ - ["@types/katex", "npm:0.16.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/lodash", [\ - ["npm:4.14.182", {\ - "packageLocation": "./.yarn/cache/@types-lodash-npm-4.14.182-1073aac722-7dd137aa9d.zip/node_modules/@types/lodash/",\ - "packageDependencies": [\ - ["@types/lodash", "npm:4.14.182"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.14.200", {\ - "packageLocation": "./.yarn/cache/@types-lodash-npm-4.14.200-8559f51fce-6471f8bb5d.zip/node_modules/@types/lodash/",\ - "packageDependencies": [\ - ["@types/lodash", "npm:4.14.200"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/lodash-es", [\ - ["npm:4.17.10", {\ - "packageLocation": "./.yarn/cache/@types-lodash-es-npm-4.17.10-a7dae21818-129e9dde83.zip/node_modules/@types/lodash-es/",\ - "packageDependencies": [\ - ["@types/lodash-es", "npm:4.17.10"],\ - ["@types/lodash", "npm:4.14.182"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/node", [\ - ["npm:17.0.29", {\ - "packageLocation": "./.yarn/cache/@types-node-npm-17.0.29-0de8e6d3d0-bb9d7bce9d.zip/node_modules/@types/node/",\ - "packageDependencies": [\ - ["@types/node", "npm:17.0.29"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@types/parse-json", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/@types-parse-json-npm-4.0.0-298522afa6-fd6bce2b67.zip/node_modules/@types/parse-json/",\ - "packageDependencies": [\ - ["@types/parse-json", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@ungap/structured-clone", [\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-4f656b7b46.zip/node_modules/@ungap/structured-clone/",\ - "packageDependencies": [\ - ["@ungap/structured-clone", "npm:1.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vitejs/plugin-vue", [\ - ["npm:4.6.2", {\ - "packageLocation": "./.yarn/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip/node_modules/@vitejs/plugin-vue/",\ - "packageDependencies": [\ - ["@vitejs/plugin-vue", "npm:4.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2", {\ - "packageLocation": "./.yarn/__virtual__/@vitejs-plugin-vue-virtual-090b584a9c/0/cache/@vitejs-plugin-vue-npm-4.6.2-d7ace53203-01bc4ed643.zip/node_modules/@vitejs/plugin-vue/",\ - "packageDependencies": [\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ - ["@types/vite", null],\ - ["@types/vue", null],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vite",\ - "@types/vue",\ - "vite",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@volar/language-core", [\ - ["npm:2.1.4", {\ - "packageLocation": "./.yarn/cache/@volar-language-core-npm-2.1.4-18ee1a037d-7430f65143.zip/node_modules/@volar/language-core/",\ - "packageDependencies": [\ - ["@volar/language-core", "npm:2.1.4"],\ - ["@volar/source-map", "npm:2.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@volar/language-service", [\ - ["npm:2.1.4", {\ - "packageLocation": "./.yarn/cache/@volar-language-service-npm-2.1.4-2d34cb628f-06cdcfacf0.zip/node_modules/@volar/language-service/",\ - "packageDependencies": [\ - ["@volar/language-service", "npm:2.1.4"],\ - ["@volar/language-core", "npm:2.1.4"],\ - ["vscode-languageserver-protocol", "npm:3.17.5"],\ - ["vscode-languageserver-textdocument", "npm:1.0.11"],\ - ["vscode-uri", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@volar/source-map", [\ - ["npm:2.1.4", {\ - "packageLocation": "./.yarn/cache/@volar-source-map-npm-2.1.4-5963b1701f-e2f65bcfd6.zip/node_modules/@volar/source-map/",\ - "packageDependencies": [\ - ["@volar/source-map", "npm:2.1.4"],\ - ["muggle-string", "npm:0.4.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vscode/l10n", [\ - ["npm:0.0.18", {\ - "packageLocation": "./.yarn/cache/@vscode-l10n-npm-0.0.18-8a12efe4b5-c33876cebd.zip/node_modules/@vscode/l10n/",\ - "packageDependencies": [\ - ["@vscode/l10n", "npm:0.0.18"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/compiler-core", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-core-npm-3.4.21-ec7f24d7f5-0d6b7732bc.zip/node_modules/@vue/compiler-core/",\ - "packageDependencies": [\ - ["@vue/compiler-core", "npm:3.4.21"],\ - ["@babel/parser", "npm:7.23.9"],\ - ["@vue/shared", "npm:3.4.21"],\ - ["entities", "npm:4.5.0"],\ - ["estree-walker", "npm:2.0.2"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/compiler-dom", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-dom-npm-3.4.21-3d49f99020-f53e4f4e0a.zip/node_modules/@vue/compiler-dom/",\ - "packageDependencies": [\ - ["@vue/compiler-dom", "npm:3.4.21"],\ - ["@vue/compiler-core", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/compiler-sfc", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-sfc-npm-3.4.21-c2b76ee1ff-226dc404be.zip/node_modules/@vue/compiler-sfc/",\ - "packageDependencies": [\ - ["@vue/compiler-sfc", "npm:3.4.21"],\ - ["@babel/parser", "npm:7.23.9"],\ - ["@vue/compiler-core", "npm:3.4.21"],\ - ["@vue/compiler-dom", "npm:3.4.21"],\ - ["@vue/compiler-ssr", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"],\ - ["estree-walker", "npm:2.0.2"],\ - ["magic-string", "npm:0.30.7"],\ - ["postcss", "npm:8.4.35"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/compiler-ssr", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-compiler-ssr-npm-3.4.21-e6f043341e-c510bee68b.zip/node_modules/@vue/compiler-ssr/",\ - "packageDependencies": [\ - ["@vue/compiler-ssr", "npm:3.4.21"],\ - ["@vue/compiler-dom", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/devtools-api", [\ - ["npm:6.5.0", {\ - "packageLocation": "./.yarn/cache/@vue-devtools-api-npm-6.5.0-0dc0468299-ec819ef3a4.zip/node_modules/@vue/devtools-api/",\ - "packageDependencies": [\ - ["@vue/devtools-api", "npm:6.5.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.6.1", {\ - "packageLocation": "./.yarn/cache/@vue-devtools-api-npm-6.6.1-ef3c82703e-cf12b5ebcc.zip/node_modules/@vue/devtools-api/",\ - "packageDependencies": [\ - ["@vue/devtools-api", "npm:6.6.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/language-plugin-pug", [\ - ["npm:2.0.7", {\ - "packageLocation": "./.yarn/cache/@vue-language-plugin-pug-npm-2.0.7-547300c7e0-11cc96eb5f.zip/node_modules/@vue/language-plugin-pug/",\ - "packageDependencies": [\ - ["@vue/language-plugin-pug", "npm:2.0.7"],\ - ["@volar/source-map", "npm:2.1.4"],\ - ["volar-service-pug", "npm:0.0.34"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/reactivity", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-reactivity-npm-3.4.21-fd3e254d08-79c7ebe3ec.zip/node_modules/@vue/reactivity/",\ - "packageDependencies": [\ - ["@vue/reactivity", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/runtime-core", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-runtime-core-npm-3.4.21-7bf985040b-4eb9b5d91f.zip/node_modules/@vue/runtime-core/",\ - "packageDependencies": [\ - ["@vue/runtime-core", "npm:3.4.21"],\ - ["@vue/reactivity", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/runtime-dom", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-runtime-dom-npm-3.4.21-40f99cf9a2-ebfdaa081f.zip/node_modules/@vue/runtime-dom/",\ - "packageDependencies": [\ - ["@vue/runtime-dom", "npm:3.4.21"],\ - ["@vue/runtime-core", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"],\ - ["csstype", "npm:3.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/server-renderer", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-server-renderer-npm-3.4.21-bf6b2daebb-faa3dc4876.zip/node_modules/@vue/server-renderer/",\ - "packageDependencies": [\ - ["@vue/server-renderer", "npm:3.4.21"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:b79af6274dddda2b283f42be2b827e30c3e5389bce2938ee73bdb74ee9781811fc079c6836719e57940708d59b3beeb14d9e3c12f37f2d22582a53e6c32e4c97#npm:3.4.21", {\ - "packageLocation": "./.yarn/__virtual__/@vue-server-renderer-virtual-4c61378d94/0/cache/@vue-server-renderer-npm-3.4.21-bf6b2daebb-faa3dc4876.zip/node_modules/@vue/server-renderer/",\ - "packageDependencies": [\ - ["@vue/server-renderer", "virtual:b79af6274dddda2b283f42be2b827e30c3e5389bce2938ee73bdb74ee9781811fc079c6836719e57940708d59b3beeb14d9e3c12f37f2d22582a53e6c32e4c97#npm:3.4.21"],\ - ["@types/vue", null],\ - ["@vue/compiler-ssr", "npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@vue/shared", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/@vue-shared-npm-3.4.21-2aee4ae0bc-5f30a40891.zip/node_modules/@vue/shared/",\ - "packageDependencies": [\ - ["@vue/shared", "npm:3.4.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["abbrev", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/abbrev-npm-1.1.1-3659247eab-a4a97ec07d.zip/node_modules/abbrev/",\ - "packageDependencies": [\ - ["abbrev", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["abortcontroller-polyfill", [\ - ["npm:1.7.3", {\ - "packageLocation": "./.yarn/cache/abortcontroller-polyfill-npm-1.7.3-3b01198b7a-55739d7f0c.zip/node_modules/abortcontroller-polyfill/",\ - "packageDependencies": [\ - ["abortcontroller-polyfill", "npm:1.7.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["acorn", [\ - ["npm:7.4.1", {\ - "packageLocation": "./.yarn/cache/acorn-npm-7.4.1-f450b4646c-1860f23c21.zip/node_modules/acorn/",\ - "packageDependencies": [\ - ["acorn", "npm:7.4.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.10.0", {\ - "packageLocation": "./.yarn/cache/acorn-npm-8.10.0-2230c9e83e-538ba38af0.zip/node_modules/acorn/",\ - "packageDependencies": [\ - ["acorn", "npm:8.10.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.7.1", {\ - "packageLocation": "./.yarn/cache/acorn-npm-8.7.1-7c7a019990-aca0aabf98.zip/node_modules/acorn/",\ - "packageDependencies": [\ - ["acorn", "npm:8.7.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["acorn-jsx", [\ - ["npm:5.3.2", {\ - "packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\ - "packageDependencies": [\ - ["acorn-jsx", "npm:5.3.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2", {\ - "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-834321b202/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\ - "packageDependencies": [\ - ["acorn-jsx", "virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2"],\ - ["@types/acorn", null],\ - ["acorn", "npm:8.10.0"]\ - ],\ - "packagePeers": [\ - "@types/acorn",\ - "acorn"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:c70fa2a91dcbd99b022aeff42b1b7671b1079fb9945248dc00dedd7520f879dc07058703f4626782de94f97692f30d5b18138d744c1e1ed1913a7610755d40e3#npm:5.3.2", {\ - "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-068582d542/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\ - "packageDependencies": [\ - ["acorn-jsx", "virtual:c70fa2a91dcbd99b022aeff42b1b7671b1079fb9945248dc00dedd7520f879dc07058703f4626782de94f97692f30d5b18138d744c1e1ed1913a7610755d40e3#npm:5.3.2"],\ - ["@types/acorn", null],\ - ["acorn", "npm:8.7.1"]\ - ],\ - "packagePeers": [\ - "@types/acorn",\ - "acorn"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["agent-base", [\ - ["npm:6.0.2", {\ - "packageLocation": "./.yarn/cache/agent-base-npm-6.0.2-428f325a93-f52b6872cc.zip/node_modules/agent-base/",\ - "packageDependencies": [\ - ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["agentkeepalive", [\ - ["npm:4.2.1", {\ - "packageLocation": "./.yarn/cache/agentkeepalive-npm-4.2.1-b86a9fb343-39cb49ed8c.zip/node_modules/agentkeepalive/",\ - "packageDependencies": [\ - ["agentkeepalive", "npm:4.2.1"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["depd", "npm:1.1.2"],\ - ["humanize-ms", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["aggregate-error", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/aggregate-error-npm-3.1.0-415a406f4e-1101a33f21.zip/node_modules/aggregate-error/",\ - "packageDependencies": [\ - ["aggregate-error", "npm:3.1.0"],\ - ["clean-stack", "npm:2.2.0"],\ - ["indent-string", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ajv", [\ - ["npm:6.12.6", {\ - "packageLocation": "./.yarn/cache/ajv-npm-6.12.6-4b5105e2b2-874972efe5.zip/node_modules/ajv/",\ - "packageDependencies": [\ - ["ajv", "npm:6.12.6"],\ - ["fast-deep-equal", "npm:3.1.3"],\ - ["fast-json-stable-stringify", "npm:2.1.0"],\ - ["json-schema-traverse", "npm:0.4.1"],\ - ["uri-js", "npm:4.4.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.11.0", {\ - "packageLocation": "./.yarn/cache/ajv-npm-8.11.0-83d029789c-5e0ff22680.zip/node_modules/ajv/",\ - "packageDependencies": [\ - ["ajv", "npm:8.11.0"],\ - ["fast-deep-equal", "npm:3.1.3"],\ - ["json-schema-traverse", "npm:1.0.0"],\ - ["require-from-string", "npm:2.0.2"],\ - ["uri-js", "npm:4.4.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ansi-regex", [\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-2aa4bb54ca.zip/node_modules/ansi-regex/",\ - "packageDependencies": [\ - ["ansi-regex", "npm:5.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.0.1", {\ - "packageLocation": "./.yarn/cache/ansi-regex-npm-6.0.1-8d663a607d-1ff8b7667c.zip/node_modules/ansi-regex/",\ - "packageDependencies": [\ - ["ansi-regex", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ansi-styles", [\ - ["npm:3.2.1", {\ - "packageLocation": "./.yarn/cache/ansi-styles-npm-3.2.1-8cb8107983-d85ade01c1.zip/node_modules/ansi-styles/",\ - "packageDependencies": [\ - ["ansi-styles", "npm:3.2.1"],\ - ["color-convert", "npm:1.9.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/cache/ansi-styles-npm-4.3.0-245c7d42c7-513b44c3b2.zip/node_modules/ansi-styles/",\ - "packageDependencies": [\ - ["ansi-styles", "npm:4.3.0"],\ - ["color-convert", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.2.1", {\ - "packageLocation": "./.yarn/cache/ansi-styles-npm-6.2.1-d43647018c-ef940f2f0c.zip/node_modules/ansi-styles/",\ - "packageDependencies": [\ - ["ansi-styles", "npm:6.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["anymatch", [\ - ["npm:3.1.2", {\ - "packageLocation": "./.yarn/cache/anymatch-npm-3.1.2-1d5471acfa-985163db22.zip/node_modules/anymatch/",\ - "packageDependencies": [\ - ["anymatch", "npm:3.1.2"],\ - ["normalize-path", "npm:3.0.0"],\ - ["picomatch", "npm:2.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["aproba", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/aproba-npm-2.0.0-8716bcfde6-5615cadcfb.zip/node_modules/aproba/",\ - "packageDependencies": [\ - ["aproba", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["are-we-there-yet", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/are-we-there-yet-npm-3.0.0-1391430190-348edfdd93.zip/node_modules/are-we-there-yet/",\ - "packageDependencies": [\ - ["are-we-there-yet", "npm:3.0.0"],\ - ["delegates", "npm:1.0.0"],\ - ["readable-stream", "npm:3.6.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["argparse", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/argparse-npm-2.0.1-faff7999e6-83644b5649.zip/node_modules/argparse/",\ - "packageDependencies": [\ - ["argparse", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["array-buffer-byte-length", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/array-buffer-byte-length-npm-1.0.0-331671f28a-044e101ce1.zip/node_modules/array-buffer-byte-length/",\ - "packageDependencies": [\ - ["array-buffer-byte-length", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["is-array-buffer", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["array-includes", [\ - ["npm:3.1.7", {\ - "packageLocation": "./.yarn/cache/array-includes-npm-3.1.7-d32a5ee179-06f9e4598f.zip/node_modules/array-includes/",\ - "packageDependencies": [\ - ["array-includes", "npm:3.1.7"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["is-string", "npm:1.0.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["array.prototype.findlastindex", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/array.prototype.findlastindex-npm-1.2.3-2a36f4417b-31f35d7b37.zip/node_modules/array.prototype.findlastindex/",\ - "packageDependencies": [\ - ["array.prototype.findlastindex", "npm:1.2.3"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["es-shim-unscopables", "npm:1.0.0"],\ - ["get-intrinsic", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["array.prototype.flat", [\ - ["npm:1.3.2", {\ - "packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.2-350729f7f4-5d6b4bf102.zip/node_modules/array.prototype.flat/",\ - "packageDependencies": [\ - ["array.prototype.flat", "npm:1.3.2"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["es-shim-unscopables", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["array.prototype.flatmap", [\ - ["npm:1.3.2", {\ - "packageLocation": "./.yarn/cache/array.prototype.flatmap-npm-1.3.2-5c6a4af226-ce09fe21dc.zip/node_modules/array.prototype.flatmap/",\ - "packageDependencies": [\ - ["array.prototype.flatmap", "npm:1.3.2"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["es-shim-unscopables", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["arraybuffer.prototype.slice", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/arraybuffer.prototype.slice-npm-1.0.2-4eda52ad8c-c200faf437.zip/node_modules/arraybuffer.prototype.slice/",\ - "packageDependencies": [\ - ["arraybuffer.prototype.slice", "npm:1.0.2"],\ - ["array-buffer-byte-length", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["is-array-buffer", "npm:3.0.2"],\ - ["is-shared-array-buffer", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["asap", [\ - ["npm:2.0.6", {\ - "packageLocation": "./.yarn/cache/asap-npm-2.0.6-36714d439d-b296c92c4b.zip/node_modules/asap/",\ - "packageDependencies": [\ - ["asap", "npm:2.0.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["assert-never", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/assert-never-npm-1.2.1-d423b480cd-ea4f1756d9.zip/node_modules/assert-never/",\ - "packageDependencies": [\ - ["assert-never", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["async-validator", [\ - ["npm:4.2.5", {\ - "packageLocation": "./.yarn/cache/async-validator-npm-4.2.5-4d61110c66-3e3d891a2e.zip/node_modules/async-validator/",\ - "packageDependencies": [\ - ["async-validator", "npm:4.2.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["available-typed-arrays", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.5-88f321e4d3-20eb47b3ce.zip/node_modules/available-typed-arrays/",\ - "packageDependencies": [\ - ["available-typed-arrays", "npm:1.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["babel-walk", [\ - ["npm:3.0.0-canary-5", {\ - "packageLocation": "./.yarn/cache/babel-walk-npm-3.0.0-canary-5-61b07ed745-6fe7ee3889.zip/node_modules/babel-walk/",\ - "packageDependencies": [\ - ["babel-walk", "npm:3.0.0-canary-5"],\ - ["@babel/types", "npm:7.18.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["balanced-match", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/balanced-match-npm-1.0.2-a53c126459-9706c088a2.zip/node_modules/balanced-match/",\ - "packageDependencies": [\ - ["balanced-match", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["base-x", [\ - ["npm:3.0.9", {\ - "packageLocation": "./.yarn/cache/base-x-npm-3.0.9-7b2588e106-957101d6fd.zip/node_modules/base-x/",\ - "packageDependencies": [\ - ["base-x", "npm:3.0.9"],\ - ["safe-buffer", "npm:5.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["binary-extensions", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/binary-extensions-npm-2.2.0-180c33fec7-ccd267956c.zip/node_modules/binary-extensions/",\ - "packageDependencies": [\ - ["binary-extensions", "npm:2.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["boolbase", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/boolbase-npm-1.0.0-965fe9af6d-3e25c80ef6.zip/node_modules/boolbase/",\ - "packageDependencies": [\ - ["boolbase", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["bootstrap", [\ - ["npm:5.1.3", {\ - "packageLocation": "./.yarn/cache/bootstrap-npm-5.1.3-691fdc19a6-301b5ed872.zip/node_modules/bootstrap/",\ - "packageDependencies": [\ - ["bootstrap", "npm:5.1.3"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:5.3.3", {\ - "packageLocation": "./.yarn/cache/bootstrap-npm-5.3.3-da08e2f0fe-537b68db30.zip/node_modules/bootstrap/",\ - "packageDependencies": [\ - ["bootstrap", "npm:5.3.3"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:10122bfbcba1a448fa8cd209500287123cf7dd2abe325c6afac0050500c2a7843d4fa38428d3ef45d200d480f092839e6533b4c96c028b4d6e4e1d970111b151#npm:5.1.3", {\ - "packageLocation": "./.yarn/__virtual__/bootstrap-virtual-60f254b806/0/cache/bootstrap-npm-5.1.3-691fdc19a6-301b5ed872.zip/node_modules/bootstrap/",\ - "packageDependencies": [\ - ["bootstrap", "virtual:10122bfbcba1a448fa8cd209500287123cf7dd2abe325c6afac0050500c2a7843d4fa38428d3ef45d200d480f092839e6533b4c96c028b4d6e4e1d970111b151#npm:5.1.3"],\ - ["@popperjs/core", "npm:2.11.5"],\ - ["@types/popperjs__core", null]\ - ],\ - "packagePeers": [\ - "@popperjs/core",\ - "@types/popperjs__core"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.3", {\ - "packageLocation": "./.yarn/__virtual__/bootstrap-virtual-2c24090b13/0/cache/bootstrap-npm-5.3.3-da08e2f0fe-537b68db30.zip/node_modules/bootstrap/",\ - "packageDependencies": [\ - ["bootstrap", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.3"],\ - ["@popperjs/core", "npm:2.11.8"],\ - ["@types/popperjs__core", null]\ - ],\ - "packagePeers": [\ - "@popperjs/core",\ - "@types/popperjs__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["bootstrap-icons", [\ - ["npm:1.11.3", {\ - "packageLocation": "./.yarn/cache/bootstrap-icons-npm-1.11.3-8d5387bef2-d5cdb90fe3.zip/node_modules/bootstrap-icons/",\ - "packageDependencies": [\ - ["bootstrap-icons", "npm:1.11.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["brace-expansion", [\ - ["npm:1.1.11", {\ - "packageLocation": "./.yarn/cache/brace-expansion-npm-1.1.11-fb95eb05ad-faf34a7bb0.zip/node_modules/brace-expansion/",\ - "packageDependencies": [\ - ["brace-expansion", "npm:1.1.11"],\ - ["balanced-match", "npm:1.0.2"],\ - ["concat-map", "npm:0.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/brace-expansion-npm-2.0.1-17aa2616f9-a61e7cd2e8.zip/node_modules/brace-expansion/",\ - "packageDependencies": [\ - ["brace-expansion", "npm:2.0.1"],\ - ["balanced-match", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["braces", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/braces-npm-3.0.2-782240b28a-e2a8e769a8.zip/node_modules/braces/",\ - "packageDependencies": [\ - ["braces", "npm:3.0.2"],\ - ["fill-range", "npm:7.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["browser-fs-access", [\ - ["npm:0.35.0", {\ - "packageLocation": "./.yarn/cache/browser-fs-access-npm-0.35.0-1577b5a7ba-5f3bf1ec17.zip/node_modules/browser-fs-access/",\ - "packageDependencies": [\ - ["browser-fs-access", "npm:0.35.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["browserlist", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/browserlist-npm-1.0.1-5c12c77f80-db4dc273b5.zip/node_modules/browserlist/",\ - "packageDependencies": [\ - ["browserlist", "npm:1.0.1"],\ - ["chalk", "npm:2.4.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["browserslist", [\ - ["npm:4.20.3", {\ - "packageLocation": "./.yarn/cache/browserslist-npm-4.20.3-d7ff9d00b4-1e4b719ac2.zip/node_modules/browserslist/",\ - "packageDependencies": [\ - ["browserslist", "npm:4.20.3"],\ - ["caniuse-lite", "npm:1.0.30001430"],\ - ["electron-to-chromium", "npm:1.4.137"],\ - ["escalade", "npm:3.1.1"],\ - ["node-releases", "npm:2.0.4"],\ - ["picocolors", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["builtin-modules", [\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-db021755d7.zip/node_modules/builtin-modules/",\ - "packageDependencies": [\ - ["builtin-modules", "npm:3.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["builtins", [\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/builtins-npm-5.0.1-6d4820dd76-66d204657f.zip/node_modules/builtins/",\ - "packageDependencies": [\ - ["builtins", "npm:5.0.1"],\ - ["semver", "npm:7.3.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["c8", [\ - ["npm:9.1.0", {\ - "packageLocation": "./.yarn/cache/c8-npm-9.1.0-92c3d37f46-c5249bf9c3.zip/node_modules/c8/",\ - "packageDependencies": [\ - ["c8", "npm:9.1.0"],\ - ["@bcoe/v8-coverage", "npm:0.2.3"],\ - ["@istanbuljs/schema", "npm:0.1.3"],\ - ["find-up", "npm:5.0.0"],\ - ["foreground-child", "npm:3.1.1"],\ - ["istanbul-lib-coverage", "npm:3.2.0"],\ - ["istanbul-lib-report", "npm:3.0.1"],\ - ["istanbul-reports", "npm:3.1.6"],\ - ["test-exclude", "npm:6.0.0"],\ - ["v8-to-istanbul", "npm:9.0.1"],\ - ["yargs", "npm:17.7.2"],\ - ["yargs-parser", "npm:21.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["cacache", [\ - ["npm:16.1.0", {\ - "packageLocation": "./.yarn/cache/cacache-npm-16.1.0-e24d9a7d5b-ddfcf92f07.zip/node_modules/cacache/",\ - "packageDependencies": [\ - ["cacache", "npm:16.1.0"],\ - ["@npmcli/fs", "npm:2.1.0"],\ - ["@npmcli/move-file", "npm:2.0.0"],\ - ["chownr", "npm:2.0.0"],\ - ["fs-minipass", "npm:2.1.0"],\ - ["glob", "npm:8.0.3"],\ - ["infer-owner", "npm:1.0.4"],\ - ["lru-cache", "npm:7.10.1"],\ - ["minipass", "npm:3.1.6"],\ - ["minipass-collect", "npm:1.0.2"],\ - ["minipass-flush", "npm:1.0.5"],\ - ["minipass-pipeline", "npm:1.2.4"],\ - ["mkdirp", "npm:1.0.4"],\ - ["p-map", "npm:4.0.0"],\ - ["promise-inflight", "virtual:e24d9a7d5bfafeb0e9feff2818e85407e1cf44a276d18b9ca6dfb49cddb2524392de2fcf443eda17f1ea0d182e400e896df3142d004a89f718873309f2bace8e#npm:1.0.1"],\ - ["rimraf", "npm:3.0.2"],\ - ["ssri", "npm:9.0.1"],\ - ["tar", "npm:6.1.11"],\ - ["unique-filename", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["call-bind", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/call-bind-npm-1.0.2-c957124861-f8e31de9d1.zip/node_modules/call-bind/",\ - "packageDependencies": [\ - ["call-bind", "npm:1.0.2"],\ - ["function-bind", "npm:1.1.1"],\ - ["get-intrinsic", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/call-bind-npm-1.0.5-65600fae47-449e83ecbd.zip/node_modules/call-bind/",\ - "packageDependencies": [\ - ["call-bind", "npm:1.0.5"],\ - ["function-bind", "npm:1.1.2"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["set-function-length", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["callsites", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/callsites-npm-3.1.0-268f989910-072d17b6ab.zip/node_modules/callsites/",\ - "packageDependencies": [\ - ["callsites", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["caniuse-lite", [\ - ["npm:1.0.30001430", {\ - "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001430-c181064805-15200fe265.zip/node_modules/caniuse-lite/",\ - "packageDependencies": [\ - ["caniuse-lite", "npm:1.0.30001430"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.0.30001603", {\ - "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001603-77af81f60b-e66e0d24b8.zip/node_modules/caniuse-lite/",\ - "packageDependencies": [\ - ["caniuse-lite", "npm:1.0.30001603"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chalk", [\ - ["npm:2.4.2", {\ - "packageLocation": "./.yarn/cache/chalk-npm-2.4.2-3ea16dd91e-ec3661d38f.zip/node_modules/chalk/",\ - "packageDependencies": [\ - ["chalk", "npm:2.4.2"],\ - ["ansi-styles", "npm:3.2.1"],\ - ["escape-string-regexp", "npm:1.0.5"],\ - ["supports-color", "npm:5.5.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.1.2", {\ - "packageLocation": "./.yarn/cache/chalk-npm-4.1.2-ba8b67ab80-fe75c9d5c7.zip/node_modules/chalk/",\ - "packageDependencies": [\ - ["chalk", "npm:4.1.2"],\ - ["ansi-styles", "npm:4.3.0"],\ - ["supports-color", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["character-parser", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/character-parser-npm-2.2.0-a5df9fb883-71826fae50.zip/node_modules/character-parser/",\ - "packageDependencies": [\ - ["character-parser", "npm:2.2.0"],\ - ["is-regex", "npm:1.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chart.js", [\ - ["npm:4.5.1", {\ - "packageLocation": "./.yarn/cache/chart.js-npm-4.5.1-97698d58cc-34b35b3736.zip/node_modules/chart.js/",\ - "packageDependencies": [\ - ["chart.js", "npm:4.5.1"],\ - ["@kurkle/color", "npm:0.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chartjs-plugin-zoom", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/chartjs-plugin-zoom-npm-2.2.0-85aea0b81e-a540e38340.zip/node_modules/chartjs-plugin-zoom/",\ - "packageDependencies": [\ - ["chartjs-plugin-zoom", "npm:2.2.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0", {\ - "packageLocation": "./.yarn/__virtual__/chartjs-plugin-zoom-virtual-45332d2c47/0/cache/chartjs-plugin-zoom-npm-2.2.0-85aea0b81e-a540e38340.zip/node_modules/chartjs-plugin-zoom/",\ - "packageDependencies": [\ - ["chartjs-plugin-zoom", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0"],\ - ["@types/chart.js", null],\ - ["@types/hammerjs", "npm:2.0.46"],\ - ["chart.js", "npm:4.5.1"],\ - ["hammerjs", "npm:2.0.8"]\ - ],\ - "packagePeers": [\ - "@types/chart.js",\ - "chart.js"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chokidar", [\ - ["npm:3.5.3", {\ - "packageLocation": "./.yarn/cache/chokidar-npm-3.5.3-c5f9b0a56a-b49fcde401.zip/node_modules/chokidar/",\ - "packageDependencies": [\ - ["chokidar", "npm:3.5.3"],\ - ["anymatch", "npm:3.1.2"],\ - ["braces", "npm:3.0.2"],\ - ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"],\ - ["glob-parent", "npm:5.1.2"],\ - ["is-binary-path", "npm:2.1.0"],\ - ["is-glob", "npm:4.0.3"],\ - ["normalize-path", "npm:3.0.0"],\ - ["readdirp", "npm:3.6.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chownr", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/chownr-npm-2.0.0-638f1c9c61-c57cf9dd07.zip/node_modules/chownr/",\ - "packageDependencies": [\ - ["chownr", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["chrome-trace-event", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/chrome-trace-event-npm-1.0.3-e0ae3dcd60-cb8b1fc7e8.zip/node_modules/chrome-trace-event/",\ - "packageDependencies": [\ - ["chrome-trace-event", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["clean-stack", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/clean-stack-npm-2.2.0-a8ce435a5c-2ac8cd2b2f.zip/node_modules/clean-stack/",\ - "packageDependencies": [\ - ["clean-stack", "npm:2.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["cliui", [\ - ["npm:8.0.1", {\ - "packageLocation": "./.yarn/cache/cliui-npm-8.0.1-3b029092cf-79648b3b00.zip/node_modules/cliui/",\ - "packageDependencies": [\ - ["cliui", "npm:8.0.1"],\ - ["string-width", "npm:4.2.3"],\ - ["strip-ansi", "npm:6.0.1"],\ - ["wrap-ansi", "npm:7.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["clone", [\ - ["npm:2.1.2", {\ - "packageLocation": "./.yarn/cache/clone-npm-2.1.2-1d491c6629-aaf106e9bc.zip/node_modules/clone/",\ - "packageDependencies": [\ - ["clone", "npm:2.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["color-convert", [\ - ["npm:1.9.3", {\ - "packageLocation": "./.yarn/cache/color-convert-npm-1.9.3-1fe690075e-fd7a64a17c.zip/node_modules/color-convert/",\ - "packageDependencies": [\ - ["color-convert", "npm:1.9.3"],\ - ["color-name", "npm:1.1.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/color-convert-npm-2.0.1-79730e935b-79e6bdb9fd.zip/node_modules/color-convert/",\ - "packageDependencies": [\ - ["color-convert", "npm:2.0.1"],\ - ["color-name", "npm:1.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["color-name", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/color-name-npm-1.1.3-728b7b5d39-09c5d3e33d.zip/node_modules/color-name/",\ - "packageDependencies": [\ - ["color-name", "npm:1.1.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.1.4", {\ - "packageLocation": "./.yarn/cache/color-name-npm-1.1.4-025792b0ea-b044585952.zip/node_modules/color-name/",\ - "packageDependencies": [\ - ["color-name", "npm:1.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["color-support", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/color-support-npm-1.1.3-3be5c53455-9b73568176.zip/node_modules/color-support/",\ - "packageDependencies": [\ - ["color-support", "npm:1.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["commander", [\ - ["npm:7.2.0", {\ - "packageLocation": "./.yarn/cache/commander-npm-7.2.0-19178180f8-53501cbeee.zip/node_modules/commander/",\ - "packageDependencies": [\ - ["commander", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["concat-map", [\ - ["npm:0.0.1", {\ - "packageLocation": "./.yarn/cache/concat-map-npm-0.0.1-85a921b7ee-902a9f5d89.zip/node_modules/concat-map/",\ - "packageDependencies": [\ - ["concat-map", "npm:0.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["console-control-strings", [\ - ["npm:1.1.0", {\ - "packageLocation": "./.yarn/cache/console-control-strings-npm-1.1.0-e3160e5275-8755d76787.zip/node_modules/console-control-strings/",\ - "packageDependencies": [\ - ["console-control-strings", "npm:1.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["constantinople", [\ - ["npm:4.0.1", {\ - "packageLocation": "./.yarn/cache/constantinople-npm-4.0.1-925d9c26ce-8f70f16ddf.zip/node_modules/constantinople/",\ - "packageDependencies": [\ - ["constantinople", "npm:4.0.1"],\ - ["@babel/parser", "npm:7.18.4"],\ - ["@babel/types", "npm:7.18.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["convert-source-map", [\ - ["npm:1.8.0", {\ - "packageLocation": "./.yarn/cache/convert-source-map-npm-1.8.0-037f671dde-985d974a2d.zip/node_modules/convert-source-map/",\ - "packageDependencies": [\ - ["convert-source-map", "npm:1.8.0"],\ - ["safe-buffer", "npm:5.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["cosmiconfig", [\ - ["npm:7.0.1", {\ - "packageLocation": "./.yarn/cache/cosmiconfig-npm-7.0.1-dd19ae2403-4be63e7117.zip/node_modules/cosmiconfig/",\ - "packageDependencies": [\ - ["cosmiconfig", "npm:7.0.1"],\ - ["@types/parse-json", "npm:4.0.0"],\ - ["import-fresh", "npm:3.3.0"],\ - ["parse-json", "npm:5.2.0"],\ - ["path-type", "npm:4.0.0"],\ - ["yaml", "npm:1.10.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["cross-spawn", [\ - ["npm:7.0.3", {\ - "packageLocation": "./.yarn/cache/cross-spawn-npm-7.0.3-e4ff3e65b3-671cc7c728.zip/node_modules/cross-spawn/",\ - "packageDependencies": [\ - ["cross-spawn", "npm:7.0.3"],\ - ["path-key", "npm:3.1.1"],\ - ["shebang-command", "npm:2.0.0"],\ - ["which", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["css-render", [\ - ["npm:0.15.10", {\ - "packageLocation": "./.yarn/cache/css-render-npm-0.15.10-57cf7c0959-051ebb6a56.zip/node_modules/css-render/",\ - "packageDependencies": [\ - ["css-render", "npm:0.15.10"],\ - ["@emotion/hash", "npm:0.8.0"],\ - ["@types/node", "npm:17.0.29"],\ - ["csstype", "npm:3.0.11"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.15.12", {\ - "packageLocation": "./.yarn/cache/css-render-npm-0.15.12-ff93ab2bdd-80265c5055.zip/node_modules/css-render/",\ - "packageDependencies": [\ - ["css-render", "npm:0.15.12"],\ - ["@emotion/hash", "npm:0.8.0"],\ - ["csstype", "npm:3.0.11"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["css-select", [\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/cache/css-select-npm-4.3.0-72f53028ec-d620273683.zip/node_modules/css-select/",\ - "packageDependencies": [\ - ["css-select", "npm:4.3.0"],\ - ["boolbase", "npm:1.0.0"],\ - ["css-what", "npm:6.1.0"],\ - ["domhandler", "npm:4.3.1"],\ - ["domutils", "npm:2.8.0"],\ - ["nth-check", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["css-tree", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/css-tree-npm-1.1.3-9c46f35513-79f9b81803.zip/node_modules/css-tree/",\ - "packageDependencies": [\ - ["css-tree", "npm:1.1.3"],\ - ["mdn-data", "npm:2.0.14"],\ - ["source-map", "npm:0.6.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["css-what", [\ - ["npm:6.1.0", {\ - "packageLocation": "./.yarn/cache/css-what-npm-6.1.0-57f751efbb-b975e547e1.zip/node_modules/css-what/",\ - "packageDependencies": [\ - ["css-what", "npm:6.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["cssesc", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/cssesc-npm-3.0.0-15ec56f86f-f8c4ababff.zip/node_modules/cssesc/",\ - "packageDependencies": [\ - ["cssesc", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["csso", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/csso-npm-4.2.0-b277db8d71-380ba9663d.zip/node_modules/csso/",\ - "packageDependencies": [\ - ["csso", "npm:4.2.0"],\ - ["css-tree", "npm:1.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["csstype", [\ - ["npm:3.0.11", {\ - "packageLocation": "./.yarn/cache/csstype-npm-3.0.11-b49897178d-95e56abfe9.zip/node_modules/csstype/",\ - "packageDependencies": [\ - ["csstype", "npm:3.0.11"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.1.3", {\ - "packageLocation": "./.yarn/cache/csstype-npm-3.1.3-e9a1c85013-8db785cc92.zip/node_modules/csstype/",\ - "packageDependencies": [\ - ["csstype", "npm:3.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3", [\ - ["npm:7.9.0", {\ - "packageLocation": "./.yarn/cache/d3-npm-7.9.0-d293821ce6-1c0e9135f1.zip/node_modules/d3/",\ - "packageDependencies": [\ - ["d3", "npm:7.9.0"],\ - ["d3-array", "npm:3.1.6"],\ - ["d3-axis", "npm:3.0.0"],\ - ["d3-brush", "npm:3.0.0"],\ - ["d3-chord", "npm:3.0.1"],\ - ["d3-color", "npm:3.1.0"],\ - ["d3-contour", "npm:4.0.0"],\ - ["d3-delaunay", "npm:6.0.2"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-drag", "npm:3.0.0"],\ - ["d3-dsv", "npm:3.0.1"],\ - ["d3-ease", "npm:3.0.1"],\ - ["d3-fetch", "npm:3.0.1"],\ - ["d3-force", "npm:3.0.0"],\ - ["d3-format", "npm:3.1.0"],\ - ["d3-geo", "npm:3.0.1"],\ - ["d3-hierarchy", "npm:3.1.2"],\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-path", "npm:3.0.1"],\ - ["d3-polygon", "npm:3.0.1"],\ - ["d3-quadtree", "npm:3.0.1"],\ - ["d3-random", "npm:3.0.1"],\ - ["d3-scale", "npm:4.0.2"],\ - ["d3-scale-chromatic", "npm:3.0.0"],\ - ["d3-selection", "npm:3.0.0"],\ - ["d3-shape", "npm:3.1.0"],\ - ["d3-time", "npm:3.0.0"],\ - ["d3-time-format", "npm:4.1.0"],\ - ["d3-timer", "npm:3.0.1"],\ - ["d3-transition", "virtual:0f86c8ad35ed5e8074d92c2c7b108ccb80697d12d1f8d7d6652d16c1efa6c4d26d8de3689bc5728bc948bba913da0e22877ef20338493e863732102d95b6678d#npm:3.0.1"],\ - ["d3-zoom", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-array", [\ - ["npm:3.1.6", {\ - "packageLocation": "./.yarn/cache/d3-array-npm-3.1.6-fa4f0bcb75-32f515bd25.zip/node_modules/d3-array/",\ - "packageDependencies": [\ - ["d3-array", "npm:3.1.6"],\ - ["internmap", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.2.0", {\ - "packageLocation": "./.yarn/cache/d3-array-npm-3.2.0-c3a38fe288-e236f6670b.zip/node_modules/d3-array/",\ - "packageDependencies": [\ - ["d3-array", "npm:3.2.0"],\ - ["internmap", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-axis", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-axis-npm-3.0.0-81ef16a9a5-227ddaa6d4.zip/node_modules/d3-axis/",\ - "packageDependencies": [\ - ["d3-axis", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-brush", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-brush-npm-3.0.0-0f86c8ad35-1d04216776.zip/node_modules/d3-brush/",\ - "packageDependencies": [\ - ["d3-brush", "npm:3.0.0"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-drag", "npm:3.0.0"],\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-selection", "npm:3.0.0"],\ - ["d3-transition", "virtual:0f86c8ad35ed5e8074d92c2c7b108ccb80697d12d1f8d7d6652d16c1efa6c4d26d8de3689bc5728bc948bba913da0e22877ef20338493e863732102d95b6678d#npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-chord", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-chord-npm-3.0.1-3fcb345658-ddf35d4167.zip/node_modules/d3-chord/",\ - "packageDependencies": [\ - ["d3-chord", "npm:3.0.1"],\ - ["d3-path", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-color", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/d3-color-npm-3.1.0-fc73fe3b15-4931fbfda5.zip/node_modules/d3-color/",\ - "packageDependencies": [\ - ["d3-color", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-contour", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/d3-contour-npm-4.0.0-9b98ab4af2-1f9b9e56d0.zip/node_modules/d3-contour/",\ - "packageDependencies": [\ - ["d3-contour", "npm:4.0.0"],\ - ["d3-array", "npm:3.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-delaunay", [\ - ["npm:6.0.2", {\ - "packageLocation": "./.yarn/cache/d3-delaunay-npm-6.0.2-23823819ce-80b18686dd.zip/node_modules/d3-delaunay/",\ - "packageDependencies": [\ - ["d3-delaunay", "npm:6.0.2"],\ - ["delaunator", "npm:5.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-dispatch", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-dispatch-npm-3.0.1-5f44c3166f-fdfd4a230f.zip/node_modules/d3-dispatch/",\ - "packageDependencies": [\ - ["d3-dispatch", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-drag", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-drag-npm-3.0.0-cf7b48417f-d297231e60.zip/node_modules/d3-drag/",\ - "packageDependencies": [\ - ["d3-drag", "npm:3.0.0"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-selection", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-dsv", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-dsv-npm-3.0.1-5d88fb8a85-5fc0723647.zip/node_modules/d3-dsv/",\ - "packageDependencies": [\ - ["d3-dsv", "npm:3.0.1"],\ - ["commander", "npm:7.2.0"],\ - ["iconv-lite", "npm:0.6.3"],\ - ["rw", "npm:1.3.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-ease", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-ease-npm-3.0.1-f8f3709dc7-06e2ee5326.zip/node_modules/d3-ease/",\ - "packageDependencies": [\ - ["d3-ease", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-fetch", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-fetch-npm-3.0.1-ad9ce3dc3e-382dcea065.zip/node_modules/d3-fetch/",\ - "packageDependencies": [\ - ["d3-fetch", "npm:3.0.1"],\ - ["d3-dsv", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-force", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-force-npm-3.0.0-462e87e63b-6c7e96438c.zip/node_modules/d3-force/",\ - "packageDependencies": [\ - ["d3-force", "npm:3.0.0"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-quadtree", "npm:3.0.1"],\ - ["d3-timer", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-format", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/d3-format-npm-3.1.0-dfc19924ca-f345ec3b8a.zip/node_modules/d3-format/",\ - "packageDependencies": [\ - ["d3-format", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-geo", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-geo-npm-3.0.1-2aabdbb750-e0f7e6a2f0.zip/node_modules/d3-geo/",\ - "packageDependencies": [\ - ["d3-geo", "npm:3.0.1"],\ - ["d3-array", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-hierarchy", [\ - ["npm:3.1.2", {\ - "packageLocation": "./.yarn/cache/d3-hierarchy-npm-3.1.2-1ac1bae7e3-0fd946a8c5.zip/node_modules/d3-hierarchy/",\ - "packageDependencies": [\ - ["d3-hierarchy", "npm:3.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-interpolate", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-interpolate-npm-3.0.1-77ddca7977-a42ba314e2.zip/node_modules/d3-interpolate/",\ - "packageDependencies": [\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-color", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-path", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-path-npm-3.0.1-c8a313bdd3-6347c7055e.zip/node_modules/d3-path/",\ - "packageDependencies": [\ - ["d3-path", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-polygon", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-polygon-npm-3.0.1-ccec77a8d4-0b85c53251.zip/node_modules/d3-polygon/",\ - "packageDependencies": [\ - ["d3-polygon", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-quadtree", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-quadtree-npm-3.0.1-6f0eae8c83-5469d46276.zip/node_modules/d3-quadtree/",\ - "packageDependencies": [\ - ["d3-quadtree", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-random", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-random-npm-3.0.1-4fabe65eda-a70ad8d1ca.zip/node_modules/d3-random/",\ - "packageDependencies": [\ - ["d3-random", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-scale", [\ - ["npm:4.0.2", {\ - "packageLocation": "./.yarn/cache/d3-scale-npm-4.0.2-d17a53447b-a9c770d283.zip/node_modules/d3-scale/",\ - "packageDependencies": [\ - ["d3-scale", "npm:4.0.2"],\ - ["d3-array", "npm:3.1.6"],\ - ["d3-format", "npm:3.1.0"],\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-time", "npm:3.0.0"],\ - ["d3-time-format", "npm:4.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-scale-chromatic", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-scale-chromatic-npm-3.0.0-ca3b48a3cb-a8ce4cb026.zip/node_modules/d3-scale-chromatic/",\ - "packageDependencies": [\ - ["d3-scale-chromatic", "npm:3.0.0"],\ - ["d3-color", "npm:3.1.0"],\ - ["d3-interpolate", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-selection", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-selection-npm-3.0.0-39a42b4ca9-f4e60e1333.zip/node_modules/d3-selection/",\ - "packageDependencies": [\ - ["d3-selection", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-shape", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/d3-shape-npm-3.1.0-a298c27eca-3dffe31b56.zip/node_modules/d3-shape/",\ - "packageDependencies": [\ - ["d3-shape", "npm:3.1.0"],\ - ["d3-path", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-time", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-time-npm-3.0.0-a4963e64c8-01646568ef.zip/node_modules/d3-time/",\ - "packageDependencies": [\ - ["d3-time", "npm:3.0.0"],\ - ["d3-array", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-time-format", [\ - ["npm:4.1.0", {\ - "packageLocation": "./.yarn/cache/d3-time-format-npm-4.1.0-7f352c4634-7342bce283.zip/node_modules/d3-time-format/",\ - "packageDependencies": [\ - ["d3-time-format", "npm:4.1.0"],\ - ["d3-time", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-timer", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-timer-npm-3.0.1-45083f465d-1cfddf86d7.zip/node_modules/d3-timer/",\ - "packageDependencies": [\ - ["d3-timer", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-transition", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/d3-transition-npm-3.0.1-9191e0faaa-cb1e6e018c.zip/node_modules/d3-transition/",\ - "packageDependencies": [\ - ["d3-transition", "npm:3.0.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:0f86c8ad35ed5e8074d92c2c7b108ccb80697d12d1f8d7d6652d16c1efa6c4d26d8de3689bc5728bc948bba913da0e22877ef20338493e863732102d95b6678d#npm:3.0.1", {\ - "packageLocation": "./.yarn/__virtual__/d3-transition-virtual-19b5c5972e/0/cache/d3-transition-npm-3.0.1-9191e0faaa-cb1e6e018c.zip/node_modules/d3-transition/",\ - "packageDependencies": [\ - ["d3-transition", "virtual:0f86c8ad35ed5e8074d92c2c7b108ccb80697d12d1f8d7d6652d16c1efa6c4d26d8de3689bc5728bc948bba913da0e22877ef20338493e863732102d95b6678d#npm:3.0.1"],\ - ["@types/d3-selection", null],\ - ["d3-color", "npm:3.1.0"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-ease", "npm:3.0.1"],\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-selection", "npm:3.0.0"],\ - ["d3-timer", "npm:3.0.1"]\ - ],\ - "packagePeers": [\ - "@types/d3-selection",\ - "d3-selection"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["d3-zoom", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/d3-zoom-npm-3.0.0-18f706a421-8056e35272.zip/node_modules/d3-zoom/",\ - "packageDependencies": [\ - ["d3-zoom", "npm:3.0.0"],\ - ["d3-dispatch", "npm:3.0.1"],\ - ["d3-drag", "npm:3.0.0"],\ - ["d3-interpolate", "npm:3.0.1"],\ - ["d3-selection", "npm:3.0.0"],\ - ["d3-transition", "virtual:0f86c8ad35ed5e8074d92c2c7b108ccb80697d12d1f8d7d6652d16c1efa6c4d26d8de3689bc5728bc948bba913da0e22877ef20338493e863732102d95b6678d#npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["date-fns", [\ - ["npm:2.30.0", {\ - "packageLocation": "./.yarn/cache/date-fns-npm-2.30.0-895c790e0f-f7be015232.zip/node_modules/date-fns/",\ - "packageDependencies": [\ - ["date-fns", "npm:2.30.0"],\ - ["@babel/runtime", "npm:7.23.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["date-fns-tz", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/date-fns-tz-npm-2.0.0-9b7996f292-a6553603a9.zip/node_modules/date-fns-tz/",\ - "packageDependencies": [\ - ["date-fns-tz", "npm:2.0.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:2.0.0", {\ - "packageLocation": "./.yarn/__virtual__/date-fns-tz-virtual-6610d5adee/0/cache/date-fns-tz-npm-2.0.0-9b7996f292-a6553603a9.zip/node_modules/date-fns-tz/",\ - "packageDependencies": [\ - ["date-fns-tz", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:2.0.0"],\ - ["@types/date-fns", null],\ - ["date-fns", "npm:2.30.0"]\ - ],\ - "packagePeers": [\ - "@types/date-fns",\ - "date-fns"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["debug", [\ - ["npm:2.6.9", {\ - "packageLocation": "./.yarn/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "npm:2.6.9"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:3.2.7", {\ - "packageLocation": "./.yarn/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "npm:3.2.7"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:4.3.4", {\ - "packageLocation": "./.yarn/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "npm:4.3.4"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-d2345003b7/0/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ - ["@types/supports-color", null],\ - ["ms", "npm:2.1.2"],\ - ["supports-color", null]\ - ],\ - "packagePeers": [\ - "@types/supports-color",\ - "supports-color"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-4488998e89/0/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["@types/supports-color", null],\ - ["ms", "npm:2.1.2"],\ - ["supports-color", null]\ - ],\ - "packagePeers": [\ - "@types/supports-color",\ - "supports-color"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:faadf6353f98b703db6d695690b392666015d2aab4b710ea086196f4598c68e2b84944d3717503cadb554811494ac27c376eca728086556897f6a7cdb35eaef5#npm:2.6.9", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-cde84238ac/0/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "virtual:faadf6353f98b703db6d695690b392666015d2aab4b710ea086196f4598c68e2b84944d3717503cadb554811494ac27c376eca728086556897f6a7cdb35eaef5#npm:2.6.9"],\ - ["@types/supports-color", null],\ - ["ms", "npm:2.0.0"],\ - ["supports-color", null]\ - ],\ - "packagePeers": [\ - "@types/supports-color",\ - "supports-color"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["deep-is", [\ - ["npm:0.1.4", {\ - "packageLocation": "./.yarn/cache/deep-is-npm-0.1.4-88938b5a67-edb65dd0d7.zip/node_modules/deep-is/",\ - "packageDependencies": [\ - ["deep-is", "npm:0.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["deepmerge", [\ - ["npm:4.3.1", {\ - "packageLocation": "./.yarn/cache/deepmerge-npm-4.3.1-4f751a0844-2024c6a980.zip/node_modules/deepmerge/",\ - "packageDependencies": [\ - ["deepmerge", "npm:4.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["define-data-property", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/define-data-property-npm-1.1.1-2b5156d112-a29855ad3f.zip/node_modules/define-data-property/",\ - "packageDependencies": [\ - ["define-data-property", "npm:1.1.1"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["gopd", "npm:1.0.1"],\ - ["has-property-descriptors", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["define-properties", [\ - ["npm:1.1.4", {\ - "packageLocation": "./.yarn/cache/define-properties-npm-1.1.4-85ee575655-ce0aef3f9e.zip/node_modules/define-properties/",\ - "packageDependencies": [\ - ["define-properties", "npm:1.1.4"],\ - ["has-property-descriptors", "npm:1.0.0"],\ - ["object-keys", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/define-properties-npm-1.2.0-3547cd0fd2-e60aee6a19.zip/node_modules/define-properties/",\ - "packageDependencies": [\ - ["define-properties", "npm:1.2.0"],\ - ["has-property-descriptors", "npm:1.0.0"],\ - ["object-keys", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["delaunator", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/delaunator-npm-5.0.0-9540390d61-d676418844.zip/node_modules/delaunator/",\ - "packageDependencies": [\ - ["delaunator", "npm:5.0.0"],\ - ["robust-predicates", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["delegates", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/delegates-npm-1.0.0-9b1942d75f-a51744d9b5.zip/node_modules/delegates/",\ - "packageDependencies": [\ - ["delegates", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["depd", [\ - ["npm:1.1.2", {\ - "packageLocation": "./.yarn/cache/depd-npm-1.1.2-b0c8414da7-6b406620d2.zip/node_modules/depd/",\ - "packageDependencies": [\ - ["depd", "npm:1.1.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/depd-npm-2.0.0-b6c51a4b43-abbe19c768.zip/node_modules/depd/",\ - "packageDependencies": [\ - ["depd", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["destroy", [\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/destroy-npm-1.2.0-6a511802e2-0acb300b74.zip/node_modules/destroy/",\ - "packageDependencies": [\ - ["destroy", "npm:1.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["detect-libc", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/detect-libc-npm-1.0.3-c30ac344d4-daaaed925f.zip/node_modules/detect-libc/",\ - "packageDependencies": [\ - ["detect-libc", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/detect-libc-npm-2.0.2-03afa59137-2b2cd3649b.zip/node_modules/detect-libc/",\ - "packageDependencies": [\ - ["detect-libc", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["doctrine", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/doctrine-npm-2.1.0-ac15d049b7-a45e277f7f.zip/node_modules/doctrine/",\ - "packageDependencies": [\ - ["doctrine", "npm:2.1.0"],\ - ["esutils", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/doctrine-npm-3.0.0-c6f1615f04-fd7673ca77.zip/node_modules/doctrine/",\ - "packageDependencies": [\ - ["doctrine", "npm:3.0.0"],\ - ["esutils", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["doctypes", [\ - ["npm:1.1.0", {\ - "packageLocation": "./.yarn/cache/doctypes-npm-1.1.0-cb4fdda595-6e6c2d1a80.zip/node_modules/doctypes/",\ - "packageDependencies": [\ - ["doctypes", "npm:1.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["dom-serializer", [\ - ["npm:1.4.1", {\ - "packageLocation": "./.yarn/cache/dom-serializer-npm-1.4.1-ebb24349c1-fbb0b01f87.zip/node_modules/dom-serializer/",\ - "packageDependencies": [\ - ["dom-serializer", "npm:1.4.1"],\ - ["domelementtype", "npm:2.3.0"],\ - ["domhandler", "npm:4.3.1"],\ - ["entities", "npm:2.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["domelementtype", [\ - ["npm:2.3.0", {\ - "packageLocation": "./.yarn/cache/domelementtype-npm-2.3.0-02de7cbfba-ee837a318f.zip/node_modules/domelementtype/",\ - "packageDependencies": [\ - ["domelementtype", "npm:2.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["domhandler", [\ - ["npm:4.3.1", {\ - "packageLocation": "./.yarn/cache/domhandler-npm-4.3.1-493539c1ca-4c665ceed0.zip/node_modules/domhandler/",\ - "packageDependencies": [\ - ["domhandler", "npm:4.3.1"],\ - ["domelementtype", "npm:2.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["domutils", [\ - ["npm:2.8.0", {\ - "packageLocation": "./.yarn/cache/domutils-npm-2.8.0-0325139e5c-abf7434315.zip/node_modules/domutils/",\ - "packageDependencies": [\ - ["domutils", "npm:2.8.0"],\ - ["dom-serializer", "npm:1.4.1"],\ - ["domelementtype", "npm:2.3.0"],\ - ["domhandler", "npm:4.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["dotenv", [\ - ["npm:7.0.0", {\ - "packageLocation": "./.yarn/cache/dotenv-npm-7.0.0-9fbf3b4fd8-18a7b3ef0e.zip/node_modules/dotenv/",\ - "packageDependencies": [\ - ["dotenv", "npm:7.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["dotenv-expand", [\ - ["npm:5.1.0", {\ - "packageLocation": "./.yarn/cache/dotenv-expand-npm-5.1.0-c3fff50eb5-8017675b7f.zip/node_modules/dotenv-expand/",\ - "packageDependencies": [\ - ["dotenv-expand", "npm:5.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eastasianwidth", [\ - ["npm:0.2.0", {\ - "packageLocation": "./.yarn/cache/eastasianwidth-npm-0.2.0-c37eb16bd1-7d00d7cd8e.zip/node_modules/eastasianwidth/",\ - "packageDependencies": [\ - ["eastasianwidth", "npm:0.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ee-first", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/ee-first-npm-1.1.1-33f8535b39-1b4cac778d.zip/node_modules/ee-first/",\ - "packageDependencies": [\ - ["ee-first", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["electron-to-chromium", [\ - ["npm:1.4.137", {\ - "packageLocation": "./.yarn/cache/electron-to-chromium-npm-1.4.137-35182e6efc-639d7b9490.zip/node_modules/electron-to-chromium/",\ - "packageDependencies": [\ - ["electron-to-chromium", "npm:1.4.137"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["emoji-regex", [\ - ["npm:8.0.0", {\ - "packageLocation": "./.yarn/cache/emoji-regex-npm-8.0.0-213764015c-d4c5c39d5a.zip/node_modules/emoji-regex/",\ - "packageDependencies": [\ - ["emoji-regex", "npm:8.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:9.2.2", {\ - "packageLocation": "./.yarn/cache/emoji-regex-npm-9.2.2-e6fac8d058-8487182da7.zip/node_modules/emoji-regex/",\ - "packageDependencies": [\ - ["emoji-regex", "npm:9.2.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["encodeurl", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/encodeurl-npm-1.0.2-f8c8454c41-e50e3d508c.zip/node_modules/encodeurl/",\ - "packageDependencies": [\ - ["encodeurl", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["encoding", [\ - ["npm:0.1.13", {\ - "packageLocation": "./.yarn/cache/encoding-npm-0.1.13-82a1837d30-bb98632f8f.zip/node_modules/encoding/",\ - "packageDependencies": [\ - ["encoding", "npm:0.1.13"],\ - ["iconv-lite", "npm:0.6.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["entities", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/entities-npm-2.2.0-0fc8d5b2f7-19010dacaf.zip/node_modules/entities/",\ - "packageDependencies": [\ - ["entities", "npm:2.2.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/entities-npm-3.0.1-21eeb201ba-aaf7f12033.zip/node_modules/entities/",\ - "packageDependencies": [\ - ["entities", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.5.0", {\ - "packageLocation": "./.yarn/cache/entities-npm-4.5.0-7cdb83b832-853f8ebd5b.zip/node_modules/entities/",\ - "packageDependencies": [\ - ["entities", "npm:4.5.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["env-paths", [\ - ["npm:2.2.1", {\ - "packageLocation": "./.yarn/cache/env-paths-npm-2.2.1-7c7577428c-65b5df55a8.zip/node_modules/env-paths/",\ - "packageDependencies": [\ - ["env-paths", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["err-code", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/err-code-npm-2.0.3-082e0ff9a7-8b7b1be20d.zip/node_modules/err-code/",\ - "packageDependencies": [\ - ["err-code", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["error-ex", [\ - ["npm:1.3.2", {\ - "packageLocation": "./.yarn/cache/error-ex-npm-1.3.2-5654f80c0f-c1c2b8b65f.zip/node_modules/error-ex/",\ - "packageDependencies": [\ - ["error-ex", "npm:1.3.2"],\ - ["is-arrayish", "npm:0.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["es-abstract", [\ - ["npm:1.22.3", {\ - "packageLocation": "./.yarn/cache/es-abstract-npm-1.22.3-15a58832e5-b1bdc96285.zip/node_modules/es-abstract/",\ - "packageDependencies": [\ - ["es-abstract", "npm:1.22.3"],\ - ["array-buffer-byte-length", "npm:1.0.0"],\ - ["arraybuffer.prototype.slice", "npm:1.0.2"],\ - ["available-typed-arrays", "npm:1.0.5"],\ - ["call-bind", "npm:1.0.5"],\ - ["es-set-tostringtag", "npm:2.0.1"],\ - ["es-to-primitive", "npm:1.2.1"],\ - ["function.prototype.name", "npm:1.1.6"],\ - ["get-intrinsic", "npm:1.2.2"],\ - ["get-symbol-description", "npm:1.0.0"],\ - ["globalthis", "npm:1.0.3"],\ - ["gopd", "npm:1.0.1"],\ - ["has-property-descriptors", "npm:1.0.0"],\ - ["has-proto", "npm:1.0.1"],\ - ["has-symbols", "npm:1.0.3"],\ - ["hasown", "npm:2.0.0"],\ - ["internal-slot", "npm:1.0.5"],\ - ["is-array-buffer", "npm:3.0.2"],\ - ["is-callable", "npm:1.2.7"],\ - ["is-negative-zero", "npm:2.0.2"],\ - ["is-regex", "npm:1.1.4"],\ - ["is-shared-array-buffer", "npm:1.0.2"],\ - ["is-string", "npm:1.0.7"],\ - ["is-typed-array", "npm:1.1.12"],\ - ["is-weakref", "npm:1.0.2"],\ - ["object-inspect", "npm:1.13.1"],\ - ["object-keys", "npm:1.1.1"],\ - ["object.assign", "npm:4.1.4"],\ - ["regexp.prototype.flags", "npm:1.5.1"],\ - ["safe-array-concat", "npm:1.0.1"],\ - ["safe-regex-test", "npm:1.0.0"],\ - ["string.prototype.trim", "npm:1.2.8"],\ - ["string.prototype.trimend", "npm:1.0.7"],\ - ["string.prototype.trimstart", "npm:1.0.7"],\ - ["typed-array-buffer", "npm:1.0.0"],\ - ["typed-array-byte-length", "npm:1.0.0"],\ - ["typed-array-byte-offset", "npm:1.0.0"],\ - ["typed-array-length", "npm:1.0.4"],\ - ["unbox-primitive", "npm:1.0.2"],\ - ["which-typed-array", "npm:1.1.13"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["es-set-tostringtag", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/es-set-tostringtag-npm-2.0.1-c87b5de872-ec416a1294.zip/node_modules/es-set-tostringtag/",\ - "packageDependencies": [\ - ["es-set-tostringtag", "npm:2.0.1"],\ - ["get-intrinsic", "npm:1.2.0"],\ - ["has", "npm:1.0.3"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["es-shim-unscopables", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/es-shim-unscopables-npm-1.0.0-06186593f1-83e95cadbb.zip/node_modules/es-shim-unscopables/",\ - "packageDependencies": [\ - ["es-shim-unscopables", "npm:1.0.0"],\ - ["has", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["es-to-primitive", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/es-to-primitive-npm-1.2.1-b7a7eac6c5-4ead6671a2.zip/node_modules/es-to-primitive/",\ - "packageDependencies": [\ - ["es-to-primitive", "npm:1.2.1"],\ - ["is-callable", "npm:1.2.4"],\ - ["is-date-object", "npm:1.0.5"],\ - ["is-symbol", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["esbuild", [\ - ["npm:0.18.20", {\ - "packageLocation": "./.yarn/unplugged/esbuild-npm-0.18.20-004a76d281/node_modules/esbuild/",\ - "packageDependencies": [\ - ["esbuild", "npm:0.18.20"],\ - ["@esbuild/android-arm", "npm:0.18.20"],\ - ["@esbuild/android-arm64", "npm:0.18.20"],\ - ["@esbuild/android-x64", "npm:0.18.20"],\ - ["@esbuild/darwin-arm64", "npm:0.18.20"],\ - ["@esbuild/darwin-x64", "npm:0.18.20"],\ - ["@esbuild/freebsd-arm64", "npm:0.18.20"],\ - ["@esbuild/freebsd-x64", "npm:0.18.20"],\ - ["@esbuild/linux-arm", "npm:0.18.20"],\ - ["@esbuild/linux-arm64", "npm:0.18.20"],\ - ["@esbuild/linux-ia32", "npm:0.18.20"],\ - ["@esbuild/linux-loong64", "npm:0.18.20"],\ - ["@esbuild/linux-mips64el", "npm:0.18.20"],\ - ["@esbuild/linux-ppc64", "npm:0.18.20"],\ - ["@esbuild/linux-riscv64", "npm:0.18.20"],\ - ["@esbuild/linux-s390x", "npm:0.18.20"],\ - ["@esbuild/linux-x64", "npm:0.18.20"],\ - ["@esbuild/netbsd-x64", "npm:0.18.20"],\ - ["@esbuild/openbsd-x64", "npm:0.18.20"],\ - ["@esbuild/sunos-x64", "npm:0.18.20"],\ - ["@esbuild/win32-arm64", "npm:0.18.20"],\ - ["@esbuild/win32-ia32", "npm:0.18.20"],\ - ["@esbuild/win32-x64", "npm:0.18.20"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["escalade", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/escalade-npm-3.1.1-e02da076aa-a3e2a99f07.zip/node_modules/escalade/",\ - "packageDependencies": [\ - ["escalade", "npm:3.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["escape-html", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/escape-html-npm-1.0.3-376c22ee74-6213ca9ae0.zip/node_modules/escape-html/",\ - "packageDependencies": [\ - ["escape-html", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["escape-string-regexp", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/escape-string-regexp-npm-1.0.5-3284de402f-6092fda75c.zip/node_modules/escape-string-regexp/",\ - "packageDependencies": [\ - ["escape-string-regexp", "npm:1.0.5"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-98b48897d9.zip/node_modules/escape-string-regexp/",\ - "packageDependencies": [\ - ["escape-string-regexp", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint", [\ - ["npm:8.57.0", {\ - "packageLocation": "./.yarn/cache/eslint-npm-8.57.0-4286e12a3a-3a48d7ff85.zip/node_modules/eslint/",\ - "packageDependencies": [\ - ["eslint", "npm:8.57.0"],\ - ["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\ - ["@eslint-community/regexpp", "npm:4.8.0"],\ - ["@eslint/eslintrc", "npm:2.1.4"],\ - ["@eslint/js", "npm:8.57.0"],\ - ["@humanwhocodes/config-array", "npm:0.11.14"],\ - ["@humanwhocodes/module-importer", "npm:1.0.1"],\ - ["@nodelib/fs.walk", "npm:1.2.8"],\ - ["@ungap/structured-clone", "npm:1.2.0"],\ - ["ajv", "npm:6.12.6"],\ - ["chalk", "npm:4.1.2"],\ - ["cross-spawn", "npm:7.0.3"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["doctrine", "npm:3.0.0"],\ - ["escape-string-regexp", "npm:4.0.0"],\ - ["eslint-scope", "npm:7.2.2"],\ - ["eslint-visitor-keys", "npm:3.4.3"],\ - ["espree", "npm:9.6.1"],\ - ["esquery", "npm:1.5.0"],\ - ["esutils", "npm:2.0.3"],\ - ["fast-deep-equal", "npm:3.1.3"],\ - ["file-entry-cache", "npm:6.0.1"],\ - ["find-up", "npm:5.0.0"],\ - ["glob-parent", "npm:6.0.2"],\ - ["globals", "npm:13.19.0"],\ - ["graphemer", "npm:1.4.0"],\ - ["ignore", "npm:5.2.0"],\ - ["imurmurhash", "npm:0.1.4"],\ - ["is-glob", "npm:4.0.3"],\ - ["is-path-inside", "npm:3.0.3"],\ - ["js-yaml", "npm:4.1.0"],\ - ["json-stable-stringify-without-jsonify", "npm:1.0.1"],\ - ["levn", "npm:0.4.1"],\ - ["lodash.merge", "npm:4.6.2"],\ - ["minimatch", "npm:3.1.2"],\ - ["natural-compare", "npm:1.4.0"],\ - ["optionator", "npm:0.9.3"],\ - ["strip-ansi", "npm:6.0.1"],\ - ["text-table", "npm:0.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-compat-utils", [\ - ["npm:0.1.2", {\ - "packageLocation": "./.yarn/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip/node_modules/eslint-compat-utils/",\ - "packageDependencies": [\ - ["eslint-compat-utils", "npm:0.1.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2", {\ - "packageLocation": "./.yarn/__virtual__/eslint-compat-utils-virtual-a5f7e6147b/0/cache/eslint-compat-utils-npm-0.1.2-361c6992b1-2315d9db81.zip/node_modules/eslint-compat-utils/",\ - "packageDependencies": [\ - ["eslint-compat-utils", "virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-config-standard", [\ - ["npm:17.1.0", {\ - "packageLocation": "./.yarn/cache/eslint-config-standard-npm-17.1.0-e72fd623cc-8ed14ffe42.zip/node_modules/eslint-config-standard/",\ - "packageDependencies": [\ - ["eslint-config-standard", "npm:17.1.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-config-standard-virtual-a273ec9ea6/0/cache/eslint-config-standard-npm-17.1.0-e72fd623cc-8ed14ffe42.zip/node_modules/eslint-config-standard/",\ - "packageDependencies": [\ - ["eslint-config-standard", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0"],\ - ["@types/eslint", null],\ - ["@types/eslint-plugin-import", null],\ - ["@types/eslint-plugin-n", null],\ - ["@types/eslint-plugin-promise", null],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ - ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"]\ - ],\ - "packagePeers": [\ - "@types/eslint-plugin-import",\ - "@types/eslint-plugin-n",\ - "@types/eslint-plugin-promise",\ - "@types/eslint",\ - "eslint-plugin-import",\ - "eslint-plugin-n",\ - "eslint-plugin-promise",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-import-resolver-node", [\ - ["npm:0.3.9", {\ - "packageLocation": "./.yarn/cache/eslint-import-resolver-node-npm-0.3.9-2a426afc4b-439b912712.zip/node_modules/eslint-import-resolver-node/",\ - "packageDependencies": [\ - ["eslint-import-resolver-node", "npm:0.3.9"],\ - ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ - ["is-core-module", "npm:2.13.0"],\ - ["resolve", "patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-module-utils", [\ - ["npm:2.8.0", {\ - "packageLocation": "./.yarn/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ - "packageDependencies": [\ - ["eslint-module-utils", "npm:2.8.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-d80573de1e/0/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ - "packageDependencies": [\ - ["eslint-module-utils", "virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0"],\ - ["@types/eslint", null],\ - ["@types/eslint-import-resolver-node", null],\ - ["@types/eslint-import-resolver-typescript", null],\ - ["@types/eslint-import-resolver-webpack", null],\ - ["@types/typescript-eslint__parser", null],\ - ["@typescript-eslint/parser", null],\ - ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-import-resolver-node", "npm:0.3.9"],\ - ["eslint-import-resolver-typescript", null],\ - ["eslint-import-resolver-webpack", null]\ - ],\ - "packagePeers": [\ - "@types/eslint-import-resolver-node",\ - "@types/eslint-import-resolver-typescript",\ - "@types/eslint-import-resolver-webpack",\ - "@types/eslint",\ - "@types/typescript-eslint__parser",\ - "@typescript-eslint/parser",\ - "eslint-import-resolver-node",\ - "eslint-import-resolver-typescript",\ - "eslint-import-resolver-webpack",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-cypress", [\ - ["npm:2.15.1", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-cypress-npm-2.15.1-90f777d9bd-3e66fa9a94.zip/node_modules/eslint-plugin-cypress/",\ - "packageDependencies": [\ - ["eslint-plugin-cypress", "npm:2.15.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-cypress-virtual-33ce75aabf/0/cache/eslint-plugin-cypress-npm-2.15.1-90f777d9bd-3e66fa9a94.zip/node_modules/eslint-plugin-cypress/",\ - "packageDependencies": [\ - ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["globals", "npm:13.21.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-es", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-es-npm-3.0.1-95e8015220-e57592c523.zip/node_modules/eslint-plugin-es/",\ - "packageDependencies": [\ - ["eslint-plugin-es", "npm:3.0.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:5cccaf00e87dfff96dbbb5eaf7a3055373358b8114d6a1adfb32f54ed6b40ba06068d3aa1fdd8062899a0cad040f68c17cc6b72bac2cdbe9700f3d6330d112f3#npm:3.0.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-es-virtual-9a126af2f5/0/cache/eslint-plugin-es-npm-3.0.1-95e8015220-e57592c523.zip/node_modules/eslint-plugin-es/",\ - "packageDependencies": [\ - ["eslint-plugin-es", "virtual:5cccaf00e87dfff96dbbb5eaf7a3055373358b8114d6a1adfb32f54ed6b40ba06068d3aa1fdd8062899a0cad040f68c17cc6b72bac2cdbe9700f3d6330d112f3#npm:3.0.1"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-utils", "npm:2.1.0"],\ - ["regexpp", "npm:3.2.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-es-x", [\ - ["npm:7.5.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip/node_modules/eslint-plugin-es-x/",\ - "packageDependencies": [\ - ["eslint-plugin-es-x", "npm:7.5.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-es-x-virtual-ff64d06f93/0/cache/eslint-plugin-es-x-npm-7.5.0-77e84d6e5d-e770e57df7.zip/node_modules/eslint-plugin-es-x/",\ - "packageDependencies": [\ - ["eslint-plugin-es-x", "virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0"],\ - ["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\ - ["@eslint-community/regexpp", "npm:4.10.0"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-compat-utils", "virtual:ff64d06f93654b25d9cae47199e62d111efde9ee7d408664ae44397cd2ddf7906aefd54fcc2557f4d5619d92da3af68c7898126469c2a57c381e05b06491f0da#npm:0.1.2"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-import", [\ - ["npm:2.29.1", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip/node_modules/eslint-plugin-import/",\ - "packageDependencies": [\ - ["eslint-plugin-import", "npm:2.29.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-caddce7926/0/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-e65159aef8.zip/node_modules/eslint-plugin-import/",\ - "packageDependencies": [\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ - ["@types/eslint", null],\ - ["@types/typescript-eslint__parser", null],\ - ["@typescript-eslint/parser", null],\ - ["array-includes", "npm:3.1.7"],\ - ["array.prototype.findlastindex", "npm:1.2.3"],\ - ["array.prototype.flat", "npm:1.3.2"],\ - ["array.prototype.flatmap", "npm:1.3.2"],\ - ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ - ["doctrine", "npm:2.1.0"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-import-resolver-node", "npm:0.3.9"],\ - ["eslint-module-utils", "virtual:caddce79266c9767570f5c081ff9adaab1d8b040965749cfca6a3f3f4fbd011bf36f7d755f18ef80e67a5402a33b10c9e1ffc34efb6909461044fc5d60cfbcd0#npm:2.8.0"],\ - ["hasown", "npm:2.0.0"],\ - ["is-core-module", "npm:2.13.1"],\ - ["is-glob", "npm:4.0.3"],\ - ["minimatch", "npm:3.1.2"],\ - ["object.fromentries", "npm:2.0.7"],\ - ["object.groupby", "npm:1.0.1"],\ - ["object.values", "npm:1.1.7"],\ - ["semver", "npm:6.3.1"],\ - ["tsconfig-paths", "npm:3.15.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "@types/typescript-eslint__parser",\ - "@typescript-eslint/parser",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-n", [\ - ["npm:16.6.2", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip/node_modules/eslint-plugin-n/",\ - "packageDependencies": [\ - ["eslint-plugin-n", "npm:16.6.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-n-virtual-e72a0a9306/0/cache/eslint-plugin-n-npm-16.6.2-77775852d0-3b468da003.zip/node_modules/eslint-plugin-n/",\ - "packageDependencies": [\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ - ["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\ - ["@types/eslint", null],\ - ["builtins", "npm:5.0.1"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-plugin-es-x", "virtual:e72a0a9306438b1033938dd0da350cf9f4ec062648c9360382edaa21499b6290430f07b640481cdb3f67c818af79a821eb8f3071ebf7284ab09c47cb982d8502#npm:7.5.0"],\ - ["get-tsconfig", "npm:4.7.2"],\ - ["globals", "npm:13.24.0"],\ - ["ignore", "npm:5.2.4"],\ - ["is-builtin-module", "npm:3.2.1"],\ - ["is-core-module", "npm:2.12.1"],\ - ["minimatch", "npm:3.1.2"],\ - ["resolve", "patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b"],\ - ["semver", "npm:7.5.3"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-node", [\ - ["npm:11.1.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-node-npm-11.1.0-913abe06f4-5804c4f8a6.zip/node_modules/eslint-plugin-node/",\ - "packageDependencies": [\ - ["eslint-plugin-node", "npm:11.1.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-node-virtual-5cccaf00e8/0/cache/eslint-plugin-node-npm-11.1.0-913abe06f4-5804c4f8a6.zip/node_modules/eslint-plugin-node/",\ - "packageDependencies": [\ - ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-plugin-es", "virtual:5cccaf00e87dfff96dbbb5eaf7a3055373358b8114d6a1adfb32f54ed6b40ba06068d3aa1fdd8062899a0cad040f68c17cc6b72bac2cdbe9700f3d6330d112f3#npm:3.0.1"],\ - ["eslint-utils", "npm:2.1.0"],\ - ["ignore", "npm:5.2.0"],\ - ["minimatch", "npm:3.1.2"],\ - ["resolve", "patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b"],\ - ["semver", "npm:6.3.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-promise", [\ - ["npm:6.1.1", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-promise-npm-6.1.1-8928fc7781-46b9a4f79d.zip/node_modules/eslint-plugin-promise/",\ - "packageDependencies": [\ - ["eslint-plugin-promise", "npm:6.1.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-promise-virtual-0f58c94022/0/cache/eslint-plugin-promise-npm-6.1.1-8928fc7781-46b9a4f79d.zip/node_modules/eslint-plugin-promise/",\ - "packageDependencies": [\ - ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-plugin-vue", [\ - ["npm:9.24.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-vue-npm-9.24.0-4c6dba51bf-2309b919d8.zip/node_modules/eslint-plugin-vue/",\ - "packageDependencies": [\ - ["eslint-plugin-vue", "npm:9.24.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.24.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-vue-virtual-e080dd5dc6/0/cache/eslint-plugin-vue-npm-9.24.0-4c6dba51bf-2309b919d8.zip/node_modules/eslint-plugin-vue/",\ - "packageDependencies": [\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.24.0"],\ - ["@eslint-community/eslint-utils", "virtual:4286e12a3a0f74af013bc8f16c6d8fdde823cfbf6389660266b171e551f576c805b0a7a8eb2a7087a5cee7dfe6ebb6e1ea3808d93daf915edc95656907a381bb#npm:4.4.0"],\ - ["@types/eslint", null],\ - ["eslint", "npm:8.57.0"],\ - ["globals", "npm:13.24.0"],\ - ["natural-compare", "npm:1.4.0"],\ - ["nth-check", "npm:2.1.1"],\ - ["postcss-selector-parser", "npm:6.0.15"],\ - ["semver", "npm:7.6.0"],\ - ["vue-eslint-parser", "virtual:e080dd5dc65fb3541eb98fd929c3a1d3733f3aff4bb24b09a6b5cce9fba4a29aca07e286ef93079f2144caa0fd33bb6545549286d3a9f2b9a211caa1f4b68ff9#npm:9.4.2"],\ - ["xml-name-validator", "npm:4.0.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-scope", [\ - ["npm:7.1.1", {\ - "packageLocation": "./.yarn/cache/eslint-scope-npm-7.1.1-23935eb377-9f6e974ab2.zip/node_modules/eslint-scope/",\ - "packageDependencies": [\ - ["eslint-scope", "npm:7.1.1"],\ - ["esrecurse", "npm:4.3.0"],\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.2.2", {\ - "packageLocation": "./.yarn/cache/eslint-scope-npm-7.2.2-53cb0df8e8-ec97dbf5fb.zip/node_modules/eslint-scope/",\ - "packageDependencies": [\ - ["eslint-scope", "npm:7.2.2"],\ - ["esrecurse", "npm:4.3.0"],\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-utils", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/eslint-utils-npm-2.1.0-a3a7ebf4fa-27500938f3.zip/node_modules/eslint-utils/",\ - "packageDependencies": [\ - ["eslint-utils", "npm:2.1.0"],\ - ["eslint-visitor-keys", "npm:1.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["eslint-visitor-keys", [\ - ["npm:1.3.0", {\ - "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-1.3.0-c07780a0fb-37a19b712f.zip/node_modules/eslint-visitor-keys/",\ - "packageDependencies": [\ - ["eslint-visitor-keys", "npm:1.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.3.0-d329af7c8c-d59e68a7c5.zip/node_modules/eslint-visitor-keys/",\ - "packageDependencies": [\ - ["eslint-visitor-keys", "npm:3.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.4.1", {\ - "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.4.1-a5d0a58208-f05121d868.zip/node_modules/eslint-visitor-keys/",\ - "packageDependencies": [\ - ["eslint-visitor-keys", "npm:3.4.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.4.3", {\ - "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.4.3-a356ac7e46-36e9ef87fc.zip/node_modules/eslint-visitor-keys/",\ - "packageDependencies": [\ - ["eslint-visitor-keys", "npm:3.4.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["espree", [\ - ["npm:9.3.2", {\ - "packageLocation": "./.yarn/cache/espree-npm-9.3.2-c70fa2a91d-9a790d6779.zip/node_modules/espree/",\ - "packageDependencies": [\ - ["espree", "npm:9.3.2"],\ - ["acorn", "npm:8.7.1"],\ - ["acorn-jsx", "virtual:c70fa2a91dcbd99b022aeff42b1b7671b1079fb9945248dc00dedd7520f879dc07058703f4626782de94f97692f30d5b18138d744c1e1ed1913a7610755d40e3#npm:5.3.2"],\ - ["eslint-visitor-keys", "npm:3.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:9.6.1", {\ - "packageLocation": "./.yarn/cache/espree-npm-9.6.1-a50722a5a9-eb8c149c7a.zip/node_modules/espree/",\ - "packageDependencies": [\ - ["espree", "npm:9.6.1"],\ - ["acorn", "npm:8.10.0"],\ - ["acorn-jsx", "virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2"],\ - ["eslint-visitor-keys", "npm:3.4.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["esquery", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/esquery-npm-1.4.0-f39408b1a7-a0807e17ab.zip/node_modules/esquery/",\ - "packageDependencies": [\ - ["esquery", "npm:1.4.0"],\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.5.0", {\ - "packageLocation": "./.yarn/cache/esquery-npm-1.5.0-d8f8a06879-aefb0d2596.zip/node_modules/esquery/",\ - "packageDependencies": [\ - ["esquery", "npm:1.5.0"],\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["esrecurse", [\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/cache/esrecurse-npm-4.3.0-10b86a887a-ebc17b1a33.zip/node_modules/esrecurse/",\ - "packageDependencies": [\ - ["esrecurse", "npm:4.3.0"],\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["estraverse", [\ - ["npm:5.3.0", {\ - "packageLocation": "./.yarn/cache/estraverse-npm-5.3.0-03284f8f63-072780882d.zip/node_modules/estraverse/",\ - "packageDependencies": [\ - ["estraverse", "npm:5.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["estree-walker", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/estree-walker-npm-2.0.2-dfab42f65c-6151e6f982.zip/node_modules/estree-walker/",\ - "packageDependencies": [\ - ["estree-walker", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["esutils", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/esutils-npm-2.0.3-f865beafd5-22b5b08f74.zip/node_modules/esutils/",\ - "packageDependencies": [\ - ["esutils", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["etag", [\ - ["npm:1.8.1", {\ - "packageLocation": "./.yarn/cache/etag-npm-1.8.1-54a3b989d9-571aeb3dbe.zip/node_modules/etag/",\ - "packageDependencies": [\ - ["etag", "npm:1.8.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["evtd", [\ - ["npm:0.2.3", {\ - "packageLocation": "./.yarn/cache/evtd-npm-0.2.3-51a4edcda1-5ddded6263.zip/node_modules/evtd/",\ - "packageDependencies": [\ - ["evtd", "npm:0.2.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.2.4", {\ - "packageLocation": "./.yarn/cache/evtd-npm-0.2.4-c15e36763d-1f9151a077.zip/node_modules/evtd/",\ - "packageDependencies": [\ - ["evtd", "npm:0.2.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fast-deep-equal", [\ - ["npm:3.1.3", {\ - "packageLocation": "./.yarn/cache/fast-deep-equal-npm-3.1.3-790edcfcf5-e21a9d8d84.zip/node_modules/fast-deep-equal/",\ - "packageDependencies": [\ - ["fast-deep-equal", "npm:3.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fast-json-stable-stringify", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/fast-json-stable-stringify-npm-2.1.0-02e8905fda-b191531e36.zip/node_modules/fast-json-stable-stringify/",\ - "packageDependencies": [\ - ["fast-json-stable-stringify", "npm:2.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fast-levenshtein", [\ - ["npm:2.0.6", {\ - "packageLocation": "./.yarn/cache/fast-levenshtein-npm-2.0.6-fcd74b8df5-92cfec0a8d.zip/node_modules/fast-levenshtein/",\ - "packageDependencies": [\ - ["fast-levenshtein", "npm:2.0.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fastq", [\ - ["npm:1.13.0", {\ - "packageLocation": "./.yarn/cache/fastq-npm-1.13.0-a45963881c-32cf15c29a.zip/node_modules/fastq/",\ - "packageDependencies": [\ - ["fastq", "npm:1.13.0"],\ - ["reusify", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["file-entry-cache", [\ - ["npm:6.0.1", {\ - "packageLocation": "./.yarn/cache/file-entry-cache-npm-6.0.1-31965cf0af-f49701feaa.zip/node_modules/file-entry-cache/",\ - "packageDependencies": [\ - ["file-entry-cache", "npm:6.0.1"],\ - ["flat-cache", "npm:3.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["file-saver", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/cache/file-saver-npm-2.0.5-2c3bc40d53-c62d96e5ce.zip/node_modules/file-saver/",\ - "packageDependencies": [\ - ["file-saver", "npm:2.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fill-range", [\ - ["npm:7.0.1", {\ - "packageLocation": "./.yarn/cache/fill-range-npm-7.0.1-b8b1817caa-cc283f4e65.zip/node_modules/fill-range/",\ - "packageDependencies": [\ - ["fill-range", "npm:7.0.1"],\ - ["to-regex-range", "npm:5.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["find-up", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/find-up-npm-5.0.0-e03e9b796d-07955e3573.zip/node_modules/find-up/",\ - "packageDependencies": [\ - ["find-up", "npm:5.0.0"],\ - ["locate-path", "npm:6.0.0"],\ - ["path-exists", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["flat-cache", [\ - ["npm:3.0.4", {\ - "packageLocation": "./.yarn/cache/flat-cache-npm-3.0.4-ee77e5911e-4fdd10ecbc.zip/node_modules/flat-cache/",\ - "packageDependencies": [\ - ["flat-cache", "npm:3.0.4"],\ - ["flatted", "npm:3.2.5"],\ - ["rimraf", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["flatted", [\ - ["npm:3.2.5", {\ - "packageLocation": "./.yarn/cache/flatted-npm-3.2.5-0ee5a8875f-3c436e9695.zip/node_modules/flatted/",\ - "packageDependencies": [\ - ["flatted", "npm:3.2.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["for-each", [\ - ["npm:0.3.3", {\ - "packageLocation": "./.yarn/cache/for-each-npm-0.3.3-0010ca8cdd-6c48ff2bc6.zip/node_modules/for-each/",\ - "packageDependencies": [\ - ["for-each", "npm:0.3.3"],\ - ["is-callable", "npm:1.2.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["foreground-child", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/foreground-child-npm-3.1.1-77e78ed774-139d270bc8.zip/node_modules/foreground-child/",\ - "packageDependencies": [\ - ["foreground-child", "npm:3.1.1"],\ - ["cross-spawn", "npm:7.0.3"],\ - ["signal-exit", "npm:4.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fresh", [\ - ["npm:0.5.2", {\ - "packageLocation": "./.yarn/cache/fresh-npm-0.5.2-ad2bb4c0a2-13ea8b08f9.zip/node_modules/fresh/",\ - "packageDependencies": [\ - ["fresh", "npm:0.5.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fs-minipass", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/fs-minipass-npm-2.1.0-501ef87306-1b8d128dae.zip/node_modules/fs-minipass/",\ - "packageDependencies": [\ - ["fs-minipass", "npm:2.1.0"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fs.realpath", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/fs.realpath-npm-1.0.0-c8f05d8126-99ddea01a7.zip/node_modules/fs.realpath/",\ - "packageDependencies": [\ - ["fs.realpath", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["fsevents", [\ - ["patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7", {\ - "packageLocation": "./.yarn/unplugged/fsevents-patch-3340e2eb10/node_modules/fsevents/",\ - "packageDependencies": [\ - ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"],\ - ["node-gyp", "npm:9.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["function-bind", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/function-bind-npm-1.1.1-b56b322ae9-b32fbaebb3.zip/node_modules/function-bind/",\ - "packageDependencies": [\ - ["function-bind", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.1.2", {\ - "packageLocation": "./.yarn/cache/function-bind-npm-1.1.2-7a55be9b03-2b0ff4ce70.zip/node_modules/function-bind/",\ - "packageDependencies": [\ - ["function-bind", "npm:1.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["function.prototype.name", [\ - ["npm:1.1.6", {\ - "packageLocation": "./.yarn/cache/function.prototype.name-npm-1.1.6-fd3a6a5cdd-7a3f9bd98a.zip/node_modules/function.prototype.name/",\ - "packageDependencies": [\ - ["function.prototype.name", "npm:1.1.6"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["functions-have-names", "npm:1.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["functions-have-names", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/functions-have-names-npm-1.2.3-e5cf1e2208-c3f1f5ba20.zip/node_modules/functions-have-names/",\ - "packageDependencies": [\ - ["functions-have-names", "npm:1.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["gauge", [\ - ["npm:4.0.4", {\ - "packageLocation": "./.yarn/cache/gauge-npm-4.0.4-8f878385e9-788b6bfe52.zip/node_modules/gauge/",\ - "packageDependencies": [\ - ["gauge", "npm:4.0.4"],\ - ["aproba", "npm:2.0.0"],\ - ["color-support", "npm:1.1.3"],\ - ["console-control-strings", "npm:1.1.0"],\ - ["has-unicode", "npm:2.0.1"],\ - ["signal-exit", "npm:3.0.7"],\ - ["string-width", "npm:4.2.3"],\ - ["strip-ansi", "npm:6.0.1"],\ - ["wide-align", "npm:1.1.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["get-caller-file", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/cache/get-caller-file-npm-2.0.5-80e8a86305-b9769a836d.zip/node_modules/get-caller-file/",\ - "packageDependencies": [\ - ["get-caller-file", "npm:2.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["get-intrinsic", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.1.1-7e868745da-a9fe2ca8fa.zip/node_modules/get-intrinsic/",\ - "packageDependencies": [\ - ["get-intrinsic", "npm:1.1.1"],\ - ["function-bind", "npm:1.1.1"],\ - ["has", "npm:1.0.3"],\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.2.0-eb08ea9b1d-78fc0487b7.zip/node_modules/get-intrinsic/",\ - "packageDependencies": [\ - ["get-intrinsic", "npm:1.2.0"],\ - ["function-bind", "npm:1.1.1"],\ - ["has", "npm:1.0.3"],\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.2.1-ae857fd610-5b61d88552.zip/node_modules/get-intrinsic/",\ - "packageDependencies": [\ - ["get-intrinsic", "npm:1.2.1"],\ - ["function-bind", "npm:1.1.1"],\ - ["has", "npm:1.0.3"],\ - ["has-proto", "npm:1.0.1"],\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.2.2", {\ - "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.2.2-3f446d8847-447ff0724d.zip/node_modules/get-intrinsic/",\ - "packageDependencies": [\ - ["get-intrinsic", "npm:1.2.2"],\ - ["function-bind", "npm:1.1.2"],\ - ["has-proto", "npm:1.0.1"],\ - ["has-symbols", "npm:1.0.3"],\ - ["hasown", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["get-port", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/get-port-npm-4.2.0-07a1c5d34e-6c9a452b2d.zip/node_modules/get-port/",\ - "packageDependencies": [\ - ["get-port", "npm:4.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["get-symbol-description", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/get-symbol-description-npm-1.0.0-9c95a4bc1f-9ceff8fe96.zip/node_modules/get-symbol-description/",\ - "packageDependencies": [\ - ["get-symbol-description", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["get-tsconfig", [\ - ["npm:4.7.2", {\ - "packageLocation": "./.yarn/cache/get-tsconfig-npm-4.7.2-8fbccd9fcf-1723589032.zip/node_modules/get-tsconfig/",\ - "packageDependencies": [\ - ["get-tsconfig", "npm:4.7.2"],\ - ["resolve-pkg-maps", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["glob", [\ - ["npm:10.2.4", {\ - "packageLocation": "./.yarn/cache/glob-npm-10.2.4-49f715fccc-29845faaa1.zip/node_modules/glob/",\ - "packageDependencies": [\ - ["glob", "npm:10.2.4"],\ - ["foreground-child", "npm:3.1.1"],\ - ["jackspeak", "npm:2.2.0"],\ - ["minimatch", "npm:9.0.0"],\ - ["minipass", "npm:6.0.1"],\ - ["path-scurry", "npm:1.9.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.2.3", {\ - "packageLocation": "./.yarn/cache/glob-npm-7.2.3-2d866d17a5-29452e97b3.zip/node_modules/glob/",\ - "packageDependencies": [\ - ["glob", "npm:7.2.3"],\ - ["fs.realpath", "npm:1.0.0"],\ - ["inflight", "npm:1.0.6"],\ - ["inherits", "npm:2.0.4"],\ - ["minimatch", "npm:3.1.2"],\ - ["once", "npm:1.4.0"],\ - ["path-is-absolute", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.0.3", {\ - "packageLocation": "./.yarn/cache/glob-npm-8.0.3-750f909025-50bcdea19d.zip/node_modules/glob/",\ - "packageDependencies": [\ - ["glob", "npm:8.0.3"],\ - ["fs.realpath", "npm:1.0.0"],\ - ["inflight", "npm:1.0.6"],\ - ["inherits", "npm:2.0.4"],\ - ["minimatch", "npm:5.1.0"],\ - ["once", "npm:1.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["glob-parent", [\ - ["npm:5.1.2", {\ - "packageLocation": "./.yarn/cache/glob-parent-npm-5.1.2-021ab32634-f4f2bfe242.zip/node_modules/glob-parent/",\ - "packageDependencies": [\ - ["glob-parent", "npm:5.1.2"],\ - ["is-glob", "npm:4.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.0.2", {\ - "packageLocation": "./.yarn/cache/glob-parent-npm-6.0.2-2cbef12738-c13ee97978.zip/node_modules/glob-parent/",\ - "packageDependencies": [\ - ["glob-parent", "npm:6.0.2"],\ - ["is-glob", "npm:4.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["globals", [\ - ["npm:13.15.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-13.15.0-c0b0c83a7a-383ade0873.zip/node_modules/globals/",\ - "packageDependencies": [\ - ["globals", "npm:13.15.0"],\ - ["type-fest", "npm:0.20.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:13.19.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-13.19.0-a63c75a2dd-a000dbd00b.zip/node_modules/globals/",\ - "packageDependencies": [\ - ["globals", "npm:13.19.0"],\ - ["type-fest", "npm:0.20.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:13.21.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-13.21.0-c0829ce1cb-86c92ca8a0.zip/node_modules/globals/",\ - "packageDependencies": [\ - ["globals", "npm:13.21.0"],\ - ["type-fest", "npm:0.20.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:13.24.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-13.24.0-cc7713139c-56066ef058.zip/node_modules/globals/",\ - "packageDependencies": [\ - ["globals", "npm:13.24.0"],\ - ["type-fest", "npm:0.20.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["globalthis", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/globalthis-npm-1.0.3-96cd56020d-fbd7d760dc.zip/node_modules/globalthis/",\ - "packageDependencies": [\ - ["globalthis", "npm:1.0.3"],\ - ["define-properties", "npm:1.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["gopd", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/gopd-npm-1.0.1-10c1d0b534-a5ccfb8806.zip/node_modules/gopd/",\ - "packageDependencies": [\ - ["gopd", "npm:1.0.1"],\ - ["get-intrinsic", "npm:1.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["graceful-fs", [\ - ["npm:4.2.10", {\ - "packageLocation": "./.yarn/cache/graceful-fs-npm-4.2.10-79c70989ca-3f109d70ae.zip/node_modules/graceful-fs/",\ - "packageDependencies": [\ - ["graceful-fs", "npm:4.2.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["graphemer", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/graphemer-npm-1.4.0-0627732d35-bab8f0be9b.zip/node_modules/graphemer/",\ - "packageDependencies": [\ - ["graphemer", "npm:1.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["hammerjs", [\ - ["npm:2.0.8", {\ - "packageLocation": "./.yarn/cache/hammerjs-npm-2.0.8-f656ba2573-b092da7d15.zip/node_modules/hammerjs/",\ - "packageDependencies": [\ - ["hammerjs", "npm:2.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/has-npm-1.0.3-b7f00631c1-b9ad53d53b.zip/node_modules/has/",\ - "packageDependencies": [\ - ["has", "npm:1.0.3"],\ - ["function-bind", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-bigints", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/has-bigints-npm-1.0.2-52732e614d-390e31e7be.zip/node_modules/has-bigints/",\ - "packageDependencies": [\ - ["has-bigints", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-flag", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/has-flag-npm-3.0.0-16ac11fe05-4a15638b45.zip/node_modules/has-flag/",\ - "packageDependencies": [\ - ["has-flag", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/has-flag-npm-4.0.0-32af9f0536-261a135703.zip/node_modules/has-flag/",\ - "packageDependencies": [\ - ["has-flag", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-property-descriptors", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/has-property-descriptors-npm-1.0.0-56289b918d-a6d3f0a266.zip/node_modules/has-property-descriptors/",\ - "packageDependencies": [\ - ["has-property-descriptors", "npm:1.0.0"],\ - ["get-intrinsic", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-proto", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/has-proto-npm-1.0.1-631ea9d820-febc5b5b53.zip/node_modules/has-proto/",\ - "packageDependencies": [\ - ["has-proto", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-symbols", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/has-symbols-npm-1.0.3-1986bff2c4-a054c40c63.zip/node_modules/has-symbols/",\ - "packageDependencies": [\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-tostringtag", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/has-tostringtag-npm-1.0.0-b1fcf3ab55-cc12eb28cb.zip/node_modules/has-tostringtag/",\ - "packageDependencies": [\ - ["has-tostringtag", "npm:1.0.0"],\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["has-unicode", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/has-unicode-npm-2.0.1-893adb4747-1eab07a743.zip/node_modules/has-unicode/",\ - "packageDependencies": [\ - ["has-unicode", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["hasown", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/hasown-npm-2.0.0-78b794ceef-6151c75ca1.zip/node_modules/hasown/",\ - "packageDependencies": [\ - ["hasown", "npm:2.0.0"],\ - ["function-bind", "npm:1.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["highcharts", [\ - ["npm:11.4.0", {\ - "packageLocation": "./.yarn/cache/highcharts-npm-11.4.0-8a1f46b545-873e661914.zip/node_modules/highcharts/",\ - "packageDependencies": [\ - ["highcharts", "npm:11.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["highlight.js", [\ - ["npm:11.9.0", {\ - "packageLocation": "./.yarn/cache/highlight.js-npm-11.9.0-ec99f7b12f-4043d31c5d.zip/node_modules/highlight.js/",\ - "packageDependencies": [\ - ["highlight.js", "npm:11.9.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["html-escaper", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/html-escaper-npm-2.0.2-38e51ef294-d2df2da3ad.zip/node_modules/html-escaper/",\ - "packageDependencies": [\ - ["html-escaper", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["html-validate", [\ - ["npm:8.18.1", {\ - "packageLocation": "./.yarn/cache/html-validate-npm-8.18.1-c5271a0fb9-53479bf75b.zip/node_modules/html-validate/",\ - "packageDependencies": [\ - ["html-validate", "npm:8.18.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.18.1", {\ - "packageLocation": "./.yarn/__virtual__/html-validate-virtual-640261ed3b/0/cache/html-validate-npm-8.18.1-c5271a0fb9-53479bf75b.zip/node_modules/html-validate/",\ - "packageDependencies": [\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.18.1"],\ - ["@babel/code-frame", "npm:7.16.7"],\ - ["@html-validate/stylish", "npm:4.1.0"],\ - ["@sidvind/better-ajv-errors", "virtual:640261ed3b7a9880a388cc504caacf8ea790dd52f1cb31fbc3be445cb2adc6e73fc87097de620863105eb917510145ef2457d30000c7361456ab67ec0b895136#npm:2.1.3"],\ - ["@types/jest", null],\ - ["@types/jest-diff", null],\ - ["@types/jest-snapshot", null],\ - ["@types/vitest", null],\ - ["ajv", "npm:8.11.0"],\ - ["deepmerge", "npm:4.3.1"],\ - ["glob", "npm:10.2.4"],\ - ["ignore", "npm:5.3.1"],\ - ["jest", null],\ - ["jest-diff", null],\ - ["jest-snapshot", null],\ - ["kleur", "npm:4.1.4"],\ - ["minimist", "npm:1.2.6"],\ - ["prompts", "npm:2.4.2"],\ - ["semver", "npm:7.3.7"],\ - ["vitest", null]\ - ],\ - "packagePeers": [\ - "@types/jest-diff",\ - "@types/jest-snapshot",\ - "@types/jest",\ - "@types/vitest",\ - "jest-diff",\ - "jest-snapshot",\ - "jest",\ - "vitest"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["htmlnano", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/htmlnano-npm-2.0.2-a89803bfeb-41f9e0c0e5.zip/node_modules/htmlnano/",\ - "packageDependencies": [\ - ["htmlnano", "npm:2.0.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:cdd2835c1202e86fad55b2266578ff3755267672440481af37bdfff670fd205f561469a10385c20d1ff403af7fad49006bc71ffff21d12592a8ebd0c8be79c0c#npm:2.0.2", {\ - "packageLocation": "./.yarn/__virtual__/htmlnano-virtual-d2bb6df599/0/cache/htmlnano-npm-2.0.2-a89803bfeb-41f9e0c0e5.zip/node_modules/htmlnano/",\ - "packageDependencies": [\ - ["htmlnano", "virtual:cdd2835c1202e86fad55b2266578ff3755267672440481af37bdfff670fd205f561469a10385c20d1ff403af7fad49006bc71ffff21d12592a8ebd0c8be79c0c#npm:2.0.2"],\ - ["@types/cssnano", null],\ - ["@types/postcss", null],\ - ["@types/purgecss", null],\ - ["@types/relateurl", null],\ - ["@types/srcset", null],\ - ["@types/svgo", null],\ - ["@types/terser", null],\ - ["@types/uncss", null],\ - ["cosmiconfig", "npm:7.0.1"],\ - ["cssnano", null],\ - ["postcss", null],\ - ["posthtml", "npm:0.16.6"],\ - ["purgecss", null],\ - ["relateurl", null],\ - ["srcset", null],\ - ["svgo", "npm:2.8.0"],\ - ["terser", null],\ - ["timsort", "npm:0.3.0"],\ - ["uncss", null]\ - ],\ - "packagePeers": [\ - "@types/cssnano",\ - "@types/postcss",\ - "@types/purgecss",\ - "@types/relateurl",\ - "@types/srcset",\ - "@types/svgo",\ - "@types/terser",\ - "@types/uncss",\ - "cssnano",\ - "postcss",\ - "purgecss",\ - "relateurl",\ - "srcset",\ - "svgo",\ - "terser",\ - "uncss"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["htmlparser2", [\ - ["npm:7.2.0", {\ - "packageLocation": "./.yarn/cache/htmlparser2-npm-7.2.0-ec7c96986f-96563d9965.zip/node_modules/htmlparser2/",\ - "packageDependencies": [\ - ["htmlparser2", "npm:7.2.0"],\ - ["domelementtype", "npm:2.3.0"],\ - ["domhandler", "npm:4.3.1"],\ - ["domutils", "npm:2.8.0"],\ - ["entities", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["http-cache-semantics", [\ - ["npm:4.1.1", {\ - "packageLocation": "./.yarn/cache/http-cache-semantics-npm-4.1.1-1120131375-83ac0bc60b.zip/node_modules/http-cache-semantics/",\ - "packageDependencies": [\ - ["http-cache-semantics", "npm:4.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["http-errors", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/http-errors-npm-2.0.0-3f1c503428-9b0a378266.zip/node_modules/http-errors/",\ - "packageDependencies": [\ - ["http-errors", "npm:2.0.0"],\ - ["depd", "npm:2.0.0"],\ - ["inherits", "npm:2.0.4"],\ - ["setprototypeof", "npm:1.2.0"],\ - ["statuses", "npm:2.0.1"],\ - ["toidentifier", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["http-proxy-agent", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/http-proxy-agent-npm-5.0.0-7f1f121b83-e2ee1ff165.zip/node_modules/http-proxy-agent/",\ - "packageDependencies": [\ - ["http-proxy-agent", "npm:5.0.0"],\ - ["@tootallnate/once", "npm:2.0.0"],\ - ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["https-proxy-agent", [\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/https-proxy-agent-npm-5.0.1-42d65f358e-571fccdf38.zip/node_modules/https-proxy-agent/",\ - "packageDependencies": [\ - ["https-proxy-agent", "npm:5.0.1"],\ - ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["humanize-ms", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/humanize-ms-npm-1.2.1-e942bd7329-9c7a74a282.zip/node_modules/humanize-ms/",\ - "packageDependencies": [\ - ["humanize-ms", "npm:1.2.1"],\ - ["ms", "npm:2.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ical.js", [\ - ["npm:1.5.0", {\ - "packageLocation": "./.yarn/cache/ical.js-npm-1.5.0-5ba1c69420-51df7a01f4.zip/node_modules/ical.js/",\ - "packageDependencies": [\ - ["ical.js", "npm:1.5.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["iconv-lite", [\ - ["npm:0.6.3", {\ - "packageLocation": "./.yarn/cache/iconv-lite-npm-0.6.3-24b8aae27e-3f60d47a5c.zip/node_modules/iconv-lite/",\ - "packageDependencies": [\ - ["iconv-lite", "npm:0.6.3"],\ - ["safer-buffer", "npm:2.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ignore", [\ - ["npm:5.2.0", {\ - "packageLocation": "./.yarn/cache/ignore-npm-5.2.0-fc4b58a4f3-6b1f926792.zip/node_modules/ignore/",\ - "packageDependencies": [\ - ["ignore", "npm:5.2.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.2.4", {\ - "packageLocation": "./.yarn/cache/ignore-npm-5.2.4-fbe6e989e5-3d4c309c60.zip/node_modules/ignore/",\ - "packageDependencies": [\ - ["ignore", "npm:5.2.4"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.3.1", {\ - "packageLocation": "./.yarn/cache/ignore-npm-5.3.1-f6947c5df7-71d7bb4c1d.zip/node_modules/ignore/",\ - "packageDependencies": [\ - ["ignore", "npm:5.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["immutable", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/immutable-npm-4.0.0-74b844f82e-4b5e9181e4.zip/node_modules/immutable/",\ - "packageDependencies": [\ - ["immutable", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["import-fresh", [\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/import-fresh-npm-3.3.0-3e34265ca9-2cacfad06e.zip/node_modules/import-fresh/",\ - "packageDependencies": [\ - ["import-fresh", "npm:3.3.0"],\ - ["parent-module", "npm:1.0.1"],\ - ["resolve-from", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["imurmurhash", [\ - ["npm:0.1.4", {\ - "packageLocation": "./.yarn/cache/imurmurhash-npm-0.1.4-610c5068a0-7cae75c8cd.zip/node_modules/imurmurhash/",\ - "packageDependencies": [\ - ["imurmurhash", "npm:0.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["indent-string", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/indent-string-npm-4.0.0-7b717435b2-824cfb9929.zip/node_modules/indent-string/",\ - "packageDependencies": [\ - ["indent-string", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["infer-owner", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/infer-owner-npm-1.0.4-685ac3d2af-181e732764.zip/node_modules/infer-owner/",\ - "packageDependencies": [\ - ["infer-owner", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["inflight", [\ - ["npm:1.0.6", {\ - "packageLocation": "./.yarn/cache/inflight-npm-1.0.6-ccedb4b908-f4f76aa072.zip/node_modules/inflight/",\ - "packageDependencies": [\ - ["inflight", "npm:1.0.6"],\ - ["once", "npm:1.4.0"],\ - ["wrappy", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["inherits", [\ - ["npm:2.0.4", {\ - "packageLocation": "./.yarn/cache/inherits-npm-2.0.4-c66b3957a0-4a48a73384.zip/node_modules/inherits/",\ - "packageDependencies": [\ - ["inherits", "npm:2.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["internal-slot", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/internal-slot-npm-1.0.5-a2241f3e66-97e84046bf.zip/node_modules/internal-slot/",\ - "packageDependencies": [\ - ["internal-slot", "npm:1.0.5"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["has", "npm:1.0.3"],\ - ["side-channel", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["internmap", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/internmap-npm-2.0.3-d74f5c9998-7ca41ec6ab.zip/node_modules/internmap/",\ - "packageDependencies": [\ - ["internmap", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ip", [\ - ["npm:1.1.8", {\ - "packageLocation": "./.yarn/cache/ip-npm-1.1.8-abea558b72-a2ade53eb3.zip/node_modules/ip/",\ - "packageDependencies": [\ - ["ip", "npm:1.1.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-array-buffer", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/is-array-buffer-npm-3.0.1-3e93b14326-f26ab87448.zip/node_modules/is-array-buffer/",\ - "packageDependencies": [\ - ["is-array-buffer", "npm:3.0.1"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.2.0"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/is-array-buffer-npm-3.0.2-0dec897785-dcac9dda66.zip/node_modules/is-array-buffer/",\ - "packageDependencies": [\ - ["is-array-buffer", "npm:3.0.2"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-arrayish", [\ - ["npm:0.2.1", {\ - "packageLocation": "./.yarn/cache/is-arrayish-npm-0.2.1-23927dfb15-eef4417e3c.zip/node_modules/is-arrayish/",\ - "packageDependencies": [\ - ["is-arrayish", "npm:0.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-bigint", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/is-bigint-npm-1.0.4-31c2eecbc9-c56edfe09b.zip/node_modules/is-bigint/",\ - "packageDependencies": [\ - ["is-bigint", "npm:1.0.4"],\ - ["has-bigints", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-binary-path", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/is-binary-path-npm-2.1.0-e61d46f557-84192eb88c.zip/node_modules/is-binary-path/",\ - "packageDependencies": [\ - ["is-binary-path", "npm:2.1.0"],\ - ["binary-extensions", "npm:2.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-boolean-object", [\ - ["npm:1.1.2", {\ - "packageLocation": "./.yarn/cache/is-boolean-object-npm-1.1.2-ecbd575e6a-c03b23dbaa.zip/node_modules/is-boolean-object/",\ - "packageDependencies": [\ - ["is-boolean-object", "npm:1.1.2"],\ - ["call-bind", "npm:1.0.2"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-builtin-module", [\ - ["npm:3.2.1", {\ - "packageLocation": "./.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-e8f0ffc19a.zip/node_modules/is-builtin-module/",\ - "packageDependencies": [\ - ["is-builtin-module", "npm:3.2.1"],\ - ["builtin-modules", "npm:3.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-callable", [\ - ["npm:1.2.4", {\ - "packageLocation": "./.yarn/cache/is-callable-npm-1.2.4-03fc17459c-1a28d57dc4.zip/node_modules/is-callable/",\ - "packageDependencies": [\ - ["is-callable", "npm:1.2.4"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.2.7", {\ - "packageLocation": "./.yarn/cache/is-callable-npm-1.2.7-808a303e61-61fd57d03b.zip/node_modules/is-callable/",\ - "packageDependencies": [\ - ["is-callable", "npm:1.2.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-core-module", [\ - ["npm:2.12.1", {\ - "packageLocation": "./.yarn/cache/is-core-module-npm-2.12.1-ce74e89160-f04ea30533.zip/node_modules/is-core-module/",\ - "packageDependencies": [\ - ["is-core-module", "npm:2.12.1"],\ - ["has", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.13.0", {\ - "packageLocation": "./.yarn/cache/is-core-module-npm-2.13.0-e444c50225-053ab101fb.zip/node_modules/is-core-module/",\ - "packageDependencies": [\ - ["is-core-module", "npm:2.13.0"],\ - ["has", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.13.1", {\ - "packageLocation": "./.yarn/cache/is-core-module-npm-2.13.1-36e17434f9-256559ee8a.zip/node_modules/is-core-module/",\ - "packageDependencies": [\ - ["is-core-module", "npm:2.13.1"],\ - ["hasown", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.9.0", {\ - "packageLocation": "./.yarn/cache/is-core-module-npm-2.9.0-5ba77c35ae-b27034318b.zip/node_modules/is-core-module/",\ - "packageDependencies": [\ - ["is-core-module", "npm:2.9.0"],\ - ["has", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-date-object", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/is-date-object-npm-1.0.5-88f3d08b5e-baa9077cdf.zip/node_modules/is-date-object/",\ - "packageDependencies": [\ - ["is-date-object", "npm:1.0.5"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-expression", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/is-expression-npm-4.0.0-44cc07c8aa-0f01d0ff53.zip/node_modules/is-expression/",\ - "packageDependencies": [\ - ["is-expression", "npm:4.0.0"],\ - ["acorn", "npm:7.4.1"],\ - ["object-assign", "npm:4.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-extglob", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/is-extglob-npm-2.1.1-0870ea68b5-df033653d0.zip/node_modules/is-extglob/",\ - "packageDependencies": [\ - ["is-extglob", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-fullwidth-code-point", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/is-fullwidth-code-point-npm-3.0.0-1ecf4ebee5-44a30c2945.zip/node_modules/is-fullwidth-code-point/",\ - "packageDependencies": [\ - ["is-fullwidth-code-point", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-glob", [\ - ["npm:4.0.3", {\ - "packageLocation": "./.yarn/cache/is-glob-npm-4.0.3-cb87bf1bdb-d381c1319f.zip/node_modules/is-glob/",\ - "packageDependencies": [\ - ["is-glob", "npm:4.0.3"],\ - ["is-extglob", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-json", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/is-json-npm-2.0.1-a385cacc72-29efc4f82e.zip/node_modules/is-json/",\ - "packageDependencies": [\ - ["is-json", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-lambda", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/is-lambda-npm-1.0.1-7ab55bc8a8-93a32f0194.zip/node_modules/is-lambda/",\ - "packageDependencies": [\ - ["is-lambda", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-negative-zero", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/is-negative-zero-npm-2.0.2-0adac91f15-f3232194c4.zip/node_modules/is-negative-zero/",\ - "packageDependencies": [\ - ["is-negative-zero", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-number", [\ - ["npm:7.0.0", {\ - "packageLocation": "./.yarn/cache/is-number-npm-7.0.0-060086935c-456ac6f8e0.zip/node_modules/is-number/",\ - "packageDependencies": [\ - ["is-number", "npm:7.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-number-object", [\ - ["npm:1.0.7", {\ - "packageLocation": "./.yarn/cache/is-number-object-npm-1.0.7-539d0e274d-d1e8d01bb0.zip/node_modules/is-number-object/",\ - "packageDependencies": [\ - ["is-number-object", "npm:1.0.7"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-path-inside", [\ - ["npm:3.0.3", {\ - "packageLocation": "./.yarn/cache/is-path-inside-npm-3.0.3-2ea0ef44fd-abd50f0618.zip/node_modules/is-path-inside/",\ - "packageDependencies": [\ - ["is-path-inside", "npm:3.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-promise", [\ - ["npm:2.2.2", {\ - "packageLocation": "./.yarn/cache/is-promise-npm-2.2.2-afbf94db67-18bf7d1c59.zip/node_modules/is-promise/",\ - "packageDependencies": [\ - ["is-promise", "npm:2.2.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-regex", [\ - ["npm:1.1.4", {\ - "packageLocation": "./.yarn/cache/is-regex-npm-1.1.4-cca193ef11-362399b335.zip/node_modules/is-regex/",\ - "packageDependencies": [\ - ["is-regex", "npm:1.1.4"],\ - ["call-bind", "npm:1.0.2"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-shared-array-buffer", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/is-shared-array-buffer-npm-1.0.2-32e4181fcd-9508929cf1.zip/node_modules/is-shared-array-buffer/",\ - "packageDependencies": [\ - ["is-shared-array-buffer", "npm:1.0.2"],\ - ["call-bind", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-string", [\ - ["npm:1.0.7", {\ - "packageLocation": "./.yarn/cache/is-string-npm-1.0.7-9f7066daed-323b3d0462.zip/node_modules/is-string/",\ - "packageDependencies": [\ - ["is-string", "npm:1.0.7"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-symbol", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/is-symbol-npm-1.0.4-eb9baac703-92805812ef.zip/node_modules/is-symbol/",\ - "packageDependencies": [\ - ["is-symbol", "npm:1.0.4"],\ - ["has-symbols", "npm:1.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-typed-array", [\ - ["npm:1.1.10", {\ - "packageLocation": "./.yarn/cache/is-typed-array-npm-1.1.10-fe4ef83cdc-aac6ecb59d.zip/node_modules/is-typed-array/",\ - "packageDependencies": [\ - ["is-typed-array", "npm:1.1.10"],\ - ["available-typed-arrays", "npm:1.0.5"],\ - ["call-bind", "npm:1.0.2"],\ - ["for-each", "npm:0.3.3"],\ - ["gopd", "npm:1.0.1"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.1.12", {\ - "packageLocation": "./.yarn/cache/is-typed-array-npm-1.1.12-6135c91b1a-4c89c4a3be.zip/node_modules/is-typed-array/",\ - "packageDependencies": [\ - ["is-typed-array", "npm:1.1.12"],\ - ["which-typed-array", "npm:1.1.13"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["is-weakref", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/is-weakref-npm-1.0.2-ff80e8c314-95bd9a57cd.zip/node_modules/is-weakref/",\ - "packageDependencies": [\ - ["is-weakref", "npm:1.0.2"],\ - ["call-bind", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["isarray", [\ - ["npm:2.0.5", {\ - "packageLocation": "./.yarn/cache/isarray-npm-2.0.5-4ba522212d-bd5bbe4104.zip/node_modules/isarray/",\ - "packageDependencies": [\ - ["isarray", "npm:2.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["isbinaryfile", [\ - ["npm:4.0.10", {\ - "packageLocation": "./.yarn/cache/isbinaryfile-npm-4.0.10-91d1251522-a6b28db7e2.zip/node_modules/isbinaryfile/",\ - "packageDependencies": [\ - ["isbinaryfile", "npm:4.0.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["isexe", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/isexe-npm-2.0.0-b58870bd2e-26bf6c5480.zip/node_modules/isexe/",\ - "packageDependencies": [\ - ["isexe", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["istanbul-lib-coverage", [\ - ["npm:3.2.0", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-coverage-npm-3.2.0-93f84b2c8c-a2a545033b.zip/node_modules/istanbul-lib-coverage/",\ - "packageDependencies": [\ - ["istanbul-lib-coverage", "npm:3.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["istanbul-lib-report", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-report-npm-3.0.0-660f97340a-3f29eb3f53.zip/node_modules/istanbul-lib-report/",\ - "packageDependencies": [\ - ["istanbul-lib-report", "npm:3.0.0"],\ - ["istanbul-lib-coverage", "npm:3.2.0"],\ - ["make-dir", "npm:3.1.0"],\ - ["supports-color", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-report-npm-3.0.1-b17446ab24-fd17a1b879.zip/node_modules/istanbul-lib-report/",\ - "packageDependencies": [\ - ["istanbul-lib-report", "npm:3.0.1"],\ - ["istanbul-lib-coverage", "npm:3.2.0"],\ - ["make-dir", "npm:4.0.0"],\ - ["supports-color", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["istanbul-reports", [\ - ["npm:3.1.6", {\ - "packageLocation": "./.yarn/cache/istanbul-reports-npm-3.1.6-66918eb97f-44c4c0582f.zip/node_modules/istanbul-reports/",\ - "packageDependencies": [\ - ["istanbul-reports", "npm:3.1.6"],\ - ["html-escaper", "npm:2.0.2"],\ - ["istanbul-lib-report", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["jackspeak", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/jackspeak-npm-2.2.0-5383861524-d8cd5be4f0.zip/node_modules/jackspeak/",\ - "packageDependencies": [\ - ["jackspeak", "npm:2.2.0"],\ - ["@isaacs/cliui", "npm:8.0.2"],\ - ["@pkgjs/parseargs", "npm:0.11.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["jquery", [\ - ["npm:3.7.1", {\ - "packageLocation": "./.yarn/cache/jquery-npm-3.7.1-eeeac0f21e-4370b8139d.zip/node_modules/jquery/",\ - "packageDependencies": [\ - ["jquery", "npm:3.7.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["jquery-migrate", [\ - ["npm:3.4.1", {\ - "packageLocation": "./.yarn/cache/jquery-migrate-npm-3.4.1-c842b6adb7-d2cb17d055.zip/node_modules/jquery-migrate/",\ - "packageDependencies": [\ - ["jquery-migrate", "npm:3.4.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1", {\ - "packageLocation": "./.yarn/__virtual__/jquery-migrate-virtual-e23c9912e5/0/cache/jquery-migrate-npm-3.4.1-c842b6adb7-d2cb17d055.zip/node_modules/jquery-migrate/",\ - "packageDependencies": [\ - ["jquery-migrate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1"],\ - ["@types/jquery", null],\ - ["jquery", "npm:3.7.1"]\ - ],\ - "packagePeers": [\ - "@types/jquery",\ - "jquery"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["js-cookie", [\ - ["npm:3.0.5", {\ - "packageLocation": "./.yarn/cache/js-cookie-npm-3.0.5-8fc8fcc9b4-2dbd2809c6.zip/node_modules/js-cookie/",\ - "packageDependencies": [\ - ["js-cookie", "npm:3.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["js-stringify", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/js-stringify-npm-1.0.2-898ffeac57-f9701d9e53.zip/node_modules/js-stringify/",\ - "packageDependencies": [\ - ["js-stringify", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["js-tokens", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/js-tokens-npm-4.0.0-0ac852e9e2-8a95213a5a.zip/node_modules/js-tokens/",\ - "packageDependencies": [\ - ["js-tokens", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["js-yaml", [\ - ["npm:4.1.0", {\ - "packageLocation": "./.yarn/cache/js-yaml-npm-4.1.0-3606f32312-c7830dfd45.zip/node_modules/js-yaml/",\ - "packageDependencies": [\ - ["js-yaml", "npm:4.1.0"],\ - ["argparse", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["json-parse-even-better-errors", [\ - ["npm:2.3.1", {\ - "packageLocation": "./.yarn/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-798ed4cf33.zip/node_modules/json-parse-even-better-errors/",\ - "packageDependencies": [\ - ["json-parse-even-better-errors", "npm:2.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["json-schema-traverse", [\ - ["npm:0.4.1", {\ - "packageLocation": "./.yarn/cache/json-schema-traverse-npm-0.4.1-4759091693-7486074d3b.zip/node_modules/json-schema-traverse/",\ - "packageDependencies": [\ - ["json-schema-traverse", "npm:0.4.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/json-schema-traverse-npm-1.0.0-fb3684f4f0-02f2f466cd.zip/node_modules/json-schema-traverse/",\ - "packageDependencies": [\ - ["json-schema-traverse", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["json-stable-stringify-without-jsonify", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/json-stable-stringify-without-jsonify-npm-1.0.1-b65772b28b-cff44156dd.zip/node_modules/json-stable-stringify-without-jsonify/",\ - "packageDependencies": [\ - ["json-stable-stringify-without-jsonify", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["json5", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/json5-npm-1.0.2-9607f93e30-866458a8c5.zip/node_modules/json5/",\ - "packageDependencies": [\ - ["json5", "npm:1.0.2"],\ - ["minimist", "npm:1.2.6"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.2.1", {\ - "packageLocation": "./.yarn/cache/json5-npm-2.2.1-44675c859c-74b8a23b10.zip/node_modules/json5/",\ - "packageDependencies": [\ - ["json5", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["jstransformer", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/jstransformer-npm-1.0.0-41a47d180a-1e019fde17.zip/node_modules/jstransformer/",\ - "packageDependencies": [\ - ["jstransformer", "npm:1.0.0"],\ - ["is-promise", "npm:2.2.2"],\ - ["promise", "npm:7.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["kleur", [\ - ["npm:3.0.3", {\ - "packageLocation": "./.yarn/cache/kleur-npm-3.0.3-f6f53649a4-df82cd1e17.zip/node_modules/kleur/",\ - "packageDependencies": [\ - ["kleur", "npm:3.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.1.4", {\ - "packageLocation": "./.yarn/cache/kleur-npm-4.1.4-7a73ff57c6-7f6db36e37.zip/node_modules/kleur/",\ - "packageDependencies": [\ - ["kleur", "npm:4.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["levn", [\ - ["npm:0.4.1", {\ - "packageLocation": "./.yarn/cache/levn-npm-0.4.1-d183b2d7bb-12c5021c85.zip/node_modules/levn/",\ - "packageDependencies": [\ - ["levn", "npm:0.4.1"],\ - ["prelude-ls", "npm:1.2.1"],\ - ["type-check", "npm:0.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/cache/lightningcss-npm-1.17.1-7428f2d516-0bf9d5c932.zip/node_modules/lightningcss/",\ - "packageDependencies": [\ - ["lightningcss", "npm:1.17.1"],\ - ["detect-libc", "npm:1.0.3"],\ - ["lightningcss-darwin-arm64", "npm:1.17.1"],\ - ["lightningcss-darwin-x64", "npm:1.17.1"],\ - ["lightningcss-linux-arm-gnueabihf", "npm:1.17.1"],\ - ["lightningcss-linux-arm64-gnu", "npm:1.17.1"],\ - ["lightningcss-linux-arm64-musl", "npm:1.17.1"],\ - ["lightningcss-linux-x64-gnu", "npm:1.17.1"],\ - ["lightningcss-linux-x64-musl", "npm:1.17.1"],\ - ["lightningcss-win32-x64-msvc", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-darwin-arm64", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-darwin-arm64-npm-1.17.1-a84f0d052c/node_modules/lightningcss-darwin-arm64/",\ - "packageDependencies": [\ - ["lightningcss-darwin-arm64", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-darwin-x64", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-darwin-x64-npm-1.17.1-131957b733/node_modules/lightningcss-darwin-x64/",\ - "packageDependencies": [\ - ["lightningcss-darwin-x64", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-linux-arm-gnueabihf", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm-gnueabihf-npm-1.17.1-bbf7f4f213/node_modules/lightningcss-linux-arm-gnueabihf/",\ - "packageDependencies": [\ - ["lightningcss-linux-arm-gnueabihf", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-linux-arm64-gnu", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm64-gnu-npm-1.17.1-5b0e0aecb4/node_modules/lightningcss-linux-arm64-gnu/",\ - "packageDependencies": [\ - ["lightningcss-linux-arm64-gnu", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-linux-arm64-musl", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-linux-arm64-musl-npm-1.17.1-4da73a58bf/node_modules/lightningcss-linux-arm64-musl/",\ - "packageDependencies": [\ - ["lightningcss-linux-arm64-musl", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-linux-x64-gnu", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-linux-x64-gnu-npm-1.17.1-39d6988913/node_modules/lightningcss-linux-x64-gnu/",\ - "packageDependencies": [\ - ["lightningcss-linux-x64-gnu", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-linux-x64-musl", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-linux-x64-musl-npm-1.17.1-84311b8bf8/node_modules/lightningcss-linux-x64-musl/",\ - "packageDependencies": [\ - ["lightningcss-linux-x64-musl", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lightningcss-win32-x64-msvc", [\ - ["npm:1.17.1", {\ - "packageLocation": "./.yarn/unplugged/lightningcss-win32-x64-msvc-npm-1.17.1-849d8d151b/node_modules/lightningcss-win32-x64-msvc/",\ - "packageDependencies": [\ - ["lightningcss-win32-x64-msvc", "npm:1.17.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lines-and-columns", [\ - ["npm:1.2.4", {\ - "packageLocation": "./.yarn/cache/lines-and-columns-npm-1.2.4-d6c7cc5799-0c37f9f7fa.zip/node_modules/lines-and-columns/",\ - "packageDependencies": [\ - ["lines-and-columns", "npm:1.2.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["list.js", [\ - ["npm:2.3.1", {\ - "packageLocation": "./.yarn/cache/list.js-npm-2.3.1-31415fcbbd-3bb4e9035b.zip/node_modules/list.js/",\ - "packageDependencies": [\ - ["list.js", "npm:2.3.1"],\ - ["string-natural-compare", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lmdb", [\ - ["npm:2.5.2", {\ - "packageLocation": "./.yarn/unplugged/lmdb-npm-2.5.2-76ec56235a/node_modules/lmdb/",\ - "packageDependencies": [\ - ["lmdb", "npm:2.5.2"],\ - ["@lmdb/lmdb-darwin-arm64", "npm:2.5.2"],\ - ["@lmdb/lmdb-darwin-x64", "npm:2.5.2"],\ - ["@lmdb/lmdb-linux-arm", "npm:2.5.2"],\ - ["@lmdb/lmdb-linux-arm64", "npm:2.5.2"],\ - ["@lmdb/lmdb-linux-x64", "npm:2.5.2"],\ - ["@lmdb/lmdb-win32-x64", "npm:2.5.2"],\ - ["msgpackr", "npm:1.6.0"],\ - ["node-addon-api", "npm:4.3.0"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build-optional-packages", "npm:5.0.3"],\ - ["ordered-binary", "npm:1.2.5"],\ - ["weak-lru-cache", "npm:1.2.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.8.5", {\ - "packageLocation": "./.yarn/unplugged/lmdb-npm-2.8.5-e5fdd937dd/node_modules/lmdb/",\ - "packageDependencies": [\ - ["lmdb", "npm:2.8.5"],\ - ["@lmdb/lmdb-darwin-arm64", "npm:2.8.5"],\ - ["@lmdb/lmdb-darwin-x64", "npm:2.8.5"],\ - ["@lmdb/lmdb-linux-arm", "npm:2.8.5"],\ - ["@lmdb/lmdb-linux-arm64", "npm:2.8.5"],\ - ["@lmdb/lmdb-linux-x64", "npm:2.8.5"],\ - ["@lmdb/lmdb-win32-x64", "npm:2.8.5"],\ - ["msgpackr", "npm:1.9.9"],\ - ["node-addon-api", "npm:6.1.0"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build-optional-packages", "npm:5.1.1"],\ - ["ordered-binary", "npm:1.4.1"],\ - ["weak-lru-cache", "npm:1.2.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["locate-path", [\ - ["npm:6.0.0", {\ - "packageLocation": "./.yarn/cache/locate-path-npm-6.0.0-06a1e4c528-72eb661788.zip/node_modules/locate-path/",\ - "packageDependencies": [\ - ["locate-path", "npm:6.0.0"],\ - ["p-locate", "npm:5.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lodash", [\ - ["npm:4.17.21", {\ - "packageLocation": "./.yarn/cache/lodash-npm-4.17.21-6382451519-eb835a2e51.zip/node_modules/lodash/",\ - "packageDependencies": [\ - ["lodash", "npm:4.17.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lodash-es", [\ - ["npm:4.17.21", {\ - "packageLocation": "./.yarn/cache/lodash-es-npm-4.17.21-b45832dfce-05cbffad6e.zip/node_modules/lodash-es/",\ - "packageDependencies": [\ - ["lodash-es", "npm:4.17.21"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lodash.merge", [\ - ["npm:4.6.2", {\ - "packageLocation": "./.yarn/cache/lodash.merge-npm-4.6.2-77cb4416bf-ad580b4bdb.zip/node_modules/lodash.merge/",\ - "packageDependencies": [\ - ["lodash.merge", "npm:4.6.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["lru-cache", [\ - ["npm:6.0.0", {\ - "packageLocation": "./.yarn/cache/lru-cache-npm-6.0.0-b4c8668fe1-f97f499f89.zip/node_modules/lru-cache/",\ - "packageDependencies": [\ - ["lru-cache", "npm:6.0.0"],\ - ["yallist", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.10.1", {\ - "packageLocation": "./.yarn/cache/lru-cache-npm-7.10.1-5af910d0ed-e8b190d71e.zip/node_modules/lru-cache/",\ - "packageDependencies": [\ - ["lru-cache", "npm:7.10.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:9.1.1", {\ - "packageLocation": "./.yarn/cache/lru-cache-npm-9.1.1-765199cb01-4d703bb9b6.zip/node_modules/lru-cache/",\ - "packageDependencies": [\ - ["lru-cache", "npm:9.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["luxon", [\ - ["npm:3.4.4", {\ - "packageLocation": "./.yarn/cache/luxon-npm-3.4.4-c93f95dde8-36c1f99c47.zip/node_modules/luxon/",\ - "packageDependencies": [\ - ["luxon", "npm:3.4.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["magic-string", [\ - ["npm:0.30.7", {\ - "packageLocation": "./.yarn/cache/magic-string-npm-0.30.7-0bb5819095-bdf102e36a.zip/node_modules/magic-string/",\ - "packageDependencies": [\ - ["magic-string", "npm:0.30.7"],\ - ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["make-dir", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/make-dir-npm-3.1.0-d1d7505142-484200020a.zip/node_modules/make-dir/",\ - "packageDependencies": [\ - ["make-dir", "npm:3.1.0"],\ - ["semver", "npm:6.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/make-dir-npm-4.0.0-ec3cd921cc-bf0731a2dd.zip/node_modules/make-dir/",\ - "packageDependencies": [\ - ["make-dir", "npm:4.0.0"],\ - ["semver", "npm:7.5.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["make-fetch-happen", [\ - ["npm:10.1.5", {\ - "packageLocation": "./.yarn/cache/make-fetch-happen-npm-10.1.5-d805393723-b0b42a1ccd.zip/node_modules/make-fetch-happen/",\ - "packageDependencies": [\ - ["make-fetch-happen", "npm:10.1.5"],\ - ["agentkeepalive", "npm:4.2.1"],\ - ["cacache", "npm:16.1.0"],\ - ["http-cache-semantics", "npm:4.1.1"],\ - ["http-proxy-agent", "npm:5.0.0"],\ - ["https-proxy-agent", "npm:5.0.1"],\ - ["is-lambda", "npm:1.0.1"],\ - ["lru-cache", "npm:7.10.1"],\ - ["minipass", "npm:3.1.6"],\ - ["minipass-collect", "npm:1.0.2"],\ - ["minipass-fetch", "npm:2.1.0"],\ - ["minipass-flush", "npm:1.0.5"],\ - ["minipass-pipeline", "npm:1.2.4"],\ - ["negotiator", "npm:0.6.3"],\ - ["promise-retry", "npm:2.0.1"],\ - ["socks-proxy-agent", "npm:6.2.0"],\ - ["ssri", "npm:9.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["mdn-data", [\ - ["npm:2.0.14", {\ - "packageLocation": "./.yarn/cache/mdn-data-npm-2.0.14-0acd669f0d-9d0128ed42.zip/node_modules/mdn-data/",\ - "packageDependencies": [\ - ["mdn-data", "npm:2.0.14"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["mime", [\ - ["npm:1.6.0", {\ - "packageLocation": "./.yarn/cache/mime-npm-1.6.0-60ae95038a-fef25e3926.zip/node_modules/mime/",\ - "packageDependencies": [\ - ["mime", "npm:1.6.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.6.0", {\ - "packageLocation": "./.yarn/cache/mime-npm-2.6.0-88b89d8de0-1497ba7b9f.zip/node_modules/mime/",\ - "packageDependencies": [\ - ["mime", "npm:2.6.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minimatch", [\ - ["npm:3.1.2", {\ - "packageLocation": "./.yarn/cache/minimatch-npm-3.1.2-9405269906-c154e56640.zip/node_modules/minimatch/",\ - "packageDependencies": [\ - ["minimatch", "npm:3.1.2"],\ - ["brace-expansion", "npm:1.1.11"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.1.0", {\ - "packageLocation": "./.yarn/cache/minimatch-npm-5.1.0-34f6240621-15ce53d31a.zip/node_modules/minimatch/",\ - "packageDependencies": [\ - ["minimatch", "npm:5.1.0"],\ - ["brace-expansion", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:9.0.0", {\ - "packageLocation": "./.yarn/cache/minimatch-npm-9.0.0-c6737cb1be-7bd57899ed.zip/node_modules/minimatch/",\ - "packageDependencies": [\ - ["minimatch", "npm:9.0.0"],\ - ["brace-expansion", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minimist", [\ - ["npm:1.2.6", {\ - "packageLocation": "./.yarn/cache/minimist-npm-1.2.6-f4cee4b4af-d15428cd1e.zip/node_modules/minimist/",\ - "packageDependencies": [\ - ["minimist", "npm:1.2.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass", [\ - ["npm:3.1.6", {\ - "packageLocation": "./.yarn/cache/minipass-npm-3.1.6-f032df1661-57a0404141.zip/node_modules/minipass/",\ - "packageDependencies": [\ - ["minipass", "npm:3.1.6"],\ - ["yallist", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.0.1", {\ - "packageLocation": "./.yarn/cache/minipass-npm-6.0.1-634723433e-1df70bb565.zip/node_modules/minipass/",\ - "packageDependencies": [\ - ["minipass", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass-collect", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/minipass-collect-npm-1.0.2-3b4676eab5-14df761028.zip/node_modules/minipass-collect/",\ - "packageDependencies": [\ - ["minipass-collect", "npm:1.0.2"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass-fetch", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/minipass-fetch-npm-2.1.0-300ce55188-1334732859.zip/node_modules/minipass-fetch/",\ - "packageDependencies": [\ - ["minipass-fetch", "npm:2.1.0"],\ - ["encoding", "npm:0.1.13"],\ - ["minipass", "npm:3.1.6"],\ - ["minipass-sized", "npm:1.0.3"],\ - ["minizlib", "npm:2.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass-flush", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/minipass-flush-npm-1.0.5-efe79d9826-56269a0b22.zip/node_modules/minipass-flush/",\ - "packageDependencies": [\ - ["minipass-flush", "npm:1.0.5"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass-pipeline", [\ - ["npm:1.2.4", {\ - "packageLocation": "./.yarn/cache/minipass-pipeline-npm-1.2.4-5924cb077f-b14240dac0.zip/node_modules/minipass-pipeline/",\ - "packageDependencies": [\ - ["minipass-pipeline", "npm:1.2.4"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minipass-sized", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/minipass-sized-npm-1.0.3-306d86f432-79076749fc.zip/node_modules/minipass-sized/",\ - "packageDependencies": [\ - ["minipass-sized", "npm:1.0.3"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["minizlib", [\ - ["npm:2.1.2", {\ - "packageLocation": "./.yarn/cache/minizlib-npm-2.1.2-ea89cd0cfb-f1fdeac0b0.zip/node_modules/minizlib/",\ - "packageDependencies": [\ - ["minizlib", "npm:2.1.2"],\ - ["minipass", "npm:3.1.6"],\ - ["yallist", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["mkdirp", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/mkdirp-npm-1.0.4-37f6ef56b9-a96865108c.zip/node_modules/mkdirp/",\ - "packageDependencies": [\ - ["mkdirp", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["moment", [\ - ["npm:2.29.4", {\ - "packageLocation": "./.yarn/cache/moment-npm-2.29.4-902943305d-0ec3f9c2bc.zip/node_modules/moment/",\ - "packageDependencies": [\ - ["moment", "npm:2.29.4"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.30.1", {\ - "packageLocation": "./.yarn/cache/moment-npm-2.30.1-1c51a5c631-859236bab1.zip/node_modules/moment/",\ - "packageDependencies": [\ - ["moment", "npm:2.30.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["moment-timezone", [\ - ["npm:0.5.45", {\ - "packageLocation": "./.yarn/cache/moment-timezone-npm-0.5.45-2df3ad72a4-a22e9f983f.zip/node_modules/moment-timezone/",\ - "packageDependencies": [\ - ["moment-timezone", "npm:0.5.45"],\ - ["moment", "npm:2.29.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ms", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/ms-npm-2.0.0-9e1101a471-0e6a22b8b7.zip/node_modules/ms/",\ - "packageDependencies": [\ - ["ms", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.1.2", {\ - "packageLocation": "./.yarn/cache/ms-npm-2.1.2-ec0c1512ff-673cdb2c31.zip/node_modules/ms/",\ - "packageDependencies": [\ - ["ms", "npm:2.1.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.1.3", {\ - "packageLocation": "./.yarn/cache/ms-npm-2.1.3-81ff3cfac1-aa92de6080.zip/node_modules/ms/",\ - "packageDependencies": [\ - ["ms", "npm:2.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["msgpackr", [\ - ["npm:1.10.1", {\ - "packageLocation": "./.yarn/cache/msgpackr-npm-1.10.1-5c5ff5c553-e422d18b01.zip/node_modules/msgpackr/",\ - "packageDependencies": [\ - ["msgpackr", "npm:1.10.1"],\ - ["msgpackr-extract", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.6.0", {\ - "packageLocation": "./.yarn/cache/msgpackr-npm-1.6.0-de9303a46e-7f94acbe93.zip/node_modules/msgpackr/",\ - "packageDependencies": [\ - ["msgpackr", "npm:1.6.0"],\ - ["msgpackr-extract", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.9.9", {\ - "packageLocation": "./.yarn/cache/msgpackr-npm-1.9.9-75b366d55f-b63182d99f.zip/node_modules/msgpackr/",\ - "packageDependencies": [\ - ["msgpackr", "npm:1.9.9"],\ - ["msgpackr-extract", "npm:3.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["msgpackr-extract", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/unplugged/msgpackr-extract-npm-2.0.2-27402474ca/node_modules/msgpackr-extract/",\ - "packageDependencies": [\ - ["msgpackr-extract", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-darwin-arm64", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-darwin-x64", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm64", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-x64", "npm:2.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-win32-x64", "npm:2.0.2"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build-optional-packages", "npm:5.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/unplugged/msgpackr-extract-npm-3.0.2-93e8773fad/node_modules/msgpackr-extract/",\ - "packageDependencies": [\ - ["msgpackr-extract", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-darwin-arm64", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-darwin-x64", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-arm64", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-linux-x64", "npm:3.0.2"],\ - ["@msgpackr-extract/msgpackr-extract-win32-x64", "npm:3.0.2"],\ - ["node-gyp", "npm:9.0.0"],\ - ["node-gyp-build-optional-packages", "npm:5.0.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["muggle-string", [\ - ["npm:0.4.1", {\ - "packageLocation": "./.yarn/cache/muggle-string-npm-0.4.1-fe3c825cc2-85fe1766d1.zip/node_modules/muggle-string/",\ - "packageDependencies": [\ - ["muggle-string", "npm:0.4.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["murmurhash-js", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/murmurhash-js-npm-1.0.0-b1fa804bc0-083cea92a1.zip/node_modules/murmurhash-js/",\ - "packageDependencies": [\ - ["murmurhash-js", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["naive-ui", [\ - ["npm:2.38.1", {\ - "packageLocation": "./.yarn/cache/naive-ui-npm-2.38.1-0edd2e5816-88a8f981de.zip/node_modules/naive-ui/",\ - "packageDependencies": [\ - ["naive-ui", "npm:2.38.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.38.1", {\ - "packageLocation": "./.yarn/__virtual__/naive-ui-virtual-32fd9c861d/0/cache/naive-ui-npm-2.38.1-0edd2e5816-88a8f981de.zip/node_modules/naive-ui/",\ - "packageDependencies": [\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.38.1"],\ - ["@css-render/plugin-bem", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12"],\ - ["@css-render/vue3-ssr", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.15.12"],\ - ["@types/katex", "npm:0.16.5"],\ - ["@types/lodash", "npm:4.14.200"],\ - ["@types/lodash-es", "npm:4.17.10"],\ - ["@types/vue", null],\ - ["async-validator", "npm:4.2.5"],\ - ["css-render", "npm:0.15.12"],\ - ["csstype", "npm:3.1.3"],\ - ["date-fns", "npm:2.30.0"],\ - ["date-fns-tz", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:2.0.0"],\ - ["evtd", "npm:0.2.4"],\ - ["highlight.js", "npm:11.9.0"],\ - ["lodash", "npm:4.17.21"],\ - ["lodash-es", "npm:4.17.21"],\ - ["seemly", "npm:0.3.8"],\ - ["treemate", "npm:0.3.11"],\ - ["vdirs", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.1.8"],\ - ["vooks", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.2.12"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["vueuc", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.4.58"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["nanoid", [\ - ["npm:3.3.7", {\ - "packageLocation": "./.yarn/cache/nanoid-npm-3.3.7-98824ba130-d36c427e53.zip/node_modules/nanoid/",\ - "packageDependencies": [\ - ["nanoid", "npm:3.3.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["natural-compare", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/natural-compare-npm-1.4.0-97b75b362d-23ad088b08.zip/node_modules/natural-compare/",\ - "packageDependencies": [\ - ["natural-compare", "npm:1.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["negotiator", [\ - ["npm:0.6.3", {\ - "packageLocation": "./.yarn/cache/negotiator-npm-0.6.3-9d50e36171-b8ffeb1e26.zip/node_modules/negotiator/",\ - "packageDependencies": [\ - ["negotiator", "npm:0.6.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["node-addon-api", [\ - ["npm:3.2.1", {\ - "packageLocation": "./.yarn/unplugged/node-addon-api-npm-3.2.1-a29528f81d/node_modules/node-addon-api/",\ - "packageDependencies": [\ - ["node-addon-api", "npm:3.2.1"],\ - ["node-gyp", "npm:9.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/unplugged/node-addon-api-npm-4.3.0-a07a1232df/node_modules/node-addon-api/",\ - "packageDependencies": [\ - ["node-addon-api", "npm:4.3.0"],\ - ["node-gyp", "npm:9.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.1.0", {\ - "packageLocation": "./.yarn/unplugged/node-addon-api-npm-6.1.0-634c545b39/node_modules/node-addon-api/",\ - "packageDependencies": [\ - ["node-addon-api", "npm:6.1.0"],\ - ["node-gyp", "npm:9.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["node-gyp", [\ - ["npm:9.0.0", {\ - "packageLocation": "./.yarn/unplugged/node-gyp-npm-9.0.0-0eccfca4d1/node_modules/node-gyp/",\ - "packageDependencies": [\ - ["node-gyp", "npm:9.0.0"],\ - ["env-paths", "npm:2.2.1"],\ - ["glob", "npm:7.2.3"],\ - ["graceful-fs", "npm:4.2.10"],\ - ["make-fetch-happen", "npm:10.1.5"],\ - ["nopt", "npm:5.0.0"],\ - ["npmlog", "npm:6.0.2"],\ - ["rimraf", "npm:3.0.2"],\ - ["semver", "npm:7.3.7"],\ - ["tar", "npm:6.1.11"],\ - ["which", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["node-gyp-build", [\ - ["npm:4.4.0", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-npm-4.4.0-d95e1857d1-972a059f96.zip/node_modules/node-gyp-build/",\ - "packageDependencies": [\ - ["node-gyp-build", "npm:4.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["node-gyp-build-optional-packages", [\ - ["npm:5.0.2", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-optional-packages-npm-5.0.2-2917525a31-6fca33cd1e.zip/node_modules/node-gyp-build-optional-packages/",\ - "packageDependencies": [\ - ["node-gyp-build-optional-packages", "npm:5.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.0.3", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-optional-packages-npm-5.0.3-50b9c76481-be3f023592.zip/node_modules/node-gyp-build-optional-packages/",\ - "packageDependencies": [\ - ["node-gyp-build-optional-packages", "npm:5.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.0.7", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-optional-packages-npm-5.0.7-40f21a5d68-bcb4537af1.zip/node_modules/node-gyp-build-optional-packages/",\ - "packageDependencies": [\ - ["node-gyp-build-optional-packages", "npm:5.0.7"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.1.1", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-optional-packages-npm-5.1.1-ff11e179dd-f3cb197862.zip/node_modules/node-gyp-build-optional-packages/",\ - "packageDependencies": [\ - ["node-gyp-build-optional-packages", "npm:5.1.1"],\ - ["detect-libc", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["node-releases", [\ - ["npm:2.0.4", {\ - "packageLocation": "./.yarn/cache/node-releases-npm-2.0.4-7d25d174cd-b32d6c2032.zip/node_modules/node-releases/",\ - "packageDependencies": [\ - ["node-releases", "npm:2.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["nopt", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/nopt-npm-5.0.0-304b40fbfe-d35fdec187.zip/node_modules/nopt/",\ - "packageDependencies": [\ - ["nopt", "npm:5.0.0"],\ - ["abbrev", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["normalize-path", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/normalize-path-npm-3.0.0-658ba7d77f-88eeb4da89.zip/node_modules/normalize-path/",\ - "packageDependencies": [\ - ["normalize-path", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["npmlog", [\ - ["npm:6.0.2", {\ - "packageLocation": "./.yarn/cache/npmlog-npm-6.0.2-e0e69455c7-ae238cd264.zip/node_modules/npmlog/",\ - "packageDependencies": [\ - ["npmlog", "npm:6.0.2"],\ - ["are-we-there-yet", "npm:3.0.0"],\ - ["console-control-strings", "npm:1.1.0"],\ - ["gauge", "npm:4.0.4"],\ - ["set-blocking", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["nth-check", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/nth-check-npm-2.1.1-f97afc8169-5afc3dafcd.zip/node_modules/nth-check/",\ - "packageDependencies": [\ - ["nth-check", "npm:2.1.1"],\ - ["boolbase", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["nullthrows", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/nullthrows-npm-1.1.1-3d1f817134-10806b9212.zip/node_modules/nullthrows/",\ - "packageDependencies": [\ - ["nullthrows", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object-assign", [\ - ["npm:4.1.1", {\ - "packageLocation": "./.yarn/cache/object-assign-npm-4.1.1-1004ad6dec-fcc6e4ea8c.zip/node_modules/object-assign/",\ - "packageDependencies": [\ - ["object-assign", "npm:4.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object-inspect", [\ - ["npm:1.12.0", {\ - "packageLocation": "./.yarn/cache/object-inspect-npm-1.12.0-d064fa559a-2b36d4001a.zip/node_modules/object-inspect/",\ - "packageDependencies": [\ - ["object-inspect", "npm:1.12.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.13.1", {\ - "packageLocation": "./.yarn/cache/object-inspect-npm-1.13.1-fd038a2f0a-7d9fa9221d.zip/node_modules/object-inspect/",\ - "packageDependencies": [\ - ["object-inspect", "npm:1.13.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object-keys", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/object-keys-npm-1.1.1-1bf2f1be93-b363c5e764.zip/node_modules/object-keys/",\ - "packageDependencies": [\ - ["object-keys", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object.assign", [\ - ["npm:4.1.4", {\ - "packageLocation": "./.yarn/cache/object.assign-npm-4.1.4-fb3deb1c3a-76cab513a5.zip/node_modules/object.assign/",\ - "packageDependencies": [\ - ["object.assign", "npm:4.1.4"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.4"],\ - ["has-symbols", "npm:1.0.3"],\ - ["object-keys", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object.fromentries", [\ - ["npm:2.0.7", {\ - "packageLocation": "./.yarn/cache/object.fromentries-npm-2.0.7-2e38392540-7341ce246e.zip/node_modules/object.fromentries/",\ - "packageDependencies": [\ - ["object.fromentries", "npm:2.0.7"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object.groupby", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/object.groupby-npm-1.0.1-fc268391fe-d7959d6eaa.zip/node_modules/object.groupby/",\ - "packageDependencies": [\ - ["object.groupby", "npm:1.0.1"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"],\ - ["get-intrinsic", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["object.values", [\ - ["npm:1.1.7", {\ - "packageLocation": "./.yarn/cache/object.values-npm-1.1.7-deae619f88-f3e4ae4f21.zip/node_modules/object.values/",\ - "packageDependencies": [\ - ["object.values", "npm:1.1.7"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["on-finished", [\ - ["npm:2.4.1", {\ - "packageLocation": "./.yarn/cache/on-finished-npm-2.4.1-907af70f88-d20929a25e.zip/node_modules/on-finished/",\ - "packageDependencies": [\ - ["on-finished", "npm:2.4.1"],\ - ["ee-first", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["once", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/once-npm-1.4.0-ccf03ef07a-cd0a885013.zip/node_modules/once/",\ - "packageDependencies": [\ - ["once", "npm:1.4.0"],\ - ["wrappy", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["optionator", [\ - ["npm:0.9.3", {\ - "packageLocation": "./.yarn/cache/optionator-npm-0.9.3-56c3a4bf80-0928199944.zip/node_modules/optionator/",\ - "packageDependencies": [\ - ["optionator", "npm:0.9.3"],\ - ["@aashutoshrathi/word-wrap", "npm:1.2.6"],\ - ["deep-is", "npm:0.1.4"],\ - ["fast-levenshtein", "npm:2.0.6"],\ - ["levn", "npm:0.4.1"],\ - ["prelude-ls", "npm:1.2.1"],\ - ["type-check", "npm:0.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ordered-binary", [\ - ["npm:1.2.5", {\ - "packageLocation": "./.yarn/cache/ordered-binary-npm-1.2.5-c6ab9248f9-fd0f1322a6.zip/node_modules/ordered-binary/",\ - "packageDependencies": [\ - ["ordered-binary", "npm:1.2.5"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.4.1", {\ - "packageLocation": "./.yarn/cache/ordered-binary-npm-1.4.1-9ad6b7c6b5-274940b4ef.zip/node_modules/ordered-binary/",\ - "packageDependencies": [\ - ["ordered-binary", "npm:1.4.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["p-limit", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/p-limit-npm-3.1.0-05d2ede37f-7c3690c4db.zip/node_modules/p-limit/",\ - "packageDependencies": [\ - ["p-limit", "npm:3.1.0"],\ - ["yocto-queue", "npm:0.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["p-locate", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/p-locate-npm-5.0.0-92cc7c7a3e-1623088f36.zip/node_modules/p-locate/",\ - "packageDependencies": [\ - ["p-locate", "npm:5.0.0"],\ - ["p-limit", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["p-map", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/p-map-npm-4.0.0-4677ae07c7-cb0ab21ec0.zip/node_modules/p-map/",\ - "packageDependencies": [\ - ["p-map", "npm:4.0.0"],\ - ["aggregate-error", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["parcel", [\ - ["npm:2.12.0", {\ - "packageLocation": "./.yarn/cache/parcel-npm-2.12.0-96a4bb6cc3-d8e6cb690a.zip/node_modules/parcel/",\ - "packageDependencies": [\ - ["parcel", "npm:2.12.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.12.0", {\ - "packageLocation": "./.yarn/__virtual__/parcel-virtual-fdd74b573c/0/cache/parcel-npm-2.12.0-96a4bb6cc3-d8e6cb690a.zip/node_modules/parcel/",\ - "packageDependencies": [\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.12.0"],\ - ["@parcel/config-default", "virtual:fdd74b573cf769bcde15fb47c39fbe0d73f59838182900fd59d3d43b2214ea01b1d45084fb49d0c192fc3e8a49adea5782afcb7fe14e09c63bedaf09f4939e35#npm:2.12.0"],\ - ["@parcel/core", "npm:2.12.0"],\ - ["@parcel/diagnostic", "npm:2.12.0"],\ - ["@parcel/events", "npm:2.12.0"],\ - ["@parcel/fs", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/logger", "npm:2.12.0"],\ - ["@parcel/package-manager", "virtual:8f08b883d4cc438aa2ec719eb5cec278f9ea627197c55f35530bcaf9cd4e4738e04be8abe946bd2702b3f5c94b812f529f1b87c05c7d6de04e1ade9b3f3e00f6#npm:2.12.0"],\ - ["@parcel/reporter-cli", "npm:2.12.0"],\ - ["@parcel/reporter-dev-server", "npm:2.12.0"],\ - ["@parcel/reporter-tracer", "npm:2.12.0"],\ - ["@parcel/utils", "npm:2.12.0"],\ - ["@types/parcel__core", null],\ - ["chalk", "npm:4.1.2"],\ - ["commander", "npm:7.2.0"],\ - ["get-port", "npm:4.2.0"]\ - ],\ - "packagePeers": [\ - "@types/parcel__core"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["parent-module", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/parent-module-npm-1.0.1-1fae11b095-6ba8b25514.zip/node_modules/parent-module/",\ - "packageDependencies": [\ - ["parent-module", "npm:1.0.1"],\ - ["callsites", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["parse-json", [\ - ["npm:5.2.0", {\ - "packageLocation": "./.yarn/cache/parse-json-npm-5.2.0-00a63b1199-62085b17d6.zip/node_modules/parse-json/",\ - "packageDependencies": [\ - ["parse-json", "npm:5.2.0"],\ - ["@babel/code-frame", "npm:7.16.7"],\ - ["error-ex", "npm:1.3.2"],\ - ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["lines-and-columns", "npm:1.2.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-exists", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/path-exists-npm-4.0.0-e9e4f63eb0-505807199d.zip/node_modules/path-exists/",\ - "packageDependencies": [\ - ["path-exists", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-is-absolute", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/path-is-absolute-npm-1.0.1-31bc695ffd-060840f92c.zip/node_modules/path-is-absolute/",\ - "packageDependencies": [\ - ["path-is-absolute", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-key", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/path-key-npm-3.1.1-0e66ea8321-55cd7a9dd4.zip/node_modules/path-key/",\ - "packageDependencies": [\ - ["path-key", "npm:3.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-parse", [\ - ["npm:1.0.7", {\ - "packageLocation": "./.yarn/cache/path-parse-npm-1.0.7-09564527b7-49abf3d811.zip/node_modules/path-parse/",\ - "packageDependencies": [\ - ["path-parse", "npm:1.0.7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-scurry", [\ - ["npm:1.9.1", {\ - "packageLocation": "./.yarn/cache/path-scurry-npm-1.9.1-b9d6b1c5bf-28caa788f1.zip/node_modules/path-scurry/",\ - "packageDependencies": [\ - ["path-scurry", "npm:1.9.1"],\ - ["lru-cache", "npm:9.1.1"],\ - ["minipass", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["path-type", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/path-type-npm-4.0.0-10d47fc86a-5b1e2daa24.zip/node_modules/path-type/",\ - "packageDependencies": [\ - ["path-type", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["picocolors", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/picocolors-npm-1.0.0-d81e0b1927-a2e8092dd8.zip/node_modules/picocolors/",\ - "packageDependencies": [\ - ["picocolors", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["picomatch", [\ - ["npm:2.3.1", {\ - "packageLocation": "./.yarn/cache/picomatch-npm-2.3.1-c782cfd986-050c865ce8.zip/node_modules/picomatch/",\ - "packageDependencies": [\ - ["picomatch", "npm:2.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pinia", [\ - ["npm:2.1.7", {\ - "packageLocation": "./.yarn/cache/pinia-npm-2.1.7-195409c154-1b7882aab2.zip/node_modules/pinia/",\ - "packageDependencies": [\ - ["pinia", "npm:2.1.7"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7", {\ - "packageLocation": "./.yarn/__virtual__/pinia-virtual-cf6f7439ee/0/cache/pinia-npm-2.1.7-195409c154-1b7882aab2.zip/node_modules/pinia/",\ - "packageDependencies": [\ - ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ - ["@types/typescript", null],\ - ["@types/vue", null],\ - ["@types/vue__composition-api", null],\ - ["@vue/composition-api", null],\ - ["@vue/devtools-api", "npm:6.5.0"],\ - ["typescript", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["vue-demi", "virtual:cf6f7439ee76dfd2e7f8f2565ae847d76901434fc49c65702190cdf3d1c61e61c701a5c45b514c4bdeacb8f4bcac9c8a98bd4db3d0bc8e403d9e8db2cf14372a#npm:0.14.5"]\ - ],\ - "packagePeers": [\ - "@types/typescript",\ - "@types/vue",\ - "@types/vue__composition-api",\ - "@vue/composition-api",\ - "typescript",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pinia-plugin-persist", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/pinia-plugin-persist-npm-1.0.0-b6b3a94cc9-49335d7207.zip/node_modules/pinia-plugin-persist/",\ - "packageDependencies": [\ - ["pinia-plugin-persist", "npm:1.0.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0", {\ - "packageLocation": "./.yarn/__virtual__/pinia-plugin-persist-virtual-f56fcf19bb/0/cache/pinia-plugin-persist-npm-1.0.0-b6b3a94cc9-49335d7207.zip/node_modules/pinia-plugin-persist/",\ - "packageDependencies": [\ - ["pinia-plugin-persist", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0"],\ - ["@types/pinia", null],\ - ["@types/vue", null],\ - ["@types/vue__composition-api", null],\ - ["@vue/composition-api", null],\ - ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["vue-demi", "virtual:f56fcf19bbebc2ada1b28955da8cc216b1e9a569a1a7337d2d1926c1ebd1bc7a5bd91aedae1d05c15c8562f33caf7c59bd3020a667340f6bdc6a7b13fc2ba847#npm:0.12.5"]\ - ],\ - "packagePeers": [\ - "@types/pinia",\ - "@types/vue",\ - "@types/vue__composition-api",\ - "@vue/composition-api",\ - "pinia",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["postcss", [\ - ["npm:8.4.33", {\ - "packageLocation": "./.yarn/cache/postcss-npm-8.4.33-6ba8157009-6f98b2af4b.zip/node_modules/postcss/",\ - "packageDependencies": [\ - ["postcss", "npm:8.4.33"],\ - ["nanoid", "npm:3.3.7"],\ - ["picocolors", "npm:1.0.0"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.4.35", {\ - "packageLocation": "./.yarn/cache/postcss-npm-8.4.35-6bc1848fff-cf3c3124d3.zip/node_modules/postcss/",\ - "packageDependencies": [\ - ["postcss", "npm:8.4.35"],\ - ["nanoid", "npm:3.3.7"],\ - ["picocolors", "npm:1.0.0"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["postcss-selector-parser", [\ - ["npm:6.0.15", {\ - "packageLocation": "./.yarn/cache/postcss-selector-parser-npm-6.0.15-0ec4819b4e-57decb9415.zip/node_modules/postcss-selector-parser/",\ - "packageDependencies": [\ - ["postcss-selector-parser", "npm:6.0.15"],\ - ["cssesc", "npm:3.0.0"],\ - ["util-deprecate", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["postcss-value-parser", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/postcss-value-parser-npm-4.2.0-3cef602a6a-819ffab0c9.zip/node_modules/postcss-value-parser/",\ - "packageDependencies": [\ - ["postcss-value-parser", "npm:4.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["posthtml", [\ - ["npm:0.16.6", {\ - "packageLocation": "./.yarn/cache/posthtml-npm-0.16.6-c3387f43c9-8b9b9d27bd.zip/node_modules/posthtml/",\ - "packageDependencies": [\ - ["posthtml", "npm:0.16.6"],\ - ["posthtml-parser", "npm:0.11.0"],\ - ["posthtml-render", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["posthtml-parser", [\ - ["npm:0.10.2", {\ - "packageLocation": "./.yarn/cache/posthtml-parser-npm-0.10.2-f553bc0146-63ec8e8631.zip/node_modules/posthtml-parser/",\ - "packageDependencies": [\ - ["posthtml-parser", "npm:0.10.2"],\ - ["htmlparser2", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.11.0", {\ - "packageLocation": "./.yarn/cache/posthtml-parser-npm-0.11.0-88a39d3d19-37dca546a0.zip/node_modules/posthtml-parser/",\ - "packageDependencies": [\ - ["posthtml-parser", "npm:0.11.0"],\ - ["htmlparser2", "npm:7.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["posthtml-render", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/posthtml-render-npm-3.0.0-7d46185567-5ed2d6e881.zip/node_modules/posthtml-render/",\ - "packageDependencies": [\ - ["posthtml-render", "npm:3.0.0"],\ - ["is-json", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["preact", [\ - ["npm:10.12.1", {\ - "packageLocation": "./.yarn/cache/preact-npm-10.12.1-fdb903e9a5-0de99f4775.zip/node_modules/preact/",\ - "packageDependencies": [\ - ["preact", "npm:10.12.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["prelude-ls", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/prelude-ls-npm-1.2.1-3e4d272a55-cd192ec0d0.zip/node_modules/prelude-ls/",\ - "packageDependencies": [\ - ["prelude-ls", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["promise", [\ - ["npm:7.3.1", {\ - "packageLocation": "./.yarn/cache/promise-npm-7.3.1-5d81d474c0-475bb06913.zip/node_modules/promise/",\ - "packageDependencies": [\ - ["promise", "npm:7.3.1"],\ - ["asap", "npm:2.0.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["promise-inflight", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/promise-inflight-npm-1.0.1-5bb925afac-2274948309.zip/node_modules/promise-inflight/",\ - "packageDependencies": [\ - ["promise-inflight", "npm:1.0.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:e24d9a7d5bfafeb0e9feff2818e85407e1cf44a276d18b9ca6dfb49cddb2524392de2fcf443eda17f1ea0d182e400e896df3142d004a89f718873309f2bace8e#npm:1.0.1", {\ - "packageLocation": "./.yarn/__virtual__/promise-inflight-virtual-8305051473/0/cache/promise-inflight-npm-1.0.1-5bb925afac-2274948309.zip/node_modules/promise-inflight/",\ - "packageDependencies": [\ - ["promise-inflight", "virtual:e24d9a7d5bfafeb0e9feff2818e85407e1cf44a276d18b9ca6dfb49cddb2524392de2fcf443eda17f1ea0d182e400e896df3142d004a89f718873309f2bace8e#npm:1.0.1"],\ - ["@types/bluebird", null],\ - ["bluebird", null]\ - ],\ - "packagePeers": [\ - "@types/bluebird",\ - "bluebird"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["promise-retry", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/promise-retry-npm-2.0.1-871f0b01b7-f96a3f6d90.zip/node_modules/promise-retry/",\ - "packageDependencies": [\ - ["promise-retry", "npm:2.0.1"],\ - ["err-code", "npm:2.0.3"],\ - ["retry", "npm:0.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["prompts", [\ - ["npm:2.4.2", {\ - "packageLocation": "./.yarn/cache/prompts-npm-2.4.2-f5d25d5eea-d8fd1fe638.zip/node_modules/prompts/",\ - "packageDependencies": [\ - ["prompts", "npm:2.4.2"],\ - ["kleur", "npm:3.0.3"],\ - ["sisteransi", "npm:1.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/pug-npm-3.0.2-a900d45f03-3e1a3d4889.zip/node_modules/pug/",\ - "packageDependencies": [\ - ["pug", "npm:3.0.2"],\ - ["pug-code-gen", "npm:3.0.2"],\ - ["pug-filters", "npm:4.0.0"],\ - ["pug-lexer", "npm:5.0.1"],\ - ["pug-linker", "npm:4.0.0"],\ - ["pug-load", "npm:3.0.0"],\ - ["pug-parser", "npm:6.0.0"],\ - ["pug-runtime", "npm:3.0.1"],\ - ["pug-strip-comments", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-attrs", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/pug-attrs-npm-3.0.0-31b331fe79-2ca2d34de3.zip/node_modules/pug-attrs/",\ - "packageDependencies": [\ - ["pug-attrs", "npm:3.0.0"],\ - ["constantinople", "npm:4.0.1"],\ - ["js-stringify", "npm:1.0.2"],\ - ["pug-runtime", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-code-gen", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/pug-code-gen-npm-3.0.2-1cc7d40723-1644d3a4d6.zip/node_modules/pug-code-gen/",\ - "packageDependencies": [\ - ["pug-code-gen", "npm:3.0.2"],\ - ["constantinople", "npm:4.0.1"],\ - ["doctypes", "npm:1.1.0"],\ - ["js-stringify", "npm:1.0.2"],\ - ["pug-attrs", "npm:3.0.0"],\ - ["pug-error", "npm:2.0.0"],\ - ["pug-runtime", "npm:3.0.1"],\ - ["void-elements", "npm:3.1.0"],\ - ["with", "npm:7.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-error", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/pug-error-npm-2.0.0-13b776f97b-c5372d018c.zip/node_modules/pug-error/",\ - "packageDependencies": [\ - ["pug-error", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-filters", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/pug-filters-npm-4.0.0-d2cf0196e7-44eb327319.zip/node_modules/pug-filters/",\ - "packageDependencies": [\ - ["pug-filters", "npm:4.0.0"],\ - ["constantinople", "npm:4.0.1"],\ - ["jstransformer", "npm:1.0.0"],\ - ["pug-error", "npm:2.0.0"],\ - ["pug-walk", "npm:2.0.0"],\ - ["resolve", "patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-lexer", [\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/pug-lexer-npm-5.0.1-3bdff5fe60-afdd2f43f2.zip/node_modules/pug-lexer/",\ - "packageDependencies": [\ - ["pug-lexer", "npm:5.0.1"],\ - ["character-parser", "npm:2.2.0"],\ - ["is-expression", "npm:4.0.0"],\ - ["pug-error", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-linker", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/pug-linker-npm-4.0.0-b140c7e607-7433aa6518.zip/node_modules/pug-linker/",\ - "packageDependencies": [\ - ["pug-linker", "npm:4.0.0"],\ - ["pug-error", "npm:2.0.0"],\ - ["pug-walk", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-load", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/pug-load-npm-3.0.0-dc9f2273d3-1800ec5199.zip/node_modules/pug-load/",\ - "packageDependencies": [\ - ["pug-load", "npm:3.0.0"],\ - ["object-assign", "npm:4.1.1"],\ - ["pug-walk", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-parser", [\ - ["npm:6.0.0", {\ - "packageLocation": "./.yarn/cache/pug-parser-npm-6.0.0-87b7dc8a83-a6954d1383.zip/node_modules/pug-parser/",\ - "packageDependencies": [\ - ["pug-parser", "npm:6.0.0"],\ - ["pug-error", "npm:2.0.0"],\ - ["token-stream", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-runtime", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/pug-runtime-npm-3.0.1-13038c62ae-48a71b587c.zip/node_modules/pug-runtime/",\ - "packageDependencies": [\ - ["pug-runtime", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-strip-comments", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/pug-strip-comments-npm-2.0.0-7baa7bca2f-2cfcbf506c.zip/node_modules/pug-strip-comments/",\ - "packageDependencies": [\ - ["pug-strip-comments", "npm:2.0.0"],\ - ["pug-error", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["pug-walk", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/pug-walk-npm-2.0.0-a8a11880fc-bee64e133b.zip/node_modules/pug-walk/",\ - "packageDependencies": [\ - ["pug-walk", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["punycode", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/punycode-npm-2.1.1-26eb3e15cf-823bf443c6.zip/node_modules/punycode/",\ - "packageDependencies": [\ - ["punycode", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["queue-microtask", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/queue-microtask-npm-1.2.3-fcc98e4e2d-b676f8c040.zip/node_modules/queue-microtask/",\ - "packageDependencies": [\ - ["queue-microtask", "npm:1.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["range-parser", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/range-parser-npm-1.2.1-1a470fa390-0a268d4fea.zip/node_modules/range-parser/",\ - "packageDependencies": [\ - ["range-parser", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["react-error-overlay", [\ - ["npm:6.0.9", {\ - "packageLocation": "./.yarn/cache/react-error-overlay-npm-6.0.9-96e7e1e53a-695853bc88.zip/node_modules/react-error-overlay/",\ - "packageDependencies": [\ - ["react-error-overlay", "npm:6.0.9"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["react-refresh", [\ - ["npm:0.9.0", {\ - "packageLocation": "./.yarn/cache/react-refresh-npm-0.9.0-02c61ee045-6440146176.zip/node_modules/react-refresh/",\ - "packageDependencies": [\ - ["react-refresh", "npm:0.9.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["readable-stream", [\ - ["npm:3.6.0", {\ - "packageLocation": "./.yarn/cache/readable-stream-npm-3.6.0-23a4a5eb56-d4ea81502d.zip/node_modules/readable-stream/",\ - "packageDependencies": [\ - ["readable-stream", "npm:3.6.0"],\ - ["inherits", "npm:2.0.4"],\ - ["string_decoder", "npm:1.3.0"],\ - ["util-deprecate", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["readdirp", [\ - ["npm:3.6.0", {\ - "packageLocation": "./.yarn/cache/readdirp-npm-3.6.0-f950cc74ab-1ced032e6e.zip/node_modules/readdirp/",\ - "packageDependencies": [\ - ["readdirp", "npm:3.6.0"],\ - ["picomatch", "npm:2.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["regenerator-runtime", [\ - ["npm:0.13.9", {\ - "packageLocation": "./.yarn/cache/regenerator-runtime-npm-0.13.9-6d02340eec-65ed455fe5.zip/node_modules/regenerator-runtime/",\ - "packageDependencies": [\ - ["regenerator-runtime", "npm:0.13.9"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.14.0", {\ - "packageLocation": "./.yarn/cache/regenerator-runtime-npm-0.14.0-e060897cf7-1c977ad82a.zip/node_modules/regenerator-runtime/",\ - "packageDependencies": [\ - ["regenerator-runtime", "npm:0.14.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["regexp.prototype.flags", [\ - ["npm:1.5.1", {\ - "packageLocation": "./.yarn/cache/regexp.prototype.flags-npm-1.5.1-b8faeee306-869edff002.zip/node_modules/regexp.prototype.flags/",\ - "packageDependencies": [\ - ["regexp.prototype.flags", "npm:1.5.1"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["set-function-name", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["regexpp", [\ - ["npm:3.2.0", {\ - "packageLocation": "./.yarn/cache/regexpp-npm-3.2.0-2513f32cfc-a78dc5c715.zip/node_modules/regexpp/",\ - "packageDependencies": [\ - ["regexpp", "npm:3.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["require-directory", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/require-directory-npm-2.1.1-8608aee50b-fb47e70bf0.zip/node_modules/require-directory/",\ - "packageDependencies": [\ - ["require-directory", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["require-from-string", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/require-from-string-npm-2.0.2-8557e0db12-a03ef68954.zip/node_modules/require-from-string/",\ - "packageDependencies": [\ - ["require-from-string", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["resolve", [\ - ["patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b", {\ - "packageLocation": "./.yarn/cache/resolve-patch-bad885c6ea-c79ecaea36.zip/node_modules/resolve/",\ - "packageDependencies": [\ - ["resolve", "patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b"],\ - ["is-core-module", "npm:2.9.0"],\ - ["path-parse", "npm:1.0.7"],\ - ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b", {\ - "packageLocation": "./.yarn/cache/resolve-patch-8df1eb26d0-ad59734723.zip/node_modules/resolve/",\ - "packageDependencies": [\ - ["resolve", "patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b"],\ - ["is-core-module", "npm:2.12.1"],\ - ["path-parse", "npm:1.0.7"],\ - ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b", {\ - "packageLocation": "./.yarn/cache/resolve-patch-f6b5304cab-5479b7d431.zip/node_modules/resolve/",\ - "packageDependencies": [\ - ["resolve", "patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b"],\ - ["is-core-module", "npm:2.13.0"],\ - ["path-parse", "npm:1.0.7"],\ - ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["resolve-from", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/resolve-from-npm-4.0.0-f758ec21bf-f4ba0b8494.zip/node_modules/resolve-from/",\ - "packageDependencies": [\ - ["resolve-from", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["resolve-pkg-maps", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/resolve-pkg-maps-npm-1.0.0-135b70c854-1012afc566.zip/node_modules/resolve-pkg-maps/",\ - "packageDependencies": [\ - ["resolve-pkg-maps", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["retry", [\ - ["npm:0.12.0", {\ - "packageLocation": "./.yarn/cache/retry-npm-0.12.0-72ac7fb4cc-623bd7d2e5.zip/node_modules/retry/",\ - "packageDependencies": [\ - ["retry", "npm:0.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["reusify", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/reusify-npm-1.0.4-95ac4aec11-c3076ebcc2.zip/node_modules/reusify/",\ - "packageDependencies": [\ - ["reusify", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["rimraf", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/rimraf-npm-3.0.2-2cb7dac69a-87f4164e39.zip/node_modules/rimraf/",\ - "packageDependencies": [\ - ["rimraf", "npm:3.0.2"],\ - ["glob", "npm:7.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["robust-predicates", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/robust-predicates-npm-3.0.1-550da1ca46-45e9de2df4.zip/node_modules/robust-predicates/",\ - "packageDependencies": [\ - ["robust-predicates", "npm:3.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["rollup", [\ - ["npm:3.29.4", {\ - "packageLocation": "./.yarn/cache/rollup-npm-3.29.4-5e5e5f2087-8bb20a39c8.zip/node_modules/rollup/",\ - "packageDependencies": [\ - ["rollup", "npm:3.29.4"],\ - ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["root-workspace-0b6124", [\ - ["workspace:.", {\ - "packageLocation": "./",\ - "packageDependencies": [\ - ["root-workspace-0b6124", "workspace:."],\ - ["@fullcalendar/bootstrap5", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/core", "npm:6.1.11"],\ - ["@fullcalendar/daygrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/icalendar", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/interaction", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/list", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/luxon3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/timegrid", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@fullcalendar/vue3", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.11"],\ - ["@kurkle/color", "npm:0.3.1"],\ - ["@parcel/optimizer-data-url", "npm:2.12.0"],\ - ["@parcel/transformer-inline-string", "npm:2.12.0"],\ - ["@parcel/transformer-sass", "npm:2.12.0"],\ - ["@popperjs/core", "npm:2.11.8"],\ - ["@rollup/pluginutils", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.1.0"],\ - ["@twuni/emojify", "npm:1.0.2"],\ - ["@vitejs/plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.6.2"],\ - ["@vue/language-plugin-pug", "npm:2.0.7"],\ - ["bootstrap", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:5.3.3"],\ - ["bootstrap-icons", "npm:1.11.3"],\ - ["browser-fs-access", "npm:0.35.0"],\ - ["browserlist", "npm:1.0.1"],\ - ["c8", "npm:9.1.0"],\ - ["caniuse-lite", "npm:1.0.30001603"],\ - ["chart.js", "npm:4.5.1"],\ - ["chartjs-plugin-zoom", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.2.0"],\ - ["d3", "npm:7.9.0"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-config-standard", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:17.1.0"],\ - ["eslint-plugin-cypress", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.15.1"],\ - ["eslint-plugin-import", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.29.1"],\ - ["eslint-plugin-n", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:16.6.2"],\ - ["eslint-plugin-node", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:11.1.0"],\ - ["eslint-plugin-promise", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:6.1.1"],\ - ["eslint-plugin-vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:9.24.0"],\ - ["file-saver", "npm:2.0.5"],\ - ["highcharts", "npm:11.4.0"],\ - ["html-validate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:8.18.1"],\ - ["ical.js", "npm:1.5.0"],\ - ["jquery", "npm:3.7.1"],\ - ["jquery-migrate", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.1"],\ - ["js-cookie", "npm:3.0.5"],\ - ["list.js", "npm:2.3.1"],\ - ["lodash", "npm:4.17.21"],\ - ["lodash-es", "npm:4.17.21"],\ - ["luxon", "npm:3.4.4"],\ - ["moment", "npm:2.30.1"],\ - ["moment-timezone", "npm:0.5.45"],\ - ["ms", "npm:2.1.3"],\ - ["murmurhash-js", "npm:1.0.0"],\ - ["naive-ui", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.38.1"],\ - ["parcel", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.12.0"],\ - ["pinia", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:2.1.7"],\ - ["pinia-plugin-persist", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:1.0.0"],\ - ["pug", "npm:3.0.2"],\ - ["sass", "npm:1.72.0"],\ - ["seedrandom", "npm:3.0.5"],\ - ["select2", "npm:4.1.0-rc.0"],\ - ["select2-bootstrap-5-theme", "npm:1.3.0"],\ - ["send", "npm:0.18.0"],\ - ["shepherd.js", "npm:11.2.0"],\ - ["slugify", "npm:1.6.6"],\ - ["sortablejs", "npm:1.15.2"],\ - ["vanillajs-datepicker", "npm:1.3.4"],\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.3.0"],\ - ["zxcvbn", "npm:4.4.2"]\ - ],\ - "linkType": "SOFT"\ - }]\ - ]],\ - ["run-parallel", [\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/run-parallel-npm-1.2.0-3f47ff2034-cb4f97ad25.zip/node_modules/run-parallel/",\ - "packageDependencies": [\ - ["run-parallel", "npm:1.2.0"],\ - ["queue-microtask", "npm:1.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["rw", [\ - ["npm:1.3.3", {\ - "packageLocation": "./.yarn/cache/rw-npm-1.3.3-2197930a8d-c20d82421f.zip/node_modules/rw/",\ - "packageDependencies": [\ - ["rw", "npm:1.3.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["safe-array-concat", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/safe-array-concat-npm-1.0.1-8a42907bbf-001ecf1d8a.zip/node_modules/safe-array-concat/",\ - "packageDependencies": [\ - ["safe-array-concat", "npm:1.0.1"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["has-symbols", "npm:1.0.3"],\ - ["isarray", "npm:2.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["safe-buffer", [\ - ["npm:5.1.2", {\ - "packageLocation": "./.yarn/cache/safe-buffer-npm-5.1.2-c27fedf6c4-f2f1f7943c.zip/node_modules/safe-buffer/",\ - "packageDependencies": [\ - ["safe-buffer", "npm:5.1.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.2.1", {\ - "packageLocation": "./.yarn/cache/safe-buffer-npm-5.2.1-3481c8aa9b-b99c4b41fd.zip/node_modules/safe-buffer/",\ - "packageDependencies": [\ - ["safe-buffer", "npm:5.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["safe-regex-test", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/safe-regex-test-npm-1.0.0-e94a09b84e-bc566d8beb.zip/node_modules/safe-regex-test/",\ - "packageDependencies": [\ - ["safe-regex-test", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.2.0"],\ - ["is-regex", "npm:1.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["safer-buffer", [\ - ["npm:2.1.2", {\ - "packageLocation": "./.yarn/cache/safer-buffer-npm-2.1.2-8d5c0b705e-cab8f25ae6.zip/node_modules/safer-buffer/",\ - "packageDependencies": [\ - ["safer-buffer", "npm:2.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["sass", [\ - ["npm:1.52.1", {\ - "packageLocation": "./.yarn/cache/sass-npm-1.52.1-7f0eb7e72c-a0508c88b1.zip/node_modules/sass/",\ - "packageDependencies": [\ - ["sass", "npm:1.52.1"],\ - ["chokidar", "npm:3.5.3"],\ - ["immutable", "npm:4.0.0"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.72.0", {\ - "packageLocation": "./.yarn/cache/sass-npm-1.72.0-fb38bb530c-f420079c7d.zip/node_modules/sass/",\ - "packageDependencies": [\ - ["sass", "npm:1.72.0"],\ - ["chokidar", "npm:3.5.3"],\ - ["immutable", "npm:4.0.0"],\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["seedrandom", [\ - ["npm:3.0.5", {\ - "packageLocation": "./.yarn/cache/seedrandom-npm-3.0.5-6946e8f8db-728b56bc3b.zip/node_modules/seedrandom/",\ - "packageDependencies": [\ - ["seedrandom", "npm:3.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["seemly", [\ - ["npm:0.3.6", {\ - "packageLocation": "./.yarn/cache/seemly-npm-0.3.6-87ae398976-56d0472d99.zip/node_modules/seemly/",\ - "packageDependencies": [\ - ["seemly", "npm:0.3.6"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.3.8", {\ - "packageLocation": "./.yarn/cache/seemly-npm-0.3.8-4940336497-98171fd4d9.zip/node_modules/seemly/",\ - "packageDependencies": [\ - ["seemly", "npm:0.3.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["select2", [\ - ["npm:4.1.0-rc.0", {\ - "packageLocation": "./.yarn/cache/select2-npm-4.1.0-rc.0-4f6f223d12-c27cefc396.zip/node_modules/select2/",\ - "packageDependencies": [\ - ["select2", "npm:4.1.0-rc.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["select2-bootstrap-5-theme", [\ - ["npm:1.3.0", {\ - "packageLocation": "./.yarn/cache/select2-bootstrap-5-theme-npm-1.3.0-10122bfbcb-248a869835.zip/node_modules/select2-bootstrap-5-theme/",\ - "packageDependencies": [\ - ["select2-bootstrap-5-theme", "npm:1.3.0"],\ - ["@popperjs/core", "npm:2.11.5"],\ - ["bootstrap", "virtual:10122bfbcba1a448fa8cd209500287123cf7dd2abe325c6afac0050500c2a7843d4fa38428d3ef45d200d480f092839e6533b4c96c028b4d6e4e1d970111b151#npm:5.1.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["semver", [\ - ["npm:5.7.1", {\ - "packageLocation": "./.yarn/cache/semver-npm-5.7.1-40bcea106b-57fd0acfd0.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:5.7.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.3.0", {\ - "packageLocation": "./.yarn/cache/semver-npm-6.3.0-b3eace8bfd-1b26ecf6db.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:6.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:6.3.1", {\ - "packageLocation": "./.yarn/cache/semver-npm-6.3.1-bcba31fdbe-ae47d06de2.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:6.3.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.3.7", {\ - "packageLocation": "./.yarn/cache/semver-npm-7.3.7-3bfe704194-2fa3e87756.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:7.3.7"],\ - ["lru-cache", "npm:6.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.5.3", {\ - "packageLocation": "./.yarn/cache/semver-npm-7.5.3-275095dbf3-9d58db1652.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:7.5.3"],\ - ["lru-cache", "npm:6.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.5.4", {\ - "packageLocation": "./.yarn/cache/semver-npm-7.5.4-c4ad957fcd-12d8ad952f.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:7.5.4"],\ - ["lru-cache", "npm:6.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.6.0", {\ - "packageLocation": "./.yarn/cache/semver-npm-7.6.0-f4630729f6-7427f05b70.zip/node_modules/semver/",\ - "packageDependencies": [\ - ["semver", "npm:7.6.0"],\ - ["lru-cache", "npm:6.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["send", [\ - ["npm:0.18.0", {\ - "packageLocation": "./.yarn/cache/send-npm-0.18.0-faadf6353f-74fc07ebb5.zip/node_modules/send/",\ - "packageDependencies": [\ - ["send", "npm:0.18.0"],\ - ["debug", "virtual:faadf6353f98b703db6d695690b392666015d2aab4b710ea086196f4598c68e2b84944d3717503cadb554811494ac27c376eca728086556897f6a7cdb35eaef5#npm:2.6.9"],\ - ["depd", "npm:2.0.0"],\ - ["destroy", "npm:1.2.0"],\ - ["encodeurl", "npm:1.0.2"],\ - ["escape-html", "npm:1.0.3"],\ - ["etag", "npm:1.8.1"],\ - ["fresh", "npm:0.5.2"],\ - ["http-errors", "npm:2.0.0"],\ - ["mime", "npm:1.6.0"],\ - ["ms", "npm:2.1.3"],\ - ["on-finished", "npm:2.4.1"],\ - ["range-parser", "npm:1.2.1"],\ - ["statuses", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["set-blocking", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/set-blocking-npm-2.0.0-49e2cffa24-6e65a05f7c.zip/node_modules/set-blocking/",\ - "packageDependencies": [\ - ["set-blocking", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["set-function-length", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/set-function-length-npm-1.1.1-d362bf8221-c131d7569c.zip/node_modules/set-function-length/",\ - "packageDependencies": [\ - ["set-function-length", "npm:1.1.1"],\ - ["define-data-property", "npm:1.1.1"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["gopd", "npm:1.0.1"],\ - ["has-property-descriptors", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["set-function-name", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/set-function-name-npm-2.0.1-a9f970eea0-4975d17d90.zip/node_modules/set-function-name/",\ - "packageDependencies": [\ - ["set-function-name", "npm:2.0.1"],\ - ["define-data-property", "npm:1.1.1"],\ - ["functions-have-names", "npm:1.2.3"],\ - ["has-property-descriptors", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["setprototypeof", [\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/setprototypeof-npm-1.2.0-0fedbdcd3a-be18cbbf70.zip/node_modules/setprototypeof/",\ - "packageDependencies": [\ - ["setprototypeof", "npm:1.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["shebang-command", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/shebang-command-npm-2.0.0-eb2b01921d-6b52fe8727.zip/node_modules/shebang-command/",\ - "packageDependencies": [\ - ["shebang-command", "npm:2.0.0"],\ - ["shebang-regex", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["shebang-regex", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/shebang-regex-npm-3.0.0-899a0cd65e-1a2bcae50d.zip/node_modules/shebang-regex/",\ - "packageDependencies": [\ - ["shebang-regex", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["shepherd.js", [\ - ["npm:11.2.0", {\ - "packageLocation": "./.yarn/cache/shepherd.js-npm-11.2.0-94b9af1487-0e71e63e51.zip/node_modules/shepherd.js/",\ - "packageDependencies": [\ - ["shepherd.js", "npm:11.2.0"],\ - ["@floating-ui/dom", "npm:1.5.2"],\ - ["deepmerge", "npm:4.3.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["side-channel", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/side-channel-npm-1.0.4-e1f38b9e06-351e41b947.zip/node_modules/side-channel/",\ - "packageDependencies": [\ - ["side-channel", "npm:1.0.4"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.1.1"],\ - ["object-inspect", "npm:1.12.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["signal-exit", [\ - ["npm:3.0.7", {\ - "packageLocation": "./.yarn/cache/signal-exit-npm-3.0.7-bd270458a3-a2f098f247.zip/node_modules/signal-exit/",\ - "packageDependencies": [\ - ["signal-exit", "npm:3.0.7"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:4.0.2", {\ - "packageLocation": "./.yarn/cache/signal-exit-npm-4.0.2-e3f0e8ed25-41f5928431.zip/node_modules/signal-exit/",\ - "packageDependencies": [\ - ["signal-exit", "npm:4.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["sisteransi", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/sisteransi-npm-1.0.5-af60cc0cfa-aba6438f46.zip/node_modules/sisteransi/",\ - "packageDependencies": [\ - ["sisteransi", "npm:1.0.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["slugify", [\ - ["npm:1.6.6", {\ - "packageLocation": "./.yarn/cache/slugify-npm-1.6.6-7ce458677d-04773c2d3b.zip/node_modules/slugify/",\ - "packageDependencies": [\ - ["slugify", "npm:1.6.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["smart-buffer", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/smart-buffer-npm-4.2.0-5ac3f668bb-b5167a7142.zip/node_modules/smart-buffer/",\ - "packageDependencies": [\ - ["smart-buffer", "npm:4.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["socks", [\ - ["npm:2.6.2", {\ - "packageLocation": "./.yarn/cache/socks-npm-2.6.2-94c1dcb8b8-dd91942930.zip/node_modules/socks/",\ - "packageDependencies": [\ - ["socks", "npm:2.6.2"],\ - ["ip", "npm:1.1.8"],\ - ["smart-buffer", "npm:4.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["socks-proxy-agent", [\ - ["npm:6.2.0", {\ - "packageLocation": "./.yarn/cache/socks-proxy-agent-npm-6.2.0-9c332b84bc-6723fd64fb.zip/node_modules/socks-proxy-agent/",\ - "packageDependencies": [\ - ["socks-proxy-agent", "npm:6.2.0"],\ - ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["socks", "npm:2.6.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["sortablejs", [\ - ["npm:1.15.2", {\ - "packageLocation": "./.yarn/cache/sortablejs-npm-1.15.2-73347ae85a-36b20b144f.zip/node_modules/sortablejs/",\ - "packageDependencies": [\ - ["sortablejs", "npm:1.15.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["source-map", [\ - ["npm:0.6.1", {\ - "packageLocation": "./.yarn/cache/source-map-npm-0.6.1-1a3621db16-59ce8640cf.zip/node_modules/source-map/",\ - "packageDependencies": [\ - ["source-map", "npm:0.6.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["source-map-js", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/source-map-js-npm-1.0.2-ee4f9f9b30-c049a7fc4d.zip/node_modules/source-map-js/",\ - "packageDependencies": [\ - ["source-map-js", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["srcset", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/srcset-npm-4.0.0-4e99d43236-aceb898c92.zip/node_modules/srcset/",\ - "packageDependencies": [\ - ["srcset", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["ssri", [\ - ["npm:9.0.1", {\ - "packageLocation": "./.yarn/cache/ssri-npm-9.0.1-33ce27f4f8-fb58f5e46b.zip/node_modules/ssri/",\ - "packageDependencies": [\ - ["ssri", "npm:9.0.1"],\ - ["minipass", "npm:3.1.6"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["stable", [\ - ["npm:0.1.8", {\ - "packageLocation": "./.yarn/cache/stable-npm-0.1.8-feb4e06de8-2ff482bb10.zip/node_modules/stable/",\ - "packageDependencies": [\ - ["stable", "npm:0.1.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["statuses", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/statuses-npm-2.0.1-81d2b97fee-18c7623fdb.zip/node_modules/statuses/",\ - "packageDependencies": [\ - ["statuses", "npm:2.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string-natural-compare", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/string-natural-compare-npm-2.0.3-9ad7314e5b-e0f22bb0de.zip/node_modules/string-natural-compare/",\ - "packageDependencies": [\ - ["string-natural-compare", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string-width", [\ - ["npm:4.2.3", {\ - "packageLocation": "./.yarn/cache/string-width-npm-4.2.3-2c27177bae-e52c10dc3f.zip/node_modules/string-width/",\ - "packageDependencies": [\ - ["string-width", "npm:4.2.3"],\ - ["emoji-regex", "npm:8.0.0"],\ - ["is-fullwidth-code-point", "npm:3.0.0"],\ - ["strip-ansi", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:5.1.2", {\ - "packageLocation": "./.yarn/cache/string-width-npm-5.1.2-bf60531341-7369deaa29.zip/node_modules/string-width/",\ - "packageDependencies": [\ - ["string-width", "npm:5.1.2"],\ - ["eastasianwidth", "npm:0.2.0"],\ - ["emoji-regex", "npm:9.2.2"],\ - ["strip-ansi", "npm:7.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string.prototype.trim", [\ - ["npm:1.2.8", {\ - "packageLocation": "./.yarn/cache/string.prototype.trim-npm-1.2.8-7ed4517ce8-49eb1a862a.zip/node_modules/string.prototype.trim/",\ - "packageDependencies": [\ - ["string.prototype.trim", "npm:1.2.8"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string.prototype.trimend", [\ - ["npm:1.0.7", {\ - "packageLocation": "./.yarn/cache/string.prototype.trimend-npm-1.0.7-159b9dcfbc-2375516272.zip/node_modules/string.prototype.trimend/",\ - "packageDependencies": [\ - ["string.prototype.trimend", "npm:1.0.7"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string.prototype.trimstart", [\ - ["npm:1.0.7", {\ - "packageLocation": "./.yarn/cache/string.prototype.trimstart-npm-1.0.7-ae2f803b78-13d0c2cb0d.zip/node_modules/string.prototype.trimstart/",\ - "packageDependencies": [\ - ["string.prototype.trimstart", "npm:1.0.7"],\ - ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.2.0"],\ - ["es-abstract", "npm:1.22.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["string_decoder", [\ - ["npm:1.3.0", {\ - "packageLocation": "./.yarn/cache/string_decoder-npm-1.3.0-2422117fd0-8417646695.zip/node_modules/string_decoder/",\ - "packageDependencies": [\ - ["string_decoder", "npm:1.3.0"],\ - ["safe-buffer", "npm:5.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["strip-ansi", [\ - ["npm:6.0.1", {\ - "packageLocation": "./.yarn/cache/strip-ansi-npm-6.0.1-caddc7cb40-f3cd25890a.zip/node_modules/strip-ansi/",\ - "packageDependencies": [\ - ["strip-ansi", "npm:6.0.1"],\ - ["ansi-regex", "npm:5.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.0.1", {\ - "packageLocation": "./.yarn/cache/strip-ansi-npm-7.0.1-668c121204-257f78fa43.zip/node_modules/strip-ansi/",\ - "packageDependencies": [\ - ["strip-ansi", "npm:7.0.1"],\ - ["ansi-regex", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["strip-bom", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/strip-bom-npm-3.0.0-71e8f81ff9-8d50ff27b7.zip/node_modules/strip-bom/",\ - "packageDependencies": [\ - ["strip-bom", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["strip-json-comments", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/strip-json-comments-npm-3.1.1-dcb2324823-492f73e272.zip/node_modules/strip-json-comments/",\ - "packageDependencies": [\ - ["strip-json-comments", "npm:3.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["supports-color", [\ - ["npm:5.5.0", {\ - "packageLocation": "./.yarn/cache/supports-color-npm-5.5.0-183ac537bc-95f6f4ba5a.zip/node_modules/supports-color/",\ - "packageDependencies": [\ - ["supports-color", "npm:5.5.0"],\ - ["has-flag", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.2.0", {\ - "packageLocation": "./.yarn/cache/supports-color-npm-7.2.0-606bfcf7da-3dda818de0.zip/node_modules/supports-color/",\ - "packageDependencies": [\ - ["supports-color", "npm:7.2.0"],\ - ["has-flag", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["supports-preserve-symlinks-flag", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-53b1e247e6.zip/node_modules/supports-preserve-symlinks-flag/",\ - "packageDependencies": [\ - ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["svgo", [\ - ["npm:2.8.0", {\ - "packageLocation": "./.yarn/cache/svgo-npm-2.8.0-43b4f3debe-b92f71a854.zip/node_modules/svgo/",\ - "packageDependencies": [\ - ["svgo", "npm:2.8.0"],\ - ["@trysound/sax", "npm:0.2.0"],\ - ["commander", "npm:7.2.0"],\ - ["css-select", "npm:4.3.0"],\ - ["css-tree", "npm:1.1.3"],\ - ["csso", "npm:4.2.0"],\ - ["picocolors", "npm:1.0.0"],\ - ["stable", "npm:0.1.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["tar", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/tar-npm-6.1.11-e6ac3cba9c-a04c07bb9e.zip/node_modules/tar/",\ - "packageDependencies": [\ - ["tar", "npm:6.1.11"],\ - ["chownr", "npm:2.0.0"],\ - ["fs-minipass", "npm:2.1.0"],\ - ["minipass", "npm:3.1.6"],\ - ["minizlib", "npm:2.1.2"],\ - ["mkdirp", "npm:1.0.4"],\ - ["yallist", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["term-size", [\ - ["npm:2.2.1", {\ - "packageLocation": "./.yarn/unplugged/term-size-npm-2.2.1-77ce7141d0/node_modules/term-size/",\ - "packageDependencies": [\ - ["term-size", "npm:2.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["test-exclude", [\ - ["npm:6.0.0", {\ - "packageLocation": "./.yarn/cache/test-exclude-npm-6.0.0-3fb03d69df-3b34a3d771.zip/node_modules/test-exclude/",\ - "packageDependencies": [\ - ["test-exclude", "npm:6.0.0"],\ - ["@istanbuljs/schema", "npm:0.1.3"],\ - ["glob", "npm:7.2.3"],\ - ["minimatch", "npm:3.1.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["text-table", [\ - ["npm:0.2.0", {\ - "packageLocation": "./.yarn/cache/text-table-npm-0.2.0-d92a778b59-b6937a38c8.zip/node_modules/text-table/",\ - "packageDependencies": [\ - ["text-table", "npm:0.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["timsort", [\ - ["npm:0.3.0", {\ - "packageLocation": "./.yarn/cache/timsort-npm-0.3.0-868a28166c-1a66cb897d.zip/node_modules/timsort/",\ - "packageDependencies": [\ - ["timsort", "npm:0.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["to-fast-properties", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/to-fast-properties-npm-2.0.0-0dc60cc481-be2de62fe5.zip/node_modules/to-fast-properties/",\ - "packageDependencies": [\ - ["to-fast-properties", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["to-regex-range", [\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/to-regex-range-npm-5.0.1-f1e8263b00-f76fa01b3d.zip/node_modules/to-regex-range/",\ - "packageDependencies": [\ - ["to-regex-range", "npm:5.0.1"],\ - ["is-number", "npm:7.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["toidentifier", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/toidentifier-npm-1.0.1-f759712599-952c29e2a8.zip/node_modules/toidentifier/",\ - "packageDependencies": [\ - ["toidentifier", "npm:1.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["token-stream", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/token-stream-npm-1.0.0-b6bc01bff8-e8adb56f31.zip/node_modules/token-stream/",\ - "packageDependencies": [\ - ["token-stream", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["treemate", [\ - ["npm:0.3.11", {\ - "packageLocation": "./.yarn/cache/treemate-npm-0.3.11-7be66c23fc-0c6ccbc6c5.zip/node_modules/treemate/",\ - "packageDependencies": [\ - ["treemate", "npm:0.3.11"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["tsconfig-paths", [\ - ["npm:3.15.0", {\ - "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-59f35407a3.zip/node_modules/tsconfig-paths/",\ - "packageDependencies": [\ - ["tsconfig-paths", "npm:3.15.0"],\ - ["@types/json5", "npm:0.0.29"],\ - ["json5", "npm:1.0.2"],\ - ["minimist", "npm:1.2.6"],\ - ["strip-bom", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["tslib", [\ - ["npm:2.4.0", {\ - "packageLocation": "./.yarn/cache/tslib-npm-2.4.0-9cb6dc5030-8c4aa6a3c5.zip/node_modules/tslib/",\ - "packageDependencies": [\ - ["tslib", "npm:2.4.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["type-check", [\ - ["npm:0.4.0", {\ - "packageLocation": "./.yarn/cache/type-check-npm-0.4.0-60565800ce-ec688ebfc9.zip/node_modules/type-check/",\ - "packageDependencies": [\ - ["type-check", "npm:0.4.0"],\ - ["prelude-ls", "npm:1.2.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["type-fest", [\ - ["npm:0.20.2", {\ - "packageLocation": "./.yarn/cache/type-fest-npm-0.20.2-b36432617f-4fb3272df2.zip/node_modules/type-fest/",\ - "packageDependencies": [\ - ["type-fest", "npm:0.20.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["typed-array-buffer", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/typed-array-buffer-npm-1.0.0-95cb610310-3e0281c79b.zip/node_modules/typed-array-buffer/",\ - "packageDependencies": [\ - ["typed-array-buffer", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.2.1"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["typed-array-byte-length", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/typed-array-byte-length-npm-1.0.0-94d79975ca-b03db16458.zip/node_modules/typed-array-byte-length/",\ - "packageDependencies": [\ - ["typed-array-byte-length", "npm:1.0.0"],\ - ["call-bind", "npm:1.0.2"],\ - ["for-each", "npm:0.3.3"],\ - ["has-proto", "npm:1.0.1"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["typed-array-byte-offset", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/typed-array-byte-offset-npm-1.0.0-8cbb911cf5-04f6f02d0e.zip/node_modules/typed-array-byte-offset/",\ - "packageDependencies": [\ - ["typed-array-byte-offset", "npm:1.0.0"],\ - ["available-typed-arrays", "npm:1.0.5"],\ - ["call-bind", "npm:1.0.2"],\ - ["for-each", "npm:0.3.3"],\ - ["has-proto", "npm:1.0.1"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["typed-array-length", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/typed-array-length-npm-1.0.4-92771b81fc-2228febc93.zip/node_modules/typed-array-length/",\ - "packageDependencies": [\ - ["typed-array-length", "npm:1.0.4"],\ - ["call-bind", "npm:1.0.2"],\ - ["for-each", "npm:0.3.3"],\ - ["is-typed-array", "npm:1.1.10"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["unbox-primitive", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/unbox-primitive-npm-1.0.2-cb56a05066-b7a1cf5862.zip/node_modules/unbox-primitive/",\ - "packageDependencies": [\ - ["unbox-primitive", "npm:1.0.2"],\ - ["call-bind", "npm:1.0.2"],\ - ["has-bigints", "npm:1.0.2"],\ - ["has-symbols", "npm:1.0.3"],\ - ["which-boxed-primitive", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["unique-filename", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/unique-filename-npm-1.1.1-c885c5095b-cf4998c922.zip/node_modules/unique-filename/",\ - "packageDependencies": [\ - ["unique-filename", "npm:1.1.1"],\ - ["unique-slug", "npm:2.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["unique-slug", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/unique-slug-npm-2.0.2-f6ba1ddeb7-5b6876a645.zip/node_modules/unique-slug/",\ - "packageDependencies": [\ - ["unique-slug", "npm:2.0.2"],\ - ["imurmurhash", "npm:0.1.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["uri-js", [\ - ["npm:4.4.1", {\ - "packageLocation": "./.yarn/cache/uri-js-npm-4.4.1-66d11cbcaf-7167432de6.zip/node_modules/uri-js/",\ - "packageDependencies": [\ - ["uri-js", "npm:4.4.1"],\ - ["punycode", "npm:2.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["util-deprecate", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/util-deprecate-npm-1.0.2-e3fe1a219c-474acf1146.zip/node_modules/util-deprecate/",\ - "packageDependencies": [\ - ["util-deprecate", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["utility-types", [\ - ["npm:3.10.0", {\ - "packageLocation": "./.yarn/cache/utility-types-npm-3.10.0-747e7c6549-8f274415c6.zip/node_modules/utility-types/",\ - "packageDependencies": [\ - ["utility-types", "npm:3.10.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["v8-to-istanbul", [\ - ["npm:9.0.1", {\ - "packageLocation": "./.yarn/cache/v8-to-istanbul-npm-9.0.1-58bbce7857-a49c34bf0a.zip/node_modules/v8-to-istanbul/",\ - "packageDependencies": [\ - ["v8-to-istanbul", "npm:9.0.1"],\ - ["@jridgewell/trace-mapping", "npm:0.3.14"],\ - ["@types/istanbul-lib-coverage", "npm:2.0.4"],\ - ["convert-source-map", "npm:1.8.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vanillajs-datepicker", [\ - ["npm:1.3.4", {\ - "packageLocation": "./.yarn/cache/vanillajs-datepicker-npm-1.3.4-bc86e15a9c-830958f8af.zip/node_modules/vanillajs-datepicker/",\ - "packageDependencies": [\ - ["vanillajs-datepicker", "npm:1.3.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vdirs", [\ - ["npm:0.1.8", {\ - "packageLocation": "./.yarn/cache/vdirs-npm-0.1.8-59a32a98d6-a7be8ccad3.zip/node_modules/vdirs/",\ - "packageDependencies": [\ - ["vdirs", "npm:0.1.8"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.1.8", {\ - "packageLocation": "./.yarn/__virtual__/vdirs-virtual-6e8e27ef7d/0/cache/vdirs-npm-0.1.8-59a32a98d6-a7be8ccad3.zip/node_modules/vdirs/",\ - "packageDependencies": [\ - ["vdirs", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.1.8"],\ - ["@types/vue", null],\ - ["evtd", "npm:0.2.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vite", [\ - ["npm:4.5.3", {\ - "packageLocation": "./.yarn/cache/vite-npm-4.5.3-5cedc7cb8f-fd3f512ce4.zip/node_modules/vite/",\ - "packageDependencies": [\ - ["vite", "npm:4.5.3"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.3", {\ - "packageLocation": "./.yarn/__virtual__/vite-virtual-69c30fd9fd/0/cache/vite-npm-4.5.3-5cedc7cb8f-fd3f512ce4.zip/node_modules/vite/",\ - "packageDependencies": [\ - ["vite", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.5.3"],\ - ["@types/less", null],\ - ["@types/lightningcss", null],\ - ["@types/node", null],\ - ["@types/sass", null],\ - ["@types/stylus", null],\ - ["@types/sugarss", null],\ - ["@types/terser", null],\ - ["esbuild", "npm:0.18.20"],\ - ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7"],\ - ["less", null],\ - ["lightningcss", null],\ - ["postcss", "npm:8.4.33"],\ - ["rollup", "npm:3.29.4"],\ - ["sass", "npm:1.72.0"],\ - ["stylus", null],\ - ["sugarss", null],\ - ["terser", null]\ - ],\ - "packagePeers": [\ - "@types/less",\ - "@types/lightningcss",\ - "@types/node",\ - "@types/sass",\ - "@types/stylus",\ - "@types/sugarss",\ - "@types/terser",\ - "less",\ - "lightningcss",\ - "sass",\ - "stylus",\ - "sugarss",\ - "terser"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["void-elements", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/void-elements-npm-3.1.0-4f43780839-0390f81810.zip/node_modules/void-elements/",\ - "packageDependencies": [\ - ["void-elements", "npm:3.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["volar-service-html", [\ - ["npm:0.0.34", {\ - "packageLocation": "./.yarn/cache/volar-service-html-npm-0.0.34-32b6d24136-83b50cd805.zip/node_modules/volar-service-html/",\ - "packageDependencies": [\ - ["volar-service-html", "npm:0.0.34"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:6f5429e17c4ecd390af605a4e97ecc7b34f2f1374a5e30c21f0a978cbdc904738a42d0d6f5d44d2e969250218b3c205853d6afefd88b87bcda877286d12bef83#npm:0.0.34", {\ - "packageLocation": "./.yarn/__virtual__/volar-service-html-virtual-5a9107a24d/0/cache/volar-service-html-npm-0.0.34-32b6d24136-83b50cd805.zip/node_modules/volar-service-html/",\ - "packageDependencies": [\ - ["volar-service-html", "virtual:6f5429e17c4ecd390af605a4e97ecc7b34f2f1374a5e30c21f0a978cbdc904738a42d0d6f5d44d2e969250218b3c205853d6afefd88b87bcda877286d12bef83#npm:0.0.34"],\ - ["@types/volar__language-service", null],\ - ["@volar/language-service", "npm:2.1.4"],\ - ["vscode-html-languageservice", "npm:5.1.2"],\ - ["vscode-languageserver-textdocument", "npm:1.0.11"],\ - ["vscode-uri", "npm:3.0.8"]\ - ],\ - "packagePeers": [\ - "@types/volar__language-service",\ - "@volar/language-service"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["volar-service-pug", [\ - ["npm:0.0.34", {\ - "packageLocation": "./.yarn/cache/volar-service-pug-npm-0.0.34-6f5429e17c-4691aa1c8e.zip/node_modules/volar-service-pug/",\ - "packageDependencies": [\ - ["volar-service-pug", "npm:0.0.34"],\ - ["@volar/language-service", "npm:2.1.4"],\ - ["pug-lexer", "npm:5.0.1"],\ - ["pug-parser", "npm:6.0.0"],\ - ["volar-service-html", "virtual:6f5429e17c4ecd390af605a4e97ecc7b34f2f1374a5e30c21f0a978cbdc904738a42d0d6f5d44d2e969250218b3c205853d6afefd88b87bcda877286d12bef83#npm:0.0.34"],\ - ["vscode-html-languageservice", "npm:5.1.2"],\ - ["vscode-languageserver-textdocument", "npm:1.0.11"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vooks", [\ - ["npm:0.2.12", {\ - "packageLocation": "./.yarn/cache/vooks-npm-0.2.12-0d1a2d856b-e6841ec5b6.zip/node_modules/vooks/",\ - "packageDependencies": [\ - ["vooks", "npm:0.2.12"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.2.12", {\ - "packageLocation": "./.yarn/__virtual__/vooks-virtual-ca0a47c4bf/0/cache/vooks-npm-0.2.12-0d1a2d856b-e6841ec5b6.zip/node_modules/vooks/",\ - "packageDependencies": [\ - ["vooks", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.2.12"],\ - ["@types/vue", null],\ - ["evtd", "npm:0.2.3"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-html-languageservice", [\ - ["npm:5.1.2", {\ - "packageLocation": "./.yarn/cache/vscode-html-languageservice-npm-5.1.2-2ea2618bdd-3a2a5ee5ad.zip/node_modules/vscode-html-languageservice/",\ - "packageDependencies": [\ - ["vscode-html-languageservice", "npm:5.1.2"],\ - ["@vscode/l10n", "npm:0.0.18"],\ - ["vscode-languageserver-textdocument", "npm:1.0.11"],\ - ["vscode-languageserver-types", "npm:3.17.5"],\ - ["vscode-uri", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-jsonrpc", [\ - ["npm:8.2.0", {\ - "packageLocation": "./.yarn/cache/vscode-jsonrpc-npm-8.2.0-b7d2e5b553-f302a01e59.zip/node_modules/vscode-jsonrpc/",\ - "packageDependencies": [\ - ["vscode-jsonrpc", "npm:8.2.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-languageserver-protocol", [\ - ["npm:3.17.5", {\ - "packageLocation": "./.yarn/cache/vscode-languageserver-protocol-npm-3.17.5-2b07e16989-dfb42d276d.zip/node_modules/vscode-languageserver-protocol/",\ - "packageDependencies": [\ - ["vscode-languageserver-protocol", "npm:3.17.5"],\ - ["vscode-jsonrpc", "npm:8.2.0"],\ - ["vscode-languageserver-types", "npm:3.17.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-languageserver-textdocument", [\ - ["npm:1.0.11", {\ - "packageLocation": "./.yarn/cache/vscode-languageserver-textdocument-npm-1.0.11-6fc94d2b7b-ea7cdc9d4f.zip/node_modules/vscode-languageserver-textdocument/",\ - "packageDependencies": [\ - ["vscode-languageserver-textdocument", "npm:1.0.11"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-languageserver-types", [\ - ["npm:3.17.5", {\ - "packageLocation": "./.yarn/cache/vscode-languageserver-types-npm-3.17.5-aca3b71a5a-79b420e757.zip/node_modules/vscode-languageserver-types/",\ - "packageDependencies": [\ - ["vscode-languageserver-types", "npm:3.17.5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vscode-uri", [\ - ["npm:3.0.8", {\ - "packageLocation": "./.yarn/cache/vscode-uri-npm-3.0.8-56f46b9d24-5142491268.zip/node_modules/vscode-uri/",\ - "packageDependencies": [\ - ["vscode-uri", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vue", [\ - ["npm:3.4.21", {\ - "packageLocation": "./.yarn/cache/vue-npm-3.4.21-02110aa6d9-3c477982a0.zip/node_modules/vue/",\ - "packageDependencies": [\ - ["vue", "npm:3.4.21"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21", {\ - "packageLocation": "./.yarn/__virtual__/vue-virtual-b79af6274d/0/cache/vue-npm-3.4.21-02110aa6d9-3c477982a0.zip/node_modules/vue/",\ - "packageDependencies": [\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"],\ - ["@types/typescript", null],\ - ["@vue/compiler-dom", "npm:3.4.21"],\ - ["@vue/compiler-sfc", "npm:3.4.21"],\ - ["@vue/runtime-dom", "npm:3.4.21"],\ - ["@vue/server-renderer", "virtual:b79af6274dddda2b283f42be2b827e30c3e5389bce2938ee73bdb74ee9781811fc079c6836719e57940708d59b3beeb14d9e3c12f37f2d22582a53e6c32e4c97#npm:3.4.21"],\ - ["@vue/shared", "npm:3.4.21"],\ - ["typescript", null]\ - ],\ - "packagePeers": [\ - "@types/typescript",\ - "typescript"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vue-demi", [\ - ["npm:0.12.5", {\ - "packageLocation": "./.yarn/unplugged/vue-demi-virtual-f447b32deb/node_modules/vue-demi/",\ - "packageDependencies": [\ - ["vue-demi", "npm:0.12.5"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["npm:0.14.5", {\ - "packageLocation": "./.yarn/unplugged/vue-demi-virtual-b0e571907e/node_modules/vue-demi/",\ - "packageDependencies": [\ - ["vue-demi", "npm:0.14.5"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:cf6f7439ee76dfd2e7f8f2565ae847d76901434fc49c65702190cdf3d1c61e61c701a5c45b514c4bdeacb8f4bcac9c8a98bd4db3d0bc8e403d9e8db2cf14372a#npm:0.14.5", {\ - "packageLocation": "./.yarn/unplugged/vue-demi-virtual-b0e571907e/node_modules/vue-demi/",\ - "packageDependencies": [\ - ["vue-demi", "virtual:cf6f7439ee76dfd2e7f8f2565ae847d76901434fc49c65702190cdf3d1c61e61c701a5c45b514c4bdeacb8f4bcac9c8a98bd4db3d0bc8e403d9e8db2cf14372a#npm:0.14.5"],\ - ["@types/vue", null],\ - ["@types/vue__composition-api", null],\ - ["@vue/composition-api", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "@types/vue__composition-api",\ - "@vue/composition-api",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:f56fcf19bbebc2ada1b28955da8cc216b1e9a569a1a7337d2d1926c1ebd1bc7a5bd91aedae1d05c15c8562f33caf7c59bd3020a667340f6bdc6a7b13fc2ba847#npm:0.12.5", {\ - "packageLocation": "./.yarn/unplugged/vue-demi-virtual-f447b32deb/node_modules/vue-demi/",\ - "packageDependencies": [\ - ["vue-demi", "virtual:f56fcf19bbebc2ada1b28955da8cc216b1e9a569a1a7337d2d1926c1ebd1bc7a5bd91aedae1d05c15c8562f33caf7c59bd3020a667340f6bdc6a7b13fc2ba847#npm:0.12.5"],\ - ["@types/vue", null],\ - ["@types/vue__composition-api", null],\ - ["@vue/composition-api", null],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "@types/vue__composition-api",\ - "@vue/composition-api",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vue-eslint-parser", [\ - ["npm:9.4.2", {\ - "packageLocation": "./.yarn/cache/vue-eslint-parser-npm-9.4.2-3e4e696025-67f14c8ea1.zip/node_modules/vue-eslint-parser/",\ - "packageDependencies": [\ - ["vue-eslint-parser", "npm:9.4.2"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:e080dd5dc65fb3541eb98fd929c3a1d3733f3aff4bb24b09a6b5cce9fba4a29aca07e286ef93079f2144caa0fd33bb6545549286d3a9f2b9a211caa1f4b68ff9#npm:9.4.2", {\ - "packageLocation": "./.yarn/__virtual__/vue-eslint-parser-virtual-f703c550a2/0/cache/vue-eslint-parser-npm-9.4.2-3e4e696025-67f14c8ea1.zip/node_modules/vue-eslint-parser/",\ - "packageDependencies": [\ - ["vue-eslint-parser", "virtual:e080dd5dc65fb3541eb98fd929c3a1d3733f3aff4bb24b09a6b5cce9fba4a29aca07e286ef93079f2144caa0fd33bb6545549286d3a9f2b9a211caa1f4b68ff9#npm:9.4.2"],\ - ["@types/eslint", null],\ - ["debug", "virtual:b86a9fb34323a98c6519528ed55faa0d9b44ca8879307c0b29aa384bde47ff59a7d0c9051b31246f14521dfb71ba3c5d6d0b35c29fffc17bf875aa6ad977d9e8#npm:4.3.4"],\ - ["eslint", "npm:8.57.0"],\ - ["eslint-scope", "npm:7.1.1"],\ - ["eslint-visitor-keys", "npm:3.3.0"],\ - ["espree", "npm:9.3.2"],\ - ["esquery", "npm:1.4.0"],\ - ["lodash", "npm:4.17.21"],\ - ["semver", "npm:7.3.7"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vue-router", [\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/cache/vue-router-npm-4.3.0-b765d40138-0059261d39.zip/node_modules/vue-router/",\ - "packageDependencies": [\ - ["vue-router", "npm:4.3.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.3.0", {\ - "packageLocation": "./.yarn/__virtual__/vue-router-virtual-82f54143bf/0/cache/vue-router-npm-4.3.0-b765d40138-0059261d39.zip/node_modules/vue-router/",\ - "packageDependencies": [\ - ["vue-router", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:4.3.0"],\ - ["@types/vue", null],\ - ["@vue/devtools-api", "npm:6.6.1"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["vueuc", [\ - ["npm:0.4.58", {\ - "packageLocation": "./.yarn/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip/node_modules/vueuc/",\ - "packageDependencies": [\ - ["vueuc", "npm:0.4.58"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.4.58", {\ - "packageLocation": "./.yarn/__virtual__/vueuc-virtual-2366be83ef/0/cache/vueuc-npm-0.4.58-be5584770c-fb0b9a69be.zip/node_modules/vueuc/",\ - "packageDependencies": [\ - ["vueuc", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.4.58"],\ - ["@css-render/vue3-ssr", "virtual:2366be83ef58a728ebb5a5e9ed4600f4465f98b2a844262fcfbe89415361d5d5f9e964ec3b9a72d6a5004f37c1024d017c65e67473dd9cc39cd61f51768c65e6#npm:0.15.10"],\ - ["@juggle/resize-observer", "npm:3.3.1"],\ - ["@types/vue", null],\ - ["css-render", "npm:0.15.10"],\ - ["evtd", "npm:0.2.4"],\ - ["seemly", "npm:0.3.6"],\ - ["vdirs", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.1.8"],\ - ["vooks", "virtual:32fd9c861d759cd42dabb479e4fd652286369e629cc7ef63c9cf4f1af5387c64be25fafc985023ea8534b1ec1f4cc92e6c918c7f3b594aa0f8acad026c671a6a#npm:0.2.12"],\ - ["vue", "virtual:dc3fc578bfa5e06182a4d2be39ede0bc5b74940b1ffe0d70c26892ab140a4699787750fba175dc306292e80b4aa2c8c5f68c2a821e69b2c37e360c0dff36ff66#npm:3.4.21"]\ - ],\ - "packagePeers": [\ - "@types/vue",\ - "vue"\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["weak-lru-cache", [\ - ["npm:1.2.2", {\ - "packageLocation": "./.yarn/cache/weak-lru-cache-npm-1.2.2-0dc8dfa322-0fbe16839d.zip/node_modules/weak-lru-cache/",\ - "packageDependencies": [\ - ["weak-lru-cache", "npm:1.2.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["which", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/which-npm-2.0.2-320ddf72f7-1a5c563d3c.zip/node_modules/which/",\ - "packageDependencies": [\ - ["which", "npm:2.0.2"],\ - ["isexe", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["which-boxed-primitive", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/which-boxed-primitive-npm-1.0.2-e214f9ae5a-53ce774c73.zip/node_modules/which-boxed-primitive/",\ - "packageDependencies": [\ - ["which-boxed-primitive", "npm:1.0.2"],\ - ["is-bigint", "npm:1.0.4"],\ - ["is-boolean-object", "npm:1.1.2"],\ - ["is-number-object", "npm:1.0.7"],\ - ["is-string", "npm:1.0.7"],\ - ["is-symbol", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["which-typed-array", [\ - ["npm:1.1.13", {\ - "packageLocation": "./.yarn/cache/which-typed-array-npm-1.1.13-92c18b4878-3828a0d5d7.zip/node_modules/which-typed-array/",\ - "packageDependencies": [\ - ["which-typed-array", "npm:1.1.13"],\ - ["available-typed-arrays", "npm:1.0.5"],\ - ["call-bind", "npm:1.0.5"],\ - ["for-each", "npm:0.3.3"],\ - ["gopd", "npm:1.0.1"],\ - ["has-tostringtag", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["wide-align", [\ - ["npm:1.1.5", {\ - "packageLocation": "./.yarn/cache/wide-align-npm-1.1.5-889d77e592-d5fc37cd56.zip/node_modules/wide-align/",\ - "packageDependencies": [\ - ["wide-align", "npm:1.1.5"],\ - ["string-width", "npm:4.2.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["with", [\ - ["npm:7.0.2", {\ - "packageLocation": "./.yarn/cache/with-npm-7.0.2-135a242adb-a00fe87b73.zip/node_modules/with/",\ - "packageDependencies": [\ - ["with", "npm:7.0.2"],\ - ["@babel/parser", "npm:7.18.4"],\ - ["@babel/types", "npm:7.18.4"],\ - ["assert-never", "npm:1.2.1"],\ - ["babel-walk", "npm:3.0.0-canary-5"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["wrap-ansi", [\ - ["npm:7.0.0", {\ - "packageLocation": "./.yarn/cache/wrap-ansi-npm-7.0.0-ad6e1a0554-a790b846fd.zip/node_modules/wrap-ansi/",\ - "packageDependencies": [\ - ["wrap-ansi", "npm:7.0.0"],\ - ["ansi-styles", "npm:4.3.0"],\ - ["string-width", "npm:4.2.3"],\ - ["strip-ansi", "npm:6.0.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.1.0", {\ - "packageLocation": "./.yarn/cache/wrap-ansi-npm-8.1.0-26a4e6ae28-371733296d.zip/node_modules/wrap-ansi/",\ - "packageDependencies": [\ - ["wrap-ansi", "npm:8.1.0"],\ - ["ansi-styles", "npm:6.2.1"],\ - ["string-width", "npm:5.1.2"],\ - ["strip-ansi", "npm:7.0.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["wrappy", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/wrappy-npm-1.0.2-916de4d4b3-159da4805f.zip/node_modules/wrappy/",\ - "packageDependencies": [\ - ["wrappy", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["xml-name-validator", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/xml-name-validator-npm-4.0.0-0857c21729-af100b79c2.zip/node_modules/xml-name-validator/",\ - "packageDependencies": [\ - ["xml-name-validator", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["xxhash-wasm", [\ - ["npm:0.4.2", {\ - "packageLocation": "./.yarn/cache/xxhash-wasm-npm-0.4.2-afa0b23648-747b32fcfe.zip/node_modules/xxhash-wasm/",\ - "packageDependencies": [\ - ["xxhash-wasm", "npm:0.4.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["y18n", [\ - ["npm:5.0.8", {\ - "packageLocation": "./.yarn/cache/y18n-npm-5.0.8-5f3a0a7e62-54f0fb9562.zip/node_modules/y18n/",\ - "packageDependencies": [\ - ["y18n", "npm:5.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["yallist", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/yallist-npm-4.0.0-b493d9e907-343617202a.zip/node_modules/yallist/",\ - "packageDependencies": [\ - ["yallist", "npm:4.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["yaml", [\ - ["npm:1.10.2", {\ - "packageLocation": "./.yarn/cache/yaml-npm-1.10.2-0e780aebdf-ce4ada136e.zip/node_modules/yaml/",\ - "packageDependencies": [\ - ["yaml", "npm:1.10.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["yargs", [\ - ["npm:17.7.2", {\ - "packageLocation": "./.yarn/cache/yargs-npm-17.7.2-80b62638e1-73b572e863.zip/node_modules/yargs/",\ - "packageDependencies": [\ - ["yargs", "npm:17.7.2"],\ - ["cliui", "npm:8.0.1"],\ - ["escalade", "npm:3.1.1"],\ - ["get-caller-file", "npm:2.0.5"],\ - ["require-directory", "npm:2.1.1"],\ - ["string-width", "npm:4.2.3"],\ - ["y18n", "npm:5.0.8"],\ - ["yargs-parser", "npm:21.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["yargs-parser", [\ - ["npm:21.1.1", {\ - "packageLocation": "./.yarn/cache/yargs-parser-npm-21.1.1-8fdc003314-ed2d96a616.zip/node_modules/yargs-parser/",\ - "packageDependencies": [\ - ["yargs-parser", "npm:21.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["yocto-queue", [\ - ["npm:0.1.0", {\ - "packageLocation": "./.yarn/cache/yocto-queue-npm-0.1.0-c6c9a7db29-f77b3d8d00.zip/node_modules/yocto-queue/",\ - "packageDependencies": [\ - ["yocto-queue", "npm:0.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["zxcvbn", [\ - ["npm:4.4.2", {\ - "packageLocation": "./.yarn/cache/zxcvbn-npm-4.4.2-6527983856-76ab32c066.zip/node_modules/zxcvbn/",\ - "packageDependencies": [\ - ["zxcvbn", "npm:4.4.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]]\ - ]\ - }'), {basePath: basePath || __dirname}); - } - -const fs = require('fs'); -const path = require('path'); -const require$$0 = require('module'); -const StringDecoder = require('string_decoder'); -const url = require('url'); -const os = require('os'); -const nodeUtils = require('util'); -const stream = require('stream'); -const zlib = require('zlib'); -const events = require('events'); - -const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e }; - -function _interopNamespace(e) { - if (e && e.__esModule) return e; - const n = Object.create(null); - if (e) { - for (const k in e) { - if (k !== 'default') { - const d = Object.getOwnPropertyDescriptor(e, k); - Object.defineProperty(n, k, d.get ? d : { - enumerable: true, - get: () => e[k] - }); - } - } - } - n.default = e; - return Object.freeze(n); -} - -const fs__default = /*#__PURE__*/_interopDefaultLegacy(fs); -const path__default = /*#__PURE__*/_interopDefaultLegacy(path); -const require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); -const StringDecoder__default = /*#__PURE__*/_interopDefaultLegacy(StringDecoder); -const nodeUtils__namespace = /*#__PURE__*/_interopNamespace(nodeUtils); -const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib); - -const S_IFMT = 61440; -const S_IFDIR = 16384; -const S_IFREG = 32768; -const S_IFLNK = 40960; -const SAFE_TIME = 456789e3; - -const DEFAULT_MODE = S_IFREG | 420; -class StatEntry { - constructor() { - this.uid = 0; - this.gid = 0; - this.size = 0; - this.blksize = 0; - this.atimeMs = 0; - this.mtimeMs = 0; - this.ctimeMs = 0; - this.birthtimeMs = 0; - this.atime = new Date(0); - this.mtime = new Date(0); - this.ctime = new Date(0); - this.birthtime = new Date(0); - this.dev = 0; - this.ino = 0; - this.mode = DEFAULT_MODE; - this.nlink = 1; - this.rdev = 0; - this.blocks = 1; - } - isBlockDevice() { - return false; - } - isCharacterDevice() { - return false; - } - isDirectory() { - return (this.mode & S_IFMT) === S_IFDIR; - } - isFIFO() { - return false; - } - isFile() { - return (this.mode & S_IFMT) === S_IFREG; - } - isSocket() { - return false; - } - isSymbolicLink() { - return (this.mode & S_IFMT) === S_IFLNK; - } -} -class BigIntStatsEntry { - constructor() { - this.uid = BigInt(0); - this.gid = BigInt(0); - this.size = BigInt(0); - this.blksize = BigInt(0); - this.atimeMs = BigInt(0); - this.mtimeMs = BigInt(0); - this.ctimeMs = BigInt(0); - this.birthtimeMs = BigInt(0); - this.atimeNs = BigInt(0); - this.mtimeNs = BigInt(0); - this.ctimeNs = BigInt(0); - this.birthtimeNs = BigInt(0); - this.atime = new Date(0); - this.mtime = new Date(0); - this.ctime = new Date(0); - this.birthtime = new Date(0); - this.dev = BigInt(0); - this.ino = BigInt(0); - this.mode = BigInt(DEFAULT_MODE); - this.nlink = BigInt(1); - this.rdev = BigInt(0); - this.blocks = BigInt(1); - } - isBlockDevice() { - return false; - } - isCharacterDevice() { - return false; - } - isDirectory() { - return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFDIR); - } - isFIFO() { - return false; - } - isFile() { - return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFREG); - } - isSocket() { - return false; - } - isSymbolicLink() { - return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFLNK); - } -} -function makeDefaultStats() { - return new StatEntry(); -} -function clearStats(stats) { - for (const key in stats) { - if (Object.prototype.hasOwnProperty.call(stats, key)) { - const element = stats[key]; - if (typeof element === `number`) { - stats[key] = 0; - } else if (typeof element === `bigint`) { - stats[key] = BigInt(0); - } else if (nodeUtils__namespace.types.isDate(element)) { - stats[key] = new Date(0); - } - } - } - return stats; -} -function convertToBigIntStats(stats) { - const bigintStats = new BigIntStatsEntry(); - for (const key in stats) { - if (Object.prototype.hasOwnProperty.call(stats, key)) { - const element = stats[key]; - if (typeof element === `number`) { - bigintStats[key] = BigInt(element); - } else if (nodeUtils__namespace.types.isDate(element)) { - bigintStats[key] = new Date(element); - } - } - } - bigintStats.atimeNs = bigintStats.atimeMs * BigInt(1e6); - bigintStats.mtimeNs = bigintStats.mtimeMs * BigInt(1e6); - bigintStats.ctimeNs = bigintStats.ctimeMs * BigInt(1e6); - bigintStats.birthtimeNs = bigintStats.birthtimeMs * BigInt(1e6); - return bigintStats; -} -function areStatsEqual(a, b) { - if (a.atimeMs !== b.atimeMs) - return false; - if (a.birthtimeMs !== b.birthtimeMs) - return false; - if (a.blksize !== b.blksize) - return false; - if (a.blocks !== b.blocks) - return false; - if (a.ctimeMs !== b.ctimeMs) - return false; - if (a.dev !== b.dev) - return false; - if (a.gid !== b.gid) - return false; - if (a.ino !== b.ino) - return false; - if (a.isBlockDevice() !== b.isBlockDevice()) - return false; - if (a.isCharacterDevice() !== b.isCharacterDevice()) - return false; - if (a.isDirectory() !== b.isDirectory()) - return false; - if (a.isFIFO() !== b.isFIFO()) - return false; - if (a.isFile() !== b.isFile()) - return false; - if (a.isSocket() !== b.isSocket()) - return false; - if (a.isSymbolicLink() !== b.isSymbolicLink()) - return false; - if (a.mode !== b.mode) - return false; - if (a.mtimeMs !== b.mtimeMs) - return false; - if (a.nlink !== b.nlink) - return false; - if (a.rdev !== b.rdev) - return false; - if (a.size !== b.size) - return false; - if (a.uid !== b.uid) - return false; - const aN = a; - const bN = b; - if (aN.atimeNs !== bN.atimeNs) - return false; - if (aN.mtimeNs !== bN.mtimeNs) - return false; - if (aN.ctimeNs !== bN.ctimeNs) - return false; - if (aN.birthtimeNs !== bN.birthtimeNs) - return false; - return true; -} - -var PathType; -(function(PathType2) { - PathType2[PathType2["File"] = 0] = "File"; - PathType2[PathType2["Portable"] = 1] = "Portable"; - PathType2[PathType2["Native"] = 2] = "Native"; -})(PathType || (PathType = {})); -const PortablePath = { - root: `/`, - dot: `.` -}; -const Filename = { - nodeModules: `node_modules`, - manifest: `package.json`, - lockfile: `yarn.lock`, - virtual: `__virtual__`, - pnpJs: `.pnp.js`, - pnpCjs: `.pnp.cjs`, - rc: `.yarnrc.yml` -}; -const npath = Object.create(path__default.default); -const ppath = Object.create(path__default.default.posix); -npath.cwd = () => process.cwd(); -ppath.cwd = () => toPortablePath(process.cwd()); -ppath.resolve = (...segments) => { - if (segments.length > 0 && ppath.isAbsolute(segments[0])) { - return path__default.default.posix.resolve(...segments); - } else { - return path__default.default.posix.resolve(ppath.cwd(), ...segments); - } -}; -const contains = function(pathUtils, from, to) { - from = pathUtils.normalize(from); - to = pathUtils.normalize(to); - if (from === to) - return `.`; - if (!from.endsWith(pathUtils.sep)) - from = from + pathUtils.sep; - if (to.startsWith(from)) { - return to.slice(from.length); - } else { - return null; - } -}; -npath.fromPortablePath = fromPortablePath; -npath.toPortablePath = toPortablePath; -npath.contains = (from, to) => contains(npath, from, to); -ppath.contains = (from, to) => contains(ppath, from, to); -const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/; -const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/; -const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/; -const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/; -function fromPortablePath(p) { - if (process.platform !== `win32`) - return p; - let portablePathMatch, uncPortablePathMatch; - if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP)) - p = portablePathMatch[1]; - else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP)) - p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`; - else - return p; - return p.replace(/\//g, `\\`); -} -function toPortablePath(p) { - if (process.platform !== `win32`) - return p; - p = p.replace(/\\/g, `/`); - let windowsPathMatch, uncWindowsPathMatch; - if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP)) - p = `/${windowsPathMatch[1]}`; - else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP)) - p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`; - return p; -} -function convertPath(targetPathUtils, sourcePath) { - return targetPathUtils === npath ? fromPortablePath(sourcePath) : toPortablePath(sourcePath); -} - -var __defProp$5 = Object.defineProperty; -var __defProps$3 = Object.defineProperties; -var __getOwnPropDescs$3 = Object.getOwnPropertyDescriptors; -var __getOwnPropSymbols$6 = Object.getOwnPropertySymbols; -var __hasOwnProp$6 = Object.prototype.hasOwnProperty; -var __propIsEnum$6 = Object.prototype.propertyIsEnumerable; -var __defNormalProp$5 = (obj, key, value) => key in obj ? __defProp$5(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues$5 = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp$6.call(b, prop)) - __defNormalProp$5(a, prop, b[prop]); - if (__getOwnPropSymbols$6) - for (var prop of __getOwnPropSymbols$6(b)) { - if (__propIsEnum$6.call(b, prop)) - __defNormalProp$5(a, prop, b[prop]); - } - return a; -}; -var __spreadProps$3 = (a, b) => __defProps$3(a, __getOwnPropDescs$3(b)); -const defaultTime = new Date(SAFE_TIME * 1e3); -var LinkStrategy; -(function(LinkStrategy2) { - LinkStrategy2["Allow"] = `allow`; - LinkStrategy2["ReadOnly"] = `readOnly`; -})(LinkStrategy || (LinkStrategy = {})); -async function copyPromise(destinationFs, destination, sourceFs, source, opts) { - const normalizedDestination = destinationFs.pathUtils.normalize(destination); - const normalizedSource = sourceFs.pathUtils.normalize(source); - const prelayout = []; - const postlayout = []; - const {atime, mtime} = opts.stableTime ? {atime: defaultTime, mtime: defaultTime} : await sourceFs.lstatPromise(normalizedSource); - await destinationFs.mkdirpPromise(destinationFs.pathUtils.dirname(destination), {utimes: [atime, mtime]}); - const updateTime = typeof destinationFs.lutimesPromise === `function` ? destinationFs.lutimesPromise.bind(destinationFs) : destinationFs.utimesPromise.bind(destinationFs); - await copyImpl(prelayout, postlayout, updateTime, destinationFs, normalizedDestination, sourceFs, normalizedSource, __spreadProps$3(__spreadValues$5({}, opts), {didParentExist: true})); - for (const operation of prelayout) - await operation(); - await Promise.all(postlayout.map((operation) => { - return operation(); - })); -} -async function copyImpl(prelayout, postlayout, updateTime, destinationFs, destination, sourceFs, source, opts) { - var _a, _b; - const destinationStat = opts.didParentExist ? await maybeLStat(destinationFs, destination) : null; - const sourceStat = await sourceFs.lstatPromise(source); - const {atime, mtime} = opts.stableTime ? {atime: defaultTime, mtime: defaultTime} : sourceStat; - let updated; - switch (true) { - case sourceStat.isDirectory(): - { - updated = await copyFolder(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); - } - break; - case sourceStat.isFile(): - { - updated = await copyFile(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); - } - break; - case sourceStat.isSymbolicLink(): - { - updated = await copySymlink(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts); - } - break; - default: - { - throw new Error(`Unsupported file type (${sourceStat.mode})`); - } - } - if (updated || ((_a = destinationStat == null ? void 0 : destinationStat.mtime) == null ? void 0 : _a.getTime()) !== mtime.getTime() || ((_b = destinationStat == null ? void 0 : destinationStat.atime) == null ? void 0 : _b.getTime()) !== atime.getTime()) { - postlayout.push(() => updateTime(destination, atime, mtime)); - updated = true; - } - if (destinationStat === null || (destinationStat.mode & 511) !== (sourceStat.mode & 511)) { - postlayout.push(() => destinationFs.chmodPromise(destination, sourceStat.mode & 511)); - updated = true; - } - return updated; -} -async function maybeLStat(baseFs, p) { - try { - return await baseFs.lstatPromise(p); - } catch (e) { - return null; - } -} -async function copyFolder(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { - if (destinationStat !== null && !destinationStat.isDirectory()) { - if (opts.overwrite) { - prelayout.push(async () => destinationFs.removePromise(destination)); - destinationStat = null; - } else { - return false; - } - } - let updated = false; - if (destinationStat === null) { - prelayout.push(async () => { - try { - await destinationFs.mkdirPromise(destination, {mode: sourceStat.mode}); - } catch (err) { - if (err.code !== `EEXIST`) { - throw err; - } - } - }); - updated = true; - } - const entries = await sourceFs.readdirPromise(source); - const nextOpts = opts.didParentExist && !destinationStat ? __spreadProps$3(__spreadValues$5({}, opts), {didParentExist: false}) : opts; - if (opts.stableSort) { - for (const entry of entries.sort()) { - if (await copyImpl(prelayout, postlayout, updateTime, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts)) { - updated = true; - } - } - } else { - const entriesUpdateStatus = await Promise.all(entries.map(async (entry) => { - await copyImpl(prelayout, postlayout, updateTime, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts); - })); - if (entriesUpdateStatus.some((status) => status)) { - updated = true; - } - } - return updated; -} -const isCloneSupportedCache = new WeakMap(); -function makeLinkOperation(opFs, destination, source, sourceStat, linkStrategy) { - return async () => { - await opFs.linkPromise(source, destination); - if (linkStrategy === LinkStrategy.ReadOnly) { - sourceStat.mode &= ~146; - await opFs.chmodPromise(destination, sourceStat.mode); - } - }; -} -function makeCloneLinkOperation(opFs, destination, source, sourceStat, linkStrategy) { - const isCloneSupported = isCloneSupportedCache.get(opFs); - if (typeof isCloneSupported === `undefined`) { - return async () => { - try { - await opFs.copyFilePromise(source, destination, fs__default.default.constants.COPYFILE_FICLONE_FORCE); - isCloneSupportedCache.set(opFs, true); - } catch (err) { - if (err.code === `ENOSYS` || err.code === `ENOTSUP`) { - isCloneSupportedCache.set(opFs, false); - await makeLinkOperation(opFs, destination, source, sourceStat, linkStrategy)(); - } else { - throw err; - } - } - }; - } else { - if (isCloneSupported) { - return async () => opFs.copyFilePromise(source, destination, fs__default.default.constants.COPYFILE_FICLONE_FORCE); - } else { - return makeLinkOperation(opFs, destination, source, sourceStat, linkStrategy); - } - } -} -async function copyFile(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { - var _a; - if (destinationStat !== null) { - if (opts.overwrite) { - prelayout.push(async () => destinationFs.removePromise(destination)); - destinationStat = null; - } else { - return false; - } - } - const linkStrategy = (_a = opts.linkStrategy) != null ? _a : null; - const op = destinationFs === sourceFs ? linkStrategy !== null ? makeCloneLinkOperation(destinationFs, destination, source, sourceStat, linkStrategy) : async () => destinationFs.copyFilePromise(source, destination, fs__default.default.constants.COPYFILE_FICLONE) : linkStrategy !== null ? makeLinkOperation(destinationFs, destination, source, sourceStat, linkStrategy) : async () => destinationFs.writeFilePromise(destination, await sourceFs.readFilePromise(source)); - prelayout.push(async () => op()); - return true; -} -async function copySymlink(prelayout, postlayout, updateTime, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) { - if (destinationStat !== null) { - if (opts.overwrite) { - prelayout.push(async () => destinationFs.removePromise(destination)); - destinationStat = null; - } else { - return false; - } - } - prelayout.push(async () => { - await destinationFs.symlinkPromise(convertPath(destinationFs.pathUtils, await sourceFs.readlinkPromise(source)), destination); - }); - return true; -} - -function makeError$1(code, message) { - return Object.assign(new Error(`${code}: ${message}`), {code}); -} -function EBUSY(message) { - return makeError$1(`EBUSY`, message); -} -function ENOSYS(message, reason) { - return makeError$1(`ENOSYS`, `${message}, ${reason}`); -} -function EINVAL(reason) { - return makeError$1(`EINVAL`, `invalid argument, ${reason}`); -} -function EBADF(reason) { - return makeError$1(`EBADF`, `bad file descriptor, ${reason}`); -} -function ENOENT(reason) { - return makeError$1(`ENOENT`, `no such file or directory, ${reason}`); -} -function ENOTDIR(reason) { - return makeError$1(`ENOTDIR`, `not a directory, ${reason}`); -} -function EISDIR(reason) { - return makeError$1(`EISDIR`, `illegal operation on a directory, ${reason}`); -} -function EEXIST(reason) { - return makeError$1(`EEXIST`, `file already exists, ${reason}`); -} -function EROFS(reason) { - return makeError$1(`EROFS`, `read-only filesystem, ${reason}`); -} -function ENOTEMPTY(reason) { - return makeError$1(`ENOTEMPTY`, `directory not empty, ${reason}`); -} -function EOPNOTSUPP(reason) { - return makeError$1(`EOPNOTSUPP`, `operation not supported, ${reason}`); -} -function ERR_DIR_CLOSED() { - return makeError$1(`ERR_DIR_CLOSED`, `Directory handle was closed`); -} -class LibzipError extends Error { - constructor(message, code) { - super(message); - this.name = `Libzip Error`; - this.code = code; - } -} - -class CustomDir { - constructor(path, nextDirent, opts = {}) { - this.path = path; - this.nextDirent = nextDirent; - this.opts = opts; - this.closed = false; - } - throwIfClosed() { - if (this.closed) { - throw ERR_DIR_CLOSED(); - } - } - async *[Symbol.asyncIterator]() { - try { - let dirent; - while ((dirent = await this.read()) !== null) { - yield dirent; - } - } finally { - await this.close(); - } - } - read(cb) { - const dirent = this.readSync(); - if (typeof cb !== `undefined`) - return cb(null, dirent); - return Promise.resolve(dirent); - } - readSync() { - this.throwIfClosed(); - return this.nextDirent(); - } - close(cb) { - this.closeSync(); - if (typeof cb !== `undefined`) - return cb(null); - return Promise.resolve(); - } - closeSync() { - var _a, _b; - this.throwIfClosed(); - (_b = (_a = this.opts).onClose) == null ? void 0 : _b.call(_a); - this.closed = true; - } -} -function opendir(fakeFs, path, entries, opts) { - const nextDirent = () => { - const filename = entries.shift(); - if (typeof filename === `undefined`) - return null; - return Object.assign(fakeFs.statSync(fakeFs.pathUtils.join(path, filename)), { - name: filename - }); - }; - return new CustomDir(path, nextDirent, opts); -} - -class FakeFS { - constructor(pathUtils) { - this.pathUtils = pathUtils; - } - async *genTraversePromise(init, {stableSort = false} = {}) { - const stack = [init]; - while (stack.length > 0) { - const p = stack.shift(); - const entry = await this.lstatPromise(p); - if (entry.isDirectory()) { - const entries = await this.readdirPromise(p); - if (stableSort) { - for (const entry2 of entries.sort()) { - stack.push(this.pathUtils.join(p, entry2)); - } - } else { - throw new Error(`Not supported`); - } - } else { - yield p; - } - } - } - async removePromise(p, {recursive = true, maxRetries = 5} = {}) { - let stat; - try { - stat = await this.lstatPromise(p); - } catch (error) { - if (error.code === `ENOENT`) { - return; - } else { - throw error; - } - } - if (stat.isDirectory()) { - if (recursive) { - const entries = await this.readdirPromise(p); - await Promise.all(entries.map((entry) => { - return this.removePromise(this.pathUtils.resolve(p, entry)); - })); - } - for (let t = 0; t <= maxRetries; t++) { - try { - await this.rmdirPromise(p); - break; - } catch (error) { - if (error.code !== `EBUSY` && error.code !== `ENOTEMPTY`) { - throw error; - } else if (t < maxRetries) { - await new Promise((resolve) => setTimeout(resolve, t * 100)); - } - } - } - } else { - await this.unlinkPromise(p); - } - } - removeSync(p, {recursive = true} = {}) { - let stat; - try { - stat = this.lstatSync(p); - } catch (error) { - if (error.code === `ENOENT`) { - return; - } else { - throw error; - } - } - if (stat.isDirectory()) { - if (recursive) - for (const entry of this.readdirSync(p)) - this.removeSync(this.pathUtils.resolve(p, entry)); - this.rmdirSync(p); - } else { - this.unlinkSync(p); - } - } - async mkdirpPromise(p, {chmod, utimes} = {}) { - p = this.resolve(p); - if (p === this.pathUtils.dirname(p)) - return void 0; - const parts = p.split(this.pathUtils.sep); - let createdDirectory; - for (let u = 2; u <= parts.length; ++u) { - const subPath = parts.slice(0, u).join(this.pathUtils.sep); - if (!this.existsSync(subPath)) { - try { - await this.mkdirPromise(subPath); - } catch (error) { - if (error.code === `EEXIST`) { - continue; - } else { - throw error; - } - } - createdDirectory != null ? createdDirectory : createdDirectory = subPath; - if (chmod != null) - await this.chmodPromise(subPath, chmod); - if (utimes != null) { - await this.utimesPromise(subPath, utimes[0], utimes[1]); - } else { - const parentStat = await this.statPromise(this.pathUtils.dirname(subPath)); - await this.utimesPromise(subPath, parentStat.atime, parentStat.mtime); - } - } - } - return createdDirectory; - } - mkdirpSync(p, {chmod, utimes} = {}) { - p = this.resolve(p); - if (p === this.pathUtils.dirname(p)) - return void 0; - const parts = p.split(this.pathUtils.sep); - let createdDirectory; - for (let u = 2; u <= parts.length; ++u) { - const subPath = parts.slice(0, u).join(this.pathUtils.sep); - if (!this.existsSync(subPath)) { - try { - this.mkdirSync(subPath); - } catch (error) { - if (error.code === `EEXIST`) { - continue; - } else { - throw error; - } - } - createdDirectory != null ? createdDirectory : createdDirectory = subPath; - if (chmod != null) - this.chmodSync(subPath, chmod); - if (utimes != null) { - this.utimesSync(subPath, utimes[0], utimes[1]); - } else { - const parentStat = this.statSync(this.pathUtils.dirname(subPath)); - this.utimesSync(subPath, parentStat.atime, parentStat.mtime); - } - } - } - return createdDirectory; - } - async copyPromise(destination, source, {baseFs = this, overwrite = true, stableSort = false, stableTime = false, linkStrategy = null} = {}) { - return await copyPromise(this, destination, baseFs, source, {overwrite, stableSort, stableTime, linkStrategy}); - } - copySync(destination, source, {baseFs = this, overwrite = true} = {}) { - const stat = baseFs.lstatSync(source); - const exists = this.existsSync(destination); - if (stat.isDirectory()) { - this.mkdirpSync(destination); - const directoryListing = baseFs.readdirSync(source); - for (const entry of directoryListing) { - this.copySync(this.pathUtils.join(destination, entry), baseFs.pathUtils.join(source, entry), {baseFs, overwrite}); - } - } else if (stat.isFile()) { - if (!exists || overwrite) { - if (exists) - this.removeSync(destination); - const content = baseFs.readFileSync(source); - this.writeFileSync(destination, content); - } - } else if (stat.isSymbolicLink()) { - if (!exists || overwrite) { - if (exists) - this.removeSync(destination); - const target = baseFs.readlinkSync(source); - this.symlinkSync(convertPath(this.pathUtils, target), destination); - } - } else { - throw new Error(`Unsupported file type (file: ${source}, mode: 0o${stat.mode.toString(8).padStart(6, `0`)})`); - } - const mode = stat.mode & 511; - this.chmodSync(destination, mode); - } - async changeFilePromise(p, content, opts = {}) { - if (Buffer.isBuffer(content)) { - return this.changeFileBufferPromise(p, content, opts); - } else { - return this.changeFileTextPromise(p, content, opts); - } - } - async changeFileBufferPromise(p, content, {mode} = {}) { - let current = Buffer.alloc(0); - try { - current = await this.readFilePromise(p); - } catch (error) { - } - if (Buffer.compare(current, content) === 0) - return; - await this.writeFilePromise(p, content, {mode}); - } - async changeFileTextPromise(p, content, {automaticNewlines, mode} = {}) { - let current = ``; - try { - current = await this.readFilePromise(p, `utf8`); - } catch (error) { - } - const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; - if (current === normalizedContent) - return; - await this.writeFilePromise(p, normalizedContent, {mode}); - } - changeFileSync(p, content, opts = {}) { - if (Buffer.isBuffer(content)) { - return this.changeFileBufferSync(p, content, opts); - } else { - return this.changeFileTextSync(p, content, opts); - } - } - changeFileBufferSync(p, content, {mode} = {}) { - let current = Buffer.alloc(0); - try { - current = this.readFileSync(p); - } catch (error) { - } - if (Buffer.compare(current, content) === 0) - return; - this.writeFileSync(p, content, {mode}); - } - changeFileTextSync(p, content, {automaticNewlines = false, mode} = {}) { - let current = ``; - try { - current = this.readFileSync(p, `utf8`); - } catch (error) { - } - const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content; - if (current === normalizedContent) - return; - this.writeFileSync(p, normalizedContent, {mode}); - } - async movePromise(fromP, toP) { - try { - await this.renamePromise(fromP, toP); - } catch (error) { - if (error.code === `EXDEV`) { - await this.copyPromise(toP, fromP); - await this.removePromise(fromP); - } else { - throw error; - } - } - } - moveSync(fromP, toP) { - try { - this.renameSync(fromP, toP); - } catch (error) { - if (error.code === `EXDEV`) { - this.copySync(toP, fromP); - this.removeSync(fromP); - } else { - throw error; - } - } - } - async lockPromise(affectedPath, callback) { - const lockPath = `${affectedPath}.flock`; - const interval = 1e3 / 60; - const startTime = Date.now(); - let fd = null; - const isAlive = async () => { - let pid; - try { - [pid] = await this.readJsonPromise(lockPath); - } catch (error) { - return Date.now() - startTime < 500; - } - try { - process.kill(pid, 0); - return true; - } catch (error) { - return false; - } - }; - while (fd === null) { - try { - fd = await this.openPromise(lockPath, `wx`); - } catch (error) { - if (error.code === `EEXIST`) { - if (!await isAlive()) { - try { - await this.unlinkPromise(lockPath); - continue; - } catch (error2) { - } - } - if (Date.now() - startTime < 60 * 1e3) { - await new Promise((resolve) => setTimeout(resolve, interval)); - } else { - throw new Error(`Couldn't acquire a lock in a reasonable time (via ${lockPath})`); - } - } else { - throw error; - } - } - } - await this.writePromise(fd, JSON.stringify([process.pid])); - try { - return await callback(); - } finally { - try { - await this.closePromise(fd); - await this.unlinkPromise(lockPath); - } catch (error) { - } - } - } - async readJsonPromise(p) { - const content = await this.readFilePromise(p, `utf8`); - try { - return JSON.parse(content); - } catch (error) { - error.message += ` (in ${p})`; - throw error; - } - } - readJsonSync(p) { - const content = this.readFileSync(p, `utf8`); - try { - return JSON.parse(content); - } catch (error) { - error.message += ` (in ${p})`; - throw error; - } - } - async writeJsonPromise(p, data) { - return await this.writeFilePromise(p, `${JSON.stringify(data, null, 2)} -`); - } - writeJsonSync(p, data) { - return this.writeFileSync(p, `${JSON.stringify(data, null, 2)} -`); - } - async preserveTimePromise(p, cb) { - const stat = await this.lstatPromise(p); - const result = await cb(); - if (typeof result !== `undefined`) - p = result; - if (this.lutimesPromise) { - await this.lutimesPromise(p, stat.atime, stat.mtime); - } else if (!stat.isSymbolicLink()) { - await this.utimesPromise(p, stat.atime, stat.mtime); - } - } - async preserveTimeSync(p, cb) { - const stat = this.lstatSync(p); - const result = cb(); - if (typeof result !== `undefined`) - p = result; - if (this.lutimesSync) { - this.lutimesSync(p, stat.atime, stat.mtime); - } else if (!stat.isSymbolicLink()) { - this.utimesSync(p, stat.atime, stat.mtime); - } - } -} -class BasePortableFakeFS extends FakeFS { - constructor() { - super(ppath); - } -} -function getEndOfLine(content) { - const matches = content.match(/\r?\n/g); - if (matches === null) - return os.EOL; - const crlf = matches.filter((nl) => nl === `\r -`).length; - const lf = matches.length - crlf; - return crlf > lf ? `\r -` : ` -`; -} -function normalizeLineEndings(originalContent, newContent) { - return newContent.replace(/\r?\n/g, getEndOfLine(originalContent)); -} - -class NodeFS extends BasePortableFakeFS { - constructor(realFs = fs__default.default) { - super(); - this.realFs = realFs; - if (typeof this.realFs.lutimes !== `undefined`) { - this.lutimesPromise = this.lutimesPromiseImpl; - this.lutimesSync = this.lutimesSyncImpl; - } - } - getExtractHint() { - return false; - } - getRealPath() { - return PortablePath.root; - } - resolve(p) { - return ppath.resolve(p); - } - async openPromise(p, flags, mode) { - return await new Promise((resolve, reject) => { - this.realFs.open(npath.fromPortablePath(p), flags, mode, this.makeCallback(resolve, reject)); - }); - } - openSync(p, flags, mode) { - return this.realFs.openSync(npath.fromPortablePath(p), flags, mode); - } - async opendirPromise(p, opts) { - return await new Promise((resolve, reject) => { - if (typeof opts !== `undefined`) { - this.realFs.opendir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.opendir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - } - }).then((dir) => { - return Object.defineProperty(dir, `path`, {value: p, configurable: true, writable: true}); - }); - } - opendirSync(p, opts) { - const dir = typeof opts !== `undefined` ? this.realFs.opendirSync(npath.fromPortablePath(p), opts) : this.realFs.opendirSync(npath.fromPortablePath(p)); - return Object.defineProperty(dir, `path`, {value: p, configurable: true, writable: true}); - } - async readPromise(fd, buffer, offset = 0, length = 0, position = -1) { - return await new Promise((resolve, reject) => { - this.realFs.read(fd, buffer, offset, length, position, (error, bytesRead) => { - if (error) { - reject(error); - } else { - resolve(bytesRead); - } - }); - }); - } - readSync(fd, buffer, offset, length, position) { - return this.realFs.readSync(fd, buffer, offset, length, position); - } - async writePromise(fd, buffer, offset, length, position) { - return await new Promise((resolve, reject) => { - if (typeof buffer === `string`) { - return this.realFs.write(fd, buffer, offset, this.makeCallback(resolve, reject)); - } else { - return this.realFs.write(fd, buffer, offset, length, position, this.makeCallback(resolve, reject)); - } - }); - } - writeSync(fd, buffer, offset, length, position) { - if (typeof buffer === `string`) { - return this.realFs.writeSync(fd, buffer, offset); - } else { - return this.realFs.writeSync(fd, buffer, offset, length, position); - } - } - async closePromise(fd) { - await new Promise((resolve, reject) => { - this.realFs.close(fd, this.makeCallback(resolve, reject)); - }); - } - closeSync(fd) { - this.realFs.closeSync(fd); - } - createReadStream(p, opts) { - const realPath = p !== null ? npath.fromPortablePath(p) : p; - return this.realFs.createReadStream(realPath, opts); - } - createWriteStream(p, opts) { - const realPath = p !== null ? npath.fromPortablePath(p) : p; - return this.realFs.createWriteStream(realPath, opts); - } - async realpathPromise(p) { - return await new Promise((resolve, reject) => { - this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject)); - }).then((path) => { - return npath.toPortablePath(path); - }); - } - realpathSync(p) { - return npath.toPortablePath(this.realFs.realpathSync(npath.fromPortablePath(p), {})); - } - async existsPromise(p) { - return await new Promise((resolve) => { - this.realFs.exists(npath.fromPortablePath(p), resolve); - }); - } - accessSync(p, mode) { - return this.realFs.accessSync(npath.fromPortablePath(p), mode); - } - async accessPromise(p, mode) { - return await new Promise((resolve, reject) => { - this.realFs.access(npath.fromPortablePath(p), mode, this.makeCallback(resolve, reject)); - }); - } - existsSync(p) { - return this.realFs.existsSync(npath.fromPortablePath(p)); - } - async statPromise(p, opts) { - return await new Promise((resolve, reject) => { - if (opts) { - this.realFs.stat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.stat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - } - }); - } - statSync(p, opts) { - if (opts) { - return this.realFs.statSync(npath.fromPortablePath(p), opts); - } else { - return this.realFs.statSync(npath.fromPortablePath(p)); - } - } - async fstatPromise(fd, opts) { - return await new Promise((resolve, reject) => { - if (opts) { - this.realFs.fstat(fd, opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.fstat(fd, this.makeCallback(resolve, reject)); - } - }); - } - fstatSync(fd, opts) { - if (opts) { - return this.realFs.fstatSync(fd, opts); - } else { - return this.realFs.fstatSync(fd); - } - } - async lstatPromise(p, opts) { - return await new Promise((resolve, reject) => { - if (opts) { - this.realFs.lstat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.lstat(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - } - }); - } - lstatSync(p, opts) { - if (opts) { - return this.realFs.lstatSync(npath.fromPortablePath(p), opts); - } else { - return this.realFs.lstatSync(npath.fromPortablePath(p)); - } - } - async fchmodPromise(fd, mask) { - return await new Promise((resolve, reject) => { - this.realFs.fchmod(fd, mask, this.makeCallback(resolve, reject)); - }); - } - fchmodSync(fd, mask) { - return this.realFs.fchmodSync(fd, mask); - } - async chmodPromise(p, mask) { - return await new Promise((resolve, reject) => { - this.realFs.chmod(npath.fromPortablePath(p), mask, this.makeCallback(resolve, reject)); - }); - } - chmodSync(p, mask) { - return this.realFs.chmodSync(npath.fromPortablePath(p), mask); - } - async chownPromise(p, uid, gid) { - return await new Promise((resolve, reject) => { - this.realFs.chown(npath.fromPortablePath(p), uid, gid, this.makeCallback(resolve, reject)); - }); - } - chownSync(p, uid, gid) { - return this.realFs.chownSync(npath.fromPortablePath(p), uid, gid); - } - async renamePromise(oldP, newP) { - return await new Promise((resolve, reject) => { - this.realFs.rename(npath.fromPortablePath(oldP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); - }); - } - renameSync(oldP, newP) { - return this.realFs.renameSync(npath.fromPortablePath(oldP), npath.fromPortablePath(newP)); - } - async copyFilePromise(sourceP, destP, flags = 0) { - return await new Promise((resolve, reject) => { - this.realFs.copyFile(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags, this.makeCallback(resolve, reject)); - }); - } - copyFileSync(sourceP, destP, flags = 0) { - return this.realFs.copyFileSync(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags); - } - async appendFilePromise(p, content, opts) { - return await new Promise((resolve, reject) => { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - if (opts) { - this.realFs.appendFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.appendFile(fsNativePath, content, this.makeCallback(resolve, reject)); - } - }); - } - appendFileSync(p, content, opts) { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - if (opts) { - this.realFs.appendFileSync(fsNativePath, content, opts); - } else { - this.realFs.appendFileSync(fsNativePath, content); - } - } - async writeFilePromise(p, content, opts) { - return await new Promise((resolve, reject) => { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - if (opts) { - this.realFs.writeFile(fsNativePath, content, opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.writeFile(fsNativePath, content, this.makeCallback(resolve, reject)); - } - }); - } - writeFileSync(p, content, opts) { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - if (opts) { - this.realFs.writeFileSync(fsNativePath, content, opts); - } else { - this.realFs.writeFileSync(fsNativePath, content); - } - } - async unlinkPromise(p) { - return await new Promise((resolve, reject) => { - this.realFs.unlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - }); - } - unlinkSync(p) { - return this.realFs.unlinkSync(npath.fromPortablePath(p)); - } - async utimesPromise(p, atime, mtime) { - return await new Promise((resolve, reject) => { - this.realFs.utimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); - }); - } - utimesSync(p, atime, mtime) { - this.realFs.utimesSync(npath.fromPortablePath(p), atime, mtime); - } - async lutimesPromiseImpl(p, atime, mtime) { - const lutimes = this.realFs.lutimes; - if (typeof lutimes === `undefined`) - throw ENOSYS(`unavailable Node binding`, `lutimes '${p}'`); - return await new Promise((resolve, reject) => { - lutimes.call(this.realFs, npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject)); - }); - } - lutimesSyncImpl(p, atime, mtime) { - const lutimesSync = this.realFs.lutimesSync; - if (typeof lutimesSync === `undefined`) - throw ENOSYS(`unavailable Node binding`, `lutimes '${p}'`); - lutimesSync.call(this.realFs, npath.fromPortablePath(p), atime, mtime); - } - async mkdirPromise(p, opts) { - return await new Promise((resolve, reject) => { - this.realFs.mkdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); - }); - } - mkdirSync(p, opts) { - return this.realFs.mkdirSync(npath.fromPortablePath(p), opts); - } - async rmdirPromise(p, opts) { - return await new Promise((resolve, reject) => { - if (opts) { - this.realFs.rmdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject)); - } else { - this.realFs.rmdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - } - }); - } - rmdirSync(p, opts) { - return this.realFs.rmdirSync(npath.fromPortablePath(p), opts); - } - async linkPromise(existingP, newP) { - return await new Promise((resolve, reject) => { - this.realFs.link(npath.fromPortablePath(existingP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject)); - }); - } - linkSync(existingP, newP) { - return this.realFs.linkSync(npath.fromPortablePath(existingP), npath.fromPortablePath(newP)); - } - async symlinkPromise(target, p, type) { - return await new Promise((resolve, reject) => { - this.realFs.symlink(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type, this.makeCallback(resolve, reject)); - }); - } - symlinkSync(target, p, type) { - return this.realFs.symlinkSync(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type); - } - async readFilePromise(p, encoding) { - return await new Promise((resolve, reject) => { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - this.realFs.readFile(fsNativePath, encoding, this.makeCallback(resolve, reject)); - }); - } - readFileSync(p, encoding) { - const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p; - return this.realFs.readFileSync(fsNativePath, encoding); - } - async readdirPromise(p, opts) { - return await new Promise((resolve, reject) => { - if (opts == null ? void 0 : opts.withFileTypes) { - this.realFs.readdir(npath.fromPortablePath(p), {withFileTypes: true}, this.makeCallback(resolve, reject)); - } else { - this.realFs.readdir(npath.fromPortablePath(p), this.makeCallback((value) => resolve(value), reject)); - } - }); - } - readdirSync(p, opts) { - if (opts == null ? void 0 : opts.withFileTypes) { - return this.realFs.readdirSync(npath.fromPortablePath(p), {withFileTypes: true}); - } else { - return this.realFs.readdirSync(npath.fromPortablePath(p)); - } - } - async readlinkPromise(p) { - return await new Promise((resolve, reject) => { - this.realFs.readlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject)); - }).then((path) => { - return npath.toPortablePath(path); - }); - } - readlinkSync(p) { - return npath.toPortablePath(this.realFs.readlinkSync(npath.fromPortablePath(p))); - } - async truncatePromise(p, len) { - return await new Promise((resolve, reject) => { - this.realFs.truncate(npath.fromPortablePath(p), len, this.makeCallback(resolve, reject)); - }); - } - truncateSync(p, len) { - return this.realFs.truncateSync(npath.fromPortablePath(p), len); - } - async ftruncatePromise(fd, len) { - return await new Promise((resolve, reject) => { - this.realFs.ftruncate(fd, len, this.makeCallback(resolve, reject)); - }); - } - ftruncateSync(fd, len) { - return this.realFs.ftruncateSync(fd, len); - } - watch(p, a, b) { - return this.realFs.watch(npath.fromPortablePath(p), a, b); - } - watchFile(p, a, b) { - return this.realFs.watchFile(npath.fromPortablePath(p), a, b); - } - unwatchFile(p, cb) { - return this.realFs.unwatchFile(npath.fromPortablePath(p), cb); - } - makeCallback(resolve, reject) { - return (err, result) => { - if (err) { - reject(err); - } else { - resolve(result); - } - }; - } -} - -var Event; -(function(Event2) { - Event2["Change"] = `change`; - Event2["Stop"] = `stop`; -})(Event || (Event = {})); -var Status; -(function(Status2) { - Status2["Ready"] = `ready`; - Status2["Running"] = `running`; - Status2["Stopped"] = `stopped`; -})(Status || (Status = {})); -function assertStatus(current, expected) { - if (current !== expected) { - throw new Error(`Invalid StatWatcher status: expected '${expected}', got '${current}'`); - } -} -class CustomStatWatcher extends events.EventEmitter { - constructor(fakeFs, path, {bigint = false} = {}) { - super(); - this.status = Status.Ready; - this.changeListeners = new Map(); - this.startTimeout = null; - this.fakeFs = fakeFs; - this.path = path; - this.bigint = bigint; - this.lastStats = this.stat(); - } - static create(fakeFs, path, opts) { - const statWatcher = new CustomStatWatcher(fakeFs, path, opts); - statWatcher.start(); - return statWatcher; - } - start() { - assertStatus(this.status, Status.Ready); - this.status = Status.Running; - this.startTimeout = setTimeout(() => { - this.startTimeout = null; - if (!this.fakeFs.existsSync(this.path)) { - this.emit(Event.Change, this.lastStats, this.lastStats); - } - }, 3); - } - stop() { - assertStatus(this.status, Status.Running); - this.status = Status.Stopped; - if (this.startTimeout !== null) { - clearTimeout(this.startTimeout); - this.startTimeout = null; - } - this.emit(Event.Stop); - } - stat() { - try { - return this.fakeFs.statSync(this.path, {bigint: this.bigint}); - } catch (error) { - const statInstance = this.bigint ? new BigIntStatsEntry() : new StatEntry(); - return clearStats(statInstance); - } - } - makeInterval(opts) { - const interval = setInterval(() => { - const currentStats = this.stat(); - const previousStats = this.lastStats; - if (areStatsEqual(currentStats, previousStats)) - return; - this.lastStats = currentStats; - this.emit(Event.Change, currentStats, previousStats); - }, opts.interval); - return opts.persistent ? interval : interval.unref(); - } - registerChangeListener(listener, opts) { - this.addListener(Event.Change, listener); - this.changeListeners.set(listener, this.makeInterval(opts)); - } - unregisterChangeListener(listener) { - this.removeListener(Event.Change, listener); - const interval = this.changeListeners.get(listener); - if (typeof interval !== `undefined`) - clearInterval(interval); - this.changeListeners.delete(listener); - } - unregisterAllChangeListeners() { - for (const listener of this.changeListeners.keys()) { - this.unregisterChangeListener(listener); - } - } - hasChangeListeners() { - return this.changeListeners.size > 0; - } - ref() { - for (const interval of this.changeListeners.values()) - interval.ref(); - return this; - } - unref() { - for (const interval of this.changeListeners.values()) - interval.unref(); - return this; - } -} - -const statWatchersByFakeFS = new WeakMap(); -function watchFile(fakeFs, path, a, b) { - let bigint; - let persistent; - let interval; - let listener; - switch (typeof a) { - case `function`: - { - bigint = false; - persistent = true; - interval = 5007; - listener = a; - } - break; - default: - { - ({ - bigint = false, - persistent = true, - interval = 5007 - } = a); - listener = b; - } - break; - } - let statWatchers = statWatchersByFakeFS.get(fakeFs); - if (typeof statWatchers === `undefined`) - statWatchersByFakeFS.set(fakeFs, statWatchers = new Map()); - let statWatcher = statWatchers.get(path); - if (typeof statWatcher === `undefined`) { - statWatcher = CustomStatWatcher.create(fakeFs, path, {bigint}); - statWatchers.set(path, statWatcher); - } - statWatcher.registerChangeListener(listener, {persistent, interval}); - return statWatcher; -} -function unwatchFile(fakeFs, path, cb) { - const statWatchers = statWatchersByFakeFS.get(fakeFs); - if (typeof statWatchers === `undefined`) - return; - const statWatcher = statWatchers.get(path); - if (typeof statWatcher === `undefined`) - return; - if (typeof cb === `undefined`) - statWatcher.unregisterAllChangeListeners(); - else - statWatcher.unregisterChangeListener(cb); - if (!statWatcher.hasChangeListeners()) { - statWatcher.stop(); - statWatchers.delete(path); - } -} -function unwatchAllFiles(fakeFs) { - const statWatchers = statWatchersByFakeFS.get(fakeFs); - if (typeof statWatchers === `undefined`) - return; - for (const path of statWatchers.keys()) { - unwatchFile(fakeFs, path); - } -} - -var __defProp$4 = Object.defineProperty; -var __getOwnPropSymbols$5 = Object.getOwnPropertySymbols; -var __hasOwnProp$5 = Object.prototype.hasOwnProperty; -var __propIsEnum$5 = Object.prototype.propertyIsEnumerable; -var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues$4 = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp$5.call(b, prop)) - __defNormalProp$4(a, prop, b[prop]); - if (__getOwnPropSymbols$5) - for (var prop of __getOwnPropSymbols$5(b)) { - if (__propIsEnum$5.call(b, prop)) - __defNormalProp$4(a, prop, b[prop]); - } - return a; -}; -const DEFAULT_COMPRESSION_LEVEL = `mixed`; -function toUnixTimestamp(time) { - if (typeof time === `string` && String(+time) === time) - return +time; - if (Number.isFinite(time)) { - if (time < 0) { - return Date.now() / 1e3; - } else { - return time; - } - } - if (nodeUtils.types.isDate(time)) - return time.getTime() / 1e3; - throw new Error(`Invalid time`); -} -function makeEmptyArchive() { - return Buffer.from([ - 80, - 75, - 5, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ]); -} -class ZipFS extends BasePortableFakeFS { - constructor(source, opts) { - super(); - this.lzSource = null; - this.listings = new Map(); - this.entries = new Map(); - this.fileSources = new Map(); - this.fds = new Map(); - this.nextFd = 0; - this.ready = false; - this.readOnly = false; - this.libzip = opts.libzip; - const pathOptions = opts; - this.level = typeof pathOptions.level !== `undefined` ? pathOptions.level : DEFAULT_COMPRESSION_LEVEL; - source != null ? source : source = makeEmptyArchive(); - if (typeof source === `string`) { - const {baseFs = new NodeFS()} = pathOptions; - this.baseFs = baseFs; - this.path = source; - } else { - this.path = null; - this.baseFs = null; - } - if (opts.stats) { - this.stats = opts.stats; - } else { - if (typeof source === `string`) { - try { - this.stats = this.baseFs.statSync(source); - } catch (error) { - if (error.code === `ENOENT` && pathOptions.create) { - this.stats = makeDefaultStats(); - } else { - throw error; - } - } - } else { - this.stats = makeDefaultStats(); - } - } - const errPtr = this.libzip.malloc(4); - try { - let flags = 0; - if (typeof source === `string` && pathOptions.create) - flags |= this.libzip.ZIP_CREATE | this.libzip.ZIP_TRUNCATE; - if (opts.readOnly) { - flags |= this.libzip.ZIP_RDONLY; - this.readOnly = true; - } - if (typeof source === `string`) { - this.zip = this.libzip.open(npath.fromPortablePath(source), flags, errPtr); - } else { - const lzSource = this.allocateUnattachedSource(source); - try { - this.zip = this.libzip.openFromSource(lzSource, flags, errPtr); - this.lzSource = lzSource; - } catch (error) { - this.libzip.source.free(lzSource); - throw error; - } - } - if (this.zip === 0) { - const error = this.libzip.struct.errorS(); - this.libzip.error.initWithCode(error, this.libzip.getValue(errPtr, `i32`)); - throw this.makeLibzipError(error); - } - } finally { - this.libzip.free(errPtr); - } - this.listings.set(PortablePath.root, new Set()); - const entryCount = this.libzip.getNumEntries(this.zip, 0); - for (let t = 0; t < entryCount; ++t) { - const raw = this.libzip.getName(this.zip, t, 0); - if (ppath.isAbsolute(raw)) - continue; - const p = ppath.resolve(PortablePath.root, raw); - this.registerEntry(p, t); - if (raw.endsWith(`/`)) { - this.registerListing(p); - } - } - this.symlinkCount = this.libzip.ext.countSymlinks(this.zip); - if (this.symlinkCount === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - this.ready = true; - } - makeLibzipError(error) { - const errorCode = this.libzip.struct.errorCodeZip(error); - const strerror = this.libzip.error.strerror(error); - const libzipError = new LibzipError(strerror, this.libzip.errors[errorCode]); - if (errorCode === this.libzip.errors.ZIP_ER_CHANGED) - throw new Error(`Assertion failed: Unexpected libzip error: ${libzipError.message}`); - return libzipError; - } - getExtractHint(hints) { - for (const fileName of this.entries.keys()) { - const ext = this.pathUtils.extname(fileName); - if (hints.relevantExtensions.has(ext)) { - return true; - } - } - return false; - } - getAllFiles() { - return Array.from(this.entries.keys()); - } - getRealPath() { - if (!this.path) - throw new Error(`ZipFS don't have real paths when loaded from a buffer`); - return this.path; - } - getBufferAndClose() { - this.prepareClose(); - if (!this.lzSource) - throw new Error(`ZipFS was not created from a Buffer`); - try { - this.libzip.source.keep(this.lzSource); - if (this.libzip.close(this.zip) === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - if (this.libzip.source.open(this.lzSource) === -1) - throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); - if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_END) === -1) - throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); - const size = this.libzip.source.tell(this.lzSource); - if (size === -1) - throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); - if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_SET) === -1) - throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); - const buffer = this.libzip.malloc(size); - if (!buffer) - throw new Error(`Couldn't allocate enough memory`); - try { - const rc = this.libzip.source.read(this.lzSource, buffer, size); - if (rc === -1) - throw this.makeLibzipError(this.libzip.source.error(this.lzSource)); - else if (rc < size) - throw new Error(`Incomplete read`); - else if (rc > size) - throw new Error(`Overread`); - const memory = this.libzip.HEAPU8.subarray(buffer, buffer + size); - return Buffer.from(memory); - } finally { - this.libzip.free(buffer); - } - } finally { - this.libzip.source.close(this.lzSource); - this.libzip.source.free(this.lzSource); - this.ready = false; - } - } - prepareClose() { - if (!this.ready) - throw EBUSY(`archive closed, close`); - unwatchAllFiles(this); - } - saveAndClose() { - if (!this.path || !this.baseFs) - throw new Error(`ZipFS cannot be saved and must be discarded when loaded from a buffer`); - this.prepareClose(); - if (this.readOnly) { - this.discardAndClose(); - return; - } - const newMode = this.baseFs.existsSync(this.path) || this.stats.mode === DEFAULT_MODE ? void 0 : this.stats.mode; - if (this.entries.size === 0) { - this.discardAndClose(); - this.baseFs.writeFileSync(this.path, makeEmptyArchive(), {mode: newMode}); - } else { - const rc = this.libzip.close(this.zip); - if (rc === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - if (typeof newMode !== `undefined`) { - this.baseFs.chmodSync(this.path, newMode); - } - } - this.ready = false; - } - discardAndClose() { - this.prepareClose(); - this.libzip.discard(this.zip); - this.ready = false; - } - resolve(p) { - return ppath.resolve(PortablePath.root, p); - } - async openPromise(p, flags, mode) { - return this.openSync(p, flags, mode); - } - openSync(p, flags, mode) { - const fd = this.nextFd++; - this.fds.set(fd, {cursor: 0, p}); - return fd; - } - hasOpenFileHandles() { - return !!this.fds.size; - } - async opendirPromise(p, opts) { - return this.opendirSync(p, opts); - } - opendirSync(p, opts = {}) { - const resolvedP = this.resolveFilename(`opendir '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`opendir '${p}'`); - const directoryListing = this.listings.get(resolvedP); - if (!directoryListing) - throw ENOTDIR(`opendir '${p}'`); - const entries = [...directoryListing]; - const fd = this.openSync(resolvedP, `r`); - const onClose = () => { - this.closeSync(fd); - }; - return opendir(this, resolvedP, entries, {onClose}); - } - async readPromise(fd, buffer, offset, length, position) { - return this.readSync(fd, buffer, offset, length, position); - } - readSync(fd, buffer, offset = 0, length = buffer.byteLength, position = -1) { - const entry = this.fds.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`read`); - const realPosition = position === -1 || position === null ? entry.cursor : position; - const source = this.readFileSync(entry.p); - source.copy(buffer, offset, realPosition, realPosition + length); - const bytesRead = Math.max(0, Math.min(source.length - realPosition, length)); - if (position === -1 || position === null) - entry.cursor += bytesRead; - return bytesRead; - } - async writePromise(fd, buffer, offset, length, position) { - if (typeof buffer === `string`) { - return this.writeSync(fd, buffer, position); - } else { - return this.writeSync(fd, buffer, offset, length, position); - } - } - writeSync(fd, buffer, offset, length, position) { - const entry = this.fds.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`read`); - throw new Error(`Unimplemented`); - } - async closePromise(fd) { - return this.closeSync(fd); - } - closeSync(fd) { - const entry = this.fds.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`read`); - this.fds.delete(fd); - } - createReadStream(p, {encoding} = {}) { - if (p === null) - throw new Error(`Unimplemented`); - const fd = this.openSync(p, `r`); - const stream$1 = Object.assign(new stream.PassThrough({ - emitClose: true, - autoDestroy: true, - destroy: (error, callback) => { - clearImmediate(immediate); - this.closeSync(fd); - callback(error); - } - }), { - close() { - stream$1.destroy(); - }, - bytesRead: 0, - path: p - }); - const immediate = setImmediate(async () => { - try { - const data = await this.readFilePromise(p, encoding); - stream$1.bytesRead = data.length; - stream$1.end(data); - } catch (error) { - stream$1.destroy(error); - } - }); - return stream$1; - } - createWriteStream(p, {encoding} = {}) { - if (this.readOnly) - throw EROFS(`open '${p}'`); - if (p === null) - throw new Error(`Unimplemented`); - const chunks = []; - const fd = this.openSync(p, `w`); - const stream$1 = Object.assign(new stream.PassThrough({ - autoDestroy: true, - emitClose: true, - destroy: (error, callback) => { - try { - if (error) { - callback(error); - } else { - this.writeFileSync(p, Buffer.concat(chunks), encoding); - callback(null); - } - } catch (err) { - callback(err); - } finally { - this.closeSync(fd); - } - } - }), { - bytesWritten: 0, - path: p, - close() { - stream$1.destroy(); - } - }); - stream$1.on(`data`, (chunk) => { - const chunkBuffer = Buffer.from(chunk); - stream$1.bytesWritten += chunkBuffer.length; - chunks.push(chunkBuffer); - }); - return stream$1; - } - async realpathPromise(p) { - return this.realpathSync(p); - } - realpathSync(p) { - const resolvedP = this.resolveFilename(`lstat '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`lstat '${p}'`); - return resolvedP; - } - async existsPromise(p) { - return this.existsSync(p); - } - existsSync(p) { - if (!this.ready) - throw EBUSY(`archive closed, existsSync '${p}'`); - if (this.symlinkCount === 0) { - const resolvedP2 = ppath.resolve(PortablePath.root, p); - return this.entries.has(resolvedP2) || this.listings.has(resolvedP2); - } - let resolvedP; - try { - resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, false); - } catch (error) { - return false; - } - if (resolvedP === void 0) - return false; - return this.entries.has(resolvedP) || this.listings.has(resolvedP); - } - async accessPromise(p, mode) { - return this.accessSync(p, mode); - } - accessSync(p, mode = fs.constants.F_OK) { - const resolvedP = this.resolveFilename(`access '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`access '${p}'`); - if (this.readOnly && mode & fs.constants.W_OK) { - throw EROFS(`access '${p}'`); - } - } - async statPromise(p, opts = {bigint: false}) { - if (opts.bigint) - return this.statSync(p, {bigint: true}); - return this.statSync(p); - } - statSync(p, opts = {bigint: false, throwIfNoEntry: true}) { - const resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, opts.throwIfNoEntry); - if (resolvedP === void 0) - return void 0; - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) { - if (opts.throwIfNoEntry === false) - return void 0; - throw ENOENT(`stat '${p}'`); - } - if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) - throw ENOTDIR(`stat '${p}'`); - return this.statImpl(`stat '${p}'`, resolvedP, opts); - } - async fstatPromise(fd, opts) { - return this.fstatSync(fd, opts); - } - fstatSync(fd, opts) { - const entry = this.fds.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`fstatSync`); - const {p} = entry; - const resolvedP = this.resolveFilename(`stat '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`stat '${p}'`); - if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) - throw ENOTDIR(`stat '${p}'`); - return this.statImpl(`fstat '${p}'`, resolvedP, opts); - } - async lstatPromise(p, opts = {bigint: false}) { - if (opts.bigint) - return this.lstatSync(p, {bigint: true}); - return this.lstatSync(p); - } - lstatSync(p, opts = {bigint: false, throwIfNoEntry: true}) { - const resolvedP = this.resolveFilename(`lstat '${p}'`, p, false, opts.throwIfNoEntry); - if (resolvedP === void 0) - return void 0; - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) { - if (opts.throwIfNoEntry === false) - return void 0; - throw ENOENT(`lstat '${p}'`); - } - if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) - throw ENOTDIR(`lstat '${p}'`); - return this.statImpl(`lstat '${p}'`, resolvedP, opts); - } - statImpl(reason, p, opts = {}) { - const entry = this.entries.get(p); - if (typeof entry !== `undefined`) { - const stat = this.libzip.struct.statS(); - const rc = this.libzip.statIndex(this.zip, entry, 0, 0, stat); - if (rc === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - const uid = this.stats.uid; - const gid = this.stats.gid; - const size = this.libzip.struct.statSize(stat) >>> 0; - const blksize = 512; - const blocks = Math.ceil(size / blksize); - const mtimeMs = (this.libzip.struct.statMtime(stat) >>> 0) * 1e3; - const atimeMs = mtimeMs; - const birthtimeMs = mtimeMs; - const ctimeMs = mtimeMs; - const atime = new Date(atimeMs); - const birthtime = new Date(birthtimeMs); - const ctime = new Date(ctimeMs); - const mtime = new Date(mtimeMs); - const type = this.listings.has(p) ? S_IFDIR : this.isSymbolicLink(entry) ? S_IFLNK : S_IFREG; - const defaultMode = type === S_IFDIR ? 493 : 420; - const mode = type | this.getUnixMode(entry, defaultMode) & 511; - const crc = this.libzip.struct.statCrc(stat); - const statInstance = Object.assign(new StatEntry(), {uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc}); - return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance; - } - if (this.listings.has(p)) { - const uid = this.stats.uid; - const gid = this.stats.gid; - const size = 0; - const blksize = 512; - const blocks = 0; - const atimeMs = this.stats.mtimeMs; - const birthtimeMs = this.stats.mtimeMs; - const ctimeMs = this.stats.mtimeMs; - const mtimeMs = this.stats.mtimeMs; - const atime = new Date(atimeMs); - const birthtime = new Date(birthtimeMs); - const ctime = new Date(ctimeMs); - const mtime = new Date(mtimeMs); - const mode = S_IFDIR | 493; - const crc = 0; - const statInstance = Object.assign(new StatEntry(), {uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc}); - return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance; - } - throw new Error(`Unreachable`); - } - getUnixMode(index, defaultMode) { - const rc = this.libzip.file.getExternalAttributes(this.zip, index, 0, 0, this.libzip.uint08S, this.libzip.uint32S); - if (rc === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - const opsys = this.libzip.getValue(this.libzip.uint08S, `i8`) >>> 0; - if (opsys !== this.libzip.ZIP_OPSYS_UNIX) - return defaultMode; - return this.libzip.getValue(this.libzip.uint32S, `i32`) >>> 16; - } - registerListing(p) { - const existingListing = this.listings.get(p); - if (existingListing) - return existingListing; - const parentListing = this.registerListing(ppath.dirname(p)); - parentListing.add(ppath.basename(p)); - const newListing = new Set(); - this.listings.set(p, newListing); - return newListing; - } - registerEntry(p, index) { - const parentListing = this.registerListing(ppath.dirname(p)); - parentListing.add(ppath.basename(p)); - this.entries.set(p, index); - } - unregisterListing(p) { - this.listings.delete(p); - const parentListing = this.listings.get(ppath.dirname(p)); - parentListing == null ? void 0 : parentListing.delete(ppath.basename(p)); - } - unregisterEntry(p) { - this.unregisterListing(p); - const entry = this.entries.get(p); - this.entries.delete(p); - if (typeof entry === `undefined`) - return; - this.fileSources.delete(entry); - if (this.isSymbolicLink(entry)) { - this.symlinkCount--; - } - } - deleteEntry(p, index) { - this.unregisterEntry(p); - const rc = this.libzip.delete(this.zip, index); - if (rc === -1) { - throw this.makeLibzipError(this.libzip.getError(this.zip)); - } - } - resolveFilename(reason, p, resolveLastComponent = true, throwIfNoEntry = true) { - if (!this.ready) - throw EBUSY(`archive closed, ${reason}`); - let resolvedP = ppath.resolve(PortablePath.root, p); - if (resolvedP === `/`) - return PortablePath.root; - const fileIndex = this.entries.get(resolvedP); - if (resolveLastComponent && fileIndex !== void 0) { - if (this.symlinkCount !== 0 && this.isSymbolicLink(fileIndex)) { - const target = this.getFileSource(fileIndex).toString(); - return this.resolveFilename(reason, ppath.resolve(ppath.dirname(resolvedP), target), true, throwIfNoEntry); - } else { - return resolvedP; - } - } - while (true) { - const parentP = this.resolveFilename(reason, ppath.dirname(resolvedP), true, throwIfNoEntry); - if (parentP === void 0) - return parentP; - const isDir = this.listings.has(parentP); - const doesExist = this.entries.has(parentP); - if (!isDir && !doesExist) { - if (throwIfNoEntry === false) - return void 0; - throw ENOENT(reason); - } - if (!isDir) - throw ENOTDIR(reason); - resolvedP = ppath.resolve(parentP, ppath.basename(resolvedP)); - if (!resolveLastComponent || this.symlinkCount === 0) - break; - const index = this.libzip.name.locate(this.zip, resolvedP.slice(1)); - if (index === -1) - break; - if (this.isSymbolicLink(index)) { - const target = this.getFileSource(index).toString(); - resolvedP = ppath.resolve(ppath.dirname(resolvedP), target); - } else { - break; - } - } - return resolvedP; - } - allocateBuffer(content) { - if (!Buffer.isBuffer(content)) - content = Buffer.from(content); - const buffer = this.libzip.malloc(content.byteLength); - if (!buffer) - throw new Error(`Couldn't allocate enough memory`); - const heap = new Uint8Array(this.libzip.HEAPU8.buffer, buffer, content.byteLength); - heap.set(content); - return {buffer, byteLength: content.byteLength}; - } - allocateUnattachedSource(content) { - const error = this.libzip.struct.errorS(); - const {buffer, byteLength} = this.allocateBuffer(content); - const source = this.libzip.source.fromUnattachedBuffer(buffer, byteLength, 0, true, error); - if (source === 0) { - this.libzip.free(error); - throw this.makeLibzipError(error); - } - return source; - } - allocateSource(content) { - const {buffer, byteLength} = this.allocateBuffer(content); - const source = this.libzip.source.fromBuffer(this.zip, buffer, byteLength, 0, true); - if (source === 0) { - this.libzip.free(buffer); - throw this.makeLibzipError(this.libzip.getError(this.zip)); - } - return source; - } - setFileSource(p, content) { - const buffer = Buffer.isBuffer(content) ? content : Buffer.from(content); - const target = ppath.relative(PortablePath.root, p); - const lzSource = this.allocateSource(content); - try { - const newIndex = this.libzip.file.add(this.zip, target, lzSource, this.libzip.ZIP_FL_OVERWRITE); - if (newIndex === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - if (this.level !== `mixed`) { - const method = this.level === 0 ? this.libzip.ZIP_CM_STORE : this.libzip.ZIP_CM_DEFLATE; - const rc = this.libzip.file.setCompression(this.zip, newIndex, 0, method, this.level); - if (rc === -1) { - throw this.makeLibzipError(this.libzip.getError(this.zip)); - } - } - this.fileSources.set(newIndex, buffer); - return newIndex; - } catch (error) { - this.libzip.source.free(lzSource); - throw error; - } - } - isSymbolicLink(index) { - if (this.symlinkCount === 0) - return false; - const attrs = this.libzip.file.getExternalAttributes(this.zip, index, 0, 0, this.libzip.uint08S, this.libzip.uint32S); - if (attrs === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - const opsys = this.libzip.getValue(this.libzip.uint08S, `i8`) >>> 0; - if (opsys !== this.libzip.ZIP_OPSYS_UNIX) - return false; - const attributes = this.libzip.getValue(this.libzip.uint32S, `i32`) >>> 16; - return (attributes & S_IFMT) === S_IFLNK; - } - getFileSource(index, opts = {asyncDecompress: false}) { - const cachedFileSource = this.fileSources.get(index); - if (typeof cachedFileSource !== `undefined`) - return cachedFileSource; - const stat = this.libzip.struct.statS(); - const rc = this.libzip.statIndex(this.zip, index, 0, 0, stat); - if (rc === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - const size = this.libzip.struct.statCompSize(stat); - const compressionMethod = this.libzip.struct.statCompMethod(stat); - const buffer = this.libzip.malloc(size); - try { - const file = this.libzip.fopenIndex(this.zip, index, 0, this.libzip.ZIP_FL_COMPRESSED); - if (file === 0) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - try { - const rc2 = this.libzip.fread(file, buffer, size, 0); - if (rc2 === -1) - throw this.makeLibzipError(this.libzip.file.getError(file)); - else if (rc2 < size) - throw new Error(`Incomplete read`); - else if (rc2 > size) - throw new Error(`Overread`); - const memory = this.libzip.HEAPU8.subarray(buffer, buffer + size); - const data = Buffer.from(memory); - if (compressionMethod === 0) { - this.fileSources.set(index, data); - return data; - } else if (opts.asyncDecompress) { - return new Promise((resolve, reject) => { - zlib__default.default.inflateRaw(data, (error, result) => { - if (error) { - reject(error); - } else { - this.fileSources.set(index, result); - resolve(result); - } - }); - }); - } else { - const decompressedData = zlib__default.default.inflateRawSync(data); - this.fileSources.set(index, decompressedData); - return decompressedData; - } - } finally { - this.libzip.fclose(file); - } - } finally { - this.libzip.free(buffer); - } - } - async fchmodPromise(fd, mask) { - return this.chmodPromise(this.fdToPath(fd, `fchmod`), mask); - } - fchmodSync(fd, mask) { - return this.chmodSync(this.fdToPath(fd, `fchmodSync`), mask); - } - async chmodPromise(p, mask) { - return this.chmodSync(p, mask); - } - chmodSync(p, mask) { - if (this.readOnly) - throw EROFS(`chmod '${p}'`); - mask &= 493; - const resolvedP = this.resolveFilename(`chmod '${p}'`, p, false); - const entry = this.entries.get(resolvedP); - if (typeof entry === `undefined`) - throw new Error(`Assertion failed: The entry should have been registered (${resolvedP})`); - const oldMod = this.getUnixMode(entry, S_IFREG | 0); - const newMod = oldMod & ~511 | mask; - const rc = this.libzip.file.setExternalAttributes(this.zip, entry, 0, 0, this.libzip.ZIP_OPSYS_UNIX, newMod << 16); - if (rc === -1) { - throw this.makeLibzipError(this.libzip.getError(this.zip)); - } - } - async chownPromise(p, uid, gid) { - return this.chownSync(p, uid, gid); - } - chownSync(p, uid, gid) { - throw new Error(`Unimplemented`); - } - async renamePromise(oldP, newP) { - return this.renameSync(oldP, newP); - } - renameSync(oldP, newP) { - throw new Error(`Unimplemented`); - } - async copyFilePromise(sourceP, destP, flags) { - const {indexSource, indexDest, resolvedDestP} = this.prepareCopyFile(sourceP, destP, flags); - const source = await this.getFileSource(indexSource, {asyncDecompress: true}); - const newIndex = this.setFileSource(resolvedDestP, source); - if (newIndex !== indexDest) { - this.registerEntry(resolvedDestP, newIndex); - } - } - copyFileSync(sourceP, destP, flags = 0) { - const {indexSource, indexDest, resolvedDestP} = this.prepareCopyFile(sourceP, destP, flags); - const source = this.getFileSource(indexSource); - const newIndex = this.setFileSource(resolvedDestP, source); - if (newIndex !== indexDest) { - this.registerEntry(resolvedDestP, newIndex); - } - } - prepareCopyFile(sourceP, destP, flags = 0) { - if (this.readOnly) - throw EROFS(`copyfile '${sourceP} -> '${destP}'`); - if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) - throw ENOSYS(`unsupported clone operation`, `copyfile '${sourceP}' -> ${destP}'`); - const resolvedSourceP = this.resolveFilename(`copyfile '${sourceP} -> ${destP}'`, sourceP); - const indexSource = this.entries.get(resolvedSourceP); - if (typeof indexSource === `undefined`) - throw EINVAL(`copyfile '${sourceP}' -> '${destP}'`); - const resolvedDestP = this.resolveFilename(`copyfile '${sourceP}' -> ${destP}'`, destP); - const indexDest = this.entries.get(resolvedDestP); - if ((flags & (fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE_FORCE)) !== 0 && typeof indexDest !== `undefined`) - throw EEXIST(`copyfile '${sourceP}' -> '${destP}'`); - return { - indexSource, - resolvedDestP, - indexDest - }; - } - async appendFilePromise(p, content, opts) { - if (this.readOnly) - throw EROFS(`open '${p}'`); - if (typeof opts === `undefined`) - opts = {flag: `a`}; - else if (typeof opts === `string`) - opts = {flag: `a`, encoding: opts}; - else if (typeof opts.flag === `undefined`) - opts = __spreadValues$4({flag: `a`}, opts); - return this.writeFilePromise(p, content, opts); - } - appendFileSync(p, content, opts = {}) { - if (this.readOnly) - throw EROFS(`open '${p}'`); - if (typeof opts === `undefined`) - opts = {flag: `a`}; - else if (typeof opts === `string`) - opts = {flag: `a`, encoding: opts}; - else if (typeof opts.flag === `undefined`) - opts = __spreadValues$4({flag: `a`}, opts); - return this.writeFileSync(p, content, opts); - } - fdToPath(fd, reason) { - var _a; - const path = (_a = this.fds.get(fd)) == null ? void 0 : _a.p; - if (typeof path === `undefined`) - throw EBADF(reason); - return path; - } - async writeFilePromise(p, content, opts) { - const {encoding, mode, index, resolvedP} = this.prepareWriteFile(p, opts); - if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`)) - content = Buffer.concat([await this.getFileSource(index, {asyncDecompress: true}), Buffer.from(content)]); - if (encoding !== null) - content = content.toString(encoding); - const newIndex = this.setFileSource(resolvedP, content); - if (newIndex !== index) - this.registerEntry(resolvedP, newIndex); - if (mode !== null) { - await this.chmodPromise(resolvedP, mode); - } - } - writeFileSync(p, content, opts) { - const {encoding, mode, index, resolvedP} = this.prepareWriteFile(p, opts); - if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`)) - content = Buffer.concat([this.getFileSource(index), Buffer.from(content)]); - if (encoding !== null) - content = content.toString(encoding); - const newIndex = this.setFileSource(resolvedP, content); - if (newIndex !== index) - this.registerEntry(resolvedP, newIndex); - if (mode !== null) { - this.chmodSync(resolvedP, mode); - } - } - prepareWriteFile(p, opts) { - if (typeof p === `number`) - p = this.fdToPath(p, `read`); - if (this.readOnly) - throw EROFS(`open '${p}'`); - const resolvedP = this.resolveFilename(`open '${p}'`, p); - if (this.listings.has(resolvedP)) - throw EISDIR(`open '${p}'`); - let encoding = null, mode = null; - if (typeof opts === `string`) { - encoding = opts; - } else if (typeof opts === `object`) { - ({ - encoding = null, - mode = null - } = opts); - } - const index = this.entries.get(resolvedP); - return { - encoding, - mode, - resolvedP, - index - }; - } - async unlinkPromise(p) { - return this.unlinkSync(p); - } - unlinkSync(p) { - if (this.readOnly) - throw EROFS(`unlink '${p}'`); - const resolvedP = this.resolveFilename(`unlink '${p}'`, p); - if (this.listings.has(resolvedP)) - throw EISDIR(`unlink '${p}'`); - const index = this.entries.get(resolvedP); - if (typeof index === `undefined`) - throw EINVAL(`unlink '${p}'`); - this.deleteEntry(resolvedP, index); - } - async utimesPromise(p, atime, mtime) { - return this.utimesSync(p, atime, mtime); - } - utimesSync(p, atime, mtime) { - if (this.readOnly) - throw EROFS(`utimes '${p}'`); - const resolvedP = this.resolveFilename(`utimes '${p}'`, p); - this.utimesImpl(resolvedP, mtime); - } - async lutimesPromise(p, atime, mtime) { - return this.lutimesSync(p, atime, mtime); - } - lutimesSync(p, atime, mtime) { - if (this.readOnly) - throw EROFS(`lutimes '${p}'`); - const resolvedP = this.resolveFilename(`utimes '${p}'`, p, false); - this.utimesImpl(resolvedP, mtime); - } - utimesImpl(resolvedP, mtime) { - if (this.listings.has(resolvedP)) { - if (!this.entries.has(resolvedP)) - this.hydrateDirectory(resolvedP); - } - const entry = this.entries.get(resolvedP); - if (entry === void 0) - throw new Error(`Unreachable`); - const rc = this.libzip.file.setMtime(this.zip, entry, 0, toUnixTimestamp(mtime), 0); - if (rc === -1) { - throw this.makeLibzipError(this.libzip.getError(this.zip)); - } - } - async mkdirPromise(p, opts) { - return this.mkdirSync(p, opts); - } - mkdirSync(p, {mode = 493, recursive = false} = {}) { - if (recursive) - return this.mkdirpSync(p, {chmod: mode}); - if (this.readOnly) - throw EROFS(`mkdir '${p}'`); - const resolvedP = this.resolveFilename(`mkdir '${p}'`, p); - if (this.entries.has(resolvedP) || this.listings.has(resolvedP)) - throw EEXIST(`mkdir '${p}'`); - this.hydrateDirectory(resolvedP); - this.chmodSync(resolvedP, mode); - return void 0; - } - async rmdirPromise(p, opts) { - return this.rmdirSync(p, opts); - } - rmdirSync(p, {recursive = false} = {}) { - if (this.readOnly) - throw EROFS(`rmdir '${p}'`); - if (recursive) { - this.removeSync(p); - return; - } - const resolvedP = this.resolveFilename(`rmdir '${p}'`, p); - const directoryListing = this.listings.get(resolvedP); - if (!directoryListing) - throw ENOTDIR(`rmdir '${p}'`); - if (directoryListing.size > 0) - throw ENOTEMPTY(`rmdir '${p}'`); - const index = this.entries.get(resolvedP); - if (typeof index === `undefined`) - throw EINVAL(`rmdir '${p}'`); - this.deleteEntry(p, index); - } - hydrateDirectory(resolvedP) { - const index = this.libzip.dir.add(this.zip, ppath.relative(PortablePath.root, resolvedP)); - if (index === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - this.registerListing(resolvedP); - this.registerEntry(resolvedP, index); - return index; - } - async linkPromise(existingP, newP) { - return this.linkSync(existingP, newP); - } - linkSync(existingP, newP) { - throw EOPNOTSUPP(`link '${existingP}' -> '${newP}'`); - } - async symlinkPromise(target, p) { - return this.symlinkSync(target, p); - } - symlinkSync(target, p) { - if (this.readOnly) - throw EROFS(`symlink '${target}' -> '${p}'`); - const resolvedP = this.resolveFilename(`symlink '${target}' -> '${p}'`, p); - if (this.listings.has(resolvedP)) - throw EISDIR(`symlink '${target}' -> '${p}'`); - if (this.entries.has(resolvedP)) - throw EEXIST(`symlink '${target}' -> '${p}'`); - const index = this.setFileSource(resolvedP, target); - this.registerEntry(resolvedP, index); - const rc = this.libzip.file.setExternalAttributes(this.zip, index, 0, 0, this.libzip.ZIP_OPSYS_UNIX, (S_IFLNK | 511) << 16); - if (rc === -1) - throw this.makeLibzipError(this.libzip.getError(this.zip)); - this.symlinkCount += 1; - } - async readFilePromise(p, encoding) { - if (typeof encoding === `object`) - encoding = encoding ? encoding.encoding : void 0; - const data = await this.readFileBuffer(p, {asyncDecompress: true}); - return encoding ? data.toString(encoding) : data; - } - readFileSync(p, encoding) { - if (typeof encoding === `object`) - encoding = encoding ? encoding.encoding : void 0; - const data = this.readFileBuffer(p); - return encoding ? data.toString(encoding) : data; - } - readFileBuffer(p, opts = {asyncDecompress: false}) { - if (typeof p === `number`) - p = this.fdToPath(p, `read`); - const resolvedP = this.resolveFilename(`open '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`open '${p}'`); - if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) - throw ENOTDIR(`open '${p}'`); - if (this.listings.has(resolvedP)) - throw EISDIR(`read`); - const entry = this.entries.get(resolvedP); - if (entry === void 0) - throw new Error(`Unreachable`); - return this.getFileSource(entry, opts); - } - async readdirPromise(p, opts) { - return this.readdirSync(p, opts); - } - readdirSync(p, opts) { - const resolvedP = this.resolveFilename(`scandir '${p}'`, p); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`scandir '${p}'`); - const directoryListing = this.listings.get(resolvedP); - if (!directoryListing) - throw ENOTDIR(`scandir '${p}'`); - const entries = [...directoryListing]; - if (!(opts == null ? void 0 : opts.withFileTypes)) - return entries; - return entries.map((name) => { - return Object.assign(this.statImpl(`lstat`, ppath.join(p, name)), { - name - }); - }); - } - async readlinkPromise(p) { - const entry = this.prepareReadlink(p); - return (await this.getFileSource(entry, {asyncDecompress: true})).toString(); - } - readlinkSync(p) { - const entry = this.prepareReadlink(p); - return this.getFileSource(entry).toString(); - } - prepareReadlink(p) { - const resolvedP = this.resolveFilename(`readlink '${p}'`, p, false); - if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) - throw ENOENT(`readlink '${p}'`); - if (p[p.length - 1] === `/` && !this.listings.has(resolvedP)) - throw ENOTDIR(`open '${p}'`); - if (this.listings.has(resolvedP)) - throw EINVAL(`readlink '${p}'`); - const entry = this.entries.get(resolvedP); - if (entry === void 0) - throw new Error(`Unreachable`); - if (!this.isSymbolicLink(entry)) - throw EINVAL(`readlink '${p}'`); - return entry; - } - async truncatePromise(p, len = 0) { - const resolvedP = this.resolveFilename(`open '${p}'`, p); - const index = this.entries.get(resolvedP); - if (typeof index === `undefined`) - throw EINVAL(`open '${p}'`); - const source = await this.getFileSource(index, {asyncDecompress: true}); - const truncated = Buffer.alloc(len, 0); - source.copy(truncated); - return await this.writeFilePromise(p, truncated); - } - truncateSync(p, len = 0) { - const resolvedP = this.resolveFilename(`open '${p}'`, p); - const index = this.entries.get(resolvedP); - if (typeof index === `undefined`) - throw EINVAL(`open '${p}'`); - const source = this.getFileSource(index); - const truncated = Buffer.alloc(len, 0); - source.copy(truncated); - return this.writeFileSync(p, truncated); - } - async ftruncatePromise(fd, len) { - return this.truncatePromise(this.fdToPath(fd, `ftruncate`), len); - } - ftruncateSync(fd, len) { - return this.truncateSync(this.fdToPath(fd, `ftruncateSync`), len); - } - watch(p, a, b) { - let persistent; - switch (typeof a) { - case `function`: - case `string`: - case `undefined`: - { - persistent = true; - } - break; - default: - { - ({persistent = true} = a); - } - break; - } - if (!persistent) - return {on: () => { - }, close: () => { - }}; - const interval = setInterval(() => { - }, 24 * 60 * 60 * 1e3); - return {on: () => { - }, close: () => { - clearInterval(interval); - }}; - } - watchFile(p, a, b) { - const resolvedP = ppath.resolve(PortablePath.root, p); - return watchFile(this, resolvedP, a, b); - } - unwatchFile(p, cb) { - const resolvedP = ppath.resolve(PortablePath.root, p); - return unwatchFile(this, resolvedP, cb); - } -} - -class ProxiedFS extends FakeFS { - getExtractHint(hints) { - return this.baseFs.getExtractHint(hints); - } - resolve(path) { - return this.mapFromBase(this.baseFs.resolve(this.mapToBase(path))); - } - getRealPath() { - return this.mapFromBase(this.baseFs.getRealPath()); - } - async openPromise(p, flags, mode) { - return this.baseFs.openPromise(this.mapToBase(p), flags, mode); - } - openSync(p, flags, mode) { - return this.baseFs.openSync(this.mapToBase(p), flags, mode); - } - async opendirPromise(p, opts) { - return Object.assign(await this.baseFs.opendirPromise(this.mapToBase(p), opts), {path: p}); - } - opendirSync(p, opts) { - return Object.assign(this.baseFs.opendirSync(this.mapToBase(p), opts), {path: p}); - } - async readPromise(fd, buffer, offset, length, position) { - return await this.baseFs.readPromise(fd, buffer, offset, length, position); - } - readSync(fd, buffer, offset, length, position) { - return this.baseFs.readSync(fd, buffer, offset, length, position); - } - async writePromise(fd, buffer, offset, length, position) { - if (typeof buffer === `string`) { - return await this.baseFs.writePromise(fd, buffer, offset); - } else { - return await this.baseFs.writePromise(fd, buffer, offset, length, position); - } - } - writeSync(fd, buffer, offset, length, position) { - if (typeof buffer === `string`) { - return this.baseFs.writeSync(fd, buffer, offset); - } else { - return this.baseFs.writeSync(fd, buffer, offset, length, position); - } - } - async closePromise(fd) { - return this.baseFs.closePromise(fd); - } - closeSync(fd) { - this.baseFs.closeSync(fd); - } - createReadStream(p, opts) { - return this.baseFs.createReadStream(p !== null ? this.mapToBase(p) : p, opts); - } - createWriteStream(p, opts) { - return this.baseFs.createWriteStream(p !== null ? this.mapToBase(p) : p, opts); - } - async realpathPromise(p) { - return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(p))); - } - realpathSync(p) { - return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(p))); - } - async existsPromise(p) { - return this.baseFs.existsPromise(this.mapToBase(p)); - } - existsSync(p) { - return this.baseFs.existsSync(this.mapToBase(p)); - } - accessSync(p, mode) { - return this.baseFs.accessSync(this.mapToBase(p), mode); - } - async accessPromise(p, mode) { - return this.baseFs.accessPromise(this.mapToBase(p), mode); - } - async statPromise(p, opts) { - return this.baseFs.statPromise(this.mapToBase(p), opts); - } - statSync(p, opts) { - return this.baseFs.statSync(this.mapToBase(p), opts); - } - async fstatPromise(fd, opts) { - return this.baseFs.fstatPromise(fd, opts); - } - fstatSync(fd, opts) { - return this.baseFs.fstatSync(fd, opts); - } - lstatPromise(p, opts) { - return this.baseFs.lstatPromise(this.mapToBase(p), opts); - } - lstatSync(p, opts) { - return this.baseFs.lstatSync(this.mapToBase(p), opts); - } - async fchmodPromise(fd, mask) { - return this.baseFs.fchmodPromise(fd, mask); - } - fchmodSync(fd, mask) { - return this.baseFs.fchmodSync(fd, mask); - } - async chmodPromise(p, mask) { - return this.baseFs.chmodPromise(this.mapToBase(p), mask); - } - chmodSync(p, mask) { - return this.baseFs.chmodSync(this.mapToBase(p), mask); - } - async chownPromise(p, uid, gid) { - return this.baseFs.chownPromise(this.mapToBase(p), uid, gid); - } - chownSync(p, uid, gid) { - return this.baseFs.chownSync(this.mapToBase(p), uid, gid); - } - async renamePromise(oldP, newP) { - return this.baseFs.renamePromise(this.mapToBase(oldP), this.mapToBase(newP)); - } - renameSync(oldP, newP) { - return this.baseFs.renameSync(this.mapToBase(oldP), this.mapToBase(newP)); - } - async copyFilePromise(sourceP, destP, flags = 0) { - return this.baseFs.copyFilePromise(this.mapToBase(sourceP), this.mapToBase(destP), flags); - } - copyFileSync(sourceP, destP, flags = 0) { - return this.baseFs.copyFileSync(this.mapToBase(sourceP), this.mapToBase(destP), flags); - } - async appendFilePromise(p, content, opts) { - return this.baseFs.appendFilePromise(this.fsMapToBase(p), content, opts); - } - appendFileSync(p, content, opts) { - return this.baseFs.appendFileSync(this.fsMapToBase(p), content, opts); - } - async writeFilePromise(p, content, opts) { - return this.baseFs.writeFilePromise(this.fsMapToBase(p), content, opts); - } - writeFileSync(p, content, opts) { - return this.baseFs.writeFileSync(this.fsMapToBase(p), content, opts); - } - async unlinkPromise(p) { - return this.baseFs.unlinkPromise(this.mapToBase(p)); - } - unlinkSync(p) { - return this.baseFs.unlinkSync(this.mapToBase(p)); - } - async utimesPromise(p, atime, mtime) { - return this.baseFs.utimesPromise(this.mapToBase(p), atime, mtime); - } - utimesSync(p, atime, mtime) { - return this.baseFs.utimesSync(this.mapToBase(p), atime, mtime); - } - async mkdirPromise(p, opts) { - return this.baseFs.mkdirPromise(this.mapToBase(p), opts); - } - mkdirSync(p, opts) { - return this.baseFs.mkdirSync(this.mapToBase(p), opts); - } - async rmdirPromise(p, opts) { - return this.baseFs.rmdirPromise(this.mapToBase(p), opts); - } - rmdirSync(p, opts) { - return this.baseFs.rmdirSync(this.mapToBase(p), opts); - } - async linkPromise(existingP, newP) { - return this.baseFs.linkPromise(this.mapToBase(existingP), this.mapToBase(newP)); - } - linkSync(existingP, newP) { - return this.baseFs.linkSync(this.mapToBase(existingP), this.mapToBase(newP)); - } - async symlinkPromise(target, p, type) { - const mappedP = this.mapToBase(p); - if (this.pathUtils.isAbsolute(target)) - return this.baseFs.symlinkPromise(this.mapToBase(target), mappedP, type); - const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); - const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); - return this.baseFs.symlinkPromise(mappedTarget, mappedP, type); - } - symlinkSync(target, p, type) { - const mappedP = this.mapToBase(p); - if (this.pathUtils.isAbsolute(target)) - return this.baseFs.symlinkSync(this.mapToBase(target), mappedP, type); - const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target)); - const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget); - return this.baseFs.symlinkSync(mappedTarget, mappedP, type); - } - async readFilePromise(p, encoding) { - if (encoding === `utf8`) { - return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding); - } else { - return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding); - } - } - readFileSync(p, encoding) { - if (encoding === `utf8`) { - return this.baseFs.readFileSync(this.fsMapToBase(p), encoding); - } else { - return this.baseFs.readFileSync(this.fsMapToBase(p), encoding); - } - } - async readdirPromise(p, opts) { - return this.baseFs.readdirPromise(this.mapToBase(p), opts); - } - readdirSync(p, opts) { - return this.baseFs.readdirSync(this.mapToBase(p), opts); - } - async readlinkPromise(p) { - return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(p))); - } - readlinkSync(p) { - return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(p))); - } - async truncatePromise(p, len) { - return this.baseFs.truncatePromise(this.mapToBase(p), len); - } - truncateSync(p, len) { - return this.baseFs.truncateSync(this.mapToBase(p), len); - } - async ftruncatePromise(fd, len) { - return this.baseFs.ftruncatePromise(fd, len); - } - ftruncateSync(fd, len) { - return this.baseFs.ftruncateSync(fd, len); - } - watch(p, a, b) { - return this.baseFs.watch(this.mapToBase(p), a, b); - } - watchFile(p, a, b) { - return this.baseFs.watchFile(this.mapToBase(p), a, b); - } - unwatchFile(p, cb) { - return this.baseFs.unwatchFile(this.mapToBase(p), cb); - } - fsMapToBase(p) { - if (typeof p === `number`) { - return p; - } else { - return this.mapToBase(p); - } - } -} - -class PosixFS extends ProxiedFS { - constructor(baseFs) { - super(npath); - this.baseFs = baseFs; - } - mapFromBase(path) { - return npath.fromPortablePath(path); - } - mapToBase(path) { - return npath.toPortablePath(path); - } -} - -const NUMBER_REGEXP = /^[0-9]+$/; -const VIRTUAL_REGEXP = /^(\/(?:[^/]+\/)*?(?:\$\$virtual|__virtual__))((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/; -const VALID_COMPONENT = /^([^/]+-)?[a-f0-9]+$/; -class VirtualFS extends ProxiedFS { - static makeVirtualPath(base, component, to) { - if (ppath.basename(base) !== `__virtual__`) - throw new Error(`Assertion failed: Virtual folders must be named "__virtual__"`); - if (!ppath.basename(component).match(VALID_COMPONENT)) - throw new Error(`Assertion failed: Virtual components must be ended by an hexadecimal hash`); - const target = ppath.relative(ppath.dirname(base), to); - const segments = target.split(`/`); - let depth = 0; - while (depth < segments.length && segments[depth] === `..`) - depth += 1; - const finalSegments = segments.slice(depth); - const fullVirtualPath = ppath.join(base, component, String(depth), ...finalSegments); - return fullVirtualPath; - } - static resolveVirtual(p) { - const match = p.match(VIRTUAL_REGEXP); - if (!match || !match[3] && match[5]) - return p; - const target = ppath.dirname(match[1]); - if (!match[3] || !match[4]) - return target; - const isnum = NUMBER_REGEXP.test(match[4]); - if (!isnum) - return p; - const depth = Number(match[4]); - const backstep = `../`.repeat(depth); - const subpath = match[5] || `.`; - return VirtualFS.resolveVirtual(ppath.join(target, backstep, subpath)); - } - constructor({baseFs = new NodeFS()} = {}) { - super(ppath); - this.baseFs = baseFs; - } - getExtractHint(hints) { - return this.baseFs.getExtractHint(hints); - } - getRealPath() { - return this.baseFs.getRealPath(); - } - realpathSync(p) { - const match = p.match(VIRTUAL_REGEXP); - if (!match) - return this.baseFs.realpathSync(p); - if (!match[5]) - return p; - const realpath = this.baseFs.realpathSync(this.mapToBase(p)); - return VirtualFS.makeVirtualPath(match[1], match[3], realpath); - } - async realpathPromise(p) { - const match = p.match(VIRTUAL_REGEXP); - if (!match) - return await this.baseFs.realpathPromise(p); - if (!match[5]) - return p; - const realpath = await this.baseFs.realpathPromise(this.mapToBase(p)); - return VirtualFS.makeVirtualPath(match[1], match[3], realpath); - } - mapToBase(p) { - if (p === ``) - return p; - if (this.pathUtils.isAbsolute(p)) - return VirtualFS.resolveVirtual(p); - const resolvedRoot = VirtualFS.resolveVirtual(this.baseFs.resolve(PortablePath.dot)); - const resolvedP = VirtualFS.resolveVirtual(this.baseFs.resolve(p)); - return ppath.relative(resolvedRoot, resolvedP) || PortablePath.dot; - } - mapFromBase(p) { - return p; - } -} - -const ZIP_FD = 2147483648; -const getArchivePart = (path, extension) => { - let idx = path.indexOf(extension); - if (idx <= 0) - return null; - let nextCharIdx = idx; - while (idx >= 0) { - nextCharIdx = idx + extension.length; - if (path[nextCharIdx] === ppath.sep) - break; - if (path[idx - 1] === ppath.sep) - return null; - idx = path.indexOf(extension, nextCharIdx); - } - if (path.length > nextCharIdx && path[nextCharIdx] !== ppath.sep) - return null; - return path.slice(0, nextCharIdx); -}; -class ZipOpenFS extends BasePortableFakeFS { - constructor({libzip, baseFs = new NodeFS(), filter = null, maxOpenFiles = Infinity, readOnlyArchives = false, useCache = true, maxAge = 5e3, fileExtensions = null}) { - super(); - this.fdMap = new Map(); - this.nextFd = 3; - this.isZip = new Set(); - this.notZip = new Set(); - this.realPaths = new Map(); - this.limitOpenFilesTimeout = null; - this.libzipFactory = typeof libzip !== `function` ? () => libzip : libzip; - this.baseFs = baseFs; - this.zipInstances = useCache ? new Map() : null; - this.filter = filter; - this.maxOpenFiles = maxOpenFiles; - this.readOnlyArchives = readOnlyArchives; - this.maxAge = maxAge; - this.fileExtensions = fileExtensions; - } - static async openPromise(fn, opts) { - const zipOpenFs = new ZipOpenFS(opts); - try { - return await fn(zipOpenFs); - } finally { - zipOpenFs.saveAndClose(); - } - } - get libzip() { - if (typeof this.libzipInstance === `undefined`) - this.libzipInstance = this.libzipFactory(); - return this.libzipInstance; - } - getExtractHint(hints) { - return this.baseFs.getExtractHint(hints); - } - getRealPath() { - return this.baseFs.getRealPath(); - } - saveAndClose() { - unwatchAllFiles(this); - if (this.zipInstances) { - for (const [path, {zipFs}] of this.zipInstances.entries()) { - zipFs.saveAndClose(); - this.zipInstances.delete(path); - } - } - } - discardAndClose() { - unwatchAllFiles(this); - if (this.zipInstances) { - for (const [path, {zipFs}] of this.zipInstances.entries()) { - zipFs.discardAndClose(); - this.zipInstances.delete(path); - } - } - } - resolve(p) { - return this.baseFs.resolve(p); - } - remapFd(zipFs, fd) { - const remappedFd = this.nextFd++ | ZIP_FD; - this.fdMap.set(remappedFd, [zipFs, fd]); - return remappedFd; - } - async openPromise(p, flags, mode) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.openPromise(p, flags, mode); - }, async (zipFs, {subPath}) => { - return this.remapFd(zipFs, await zipFs.openPromise(subPath, flags, mode)); - }); - } - openSync(p, flags, mode) { - return this.makeCallSync(p, () => { - return this.baseFs.openSync(p, flags, mode); - }, (zipFs, {subPath}) => { - return this.remapFd(zipFs, zipFs.openSync(subPath, flags, mode)); - }); - } - async opendirPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.opendirPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.opendirPromise(subPath, opts); - }, { - requireSubpath: false - }); - } - opendirSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.opendirSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.opendirSync(subPath, opts); - }, { - requireSubpath: false - }); - } - async readPromise(fd, buffer, offset, length, position) { - if ((fd & ZIP_FD) === 0) - return await this.baseFs.readPromise(fd, buffer, offset, length, position); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`read`); - const [zipFs, realFd] = entry; - return await zipFs.readPromise(realFd, buffer, offset, length, position); - } - readSync(fd, buffer, offset, length, position) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.readSync(fd, buffer, offset, length, position); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`readSync`); - const [zipFs, realFd] = entry; - return zipFs.readSync(realFd, buffer, offset, length, position); - } - async writePromise(fd, buffer, offset, length, position) { - if ((fd & ZIP_FD) === 0) { - if (typeof buffer === `string`) { - return await this.baseFs.writePromise(fd, buffer, offset); - } else { - return await this.baseFs.writePromise(fd, buffer, offset, length, position); - } - } - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`write`); - const [zipFs, realFd] = entry; - if (typeof buffer === `string`) { - return await zipFs.writePromise(realFd, buffer, offset); - } else { - return await zipFs.writePromise(realFd, buffer, offset, length, position); - } - } - writeSync(fd, buffer, offset, length, position) { - if ((fd & ZIP_FD) === 0) { - if (typeof buffer === `string`) { - return this.baseFs.writeSync(fd, buffer, offset); - } else { - return this.baseFs.writeSync(fd, buffer, offset, length, position); - } - } - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`writeSync`); - const [zipFs, realFd] = entry; - if (typeof buffer === `string`) { - return zipFs.writeSync(realFd, buffer, offset); - } else { - return zipFs.writeSync(realFd, buffer, offset, length, position); - } - } - async closePromise(fd) { - if ((fd & ZIP_FD) === 0) - return await this.baseFs.closePromise(fd); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`close`); - this.fdMap.delete(fd); - const [zipFs, realFd] = entry; - return await zipFs.closePromise(realFd); - } - closeSync(fd) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.closeSync(fd); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`closeSync`); - this.fdMap.delete(fd); - const [zipFs, realFd] = entry; - return zipFs.closeSync(realFd); - } - createReadStream(p, opts) { - if (p === null) - return this.baseFs.createReadStream(p, opts); - return this.makeCallSync(p, () => { - return this.baseFs.createReadStream(p, opts); - }, (zipFs, {archivePath, subPath}) => { - const stream = zipFs.createReadStream(subPath, opts); - stream.path = npath.fromPortablePath(this.pathUtils.join(archivePath, subPath)); - return stream; - }); - } - createWriteStream(p, opts) { - if (p === null) - return this.baseFs.createWriteStream(p, opts); - return this.makeCallSync(p, () => { - return this.baseFs.createWriteStream(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.createWriteStream(subPath, opts); - }); - } - async realpathPromise(p) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.realpathPromise(p); - }, async (zipFs, {archivePath, subPath}) => { - let realArchivePath = this.realPaths.get(archivePath); - if (typeof realArchivePath === `undefined`) { - realArchivePath = await this.baseFs.realpathPromise(archivePath); - this.realPaths.set(archivePath, realArchivePath); - } - return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, await zipFs.realpathPromise(subPath))); - }); - } - realpathSync(p) { - return this.makeCallSync(p, () => { - return this.baseFs.realpathSync(p); - }, (zipFs, {archivePath, subPath}) => { - let realArchivePath = this.realPaths.get(archivePath); - if (typeof realArchivePath === `undefined`) { - realArchivePath = this.baseFs.realpathSync(archivePath); - this.realPaths.set(archivePath, realArchivePath); - } - return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, zipFs.realpathSync(subPath))); - }); - } - async existsPromise(p) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.existsPromise(p); - }, async (zipFs, {subPath}) => { - return await zipFs.existsPromise(subPath); - }); - } - existsSync(p) { - return this.makeCallSync(p, () => { - return this.baseFs.existsSync(p); - }, (zipFs, {subPath}) => { - return zipFs.existsSync(subPath); - }); - } - async accessPromise(p, mode) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.accessPromise(p, mode); - }, async (zipFs, {subPath}) => { - return await zipFs.accessPromise(subPath, mode); - }); - } - accessSync(p, mode) { - return this.makeCallSync(p, () => { - return this.baseFs.accessSync(p, mode); - }, (zipFs, {subPath}) => { - return zipFs.accessSync(subPath, mode); - }); - } - async statPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.statPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.statPromise(subPath, opts); - }); - } - statSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.statSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.statSync(subPath, opts); - }); - } - async fstatPromise(fd, opts) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.fstatPromise(fd, opts); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`fstat`); - const [zipFs, realFd] = entry; - return zipFs.fstatPromise(realFd, opts); - } - fstatSync(fd, opts) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.fstatSync(fd, opts); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`fstatSync`); - const [zipFs, realFd] = entry; - return zipFs.fstatSync(realFd, opts); - } - async lstatPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.lstatPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.lstatPromise(subPath, opts); - }); - } - lstatSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.lstatSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.lstatSync(subPath, opts); - }); - } - async fchmodPromise(fd, mask) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.fchmodPromise(fd, mask); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`fchmod`); - const [zipFs, realFd] = entry; - return zipFs.fchmodPromise(realFd, mask); - } - fchmodSync(fd, mask) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.fchmodSync(fd, mask); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`fchmodSync`); - const [zipFs, realFd] = entry; - return zipFs.fchmodSync(realFd, mask); - } - async chmodPromise(p, mask) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.chmodPromise(p, mask); - }, async (zipFs, {subPath}) => { - return await zipFs.chmodPromise(subPath, mask); - }); - } - chmodSync(p, mask) { - return this.makeCallSync(p, () => { - return this.baseFs.chmodSync(p, mask); - }, (zipFs, {subPath}) => { - return zipFs.chmodSync(subPath, mask); - }); - } - async chownPromise(p, uid, gid) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.chownPromise(p, uid, gid); - }, async (zipFs, {subPath}) => { - return await zipFs.chownPromise(subPath, uid, gid); - }); - } - chownSync(p, uid, gid) { - return this.makeCallSync(p, () => { - return this.baseFs.chownSync(p, uid, gid); - }, (zipFs, {subPath}) => { - return zipFs.chownSync(subPath, uid, gid); - }); - } - async renamePromise(oldP, newP) { - return await this.makeCallPromise(oldP, async () => { - return await this.makeCallPromise(newP, async () => { - return await this.baseFs.renamePromise(oldP, newP); - }, async () => { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - }); - }, async (zipFsO, {subPath: subPathO}) => { - return await this.makeCallPromise(newP, async () => { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - }, async (zipFsN, {subPath: subPathN}) => { - if (zipFsO !== zipFsN) { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - } else { - return await zipFsO.renamePromise(subPathO, subPathN); - } - }); - }); - } - renameSync(oldP, newP) { - return this.makeCallSync(oldP, () => { - return this.makeCallSync(newP, () => { - return this.baseFs.renameSync(oldP, newP); - }, () => { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - }); - }, (zipFsO, {subPath: subPathO}) => { - return this.makeCallSync(newP, () => { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - }, (zipFsN, {subPath: subPathN}) => { - if (zipFsO !== zipFsN) { - throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), {code: `EEXDEV`}); - } else { - return zipFsO.renameSync(subPathO, subPathN); - } - }); - }); - } - async copyFilePromise(sourceP, destP, flags = 0) { - const fallback = async (sourceFs, sourceP2, destFs, destP2) => { - if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) - throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), {code: `EXDEV`}); - if (flags & fs.constants.COPYFILE_EXCL && await this.existsPromise(sourceP2)) - throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), {code: `EEXIST`}); - let content; - try { - content = await sourceFs.readFilePromise(sourceP2); - } catch (error) { - throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), {code: `EINVAL`}); - } - await destFs.writeFilePromise(destP2, content); - }; - return await this.makeCallPromise(sourceP, async () => { - return await this.makeCallPromise(destP, async () => { - return await this.baseFs.copyFilePromise(sourceP, destP, flags); - }, async (zipFsD, {subPath: subPathD}) => { - return await fallback(this.baseFs, sourceP, zipFsD, subPathD); - }); - }, async (zipFsS, {subPath: subPathS}) => { - return await this.makeCallPromise(destP, async () => { - return await fallback(zipFsS, subPathS, this.baseFs, destP); - }, async (zipFsD, {subPath: subPathD}) => { - if (zipFsS !== zipFsD) { - return await fallback(zipFsS, subPathS, zipFsD, subPathD); - } else { - return await zipFsS.copyFilePromise(subPathS, subPathD, flags); - } - }); - }); - } - copyFileSync(sourceP, destP, flags = 0) { - const fallback = (sourceFs, sourceP2, destFs, destP2) => { - if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0) - throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), {code: `EXDEV`}); - if (flags & fs.constants.COPYFILE_EXCL && this.existsSync(sourceP2)) - throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), {code: `EEXIST`}); - let content; - try { - content = sourceFs.readFileSync(sourceP2); - } catch (error) { - throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), {code: `EINVAL`}); - } - destFs.writeFileSync(destP2, content); - }; - return this.makeCallSync(sourceP, () => { - return this.makeCallSync(destP, () => { - return this.baseFs.copyFileSync(sourceP, destP, flags); - }, (zipFsD, {subPath: subPathD}) => { - return fallback(this.baseFs, sourceP, zipFsD, subPathD); - }); - }, (zipFsS, {subPath: subPathS}) => { - return this.makeCallSync(destP, () => { - return fallback(zipFsS, subPathS, this.baseFs, destP); - }, (zipFsD, {subPath: subPathD}) => { - if (zipFsS !== zipFsD) { - return fallback(zipFsS, subPathS, zipFsD, subPathD); - } else { - return zipFsS.copyFileSync(subPathS, subPathD, flags); - } - }); - }); - } - async appendFilePromise(p, content, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.appendFilePromise(p, content, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.appendFilePromise(subPath, content, opts); - }); - } - appendFileSync(p, content, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.appendFileSync(p, content, opts); - }, (zipFs, {subPath}) => { - return zipFs.appendFileSync(subPath, content, opts); - }); - } - async writeFilePromise(p, content, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.writeFilePromise(p, content, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.writeFilePromise(subPath, content, opts); - }); - } - writeFileSync(p, content, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.writeFileSync(p, content, opts); - }, (zipFs, {subPath}) => { - return zipFs.writeFileSync(subPath, content, opts); - }); - } - async unlinkPromise(p) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.unlinkPromise(p); - }, async (zipFs, {subPath}) => { - return await zipFs.unlinkPromise(subPath); - }); - } - unlinkSync(p) { - return this.makeCallSync(p, () => { - return this.baseFs.unlinkSync(p); - }, (zipFs, {subPath}) => { - return zipFs.unlinkSync(subPath); - }); - } - async utimesPromise(p, atime, mtime) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.utimesPromise(p, atime, mtime); - }, async (zipFs, {subPath}) => { - return await zipFs.utimesPromise(subPath, atime, mtime); - }); - } - utimesSync(p, atime, mtime) { - return this.makeCallSync(p, () => { - return this.baseFs.utimesSync(p, atime, mtime); - }, (zipFs, {subPath}) => { - return zipFs.utimesSync(subPath, atime, mtime); - }); - } - async mkdirPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.mkdirPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.mkdirPromise(subPath, opts); - }); - } - mkdirSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.mkdirSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.mkdirSync(subPath, opts); - }); - } - async rmdirPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.rmdirPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.rmdirPromise(subPath, opts); - }); - } - rmdirSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.rmdirSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.rmdirSync(subPath, opts); - }); - } - async linkPromise(existingP, newP) { - return await this.makeCallPromise(newP, async () => { - return await this.baseFs.linkPromise(existingP, newP); - }, async (zipFs, {subPath}) => { - return await zipFs.linkPromise(existingP, subPath); - }); - } - linkSync(existingP, newP) { - return this.makeCallSync(newP, () => { - return this.baseFs.linkSync(existingP, newP); - }, (zipFs, {subPath}) => { - return zipFs.linkSync(existingP, subPath); - }); - } - async symlinkPromise(target, p, type) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.symlinkPromise(target, p, type); - }, async (zipFs, {subPath}) => { - return await zipFs.symlinkPromise(target, subPath); - }); - } - symlinkSync(target, p, type) { - return this.makeCallSync(p, () => { - return this.baseFs.symlinkSync(target, p, type); - }, (zipFs, {subPath}) => { - return zipFs.symlinkSync(target, subPath); - }); - } - async readFilePromise(p, encoding) { - return this.makeCallPromise(p, async () => { - switch (encoding) { - case `utf8`: - return await this.baseFs.readFilePromise(p, encoding); - default: - return await this.baseFs.readFilePromise(p, encoding); - } - }, async (zipFs, {subPath}) => { - return await zipFs.readFilePromise(subPath, encoding); - }); - } - readFileSync(p, encoding) { - return this.makeCallSync(p, () => { - switch (encoding) { - case `utf8`: - return this.baseFs.readFileSync(p, encoding); - default: - return this.baseFs.readFileSync(p, encoding); - } - }, (zipFs, {subPath}) => { - return zipFs.readFileSync(subPath, encoding); - }); - } - async readdirPromise(p, opts) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.readdirPromise(p, opts); - }, async (zipFs, {subPath}) => { - return await zipFs.readdirPromise(subPath, opts); - }, { - requireSubpath: false - }); - } - readdirSync(p, opts) { - return this.makeCallSync(p, () => { - return this.baseFs.readdirSync(p, opts); - }, (zipFs, {subPath}) => { - return zipFs.readdirSync(subPath, opts); - }, { - requireSubpath: false - }); - } - async readlinkPromise(p) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.readlinkPromise(p); - }, async (zipFs, {subPath}) => { - return await zipFs.readlinkPromise(subPath); - }); - } - readlinkSync(p) { - return this.makeCallSync(p, () => { - return this.baseFs.readlinkSync(p); - }, (zipFs, {subPath}) => { - return zipFs.readlinkSync(subPath); - }); - } - async truncatePromise(p, len) { - return await this.makeCallPromise(p, async () => { - return await this.baseFs.truncatePromise(p, len); - }, async (zipFs, {subPath}) => { - return await zipFs.truncatePromise(subPath, len); - }); - } - truncateSync(p, len) { - return this.makeCallSync(p, () => { - return this.baseFs.truncateSync(p, len); - }, (zipFs, {subPath}) => { - return zipFs.truncateSync(subPath, len); - }); - } - async ftruncatePromise(fd, len) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.ftruncatePromise(fd, len); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`ftruncate`); - const [zipFs, realFd] = entry; - return zipFs.ftruncatePromise(realFd, len); - } - ftruncateSync(fd, len) { - if ((fd & ZIP_FD) === 0) - return this.baseFs.ftruncateSync(fd, len); - const entry = this.fdMap.get(fd); - if (typeof entry === `undefined`) - throw EBADF(`ftruncateSync`); - const [zipFs, realFd] = entry; - return zipFs.ftruncateSync(realFd, len); - } - watch(p, a, b) { - return this.makeCallSync(p, () => { - return this.baseFs.watch(p, a, b); - }, (zipFs, {subPath}) => { - return zipFs.watch(subPath, a, b); - }); - } - watchFile(p, a, b) { - return this.makeCallSync(p, () => { - return this.baseFs.watchFile(p, a, b); - }, () => { - return watchFile(this, p, a, b); - }); - } - unwatchFile(p, cb) { - return this.makeCallSync(p, () => { - return this.baseFs.unwatchFile(p, cb); - }, () => { - return unwatchFile(this, p, cb); - }); - } - async makeCallPromise(p, discard, accept, {requireSubpath = true} = {}) { - if (typeof p !== `string`) - return await discard(); - const normalizedP = this.resolve(p); - const zipInfo = this.findZip(normalizedP); - if (!zipInfo) - return await discard(); - if (requireSubpath && zipInfo.subPath === `/`) - return await discard(); - return await this.getZipPromise(zipInfo.archivePath, async (zipFs) => await accept(zipFs, zipInfo)); - } - makeCallSync(p, discard, accept, {requireSubpath = true} = {}) { - if (typeof p !== `string`) - return discard(); - const normalizedP = this.resolve(p); - const zipInfo = this.findZip(normalizedP); - if (!zipInfo) - return discard(); - if (requireSubpath && zipInfo.subPath === `/`) - return discard(); - return this.getZipSync(zipInfo.archivePath, (zipFs) => accept(zipFs, zipInfo)); - } - findZip(p) { - if (this.filter && !this.filter.test(p)) - return null; - let filePath = ``; - while (true) { - const pathPartWithArchive = p.substring(filePath.length); - let archivePart; - if (!this.fileExtensions) { - archivePart = getArchivePart(pathPartWithArchive, `.zip`); - } else { - for (const ext of this.fileExtensions) { - archivePart = getArchivePart(pathPartWithArchive, ext); - if (archivePart) { - break; - } - } - } - if (!archivePart) - return null; - filePath = this.pathUtils.join(filePath, archivePart); - if (this.isZip.has(filePath) === false) { - if (this.notZip.has(filePath)) - continue; - try { - if (!this.baseFs.lstatSync(filePath).isFile()) { - this.notZip.add(filePath); - continue; - } - } catch { - return null; - } - this.isZip.add(filePath); - } - return { - archivePath: filePath, - subPath: this.pathUtils.join(PortablePath.root, p.substring(filePath.length)) - }; - } - } - limitOpenFiles(max) { - if (this.zipInstances === null) - return; - const now = Date.now(); - let nextExpiresAt = now + this.maxAge; - let closeCount = max === null ? 0 : this.zipInstances.size - max; - for (const [path, {zipFs, expiresAt, refCount}] of this.zipInstances.entries()) { - if (refCount !== 0 || zipFs.hasOpenFileHandles()) { - continue; - } else if (now >= expiresAt) { - zipFs.saveAndClose(); - this.zipInstances.delete(path); - closeCount -= 1; - continue; - } else if (max === null || closeCount <= 0) { - nextExpiresAt = expiresAt; - break; - } - zipFs.saveAndClose(); - this.zipInstances.delete(path); - closeCount -= 1; - } - if (this.limitOpenFilesTimeout === null && (max === null && this.zipInstances.size > 0 || max !== null)) { - this.limitOpenFilesTimeout = setTimeout(() => { - this.limitOpenFilesTimeout = null; - this.limitOpenFiles(null); - }, nextExpiresAt - now).unref(); - } - } - async getZipPromise(p, accept) { - const getZipOptions = async () => ({ - baseFs: this.baseFs, - libzip: this.libzip, - readOnly: this.readOnlyArchives, - stats: await this.baseFs.statPromise(p) - }); - if (this.zipInstances) { - let cachedZipFs = this.zipInstances.get(p); - if (!cachedZipFs) { - const zipOptions = await getZipOptions(); - cachedZipFs = this.zipInstances.get(p); - if (!cachedZipFs) { - cachedZipFs = { - zipFs: new ZipFS(p, zipOptions), - expiresAt: 0, - refCount: 0 - }; - } - } - this.zipInstances.delete(p); - this.limitOpenFiles(this.maxOpenFiles - 1); - this.zipInstances.set(p, cachedZipFs); - cachedZipFs.expiresAt = Date.now() + this.maxAge; - cachedZipFs.refCount += 1; - try { - return await accept(cachedZipFs.zipFs); - } finally { - cachedZipFs.refCount -= 1; - } - } else { - const zipFs = new ZipFS(p, await getZipOptions()); - try { - return await accept(zipFs); - } finally { - zipFs.saveAndClose(); - } - } - } - getZipSync(p, accept) { - const getZipOptions = () => ({ - baseFs: this.baseFs, - libzip: this.libzip, - readOnly: this.readOnlyArchives, - stats: this.baseFs.statSync(p) - }); - if (this.zipInstances) { - let cachedZipFs = this.zipInstances.get(p); - if (!cachedZipFs) { - cachedZipFs = { - zipFs: new ZipFS(p, getZipOptions()), - expiresAt: 0, - refCount: 0 - }; - } - this.zipInstances.delete(p); - this.limitOpenFiles(this.maxOpenFiles - 1); - this.zipInstances.set(p, cachedZipFs); - cachedZipFs.expiresAt = Date.now() + this.maxAge; - return accept(cachedZipFs.zipFs); - } else { - const zipFs = new ZipFS(p, getZipOptions()); - try { - return accept(zipFs); - } finally { - zipFs.saveAndClose(); - } - } - } -} - -class URLFS extends ProxiedFS { - constructor(baseFs) { - super(npath); - this.baseFs = baseFs; - } - mapFromBase(path) { - return path; - } - mapToBase(path) { - if (path instanceof url.URL) - return url.fileURLToPath(path); - return path; - } -} - -var __defProp$3 = Object.defineProperty; -var __defProps$2 = Object.defineProperties; -var __getOwnPropDescs$2 = Object.getOwnPropertyDescriptors; -var __getOwnPropSymbols$4 = Object.getOwnPropertySymbols; -var __hasOwnProp$4 = Object.prototype.hasOwnProperty; -var __propIsEnum$4 = Object.prototype.propertyIsEnumerable; -var __defNormalProp$3 = (obj, key, value) => key in obj ? __defProp$3(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues$3 = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp$4.call(b, prop)) - __defNormalProp$3(a, prop, b[prop]); - if (__getOwnPropSymbols$4) - for (var prop of __getOwnPropSymbols$4(b)) { - if (__propIsEnum$4.call(b, prop)) - __defNormalProp$3(a, prop, b[prop]); - } - return a; -}; -var __spreadProps$2 = (a, b) => __defProps$2(a, __getOwnPropDescs$2(b)); -var _a, _b, _c, _d; -const kBaseFs = Symbol(`kBaseFs`); -const kFd = Symbol(`kFd`); -const kClosePromise = Symbol(`kClosePromise`); -const kCloseResolve = Symbol(`kCloseResolve`); -const kCloseReject = Symbol(`kCloseReject`); -const kRefs = Symbol(`kRefs`); -const kRef = Symbol(`kRef`); -const kUnref = Symbol(`kUnref`); -class FileHandle { - constructor(fd, baseFs) { - this[_a] = 1; - this[_b] = void 0; - this[_c] = void 0; - this[_d] = void 0; - this[kBaseFs] = baseFs; - this[kFd] = fd; - } - get fd() { - return this[kFd]; - } - async appendFile(data, options) { - var _a2; - try { - this[kRef](this.appendFile); - const encoding = (_a2 = typeof options === `string` ? options : options == null ? void 0 : options.encoding) != null ? _a2 : void 0; - return await this[kBaseFs].appendFilePromise(this.fd, data, encoding ? {encoding} : void 0); - } finally { - this[kUnref](); - } - } - chown(uid, gid) { - throw new Error(`Method not implemented.`); - } - async chmod(mode) { - try { - this[kRef](this.chmod); - return await this[kBaseFs].fchmodPromise(this.fd, mode); - } finally { - this[kUnref](); - } - } - createReadStream(options) { - return this[kBaseFs].createReadStream(null, __spreadProps$2(__spreadValues$3({}, options), {fd: this.fd})); - } - createWriteStream(options) { - return this[kBaseFs].createWriteStream(null, __spreadProps$2(__spreadValues$3({}, options), {fd: this.fd})); - } - datasync() { - throw new Error(`Method not implemented.`); - } - sync() { - throw new Error(`Method not implemented.`); - } - async read(bufferOrOptions, offset, length, position) { - var _a2, _b2, _c2; - try { - this[kRef](this.read); - let buffer; - if (!Buffer.isBuffer(bufferOrOptions)) { - bufferOrOptions != null ? bufferOrOptions : bufferOrOptions = {}; - buffer = (_a2 = bufferOrOptions.buffer) != null ? _a2 : Buffer.alloc(16384); - offset = bufferOrOptions.offset || 0; - length = (_b2 = bufferOrOptions.length) != null ? _b2 : buffer.byteLength; - position = (_c2 = bufferOrOptions.position) != null ? _c2 : null; - } else { - buffer = bufferOrOptions; - } - offset != null ? offset : offset = 0; - length != null ? length : length = 0; - if (length === 0) { - return { - bytesRead: length, - buffer - }; - } - const bytesRead = await this[kBaseFs].readPromise(this.fd, buffer, offset, length, position); - return { - bytesRead, - buffer - }; - } finally { - this[kUnref](); - } - } - async readFile(options) { - var _a2; - try { - this[kRef](this.readFile); - const encoding = (_a2 = typeof options === `string` ? options : options == null ? void 0 : options.encoding) != null ? _a2 : void 0; - return await this[kBaseFs].readFilePromise(this.fd, encoding); - } finally { - this[kUnref](); - } - } - async stat(opts) { - try { - this[kRef](this.stat); - return await this[kBaseFs].fstatPromise(this.fd, opts); - } finally { - this[kUnref](); - } - } - async truncate(len) { - try { - this[kRef](this.truncate); - return await this[kBaseFs].ftruncatePromise(this.fd, len); - } finally { - this[kUnref](); - } - } - utimes(atime, mtime) { - throw new Error(`Method not implemented.`); - } - async writeFile(data, options) { - var _a2; - try { - this[kRef](this.writeFile); - const encoding = (_a2 = typeof options === `string` ? options : options == null ? void 0 : options.encoding) != null ? _a2 : void 0; - await this[kBaseFs].writeFilePromise(this.fd, data, encoding); - } finally { - this[kUnref](); - } - } - async write(...args) { - try { - this[kRef](this.write); - if (ArrayBuffer.isView(args[0])) { - const [buffer, offset, length, position] = args; - const bytesWritten = await this[kBaseFs].writePromise(this.fd, buffer, offset != null ? offset : void 0, length != null ? length : void 0, position != null ? position : void 0); - return {bytesWritten, buffer}; - } else { - const [data, position, encoding] = args; - const bytesWritten = await this[kBaseFs].writePromise(this.fd, data, position, encoding); - return {bytesWritten, buffer: data}; - } - } finally { - this[kUnref](); - } - } - async writev(buffers, position) { - try { - this[kRef](this.writev); - let bytesWritten = 0; - if (typeof position !== `undefined`) { - for (const buffer of buffers) { - const writeResult = await this.write(buffer, void 0, void 0, position); - bytesWritten += writeResult.bytesWritten; - position += writeResult.bytesWritten; - } - } else { - for (const buffer of buffers) { - const writeResult = await this.write(buffer); - bytesWritten += writeResult.bytesWritten; - } - } - return { - buffers, - bytesWritten - }; - } finally { - this[kUnref](); - } - } - readv(buffers, position) { - throw new Error(`Method not implemented.`); - } - close() { - if (this[kFd] === -1) - return Promise.resolve(); - if (this[kClosePromise]) - return this[kClosePromise]; - this[kRefs]--; - if (this[kRefs] === 0) { - const fd = this[kFd]; - this[kFd] = -1; - this[kClosePromise] = this[kBaseFs].closePromise(fd).finally(() => { - this[kClosePromise] = void 0; - }); - } else { - this[kClosePromise] = new Promise((resolve, reject) => { - this[kCloseResolve] = resolve; - this[kCloseReject] = reject; - }).finally(() => { - this[kClosePromise] = void 0; - this[kCloseReject] = void 0; - this[kCloseResolve] = void 0; - }); - } - return this[kClosePromise]; - } - [(_a = kRefs, _b = kClosePromise, _c = kCloseResolve, _d = kCloseReject, kRef)](caller) { - if (this[kFd] === -1) { - const err = new Error(`file closed`); - err.code = `EBADF`; - err.syscall = caller.name; - throw err; - } - this[kRefs]++; - } - [kUnref]() { - this[kRefs]--; - if (this[kRefs] === 0) { - const fd = this[kFd]; - this[kFd] = -1; - this[kBaseFs].closePromise(fd).then(this[kCloseResolve], this[kCloseReject]); - } - } -} - -const SYNC_IMPLEMENTATIONS = new Set([ - `accessSync`, - `appendFileSync`, - `createReadStream`, - `createWriteStream`, - `chmodSync`, - `fchmodSync`, - `chownSync`, - `closeSync`, - `copyFileSync`, - `linkSync`, - `lstatSync`, - `fstatSync`, - `lutimesSync`, - `mkdirSync`, - `openSync`, - `opendirSync`, - `readlinkSync`, - `readFileSync`, - `readdirSync`, - `readlinkSync`, - `realpathSync`, - `renameSync`, - `rmdirSync`, - `statSync`, - `symlinkSync`, - `truncateSync`, - `ftruncateSync`, - `unlinkSync`, - `unwatchFile`, - `utimesSync`, - `watch`, - `watchFile`, - `writeFileSync`, - `writeSync` -]); -const ASYNC_IMPLEMENTATIONS = new Set([ - `accessPromise`, - `appendFilePromise`, - `fchmodPromise`, - `chmodPromise`, - `chownPromise`, - `closePromise`, - `copyFilePromise`, - `linkPromise`, - `fstatPromise`, - `lstatPromise`, - `lutimesPromise`, - `mkdirPromise`, - `openPromise`, - `opendirPromise`, - `readdirPromise`, - `realpathPromise`, - `readFilePromise`, - `readdirPromise`, - `readlinkPromise`, - `renamePromise`, - `rmdirPromise`, - `statPromise`, - `symlinkPromise`, - `truncatePromise`, - `ftruncatePromise`, - `unlinkPromise`, - `utimesPromise`, - `writeFilePromise`, - `writeSync` -]); -function patchFs(patchedFs, fakeFs) { - fakeFs = new URLFS(fakeFs); - const setupFn = (target, name, replacement) => { - const orig = target[name]; - target[name] = replacement; - if (typeof (orig == null ? void 0 : orig[nodeUtils.promisify.custom]) !== `undefined`) { - replacement[nodeUtils.promisify.custom] = orig[nodeUtils.promisify.custom]; - } - }; - { - setupFn(patchedFs, `exists`, (p, ...args) => { - const hasCallback = typeof args[args.length - 1] === `function`; - const callback = hasCallback ? args.pop() : () => { - }; - process.nextTick(() => { - fakeFs.existsPromise(p).then((exists) => { - callback(exists); - }, () => { - callback(false); - }); - }); - }); - setupFn(patchedFs, `read`, (...args) => { - let [fd, buffer, offset, length, position, callback] = args; - if (args.length <= 3) { - let options = {}; - if (args.length < 3) { - callback = args[1]; - } else { - options = args[1]; - callback = args[2]; - } - ({ - buffer = Buffer.alloc(16384), - offset = 0, - length = buffer.byteLength, - position - } = options); - } - if (offset == null) - offset = 0; - length |= 0; - if (length === 0) { - process.nextTick(() => { - callback(null, 0, buffer); - }); - return; - } - if (position == null) - position = -1; - process.nextTick(() => { - fakeFs.readPromise(fd, buffer, offset, length, position).then((bytesRead) => { - callback(null, bytesRead, buffer); - }, (error) => { - callback(error, 0, buffer); - }); - }); - }); - for (const fnName of ASYNC_IMPLEMENTATIONS) { - const origName = fnName.replace(/Promise$/, ``); - if (typeof patchedFs[origName] === `undefined`) - continue; - const fakeImpl = fakeFs[fnName]; - if (typeof fakeImpl === `undefined`) - continue; - const wrapper = (...args) => { - const hasCallback = typeof args[args.length - 1] === `function`; - const callback = hasCallback ? args.pop() : () => { - }; - process.nextTick(() => { - fakeImpl.apply(fakeFs, args).then((result) => { - callback(null, result); - }, (error) => { - callback(error); - }); - }); - }; - setupFn(patchedFs, origName, wrapper); - } - patchedFs.realpath.native = patchedFs.realpath; - } - { - setupFn(patchedFs, `existsSync`, (p) => { - try { - return fakeFs.existsSync(p); - } catch (error) { - return false; - } - }); - setupFn(patchedFs, `readSync`, (...args) => { - let [fd, buffer, offset, length, position] = args; - if (args.length <= 3) { - const options = args[2] || {}; - ({offset = 0, length = buffer.byteLength, position} = options); - } - if (offset == null) - offset = 0; - length |= 0; - if (length === 0) - return 0; - if (position == null) - position = -1; - return fakeFs.readSync(fd, buffer, offset, length, position); - }); - for (const fnName of SYNC_IMPLEMENTATIONS) { - const origName = fnName; - if (typeof patchedFs[origName] === `undefined`) - continue; - const fakeImpl = fakeFs[fnName]; - if (typeof fakeImpl === `undefined`) - continue; - setupFn(patchedFs, origName, fakeImpl.bind(fakeFs)); - } - patchedFs.realpathSync.native = patchedFs.realpathSync; - } - { - const origEmitWarning = process.emitWarning; - process.emitWarning = () => { - }; - let patchedFsPromises; - try { - patchedFsPromises = patchedFs.promises; - } finally { - process.emitWarning = origEmitWarning; - } - if (typeof patchedFsPromises !== `undefined`) { - for (const fnName of ASYNC_IMPLEMENTATIONS) { - const origName = fnName.replace(/Promise$/, ``); - if (typeof patchedFsPromises[origName] === `undefined`) - continue; - const fakeImpl = fakeFs[fnName]; - if (typeof fakeImpl === `undefined`) - continue; - if (fnName === `open`) - continue; - setupFn(patchedFsPromises, origName, (pathLike, ...args) => { - if (pathLike instanceof FileHandle) { - return pathLike[origName].apply(pathLike, args); - } else { - return fakeImpl.call(fakeFs, pathLike, ...args); - } - }); - } - setupFn(patchedFsPromises, `open`, async (...args) => { - const fd = await fakeFs.openPromise(...args); - return new FileHandle(fd, fakeFs); - }); - } - } - { - patchedFs.read[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => { - const res = fakeFs.readPromise(fd, buffer, ...args); - return {bytesRead: await res, buffer}; - }; - patchedFs.write[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => { - const res = fakeFs.writePromise(fd, buffer, ...args); - return {bytesWritten: await res, buffer}; - }; - } -} - -var libzipSync = {exports: {}}; - -(function (module, exports) { -var frozenFs = Object.assign({}, fs__default.default); -var createModule = function() { - var _scriptDir = void 0; - if (typeof __filename !== "undefined") - _scriptDir = _scriptDir || __filename; - return function(createModule2) { - createModule2 = createModule2 || {}; - var Module = typeof createModule2 !== "undefined" ? createModule2 : {}; - var readyPromiseResolve, readyPromiseReject; - Module["ready"] = new Promise(function(resolve, reject) { - readyPromiseResolve = resolve; - readyPromiseReject = reject; - }); - var moduleOverrides = {}; - var key; - for (key in Module) { - if (Module.hasOwnProperty(key)) { - moduleOverrides[key] = Module[key]; - } - } - var scriptDirectory = ""; - function locateFile(path) { - if (Module["locateFile"]) { - return Module["locateFile"](path, scriptDirectory); - } - return scriptDirectory + path; - } - var read_, readBinary; - var nodeFS; - var nodePath; - { - { - scriptDirectory = __dirname + "/"; - } - read_ = function shell_read(filename, binary) { - var ret = tryParseAsDataURI(filename); - if (ret) { - return binary ? ret : ret.toString(); - } - if (!nodeFS) - nodeFS = frozenFs; - if (!nodePath) - nodePath = path__default.default; - filename = nodePath["normalize"](filename); - return nodeFS["readFileSync"](filename, binary ? null : "utf8"); - }; - readBinary = function readBinary2(filename) { - var ret = read_(filename, true); - if (!ret.buffer) { - ret = new Uint8Array(ret); - } - assert(ret.buffer); - return ret; - }; - if (process["argv"].length > 1) { - process["argv"][1].replace(/\\/g, "/"); - } - process["argv"].slice(2); - Module["inspect"] = function() { - return "[Emscripten Module object]"; - }; - } - var out = Module["print"] || console.log.bind(console); - var err = Module["printErr"] || console.warn.bind(console); - for (key in moduleOverrides) { - if (moduleOverrides.hasOwnProperty(key)) { - Module[key] = moduleOverrides[key]; - } - } - moduleOverrides = null; - if (Module["arguments"]) - ; - if (Module["thisProgram"]) - ; - if (Module["quit"]) - ; - var STACK_ALIGN = 16; - function alignMemory(size, factor) { - if (!factor) - factor = STACK_ALIGN; - return Math.ceil(size / factor) * factor; - } - var wasmBinary; - if (Module["wasmBinary"]) - wasmBinary = Module["wasmBinary"]; - Module["noExitRuntime"] || true; - if (typeof WebAssembly !== "object") { - abort("no native wasm support detected"); - } - function getValue(ptr, type, noSafe) { - type = type || "i8"; - if (type.charAt(type.length - 1) === "*") - type = "i32"; - switch (type) { - case "i1": - return HEAP8[ptr >> 0]; - case "i8": - return HEAP8[ptr >> 0]; - case "i16": - return HEAP16[ptr >> 1]; - case "i32": - return HEAP32[ptr >> 2]; - case "i64": - return HEAP32[ptr >> 2]; - case "float": - return HEAPF32[ptr >> 2]; - case "double": - return HEAPF64[ptr >> 3]; - default: - abort("invalid type for getValue: " + type); - } - return null; - } - var wasmMemory; - var ABORT = false; - function assert(condition, text) { - if (!condition) { - abort("Assertion failed: " + text); - } - } - function getCFunc(ident) { - var func = Module["_" + ident]; - assert(func, "Cannot call unknown function " + ident + ", make sure it is exported"); - return func; - } - function ccall(ident, returnType, argTypes, args, opts) { - var toC = { - string: function(str) { - var ret2 = 0; - if (str !== null && str !== void 0 && str !== 0) { - var len = (str.length << 2) + 1; - ret2 = stackAlloc(len); - stringToUTF8(str, ret2, len); - } - return ret2; - }, - array: function(arr) { - var ret2 = stackAlloc(arr.length); - writeArrayToMemory(arr, ret2); - return ret2; - } - }; - function convertReturnValue(ret2) { - if (returnType === "string") - return UTF8ToString(ret2); - if (returnType === "boolean") - return Boolean(ret2); - return ret2; - } - var func = getCFunc(ident); - var cArgs = []; - var stack = 0; - if (args) { - for (var i = 0; i < args.length; i++) { - var converter = toC[argTypes[i]]; - if (converter) { - if (stack === 0) - stack = stackSave(); - cArgs[i] = converter(args[i]); - } else { - cArgs[i] = args[i]; - } - } - } - var ret = func.apply(null, cArgs); - ret = convertReturnValue(ret); - if (stack !== 0) - stackRestore(stack); - return ret; - } - function cwrap(ident, returnType, argTypes, opts) { - argTypes = argTypes || []; - var numericArgs = argTypes.every(function(type) { - return type === "number"; - }); - var numericRet = returnType !== "string"; - if (numericRet && numericArgs && !opts) { - return getCFunc(ident); - } - return function() { - return ccall(ident, returnType, argTypes, arguments); - }; - } - var UTF8Decoder = typeof TextDecoder !== "undefined" ? new TextDecoder("utf8") : void 0; - function UTF8ArrayToString(heap, idx, maxBytesToRead) { - var endIdx = idx + maxBytesToRead; - var endPtr = idx; - while (heap[endPtr] && !(endPtr >= endIdx)) - ++endPtr; - if (endPtr - idx > 16 && heap.subarray && UTF8Decoder) { - return UTF8Decoder.decode(heap.subarray(idx, endPtr)); - } else { - var str = ""; - while (idx < endPtr) { - var u0 = heap[idx++]; - if (!(u0 & 128)) { - str += String.fromCharCode(u0); - continue; - } - var u1 = heap[idx++] & 63; - if ((u0 & 224) == 192) { - str += String.fromCharCode((u0 & 31) << 6 | u1); - continue; - } - var u2 = heap[idx++] & 63; - if ((u0 & 240) == 224) { - u0 = (u0 & 15) << 12 | u1 << 6 | u2; - } else { - u0 = (u0 & 7) << 18 | u1 << 12 | u2 << 6 | heap[idx++] & 63; - } - if (u0 < 65536) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 65536; - str += String.fromCharCode(55296 | ch >> 10, 56320 | ch & 1023); - } - } - } - return str; - } - function UTF8ToString(ptr, maxBytesToRead) { - return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ""; - } - function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { - if (!(maxBytesToWrite > 0)) - return 0; - var startIdx = outIdx; - var endIdx = outIdx + maxBytesToWrite - 1; - for (var i = 0; i < str.length; ++i) { - var u = str.charCodeAt(i); - if (u >= 55296 && u <= 57343) { - var u1 = str.charCodeAt(++i); - u = 65536 + ((u & 1023) << 10) | u1 & 1023; - } - if (u <= 127) { - if (outIdx >= endIdx) - break; - heap[outIdx++] = u; - } else if (u <= 2047) { - if (outIdx + 1 >= endIdx) - break; - heap[outIdx++] = 192 | u >> 6; - heap[outIdx++] = 128 | u & 63; - } else if (u <= 65535) { - if (outIdx + 2 >= endIdx) - break; - heap[outIdx++] = 224 | u >> 12; - heap[outIdx++] = 128 | u >> 6 & 63; - heap[outIdx++] = 128 | u & 63; - } else { - if (outIdx + 3 >= endIdx) - break; - heap[outIdx++] = 240 | u >> 18; - heap[outIdx++] = 128 | u >> 12 & 63; - heap[outIdx++] = 128 | u >> 6 & 63; - heap[outIdx++] = 128 | u & 63; - } - } - heap[outIdx] = 0; - return outIdx - startIdx; - } - function stringToUTF8(str, outPtr, maxBytesToWrite) { - return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite); - } - function lengthBytesUTF8(str) { - var len = 0; - for (var i = 0; i < str.length; ++i) { - var u = str.charCodeAt(i); - if (u >= 55296 && u <= 57343) - u = 65536 + ((u & 1023) << 10) | str.charCodeAt(++i) & 1023; - if (u <= 127) - ++len; - else if (u <= 2047) - len += 2; - else if (u <= 65535) - len += 3; - else - len += 4; - } - return len; - } - function allocateUTF8(str) { - var size = lengthBytesUTF8(str) + 1; - var ret = _malloc(size); - if (ret) - stringToUTF8Array(str, HEAP8, ret, size); - return ret; - } - function writeArrayToMemory(array, buffer2) { - HEAP8.set(array, buffer2); - } - function alignUp(x, multiple) { - if (x % multiple > 0) { - x += multiple - x % multiple; - } - return x; - } - var buffer, HEAP8, HEAPU8, HEAP16, HEAP32, HEAPF32, HEAPF64; - function updateGlobalBufferAndViews(buf) { - buffer = buf; - Module["HEAP8"] = HEAP8 = new Int8Array(buf); - Module["HEAP16"] = HEAP16 = new Int16Array(buf); - Module["HEAP32"] = HEAP32 = new Int32Array(buf); - Module["HEAPU8"] = HEAPU8 = new Uint8Array(buf); - Module["HEAPU16"] = new Uint16Array(buf); - Module["HEAPU32"] = new Uint32Array(buf); - Module["HEAPF32"] = HEAPF32 = new Float32Array(buf); - Module["HEAPF64"] = HEAPF64 = new Float64Array(buf); - } - Module["INITIAL_MEMORY"] || 16777216; - var wasmTable; - var __ATPRERUN__ = []; - var __ATINIT__ = []; - var __ATPOSTRUN__ = []; - function preRun() { - if (Module["preRun"]) { - if (typeof Module["preRun"] == "function") - Module["preRun"] = [Module["preRun"]]; - while (Module["preRun"].length) { - addOnPreRun(Module["preRun"].shift()); - } - } - callRuntimeCallbacks(__ATPRERUN__); - } - function initRuntime() { - if (!Module["noFSInit"] && !FS.init.initialized) - FS.init(); - callRuntimeCallbacks(__ATINIT__); - } - function postRun() { - if (Module["postRun"]) { - if (typeof Module["postRun"] == "function") - Module["postRun"] = [Module["postRun"]]; - while (Module["postRun"].length) { - addOnPostRun(Module["postRun"].shift()); - } - } - callRuntimeCallbacks(__ATPOSTRUN__); - } - function addOnPreRun(cb) { - __ATPRERUN__.unshift(cb); - } - function addOnInit(cb) { - __ATINIT__.unshift(cb); - } - function addOnPostRun(cb) { - __ATPOSTRUN__.unshift(cb); - } - var runDependencies = 0; - var dependenciesFulfilled = null; - function addRunDependency(id) { - runDependencies++; - if (Module["monitorRunDependencies"]) { - Module["monitorRunDependencies"](runDependencies); - } - } - function removeRunDependency(id) { - runDependencies--; - if (Module["monitorRunDependencies"]) { - Module["monitorRunDependencies"](runDependencies); - } - if (runDependencies == 0) { - if (dependenciesFulfilled) { - var callback = dependenciesFulfilled; - dependenciesFulfilled = null; - callback(); - } - } - } - Module["preloadedImages"] = {}; - Module["preloadedAudios"] = {}; - function abort(what) { - if (Module["onAbort"]) { - Module["onAbort"](what); - } - what += ""; - err(what); - ABORT = true; - what = "abort(" + what + "). Build with -s ASSERTIONS=1 for more info."; - var e = new WebAssembly.RuntimeError(what); - readyPromiseReject(e); - throw e; - } - var dataURIPrefix = "data:application/octet-stream;base64,"; - function isDataURI(filename) { - return filename.startsWith(dataURIPrefix); - } - var wasmBinaryFile = "data:application/octet-stream;base64,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ACgCFC0AAiAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQADIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAAQgACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0ABSAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAGIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAAcgACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0ACCAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAJIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAAogACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0ACyAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAMIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAA0gACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0ADiAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAPIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhRBEGo2AhQgACAAKAIIQQFrIgE2AgggAQ0ACyAAIAAoAhhB8f8DcDYCGCAAIAAoAgxB8f8DcDYCDAwBCwsgACgCEARAA0AgACgCEEEQTwRAIAAgACgCEEEQazYCECAAIAAoAhQtAAAgACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0AASAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQACIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAAMgACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0ABCAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAFIAAoAhhqNgIYIAAgACgCGCAAKAIMajYCDCAAIAAoAhQtAAYgACgCGGo2AhggACAAKAIYIAAoAgxqNgIMIAAgACgCFC0AByAAKAIYajYCGCAAIAAoAhggACgCDGo2AgwgACAAKAIULQAIIAAoAhhqNgIYIAAgACgCGCAAKAIMajYC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NgIYIAEoAgxCADcDICABKAIMQgA3AyggASgCDEEANgIwIAEoAgxBADYCNCABKAIMQQA2AjggASgCDEEANgI8IAEoAgxBADsBQCABKAIMQYCA2I14NgJEIAEoAgxCADcDSCABKAIMQQA7AVAgASgCDEEAOwFSIAEoAgxBADYCVAvSEwEBfyMAQbABayIDJAAgAyAANgKoASADIAE2AqQBIAMgAjYCoAEgA0EANgKQASADIAMoAqQBKAIwQQAQOjYClAEgAyADKAKkASgCOEEAEDo2ApgBAkACQAJAAkAgAygClAFBAkYEQCADKAKYAUEBRg0BCyADKAKUAUEBRgRAIAMoApgBQQJGDQELIAMoApQBQQJHDQEgAygCmAFBAkcNAQsgAygCpAEiACAALwEMQYAQcjsBDAwBCyADKAKkASIAIAAvAQxB/+8DcTsBDCADKAKUAUECRgRAIANB9eABIAMoAqQBKAIwIAMoAqgBQQhqEI4BNgKQASADKAKQAUUEQCADQX82AqwBDAMLCwJAIAMoAqABQYACcQ0AIAMoApgBQQJHDQAgA0H1xgEgAygCpAEoAjggAygCqAFBCGoQjgE2AkggAygCSEUEQCADKAKQARAjIANBfzYCrAEMAwsgAygCSCADKAKQATYCACADIAMoAkg2ApABCwsCQCADKAKkAS8BUkUEQCADKAKkASIAIAAvAQxB/v8DcTsBDAwBCyADKAKkASIAIAAvAQxBAXI7AQwLIAMgAygCpAEgAygCoAEQZUEBcToAhgEgAyADKAKgAUGACnFBgApHBH8gAy0AhgEFQQELQQFxOgCHASADAn9BASADKAKkAS8BUkGBAkYNABpBASADKAKkAS8BUkGCAkYNABogAygCpAEvAVJBgwJGC0EBcToAhQEgAy0AhwFBAXEEQCADIANBIGpCHBApNgIcIAMoAhxFBEAgAygCqAFBCGpBDkEAEBQgAygCkAEQIyADQX82AqwBDAILAkAgAygCoAFBgAJxBEACQCADKAKgAUGACHENACADKAKkASkDIEL/////D1YNACADKAKkASkDKEL/////D1gNAgsgAygCHCADKAKkASkDKBAtIAMoAhwgAygCpAEpAyAQLQwBCwJAAkAgAygCoAFBgAhxDQAgAygCpAEpAyBC/////w9WDQAgAygCpAEpAyhC/////w9WDQAgAygCpAEpA0hC/////w9YDQELIAMoAqQBKQMoQv////8PWgRAIAMoAhwgAygCpAEpAygQLQsgAygCpAEpAyBC/////w9aBEAgAygCHCADKAKkASkDIBAtCyADKAKkASkDSEL/////D1oEQCADKAIcIAMoAqQBKQNIEC0LCwsCfyMAQRBrIgAgAygCHDYCDCAAKAIMLQAAQQFxRQsEQCADKAKoAUEIakEUQQAQFCADKAIcEBYgAygCkAEQIyADQX82AqwBDAILIANBAQJ/IwBBEGsiACADKAIcNgIMAn4gACgCDC0AAEEBcQRAIAAoAgwpAxAMAQtCAAunQf//A3ELIANBIGpBgAYQVTYCjAEgAygCHBAWIAMoAowBIAMoApABNgIAIAMgAygCjAE2ApABCyADLQCFAUEBcQRAIAMgA0EVakIHECk2AhAgAygCEEUEQCADKAKoAUEIakEOQQAQFCADKAKQARAjIANBfzYCrAEMAgsgAygCEEECEB8gAygCEEG9EkECEEEgAygCECADKAKkAS8BUkH/AXEQlgEgAygCECADKAKkASgCEEH//wNxEB8CfyMAQRBrIgAgAygCEDYCDCAAKAIMLQAAQQFxRQsEQCADKAKoAUEIakEUQQAQFCADKAIQEBYgAygCkAEQIyADQX82AqwBDAILIANBgbICQQcgA0EVakGABhBVNgIMIAMoAhAQFiADKAIMIAMoApABNgIAIAMgAygCDDYCkAELIAMgA0HQAGpCLhApIgA2AkwgAEUEQCADKAKoAUEIakEOQQAQFCADKAKQARAjIANBfzYCrAEMAQsgAygCTEHxEkH2EiADKAKgAUGAAnEbQQQQQSADKAKgAUGAAnFFBEAgAygCTCADLQCGAUEBcQR/QS0FIAMoAqQBLwEIC0H//wNxEB8LIAMoAkwgAy0AhgFBAXEEf0EtBSADKAKkAS8BCgtB//8DcRAfIAMoAkwgAygCpAEvAQwQHwJAIAMtAIUBQQFxBEAgAygCTEHjABAfDAELIAMoAkwgAygCpAEoAhBB//8DcRAfCyADKAKkASgCFCADQZ4BaiADQZwBahCNASADKAJMIAMvAZ4BEB8gAygCTCADLwGcARAfAkACQCADLQCFAUEBcUUNACADKAKkASkDKEIUWg0AIAMoAkxBABAhDAELIAMoAkwgAygCpAEoAhgQIQsCQAJAIAMoAqABQYACcUGAAkcNACADKAKkASkDIEL/////D1QEQCADKAKkASkDKEL/////D1QNAQsgAygCTEF/ECEgAygCTEF/ECEMAQsCQCADKAKkASkDIEL/////D1QEQCADKAJMIAMoAqQBKQMgpxAhDAELIAMoAkxBfxAhCwJAIAMoAqQBKQMoQv////8PVARAIAMoAkwgAygCpAEpAyinECEMAQsgAygCTEF/ECELCyADKAJMIAMoAqQBKAIwEFFB//8DcRAfIAMgAygCpAEoAjQgAygCoAEQkgFB//8DcSADKAKQAUGABhCSAUH//wNxajYCiAEgAygCTCADKAKIAUH//wNxEB8gAygCoAFBgAJxRQRAIAMoAkwgAygCpAEoAjgQUUH//wNxEB8gAygCTCADKAKkASgCPEH//wNxEB8gAygCTCADKAKkAS8BQBAfIAMoAkwgAygCpAEoAkQQIQJAIAMoAqQBKQNIQv////8PVARAIAMoAkwgAygCpAEpA0inECEMAQsgAygCTEF/ECELCwJ/IwBBEGsiACADKAJMNgIMIAAoAgwtAABBAXFFCwRAIAMoAqgBQQhqQRRBABAUIAMoAkwQFiADKAKQARAjIANBfzYCrAEMAQsgAygCqAEgA0HQAGoCfiMAQRBrIgAgAygCTDYCDAJ+IAAoAgwtAABBAXEEQCAAKAIMKQMQDAELQgALCxA2QQBIBEAgAygCTBAWIAMoApABECMgA0F/NgKsAQwBCyADKAJMEBYgAygCpAEoAjAEQCADKAKoASADKAKkASgCMBCFAUEASARAIAMoApABECMgA0F/NgKsAQwCCwsgAygCkAEEQCADKAKoASADKAKQAUGABhCRAUEASARAIAMoApABECMgA0F/NgKsAQwCCwsgAygCkAEQIyADKAKkASgCNARAIAMoAqgBIAMoAqQBKAI0IAMoAqABEJEBQQBIBEAgA0F/NgKsAQwCCwsgAygCoAFBgAJxRQRAIAMoAqQBKAI4BEAgAygCqAEgAygCpAEoAjgQhQFBAEgEQCADQX82AqwBDAMLCwsgAyADLQCHAUEBcTYCrAELIAMoAqwBIQAgA0GwAWokACAAC+ACAQF/IwBBIGsiBCQAIAQgADsBGiAEIAE7ARggBCACNgIUIAQgAzYCECAEQRAQGCIANgIMAkAg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AAAgAygCHEHcFmogAygCDEECdGooAgAgAygCHEHYKGpqLQAASg0ADAELIAMoAhxB3BZqIAMoAhRBAnRqIAMoAhxB3BZqIAMoAgxBAnRqKAIANgIAIAMgAygCDDYCFCADIAMoAgxBAXQ2AgwMAQsLIAMoAhxB3BZqIAMoAhRBAnRqIAMoAhA2AgAL1xMBA38jAEEwayICJAAgAiAANgIsIAIgATYCKCACIAIoAigoAgA2AiQgAiACKAIoKAIIKAIANgIgIAIgAigCKCgCCCgCDDYCHCACQX82AhAgAigCLEEANgLQKCACKAIsQb0ENgLUKCACQQA2AhgDQCACKAIYIAIoAhxIBEACQCACKAIkIAIoAhhBAnRqLwEABEAgAiACKAIYIgE2AhAgAigCLEHcFmohAyACKAIsIgQoAtAoQQFqIQAgBCAANgLQKCAAQQJ0IANqIAE2AgAgAigCGCACKAIsQdgoampBADoAAAwBCyACKAIkIAIoAhhBAnRqQQA7AQILIAIgAigCGEEBajYCGAwBCwsDQCACKAIsKALQKEECSARAAkAgAigCEEECSARAIAIgAigCEEEBaiIANgIQDAELQQAhAAsgAigCLEHcFmohAyACKAIsIgQoAtAoQQFqIQEgBCABNgLQKCABQQJ0IANqIAA2AgAgAiAANgIMIAIoAiQgAigCDEECdGpBATsBACACKAIMIAIoAixB2ChqakEAOgAAIAIoAiwiACAAKAKoLUEBazYCqC0gAigCIARAIAIoAiwiACAAKAKsLSACKAIgIAIoAgxBAnRqLwECazYCrC0LDAELCyACKAIoIAIoAhA2AgQgAiACKAIsKALQKEECbTYCGANAIAIoAhhBAU4EQCACKAIsIAIoAiQgAigCGBB5IAIgAigCGEEBazYCGAwBCwsgAiACKAIcNgIMA0AgAiACKAIsKALgFjYCGCACKAIsQdwWaiEBIAIoAiwiAygC0CghACADIABBAWs2AtAoIAIoAiwgAEECdCABaigCADYC4BYgAigCLCACKAIkQQEQeSACIAIoAiwoAuAWNgIUIAIoAhghASACKAIsQdwWaiEDIAIoAiwiBCgC1ChBAWshACAEIAA2AtQoIABBAnQgA2ogATYCACACKAIUIQEgAigCLEHcFmohAyACKAIsIgQoAtQoQQFrIQAgBCAANgLUKCAA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AQsgAigCCEEANgIAIAIoAghCADcDECACKAIIQgA3AwggAigCCEIANwMgIAIoAghCADcDGCACKAIIQQA2AiggAigCCEEAOgAsIAIoAgggAikDECACKAIMEI8BQQFxRQRAIAIoAggQJSACQQA2AhwMAQsgAiACKAIINgIcCyACKAIcIQEgAkEgaiQAIAEL1gIBAX8jAEEgayIDJAAgAyAANgIYIAMgATYCFCADIAI2AhAgAyADQQxqQgQQKTYCCAJAIAMoAghFBEAgA0F/NgIcDAELA0AgAygCFARAIAMoAhQoAgQgAygCEHFBgAZxBEAgAygCCEIAECwaIAMoAgggAygCFC8BCBAfIAMoAgggAygCFC8BChAfAn8jAEEQayIAIAMoAgg2AgwgACgCDC0AAEEBcUULBEAgAygCGEEIakEUQQAQFCADKAIIEBYgA0F/NgIcDAQLIAMoAhggA0EMakIEEDZBAEgEQCADKAIIEBYgA0F/NgIcDAQLIAMoAhQvAQoEQCADKAIYIAMoAhQoAgwgAygCFC8BCq0QNkEASARAIAMoAggQFiADQX82AhwMBQsLCyADIAMoAhQoAgA2AhQMAQsLIAMoAggQFiADQQA2AhwLIAMoAhwhACADQSBqJAAgAAtoAQF/IwBBEGsiAiAANgIMIAIgATYCCCACQQA7AQYDQCACKAIMBEAgAigCDCgCBCACKAIIcUGABnEEQCACIAIoAgwvAQogAi8BBkEEamo7AQYLIAIgAigCDCgCADYCDAwBCwsgAi8BBgvwAQEBfyMAQRBrIgEkACABIAA2AgwgASABKAIMNgIIIAFBADYCBANAIAEoAgwEQAJAAkAgASgCDC8BCEH1xgFGDQAgASgCDC8BCEH14AFGDQAgASgCDC8BCEGBsgJGDQAgASgCDC8BCEEBRw0BCyABIAEoAgwoAgA2AgAgASgCCCABKAIMRgRAIAEgASgCADYCCAsgASgCDEEANgIAIAEoAgwQIyABKAIEBEAgASgCBCABKAIANgIACyABIAEoAgA2AgwMAgsgASABKAIMNgIEIAEgASgCDCgCADYCDAwBCwsgASgCCCEAIAFBEGokACAAC7IEAQF/IwBBQGoiBSQAIAUgADYCOCAFIAE7ATYgBSACNgIwIAUgAzYCLCAFIAQ2AiggBSAFKAI4IAUvATatECkiADYC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IAEoAhBB//8DRgRAIAEgASgCDDYCEAsgASgCCEH//wNGBEAgASABKAIENgIICwJAIAEoApQBQQRxRQ0AIAEoAgggASgCBEYEQCABKAIQIAEoAgxGDQELIAEoApABQRVBABAUIAEtABdBAXEEQCABKAKkARAWCyABQQA2AqwBDAELAkAgASgCEEUEQCABKAIIRQ0BCyABKAKQAUEBQQAQFCABLQAXQQFxBEAgASgCpAEQFgsgAUEANgKsAQwBCyABIAEoAqQBEDE3AyggASABKAKkARAxNwMgIAEpAyggASkDIFIEQCABKAKQAUEBQQAQFCABLQAXQQFxBEAgASgCpAEQFgsgAUEANgKsAQwBCyABIAEoAqQBEDE3AzAgASABKAKkARAxNwOAAQJ/IwBBEGsiBSABKAKkATYCDCAFKAIMLQAAQQFxRQsEQCABKAKQAUEUQQAQFCABLQAXQQFxBEAgASgCpAEQFgsgAUEANgKsAQwBCyABLQAXQQFxBEAgASgCpAEQFgsCQCABKQOAAUL///////////8AWARAIAEpA4ABIAEpA4ABIAEpAzB8WA0BCyABKAKQAUEEQRYQFCABQQA2AqwBDAELIAEpA4ABIAEpAzB8IAEpA5gBIAEpAzh8VgRAIAEoApABQRVBABAUIAFBADYCrAEMAQsCQCABKAKUAUEEcUUNACABKQOAASABKQMwfCABKQOYASABKQM4fFENACABKAKQAUEVQQAQFCABQQA2AqwBDAELIAEpAyggASkDMEIugFYEQCABKAKQAUEVQQAQFCABQQA2AqwBDAELIAEgASkDKCABKAKQARCQASIFNgKMASAFRQRAIAFBADYCrAEMAQsgASgCjAFBAToALCABKAKMASABKQMwNwMYIAEoAowBIAEpA4ABNwMgIAEgASgCjAE2AqwBCyABKAKsASEFIAFBsAFqJAAgACAFNgJQDAELIAAoAmQgACkDMBAsGiAAKAJkIQUgACkDWCEJIAAoAmgoAhQhBiAAKAJUIQcjAEHQAGsiASQAIAEgBTYCSCABIAk3A0AgASAGNgI8IAEgBzYCOAJAIAEoAkgQMEIWVARAIAEoAjhBFUEAEBQgAUEANgJMDAELIwBBEGsiBSABKAJINgIMIAECfiAFKAIMLQAAQQFxBEAgBSgCDCkDEAwBC0IACzcDCCABKAJI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ECADQcgAEBgiADYCDAJAIABFBEAgAygCEEEBQbSbASgCABAUIANBADYCHAwBCyADKAIMIAMoAhA2AgAgAygCDCADLQAbQQFxOgAEIAMoAgwgAygCFDYCCAJAIAMoAgwoAghBAU4EQCADKAIMKAIIQQlMDQELIAMoAgxBCTYCCAsgAygCDEEAOgAMIAMoAgxBADYCMCADKAIMQQA2AjQgAygCDEEANgI4IAMgAygCDDYCHAsgAygCHCEAIANBIGokACAACzgBAX8jAEEQayIBIAA2AgwgASgCDEEANgIAIAEoAgxBADYCBCABKAIMQQA2AgggASgCDEEAOgAMC+MIAQF/IwBBQGoiAiAANgI4IAIgATYCNCACIAIoAjgoAnw2AjAgAiACKAI4KAI4IAIoAjgoAmxqNgIsIAIgAigCOCgCeDYCICACIAIoAjgoApABNgIcIAICfyACKAI4KAJsIAIoAjgoAixBhgJrSwRAIAIoAjgoAmwgAigCOCgCLEGGAmtrDAELQQALNgIYIAIgAigCOCgCQDYCFCACIAIoAjgoAjQ2AhAgAiACKAI4KAI4IAIoAjgoAmxqQYICajYCDCACIAIoAiwgAigCIEEBa2otAAA6AAsgAiACKAIsIAIoAiBqLQAAOgAKIAIoAjgoAnggAigCOCgCjAFPBEAgAiACKAIwQQJ2NgIwCyACKAIcIAIoAjgoAnRLBEAgAiACKAI4KAJ0NgIcCwNAAkAgAiACKAI4KAI4IAIoAjRqNgIoAkAgAigCKCACKAIgai0AACACLQAKRw0AIAIoAiggAigCIEEBa2otAAAgAi0AC0cNACACKAIoLQAAIAIoAiwtAABHDQAgAiACKAIoIgBBAWo2AiggAC0AASACKAIsLQABRwRADAELIAIgAigCLEECajYCLCACIAIoAihBAWo2AigDQCACIAIoAiwiAEEBajYCLCAALQABIQEgAiACKAIoIgBBAWo2AigCf0EAIAAtAAEgAUcNABogAiACKAIsIgBBAWo2AiwgAC0AASEBIAIgAigCKCIAQQFqNgIoQQAgAC0AASABRw0AGiACIAIoAiwiAEEBajYCLCAALQABIQEgAiACKAIoIgBBAWo2AihBACAALQABIAFHDQAaIAIgAigCLCIAQQFqNgIsIAAtAAEhASACIAIoAigiAEEBajYCKEEAIAAtAAEgAUcNABogAiACKAIsIgBBAWo2AiwgAC0AASEBIAIgAigCKCIAQQFqNgIoQQAgAC0AASABRw0AGiACIAIoAiwiAEEBajYCLCAALQABIQEgAiACKAIoIgBBAWo2AihBACAALQABIAFHDQAaIAIgAigCLCIAQQFqNgIsIAAtAAEhASACIAIoAigiAEEBajYCKEEAIAAtAAEgAUcNABogAiACKAIsIgBBAWo2AiwgAC0AASEBIAIgAigCKCIAQQFqNgIoQQAgAC0AASABRw0AGiACKAIsIAIoAgxJC0EBcQ0ACyACQYICIAIoAgwgAigCLGtrNgIkIAIgAigCDEGCAms2AiwgAigCJCACKAIgSgRAIAIoAjggAigCNDYCcCACIAIoAiQ2AiAgAigCJCACKAIcTg0CIAIgAigCLCACKAIgQQFrai0AADoACyACIAIoAiwgAigCIGotAAA6AAoLCyACIAIoAhQgAigCNCACKAIQcUEBdGovAQAiATYCNEEAIQAgASACKAIYSwR/IAIgAigCMEEBayIANgIwIABBAEcFQQALQQFxDQELCwJAIAIoAiAgAigCOCgCdE0EQCACIAIoAiA2AjwMAQsgAiACKAI4KAJ0NgI8CyACKAI8C5IQAQF/IwBBMGsiAiQAIAIgADYCKCACIAE2AiQgAgJ/IAIoAigoAiwgAigCKCgCDEEFa0kEQCACKAIoKAIsDAELIAIoAigoAgxBBWsLNgIgIAJBADYCECACIAIoAigoAgAoAgQ2AgwDQAJAIAJB//8DNgIcIAIgAigCKCgCvC1BKmpBA3U2AhQgAigCKCgCACgCECACKAIUSQ0AIAIgAigCKCgCACgCECACKAIUazYCFCACIAIoAigoAmwgAigCKCgCXGs2AhggAigCHCACKAIYIAIoAigoAgAoAgRqSwRAIAIgAigCGCACKAIoKAIAKAIEajYCHAsgAigCHCACKAIUSwRAIAIgAigCFDYCHAsCQCACKAIcIAIoAiBPDQACQCACKAIcRQRAIAIoAiRBBEcNAQsgAigCJEUNACACKAIcIAIoAhggAigCKCgCACgCBGpGDQELDAELQQAhACACIAIoAiRBBEYEfyACKAIcIAIoAhggAigCKCgCACgCBGpGBUEAC0EBcTYCECACKAIoQQBBACACKAIQEF0gAigCKCgCCCACKAIoKAIUQQRraiACKAIcOgAAIAIoAigoAgggAigCKCgCFEEDa2ogAigCHEEIdjoAACACKAIoKAIIIAIoAigoAhRBAmtqIAIoAhxBf3M6AAAgAigCKCgCCCACKAIoKAIUQQFraiACKAIcQX9zQQh2OgAAIAIoAigoAgAQHCACKAIYBEAgAigCGCACKAIcSwRAIAIgAigCHDYCGAsgAigCKCgCACgCDCACKAIoKAI4IAIoAigoAlxqIAIoAhgQGRogAigCKCgCACIAIAIoAhggACgCDGo2AgwgAigCKCgCACIAIAAoAhAgAigCGGs2AhAgAigCKCgCACIAIAIoAhggACgCFGo2AhQgAigCKCIAIAIoAhggACgCXGo2AlwgAiACKAIcIAIoAhhrNgIcCyACKAIcBEAgAigCKCgCACACKAIoKAIAKAIMIAIoAhwQdhogAigCKCgCACIAIAIoAhwgACgCDGo2AgwgAigCKCgCACIAIAAoAhAgAigCHGs2AhAgAigCKCgCACIAIAIoAhwgACgCFGo2AhQLIAIoAhBFDQELCyACIAIoAgwgAigCKCgCACgCBGs2AgwgAigCDARAAkAgAigCDCACKAIoKAIsTwRAIAIoAihBAjYCsC0gAigCKCgCOCACKAIoKAIAKAIAIAIoAigoAixrIAIoAigoAiwQGRogAigCKCACKAIoKAIsNgJsDAELIAIoAgwgAigCKCgCPCACKAIoKAJsa08EQCACKAIoIgAgACgCbCACKAIoKAIsazYCbCACKAIoKAI4IAIoAigoAjggAigCKCgCLGogAigCKCgCbBAZGiACKAIoKAKwLUECSQRAIAIoAigiACAAKAKwLUEBajYCsC0LCyACKAIoKAI4IAIoAigoAmxqIAIoAigoAgAoAgAgAigCDGsgAigCDBAZGiACKAIoIgAgAigCDCAAKAJsajYCbAsgAigCKCACKAIoKAJsNgJcIAIoAigiAQJ/IAIoAgwgAigCKCgCLCACKAIoKAK0LWtLBEAgAigCKCgCLCACKAIoKAK0LWsMAQsgAigCDAsgASgCtC1qNgK0LQsgAigCKCgCwC0gAigCKCgCbEkEQCACKAIoIAIoAigoAmw2AsAtCwJAIAIoAhAEQCACQQM2AiwMAQsCQCACKAIkRQ0AIAIoAiRBBEYNACACKAIoKAIAKAIEDQAgAigCKCgCbCACKAIoKAJcRw0AIAJBATYCLAwBCyACIAIoAigoAjwgAigCKCgCbGtBAWs2AhQCQCACKAIoKAIAKAIEIAIoAhRNDQAgAigCKCgCXCACKAIoKAIsSA0AIAIoAigiACAAKAJcIAIoAigoAixrNgJcIAIoAigiACAAKAJsIAIoAigoAixrNgJsIAIoAigoAjggAigCKCgCOCACKAIoKAIsaiACKAIoKAJsEBkaIAIoAigoArAtQQJJBEAgAigCKCIAIAAoArAtQQFqNgKwLQsgAiACKAIoKAIsIAIoAhRqNgIUCyACKAIUIAIoAigoAgAoAgRLBEAgAiACKAIoKAIAKAIENgIUCyACKAIUBEAgAigCKCgCACACKAIoKAI4IAIoAigoAmxqIAIoAhQQdhogAigCKCIAIAIoAhQgACgCbGo2AmwLIAIoAigoAsAtIAIoAigoAmxJBEAgAigCKCACKAIoKAJsNgLALQsgAiACKAIoKAK8LUEqakEDdTYCFCACIAIoAigoAgwgAigCFGtB//8DSwR/Qf//AwUgAigCKCgCDCACKAIUaws2AhQgAgJ/IAIoAhQgAigCKCgCLEsEQCACKAIoKAIsDAELIAIoAhQLNgIgIAIgAigCKCgCbCACKAIoKAJcazYCGAJAIAIoAhggAigCIEkEQCACKAIYRQRAIAIoAiRBBEcNAgsgAigCJEUNASACKAIoKAIAKAIEDQEgAigCGCACKAIUSw0BCyACAn8gAigCGCACKAIUSwRAIAIoAhQMAQsgAigCGAs2AhwgAgJ/QQAgAigCJEEERw0AGkEAIAIoAigoAgAoAgQNABogAigCHCACKAIYRgtBAXE2AhAgAigCKCACKAIoKAI4IAIoAigoAlxqIAIoAhwgAigCEBBdIAIoAigiACACKAIcIAAoAlxqNgJcIAIoAigoAgAQHAsgAkECQQAgAigCEBs2AiwLIAIoAiwhACACQTBqJAAgAAuyAgEBfyMAQRBrIgEkACABIAA2AggCQCABKAIIEHgEQCABQX42AgwMAQsgASABKAIIKAIcKAIENgIEIAEoAggoAhwoAggEQCABKAIIKAIoIAEoAggoAhwoAgggASgCCCgCJBEEAAsgASgCCCgCHCgCRARAIAEoAggoAiggASgCCCgCHCgCRCABKAIIKAIkEQQACyABKAIIKAIc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DQAgAiEAIANBAWsiAw0ACwsgBCgCFBogASACNgKgAQwCCyMAQRBrIgAgASgCqAEoAgQ2AgwgAUEAIAAoAgxrQQJ0QajZAGooAgA2AqABDAELIAFBADYCoAELCwJAIAEoAqABRQRAIAEgASgCpAE2AqwBDAELIAEgASgCoAEQLgJ/IAEoAqQBBEAgASgCpAEQLkECagwBC0EAC2pBAWoQGCIANgIcIABFBEAgAUG4EygCADYCrAEMAQsgASgCHCEAAn8gASgCpAEEQCABKAKkAQwBC0H6EgshA0HfEkH6EiABKAKkARshAiABIAEoAqABNgIIIAEgAjYCBCABIAM2AgAgAEG+CiABEG8gASgCqAEgASgCHDYCCCABIAEoAhw2AqwBCyABKAKsASEAIAFBsAFqJAAgAAsIAEEBQTgQfwszAQF/IAAoAhQiAyABIAIgACgCECADayIBIAEgAksbIgEQGRogACAAKAIUIAFqNgIUIAILjwUCBn4BfyABIAEoAgBBD2pBcHEiAUEQajYCACAAAnwgASkDACEDIAEpAwghBiMAQSBrIggkAAJAIAZC////////////AIMiBEKAgICAgIDAgDx9IARCgICAgICAwP/DAH1UBEAgBkIEhiADQjyIhCEEIANC//////////8PgyIDQoGAgICAgICACFoEQCAEQoGAgICAgICAwAB8IQIMAgsgBEKAgICAgICAgEB9IQIgA0KAgICAgICAgAiFQgBSDQEgAiAEQgGDfCECDAELIANQIARCgICAgICAwP//AFQgBEKAgICAgIDA//8AURtFBEAgBkIEhiADQjyIhEL/////////A4NCgICAgICAgPz/AIQhAgwBC0KAgICAgICA+P8AIQIgBEL///////+//8MAVg0AQgAhAiAEQjCIpyIAQZH3AEkNACADIQIgBkL///////8/g0KAgICAgIDAAIQiBSEHAkAgAEGB9wBrIgFBwABxBEAgAiABQUBqrYYhB0IAIQIMAQsgAUUNACAHIAGtIgSGIAJBwAAgAWutiIQhByACIASGIQILIAggAjcDECAIIAc3AxgCQEGB+AAgAGsiAEHAAHEEQCAFIABBQGqtiCEDQgAhBQwBCyAARQ0AIAVBwAAgAGuthiADIACtIgKIhCEDIAUgAoghBQsgCCADNwMAIAggBTcDCCAIKQMI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ADYCtC0gASgCFEEERgRAIAEoAhgCfyABKAIYKAJcQQBOBEAgASgCGCgCOCABKAIYKAJcagwBC0EACyABKAIYKAJsIAEoAhgoAlxrQQEQKCABKAIYIAEoAhgoAmw2AlwgASgCGCgCABAcIAEoAhgoAgAoAhBFBEAgAUECNgIcDAILIAFBAzYCHAwBCyABKAIYKAKgLQRAIAEoAhgCfyABKAIYKAJcQQBOBEAgASgCGCgCOCABKAIYKAJcagwBC0EACyABKAIYKAJsIAEoAhgoAlxrQQAQKCABKAIYIAEoAhgoAmw2AlwgASgCGCgCABAcIAEoAhgoAgAoAhBFBEAgAUEANgIcDAILCyABQQE2AhwLIAEoAhwhAiABQSBqJAAgAgwBCwJ/IAAoAiwoAogBQQNGBEAgACgCLCECIAAoAjQhAyMAQTBrIgEkACABIAI2AiggASADNgIkAkADQAJAIAEoAigoAnRBggJNBEAgASgCKBBcAkAgASgCKCgCdEGCAksNACABKAIkDQAgAUEANgIsDAQLIAEoAigoAnRFDQELIAEoAihBADYCYAJAIAEoAigoAnRBA0kNACABKAIoKAJsRQ0AIAEgASgCKCgCOCABKAIoKAJsakEBazYCGCABIAEoAhgtAAA2AhwgASgCHCECIAEgASgCGCIDQQFqNgIYAkAgAy0AASACRw0AIAEoAhwhAiABIAEoAhgiA0EBajYCGCADLQABIAJHDQAgASgCHCECIAEgASgCGCIDQQFqNgIYIAMtAAEgAkcNACABIAEoAigoAjggASgCKCgCbGpBggJqNgIUA0AgASgCHCECIAEgASgCGCIDQQFqNgIYAn9BACADLQABIAJHDQAaIAEoAhwhAiABIAEoAhgiA0EBajYCGEEAIAMtAAEgAkcNABogASgCHCECIAEgASgCGCIDQQFqNgIYQQAgAy0AASACRw0AGiABKAIcIQIgASABKAIYIgNBAWo2AhhBACADLQABIAJHDQAaIAEoAhwhAiABIAEoAhgiA0EBajYCGEEAIAMtAAEgAkcNABogASgCHCECIAEgASgCGCIDQQFqNgIYQQAgAy0AASACRw0AGiABKAIcIQIgASABKAIYIgNBAWo2AhhBACADLQABIAJHDQAaIAEoAhwhAiABIAEoAhgiA0EBajYCGEEAIAMtAAEgAkcNABog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AS8BEiECIAEgASgCSCIDQQFqNgJIIAMgAjoAAAwCCyABKAIMQRBxBEAgASABLwESNgIIIAEgASgCDEEPcTYCDCABKAIMBEAgASgCKCABKAIMSQRAIAEgASgCUCICQQFqNgJQIAEgASgCLCACLQAAIAEoAih0ajYCLCABIAEoAihBCGo2AigLIAEgASgCCCABKAIsQQEgASgCDHRBAWtxajYCCCABIAEoAiwgASgCDHY2AiwgASABKAIoIAEoAgxrNgIoCyABKAIoQQ9JBEAgASABKAJQIgJBAWo2AlAgASABKAIsIAItAAAgASgCKHRqNgIsIAEgASgCKEEIajYCKCABIAEoAlAiAkEBajYCUCABIAEoAiwgAi0AACABKAIodGo2AiwgASABKAIoQQhqNgIoCyABIAEoAiAgASgCLCABKAIYcUECdGooAQA2ARACQANAIAEgAS0AETYCDCABIAEoAiwgASgCDHY2AiwgASABKAIoIAEoAgxrNgIoIAEgAS0AEDYCDCABKAIMQRBxBEAgASABLwESNgIEIAEgASgCDEEPcTYCDCABKAIoIAEoAgxJBEAgASABKAJQIgJBAWo2AlAgASABKAIsIAItAAAgASgCKHRqNgIsIAEgASgCKEEIajYCKCABKAIoIAEoAgxJBEAgASABKAJQIgJBAWo2AlAgASABKAIsIAItAAAgASgCKHRqNgIsIAEgASgCKEEIajYCKAsLIAEgASgCBCABKAIsQQEgASgCDHRBAWtxajYCBCABIAEoAiwgASgCDHY2AiwgASABKAIoIAEoAgxrNgIoIAEgASgCSCABKAJEazYCDAJAIAEoAgQgASgCDEsEQCABIAEoAgQgASgCDGs2AgwgASgCDCABKAI4SwRAIAEoAlQoAsQ3BEAgASgCXEHdDDYCGCABKAJUQdH+ADYCBAwKCwsgASABKAIwNgIAAkAgASgCNEUEQCABIAEoAgAgASgCPCABKAIMa2o2AgAgASgCDCABKAIISQRAIAEgASgCCCABKAIMazYCCANAIAEgASgCACICQQFqNgIAIAItAAAhAiABIAEoAkgiA0EBajYCSCADIAI6AAAgASABKAIMQQFrIgI2AgwgAg0ACyABIAEoAkggASgCBGs2AgALDAELAkAgASgCNCABKAIMSQRAIAEgASgCACABKAI8IAEoAjRqIAEoAgxrajYCACABIAEoAgwgASgCNGs2AgwgASgCDCABKAIISQRAIAEgASgCCCABKAIMazYCCANAIAEgASgCACICQQFqNgIAIAItAAAhAiABIAEoAkgiA0EBajYCSCADIAI6AAAgASABKAIMQQFrIgI2AgwgAg0ACyABIAEoAjA2AgAgASgCNCABKAIISQRAIAEgASgCNDYCDCABIAEoAgggASgCDGs2AggDQCABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAAIAEgASgCDEEBayICNgIMIAINAAsgASABKAJIIAEoAgRrNgIACwsMAQsgASABKAIAIAEoAjQgASgCDGtqNgIAIAEoAgwgASgCCEkEQCABIAEoAgggASgCDGs2AggDQCABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAAIAEgASgCDEEBayICNgIMIAINAAsgASABKAJIIAEoAgRrNgIACwsLA0AgASgCCEECSwRAIAEgASgCACICQQFqNgIAIAItAAAhAiABIAEoAkgiA0EBajYCSCADIAI6AAAgASABKAIAIgJBAWo2AgAgAi0AACECIAEgASgCSCIDQQFqNgJIIAMgAjoAACABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAAIAEgASgCCEEDazYCCAwBCwsMAQsgASABKAJIIAEoAgRrNgIAA0AgASABKAIAIgJBAWo2AgAgAi0AACECIAEgASgCSCIDQQFqNgJIIAMgAjoAACABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAAIAEgASgCACICQQFqNgIAIAItAAAhAiABIAEoAkgiA0EBajYCSCADIAI6AAAgASABKAIIQQNrNgIIIAEoAghBAksNAAsLIAEoAggEQCABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAAIAEoAghBAUsEQCABIAEoAgAiAkEBajYCACACLQAAIQIgASABKAJIIgNBAWo2AkggAyACOgAACwsMAgsgASgCDEHAAHFFBEAgASABKAIgIAEvARIgASgCLEEBIAEoAgx0QQFrcWpBAnRqKAEANgEQDAELCyAB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AG5hbgAvZGV2L3VyYW5kb20AaW52YWxpZCBjb2RlIC0tIG1pc3NpbmcgZW5kLW9mLWJsb2NrAGluY29ycmVjdCBoZWFkZXIgY2hlY2sAaW5jb3JyZWN0IGxlbmd0aCBjaGVjawBpbmNvcnJlY3QgZGF0YSBjaGVjawBpbnZhbGlkIGRpc3RhbmNlIHRvbyBmYXIgYmFjawBoZWFkZXIgY3JjIG1pc21hdGNoAGluZgBpbnZhbGlkIHdpbmRvdyBzaXplAFJlYWQtb25seSBhcmNoaXZlAE5vdCBhIHppcCBhcmNoaXZlAFJlc291cmNlIHN0aWxsIGluIHVzZQBNYWxsb2MgZmFpbHVyZQBpbnZhbGlkIGJsb2NrIHR5cGUARmFpbHVyZSB0byBjcmVhdGUgdGVtcG9yYXJ5IGZpbGUAQ2FuJ3Qgb3BlbiBmaWxlAE5vIHN1Y2ggZmlsZQBQcmVtYXR1cmUgZW5kIG9mIGZpbGUAQ2FuJ3QgcmVtb3ZlIGZpbGUAaW52YWxpZCBsaXRlcmFsL2xlbmd0aCBjb2RlAGludmFsaWQgZGlzdGFuY2UgY29kZQB1bmtub3duIGNvbXByZXNzaW9uIG1ldGhvZABzdHJlYW0gZW5kAENvbXByZXNzZWQgZGF0YSBpbnZhbGlkAE11bHRpLWRpc2sgemlwIGFyY2hpdmVzIG5vdCBzdXBwb3J0ZWQAT3BlcmF0aW9uIG5vdCBzdXBwb3J0ZWQARW5jcnlwdGlvbiBtZXRob2Qgbm90IHN1cHBvcnRlZABDb21wcmVzc2lvbiBtZXRob2Qgbm90IHN1cHBvcnRlZABFbnRyeSBoYXMgYmVlbiBkZWxldGVkAENvbnRhaW5pbmcgemlwIGFyY2hpdmUgd2FzIGNsb3NlZABDbG9zaW5nIHppcCBhcmNoaXZlIGZhaWxlZABSZW5hbWluZyB0ZW1wb3JhcnkgZmlsZSBmYWlsZWQARW50cnkgaGFzIGJlZW4gY2hhbmdlZABObyBwYXNzd29yZCBwcm92aWRlZABXcm9uZyBwYXNzd29yZCBwcm92aWRlZABVbmtub3duIGVycm9yICVkAHJiAHIrYgByd2EAJXMuWFhYWFhYAE5BTgBJTkYAQUUAMS4yLjExAC9wcm9jL3NlbGYvZmQvAC4AKG51bGwpADogAFBLBgcAUEsGBgBQSwUGAFBLAwQAUEsBAgAAAAAAAFIFAADZBwAArAgAAJEIAACCBQAApAUAAI0FAADFBQAAbwgAADQHAADpBAAAJAcAAAMHAACvBQAA4QYAAMsIAAA3CAAAQQcAAFoEAAC5BgAAcwUAAEEEAABXBwAAWAgAABcIAACnBgAA4ggAAPcIAAD/BwAAywYAAGgFAADBBwAAIABBmBQLEQEAAAABAAAAAQAAAAEAAAABAEG8FAsJAQAAAAEAAAACAEHoFAsBAQBBiBULAQEAQaIVC6REOiY7JmUmZiZjJmAmIiDYJcsl2SVCJkAmaiZrJjwmuiXEJZUhPCC2AKcArCWoIZEhkyGSIZAhHyKUIbIlvCUgACEAIgAjACQAJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AD8AQABBAEIAQwBEAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0AXgBfAGAAYQBiAGMAZABlAGYAZwBoAGkAagBrAGwAbQBuAG8AcABxAHIAcwB0AHUAdgB3AHgAeQB6AHsAfAB9AH4AAiPHAPwA6QDiAOQA4ADlAOcA6gDrAOgA7wDuAOwAxADFAMkA5gDGAPQA9gDyAPsA+QD/ANYA3ACiAKMApQCnIJIB4QDtAPMA+gDxANEAqgC6AL8AECOsAL0AvAChAKsAuwCRJZIlkyUCJSQlYSViJVYlVSVjJVElVyVdJVwlWyUQJRQlNCUsJRwlACU8JV4lXyVaJVQlaSVmJWAlUCVsJWclaCVkJWUlWSVYJVIlUyVrJWolGCUMJYglhCWMJZAlgCWxA98AkwPAA6MDwwO1AMQDpgOYA6kDtAMeIsYDtQMpImEisQBlImQiICMhI/cASCKwABkitwAaIn8gsgCgJaAAAAAAAJYwB3csYQ7uulEJmRnEbQeP9GpwNaVj6aOVZJ4yiNsOpLjceR7p1eCI2dKXK0y2Cb18sX4HLbjnkR2/kGQQtx3yILBqSHG5895BvoR91Noa6+TdbVG11PTHhdODVphsE8Coa2R6+WL97Mllik9cARTZbAZjYz0P+vUNCI3IIG47XhBpTORBYNVycWei0eQDPEfUBEv9hQ3Sa7UKpfqotTVsmLJC1sm720D5vKzjbNgydVzfRc8N1txZPdGrrDDZJjoA3lGAUdfIFmHQv7X0tCEjxLNWmZW6zw+lvbieuAIoCIgFX7LZDMYk6Quxh3xvLxFMaFirHWHBPS1mtpBB3HYGcdsBvCDSmCoQ1e+JhbFxH7W2BqXkv58z1LjooskHeDT5AA+OqAmWGJgO4bsNan8tPW0Il2xkkQFcY+b0UWtrYmFsHNgwZYVOAGLy7ZUGbHulARvB9AiCV8QP9cbZsGVQ6bcS6ri+i3yIufzfHd1iSS3aFfN804xlTNT7WGGyTc5RtTp0ALyj4jC71EGl30rXldg9bcTRpPv01tNq6WlD/NluNEaIZ63QuGDacy0EROUdAzNfTAqqyXwN3TxxBVCqQQInEBALvoYgDMkltWhXs4VvIAnUZrmf5GHODvneXpjJ2SkimNCwtKjXxxc9s1mBDbQuO1y9t61susAgg7jttrO/mgzitgOa0rF0OUfV6q930p0VJtsEgxbccxILY+OEO2SUPmptDahaanoLzw7knf8JkyeuAAqxngd9RJMP8NKjCIdo8gEe/sIGaV1XYvfLZ2WAcTZsGecGa252G9T+4CvTiVp62hDMSt1nb9+5+fnvvo5DvrcX1Y6wYOij1tZ+k9GhxMLYOFLy30/xZ7vRZ1e8pt0GtT9LNrJI2isN2EwbCq/2SgM2YHoEQcPvYN9V32eo745uMXm+aUaMs2HLGoNmvKDSbyU24mhSlXcMzANHC7u5FgIiLyYFVb47usUoC72yklq0KwRqs1yn/9fCMc/QtYue2Swdrt5bsMJkmybyY+yco2p1CpNtAqkGCZw/Ng7rhWcHchNXAAWCSr+VFHq44q4rsXs4G7YMm47Skg2+1eW379x8Id/bC9TS04ZC4tTx+LPdaG6D2h/NFr6BWya59uF3sG93R7cY5loIiHBqD//KOwZmXAsBEf+eZY9prmL40/9rYUXPbBZ44gqg7tIN11SDBE7CswM5YSZnp/cWYNBNR2lJ23duPkpq0a7cWtbZZgvfQPA72DdTrrypxZ673n/Pskfp/7UwHPK9vYrCusowk7NTpqO0JAU20LqTBtfNKVfeVL9n2SMuemazuEphxAIbaF2UK28qN74LtKGODMMb3wVaje8CLQAAAABBMRsZgmI2MsNTLSsExWxkRfR3fYanWlbHlkFPCIrZyEm7wtGK6O/6y9n04wxPtaxNfq61ji2Dns8cmIdREsJKECPZU9Nw9HiSQe9hVdeuLhTmtTfXtZgcloSDBVmYG4IYqQCb2/otsJrLNqldXXfmHGxs/98/QdSeDlrNoiSEleMVn4wgRrKnYXepvqbh6PHn0PPoJIPew2Wyxdqqrl1d659GRCjMa29p/XB2rmsxOe9aKiAsCQcLbTgcEvM2Rt+yB13GcVRw7TBla/T38yq7tsIxonWRHIk0oAeQ+7yfF7qNhA553qklOO+yPP9583O+SOhqfRvFQTwq3lgFT3nwRH5i6YctT8LGHFTbAYoVlEC7Do2D6COmwtk4vw3FoDhM9Lshj6eWCs6WjRMJAMxcSDHXRYti+m7KU+F3VF27uhVsoKPWP42Ilw6WkVCY194RqczH0vrh7JPL+vVc12JyHeZ5a961VECfhE9ZWBIOFhkjFQ/acDgkm0EjPadr/WXmWuZ8JQnLV2Q40E6jrpEB4p+KGCHMpzNg/bwqr+Ekre7QP7QtgxKfbLIJhqskSMnqFVPQKUZ++2h3ZeL2eT8vt0gkNnQbCR01KhIE8rxTS7ONSFJw3mV5Me9+YP7z5ue/wv3+fJHQ1T2gy8z6NoqDuweRmnhUvLE5ZaeoS5iDOwqpmCLJ+rUJiMuuEE9d718ObPRGzT/ZbYwOwnRDElrzAiNB6sFwbMGAQXfYR9c2lwbmLY7FtQClhIQbvBqKQXFbu1pomOh3Q9nZbFoeTy0VX342DJwtGyfdHAA+EgCYuVMxg6CQYq6L0VO1khbF9N1X9O/ElKfC79WW2fbpvAeuqI0ct2veMZwq7yqF7XlryqxIcNNvG134LipG4eE23magB8V/Y1ToVCJl803l87ICpMKpG2eRhDAmoJ8puK7F5Pmf3v06zPPWe/3oz7xrqYD9WrKZPgmfsn84hKuwJBws8RUHNTJGKh5zdzEHtOFwSPXQa1E2g0Z6d7JdY07X+ssP5uHSzLXM+Y2E1+BKEpavCyONtshwoJ2JQbuERl0jAwdsOBrEPxUxhQ4OKEKYT2cDqVR+wPp5VYHLYkwfxTiBXvQjmJ2nDrPclhWqGwBU5VoxT/yZYmLX2FN5zhdP4UlWfvpQlS3Xe9QczGITio0tUruWNJHoux/Q2aAG7PN+Xq3CZUdukUhsL6BTdeg2EjqpBwkjalQkCCtlPxHkeaeWpUi8j2YbkaQnKoq94LzL8qGN0Oti3v3AI+/m2b3hvBT80KcNP4OKJn6ykT+5JNBw+BXLaTtG5kJ6d/1btWtl3PRafsU3CVPudjhI97GuCbjwnxKhM8w/inL9JJMAAAAAN2rCAW7UhANZvkYC3KgJB+vCywayfI0EhRZPBbhREw6PO9EP1oWXDeHvVQxk+RoJU5PYCAotngo9R1wLcKMmHEfJ5B0ed6IfKR1gHqwLLxubYe0awt+rGPW1aRnI8jUS/5j3E6YmsRGRTHMQFFo8FSMw/hR6jrgWTeR6F+BGTTjXLI85jpLJO7n4Czo87kQ/C4SGPlI6wDxlUAI9WBdeNm99nDc2w9o1AakYNIS/VzGz1ZUw6mvTMt0BETOQ5Wskp4+pJf4x7yfJWy0mTE1iI3snoCIimeYgFfMkISi0eCof3rorRmD8KXEKPij0HHEtw3azLJrI9S6tojcvwI2acPfnWHGuWR5zmTPcchwlk3crT1F2cvEXdEWb1XV43Il+T7ZLfxYIDX0hYs98pHSAeZMeQnjKoAR6/crGe7AuvGyHRH5t3vo4b+mQ+m5shrVrW+x3agJSMWg1OPNpCH+vYj8VbWNmqythUcHpYNTXpmXjvWRkugMiZo1p4Gcgy9dIF6EVSU4fU0t5dZFK/GPeT8sJHE6St1pMpd2YTZiaxEav8AZH9k5ARcEkgkREMs1Bc1gPQCrmSUIdjItDUGjxVGcCM1U+vHVXCda3VozA+FO7qjpS4hR8UNV+vlHoOeJa31MgW4btZlmxh6RYNJHrXQP7KVxaRW9ebS+tX4AbNeG3cffg7s+x4tmlc+Ncszzma9n+5zJnuOUFDXrkOEom7w8g5O5WnqLsYfRg7eTiL+jTiO3pijar671caerwuBP9x9LR/J5sl/6pBlX/LBAa+ht62PtCxJ75da5c+EjpAPN/g8LyJj2E8BFXRvGUQQn0oyvL9fqVjffN/0/2YF142Vc3utgOifzaOeM+27z1cd6Ln7Pf0iH13eVLN9zYDGvX72ap1rbY79SBsi3VBKRi0DPOoNFqcObTXRok0hD+XsUnlJzEfiraxklAGMfMVlfC+zyVw6KC08GV6BHAqK9Ny5/Fj8rGe8nI8RELyXQHRMxDbYbNGtPAzy25As5Alq+Rd/xtkC5CK5IZKOmTnD6mlqtUZJfy6iKVxYDglPjHvJ/PrX6elhM4nKF5+p0kb7WYEwV3mUq7MZt90fOaMDWJjQdfS4xe4Q2OaYvPj+ydgIrb90KLgkkEibUjxoiIZJqDvw5YguawHoDR2tyBVMyThGOmUYU6GBeHDXLVhqDQ4qmXuiCozgRmqvlupKt8eOuuSxIprxKsb60lxq2sGIHxpy/rM6Z2VXWkQT+3pcQp+KDzQzqhqv18o52XvqLQc8S15xkGtL6nQLaJzYK3DNvNsjuxD7NiD0mxVWWLsGgi17tfSBW6BvZTuDGckbm0it68g+AcvdpeWr/tNJi+AAAAAGVnvLiLyAmq7q+1EleXYo8y8N433F9rJbk4153vKLTFik8IfWTgvW8BhwHXuL/WSt3YavIzd9/gVhBjWJ9XGVD6MKXoFJ8Q+nH4rELIwHvfrafHZ0MIcnUmb87NcH+tlRUYES37t6Q/ntAYhyfozxpCj3OirCDGsMlHegg+rzKgW8iOGLVnOwrQAIeyaThQLwxf7Jfi8FmFh5flPdGHhmW04DrdWk+Pzz8oM3eGEOTq43dYUg3Y7UBov1H4ofgr8MSfl0gqMCJaT1ee4vZvSX+TCPXHfadA1RjA/G1O0J81K7cjjcUYlp+gfyonGUf9unwgQQKSj/QQ9+hIqD1YFJtYP6gjtpAdMdP3oYlqz3YUD6jKrOEHf76EYMMG0nCgXrcXHOZZuKn0PN8VTIXnwtHggH5pDi/Le2tId8OiDw3Lx2ixcynHBGFMoLjZ9ZhvRJD/0/x+UGbuGzfaVk0nuQ4oQAW2xu+wpKOIDBwasNuBf9dnOZF40iv0H26TA/cmO2aQmoOIPy+R7ViTKVRgRLQxB/gM36hNHrrP8abs35L+ibguRmcXm1QCcCfsu0jwcd4vTMkwgPnbVedFY5ygP2v5x4PTF2g2wXIPinnLN13krlDhXED/VE4lmOj2c4iLrhbvNxb4QIIEnSc+vCQf6SFBeFWZr9fgi8qwXDM7tlntXtHlVbB+UEfVGez/bCE7YglGh9rn6TLIgo6OcNSe7Six+VGQX1bkgjoxWDqDCY+n5m4zHwjBhg1tpjq1pOFAvcGG/AUvKUkXSk71r/N2IjKWEZ6KeL4rmB3ZlyBLyfR4Lq5IwMAB/dKlZkFqHF6W93k5Kk+Xlp9d8vEj5QUZa01gftf1jtFi5+u23l9SjgnCN+m1etlGAGi8IbzQ6jHfiI9WYzBh+dYiBJ5qmr2mvQfYwQG/Nm60rVMJCBWaTnId/ynOpRGGe7d04ccPzdkQkqi+rCpGERk4I3algHVmxtgQAXpg/q7PcpvJc8oi8aRXR5YY76k5rf3MXhFFBu5NdmOJ8c6NJkTc6EH4ZFF5L/k0HpNB2rEmU7/WmuvpxvmzjKFFC2IO8BkHaUyhvlGbPNs2J4Q1mZKWUP4uLpm5VCb83uieEnFdjHcW4TTOLjapq0mKEUXmPwMggYO7dpHg4xP2XFv9WelJmD5V8SEGgmxEYT7Uqs6Lxs+pN344QX/WXSbDbrOJdnzW7srEb9YdWQqxoeHkHhTzgXmoS9dpyxOyDnerXKHCuTnGfgGA/qmc5ZkVJAs2oDZuURyOpxZmhsJx2j4s3m8sSbnTlPCBBAmV5rixe0kNox4usRtIPtJDLVlu+8P22+mmkWdRH6mwzHrODHSUYblm8QYF3gAAAAB3BzCW7g5hLJkJUboHbcQZcGr0j+ljpTWeZJWjDtuIMnncuKTg1ekel9LZiAm2TCt+sXy957gtB5C/HZEdtxBkarAg8vO5cUiEvkHeGtrUfW3d5Ov01LVRg9OFxxNsmFZka6jA/WL5eoplyewUAVxPYwZs2foPPWONCA31O24gyExpEF7VYEHkomdxcjwD5NFLBNRH0g2F/aUKtWs1taj6QrKYbNu7ydasvPlAMths40XfXHXc1g3Pq9E9WSbZMKxR3gA6yNdRgL/QYRYhtPS1VrPEI8+6lZm4vaUPKAK4nl8FiAjGDNmysQvpJC9vfIdYaEwRwWEdq7ZmLT123EGQAdtxBpjSILzv1RAqcbGFiQa2tR+fv+Sl6LjUM3gHyaIPAPk0lgmojuEOmBh/ag27CG09LZFkbJfmY1wBa2tR9BxsYWKFZTDY8mIATmwGle0bAaV7ggj0wfUPxFdlsNnGErfpUIu+uOr8uYh8Yt0d3xXaLUmM03zz+9RMZU2yYVg6tVHOo7wAdNS7MOJK36VBPdiV16TRxG3T1vT7Q2npajRu2fytZ4hG2mC40EQELXMzAx3lqgpMX90NfMlQBXE8JwJBqr4LEBDJDCCGV2i1JSBvhbO5ZtQJzmHkn17e+Q4p2cmYsNCYIsfXqLRZsz0XLrQNgbe9XDvAumyt7biDIJq/s7YDtuIMdLHSmurVRzmd0nevBNsmFXPcFoPjYwsSlGQ7hA1taj56alqo5A7PC5MJ/50KAK4nfQeesfAPk0SHCKPSHgHyaGkGwv73YlddgGVnyxlsNnFuawbn/tQbdonTK+AQ2npaZ91KzPm532+Ovu/5F7e+Q2CwjtXW1qPoodGTfjjYwsRP3/JS0btn8aa8V2c/tQbdSLI2S9gNK9qvChtMNgNK9kEEemDfYO/DqGffVTFuju9Gab55y2GzjLxmgxolb9KgUmjiNswMd5W7C0cDIgIWuVUFJi/Fuju+sr0LKCu0WpJcs2oEwtf/p7XQzzEs2Z6LW96uHZtkwrDsY/ImdWqjnAJtkwqcCQap6w42P3IHZ4UFAFcTlb9KguK4ehR7sSuuDLYbOJLSjpvl1b4NfNzvtwvb3yGG09LU8dTiQmjds/gf2oNugb4Wzfa5JltvsHfhGLdHd4gIWub/D2pwZgY7yhEBC1yPZZ7/+GKuaWFr/9MWbM9FoArieNcN0u5OBINUOQOzwqdnJmHQYBb3SWlHTT5ud9uu0WpK2dZa3EDfC2Y32DvwqbyuU967nsVHss9/MLX/6b298hzKusKKU7OTMCS0o6a60DYFzdcGk1TeVykj2We/s2Z6LsRhSrhdaBsCKm8rlLQLvjfDDI6hWgXfGy0C740AAAAAGRsxQTI2YoIrLVPDZGzFBH139EVWWqeGT0GWx8jZigjRwrtJ+u/oiuP02custU8Mta5+TZ6DLY6HmBzPSsISUVPZIxB49HDTYe9Bki6u11U3teYUHJi11wWDhJaCG5hZmwCpGLAt+tupNsua5nddXf9sbBzUQT/fzVoOnpWEJKKMnxXjp7JGIL6pd2Hx6OGm6PPQ58PegyTaxbJlXV2uqkRGn+tva8wodnD9aTkxa64gKlrvCwcJLBIcOG3fRjbzxl0Hsu1wVHH0a2Uwuyrz96IxwraJHJF1kAegNBefvPsOhI26JaneeTyy7zhz83n/auhIvkHFG31Y3io88HlPBelifkTCTy2H21QcxpQVigGNDrtApiPog7842cI4oMUNIbv0TAqWp48TjZbOXMwACUXXMUhu+mKLd+FTyrq7XVSjoGwViI0/1pGWDpfe15hQx8ypEezh+tL1+suTcmLXXGt55h1AVLXeWU+EnxYOElgPFSMZJDhw2j0jQZtl/WunfOZa5lfLCSVO0DhkAZGuoxiKn+Izp8whKrz9YK0k4a+0P9DunxKDLYYJsmzJSCSr0FMV6vt+RiniZXdoLz959jYkSLcdCRt0BBIqNUtTvPJSSI2zeWXecGB+7zHn5vP+/v3Cv9XQkXzMy6A9g4o2+pqRB7uxvFR4qKdlOTuDmEsimKkKCbX6yRCuy4hf711PRvRsDm3ZP810wg6M81oSQ+pBIwLBbHDB2HdBgJc210eOLeYGpQC1xbwbhIRxQYoaaFq7W0N36JhabNnZFS1PHgw2fl8nGy2cPgAc3bmYABKggzFTi65ikJK1U9Hd9MUWxO/0V+/Cp5T22ZbVrge86bccjaicMd5rhSrvKspree3TcEis+F0bb+FGKi5m3jbhf8UHoFToVGNN82UiArLz5RupwqQwhJFnKZ+gJuTFrrj93p/51vPMOs/o/XuAqWu8mbJa/bKfCT6rhDh/LBwksDUHFfEeKkYyBzF3c0hw4bRRa9D1ekaDNmNdsnfL+tdO0uHmD/nMtczg14SNr5YSSraNIwudoHDIhLtBiQMjXUYaOGwHMRU/xCgODoVnT5hCflSpA1V5+sBMYsuBgTjFH5gj9F6zDqedqhWW3OVUABv8TzFa12Jimc55U9hJ4U8XUPp+VnvXLZVizBzULY2KEzSWu1Ifu+iRBqDZ0F5+8+xHZcKtbEiRbnVToC86EjboIwkHqQgkVGoRP2Urlqd55I+8SKWkkRtmvYoqJ/LLvODr0I2hwP3eYtnm7yMUvOG9DafQ/CaKgz8/kbJ+cNAkuWnLFfhC5kY7W/13etxla7XFflr07lMJN/dIOHa4Ca6xoRKf8Io/zDOTJP1yAAAAAAHCajcDhNRuAka+WQcJqNwGy8LrBI18sgVPFoUOE1G4D9E7jw2XhdYMVe/hCRr5ZAjYk1MKni0KC1xHPRwmo3Ad5MlHH6J3Hh5gHSkbLwusGu1hmxir38IZabX1EjXyyBP3mP8RsSamEHNMkRU8WhQU/jAjFriOehd65E04TUbgOY8s1zvJko46C/i5P0TuPD6GhAs8wDpSPQJQZTZeF1g3nH1vNdrDNjQYqQExV7+EMJXVszLTa+ozEQHdJGvlkCWpj6cn7zH+Ji1bySNiTUwioCd7IOaZIiEk8xUqeLQoK7reHyn8YEYoPgpxLXEc9CyzdsMu9ciaLzeirXCajcBxWOf3cx5ZrnLcM5l3kyUcdlFPK3QX8XJ11ZtFfonceH9Ltk99DQgWfM9iIXmAdKR4Qh6TegSgynvGyv1svC6wbX5Eh284+t5u+pDpa7WGbGp37FtoMVICafM4NWKvfwhjbRU/YSurZmDpwVFlptfUZGS942YiA7pn4GmNSNfLIEkVoRdLUx9OSpF1eU/eY/xOHAnLTFq3kk2Y3aVGxJqYRwbwr0VATvZEgiTBQc0yREAPWHNCSeYqQ4uMHVTxaFBVMwJnV3W8Pla31glT+MCMUjqqu1B8FOJRvn7VWuI56FsgU99ZZu2GWKSHsV3rkTRcKfsDXm9FWl+tL23hNRuA4Pdxt+Kxz+7jc6XZ5jyzXOf+2WvluGcy5HoNBe8mSjju5CAP7KKeVu1g9GHoL+Lk6e2I0+urNorqaVy9/RO48PzR0sf+l2ye/1UGqfoaECz72Hob+Z7EQvhcrnXzAOlI8sKDf/CEPSbxRlcR9AlBlPXLK6P3jZX69k//zdl4XWDYujdX2vyJDts+4znecfW837Ofi931IdLcN0vl12sM2NapZu/U79i21S2ygdBipATRoM4z0+ZwatIkGl3FXv4QxJyUJ8baKn7HGEBJwldWzMOVPPvB04KiwBHolctNr6jKj8WfyMl7xskLEfHMRAd0zYZtQ8/A0xrOArktka+WQJBt/HeSK0Iuk+koGZamPpyXZFSrlSLq8pTggMWfvMf4nn6tz5w4E5ad+nmhmLVvJJl3BRObMbtKmvPRfY2JNTCMS18Hjg3hXo/Pi2mKgJ3si0L324kESYKIxiO1g5pkiIJYDr+AHrDmgdza0YSTzFSFUaZjhxcYOobVcg2p4tCgqCC6l6pmBM6rpG75rut4fK8pEkutb6wSrK3GJafxgRimM+svpHVVdqW3P0Gg+CnEoTpD86N8/aqivpedtcRz0LQGGee2QKe+t4LNibLN2wyzD7E7sUkPYrCLZVW71yJouhVIX7hT9ga5kZwxvN6KtL0c4IO/Wl7avpg07QAAAAC4vGdlqgnIixK1r+6PYpdXN97wMiVrX9yd1zi5xbQo730IT4pvveBk1wGHAUrWv7jyatjd4N93M1hjEFZQGVef6KUw+voQnxRCrPhx33vAyGfHp611cghDzc5vJpWtf3AtERgVP6S3+4cY0J4az+gnonOPQrDGIKwIekfJoDKvPhiOyFsKO2e1socA0C9QOGmX7F8MhVnw4j3ll4dlhofR3TrgtM+PT1p3Myg/6uQQhlJYd+NA7dgN+FG/aPAr+KFIl5/EWiIwKuKeV09/SW/2x/UIk9VAp31t/MAYNZ/QTo0jtyuflhjFJyp/oLr9RxkCQSB8EPSPkqhI6PebFFg9I6g/WDEdkLaJoffTFHbPaqzKqA++fwfhBsNghF6gcNLmHBe39Km4WUwV3zzRwueFaX6A4HvLLw7Dd0hryw0PonOxaMdhBMcp2bigTERvmPX80/+Q7mZQflbaNxsOuSdNtgVAKKSw78YcDIijgduwGjln138r0niRk24f9Dsm9wODmpBmkS8/iCmTWO20RGBUDPgHMR5NqN+m8c+6/pLf7EYuuIlUmxdn7CdwAnHwSLvJTC/e2/mAMGNF51VrP6Cc04PH+cE2aBd5ig9y5F03y1zhUK5OVP9A9uiYJa6LiHMWN+8WBIJA+Lw+J50h6R8kmVV4QYvg168zXLDK7Vm2O1Xl0V5HUH6w/+wZ1WI7IWzah0YJyDLp53COjoIo7Z7UkFH5sYLkVl86WDE6p48Jgx8zbuYNhsEItTqmbb1A4aQF/IbBF0kpL6/1TkoyInbzip4Rlpgrvnggl9kdePTJS8BIri7S/QHAakFmpfeWXhxPKjl5XZ+Wl+Uj8fJNaxkF9dd+YOdi0Y5f3rbrwgmOUnq16TdoAEbZ0LwhvIjfMeowY1aPItb5YZpqngQHvaa9vwHB2K20bjYVCAlTHXJOmqXOKf+3e4YRD8fhdJIQ2c0qrL6oOBkRRoCldiPYxmZ1YHoBEHLPrv7Kc8mbV6TxIu8Ylkf9rTmpRRFezHZN7gbO8Ylj3EQmjWT4Qej5L3lRQZMeNFMmsdrrmta/s/nG6QtFoYwZ8A5ioUxpBzybUb6EJzbblpKZNS4u/lAmVLmZnuje/IxdcRI04RZ3qTYuzhGKSasDP+ZFu4OBIOPgkXZbXPYTSelZ/fFVPphsggYh1D5hRMaLzqp+N6nP1n9BOG7DJl18domzxMru1lkd1m/hobEK8xQe5EuoeYETy2nXq3cOsrnCoVwBfsY5nKn+gCQVmeU2oDYLjhxRboZmFqc+2nHCLG/eLJTTuUkJBIHwsbjmlaMNSXsbsS4eQ9I+SPtuWS3p2/bDUWeRpsywqR90DM56ZrlhlN4FBvEUBAAAtgcAAHoJAACZBQAAWwUAALoFAAAABAAARQUAAM8FAAB6CQBB0dkAC7YQAQIDBAQFBQYGBgYHBwcHCAgICAgICAgJCQkJCQkJCQoKCgoKCgoKCgoKCgoKCgoLCwsLCwsLCwsLCwsLCwsLDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4ODg4PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PAAAQERISExMUFBQUFRUVFRYWFhYWFhYWFxcXFxcXFxcYGBgYGBgYGBgYGBgYGBgYGRkZGRkZGRkZGRkZGRkZGRoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxscHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHQABAgMEBQYHCAgJCQoKCwsMDAwMDQ0NDQ4ODg4PDw8PEBAQEBAQEBARERERERERERISEhISEhISExMTExMTExMUFBQUFBQUFBQUFBQUFBQUFRUVFRUVFRUVFRUVFRUVFRYWFhYWFhYWFhYWFhYWFhYXFxcXFxcXFxcXFxcXFxcXGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxwQMAAAEDUAAAEBAAAeAQAADwAAAJA0AACQNQAAAAAAAB4AAAAPAAAAAAAAABA2AAAAAAAAEwAAAAcAAAAAAAAADAAIAIwACABMAAgAzAAIACwACACsAAgAbAAIAOwACAAcAAgAnAAIAFwACADcAAgAPAAIALwACAB8AAgA/AAIAAIACACCAAgAQgAIAMIACAAiAAgAogAIAGIACADiAAgAEgAIAJIACABSAAgA0gAIADIACACyAAgAcgAIAPIACAAKAAgAigAIAEoACADKAAgAKgAIAKoACABqAAgA6gAIABoACACaAAgAWgAIANoACAA6AAgAugAIAHoACAD6AAgABgAIAIYACABGAAgAxgAIACYACACmAAgAZgAIAOYACAAWAAgAlgAIAFYACADWAAgANgAIALYACAB2AAgA9gAIAA4ACACOAAgATgAIAM4ACAAuAAgArgAIAG4ACADuAAgAHgAIAJ4ACABeAAgA3gAIAD4ACAC+AAgAfgAIAP4ACAABAAgAgQAIAEEACADBAAgAIQAIAKEACABhAAgA4QAIABEACACRAAgAUQAIANEACAAxAAgAsQAIAHEACADxAAgACQAIAIkACABJAAgAyQAIACkACACpAAgAaQAIAOkACAAZAAgAmQAIAFkACADZAAgAOQAIALkACAB5AAgA+QAIAAUACACFAAgARQAIAMUACAAlAAgApQAIAGUACADlAAgAFQAIAJUACABVAAgA1QAIADUACAC1AAgAdQAIAPUACAANAAgAjQAIAE0ACADNAAgALQAIAK0ACABtAAgA7QAIAB0ACACdAAgAXQAIAN0ACAA9AAgAvQAIAH0ACAD9AAgAEwAJABMBCQCTAAkAkwEJAFMACQBTAQkA0wAJANMBCQAzAAkAMwEJALMACQCzAQkAcwAJAHMBCQDzAAkA8wEJAAsACQALAQkAiwAJAIsBCQBLAAkASwEJAMsACQDLAQkAKwAJACsBCQCrAAkAqwEJAGsACQBrAQkA6wAJAOsBCQAbAAkAGwEJAJsACQCbAQkAWwAJAFsBCQDbAAkA2wEJADsACQA7AQkAuwAJALsBCQB7AAkAewEJAPsACQD7AQkABwAJAAcBCQCHAAkAhwEJAEcACQBHAQkAxwAJAMcBCQAnAAkAJwEJAKcACQCnAQkAZwAJAGcBCQDnAAkA5wEJABcACQAXAQkAlwAJAJcBCQBXAAkAVwEJANcACQDXAQkANwAJADcBCQC3AAkAtwEJAHcACQB3AQkA9wAJAPcBCQAPAAkADwEJAI8ACQCPAQkATwAJAE8BCQDPAAkAzwEJAC8ACQAvAQkArwAJAK8BCQBvAAkAbwEJAO8ACQDvAQkAHwAJAB8BCQCfAAkAnwEJAF8ACQBfAQkA3wAJAN8BCQA/AAkAPwEJAL8ACQC/AQkAfwAJAH8BCQD/AAkA/wEJAAAABwBAAAcAIAAHAGAABwAQAAcAUAAHADAABwBwAAcACAAHAEgABwAoAAcAaAAHABgABwBYAAcAOAAHAHgABwAEAAcARAAHACQABwBkAAcAFAAHAFQABwA0AAcAdAAHAAMACACDAAgAQwAIAMMACAAjAAgAowAIAGMACADjAAgAAAAFABAABQAIAAUAGAAFAAQABQAUAAUADAAFABwABQACAAUAEgAFAAoABQAaAAUABgAFABYABQAOAAUAHgAFAAEABQARAAUACQAFABkABQAFAAUAFQAFAA0ABQAdAAUAAwAFABMABQALAAUAGwAFAAcABQAXAAUAQbDqAAtNAQAAAAEAAAABAAAAAQAAAAIAAAACAAAAAgAAAAIAAAADAAAAAwAAAAMAAAADAAAABAAAAAQAAAAEAAAABAAAAAUAAAAFAAAABQAAAAUAQaDrAAtlAQAAAAEAAAACAAAAAgAAAAMAAAADAAAABAAAAAQAAAAFAAAABQAAAAYAAAAGAAAABwAAAAcAAAAIAAAACAAAAAkAAAAJAAAACgAAAAoAAAALAAAACwAAAAwAAAAMAAAADQAAAA0AQdDsAAsjAgAAAAMAAAAHAAAAAAAAABAREgAIBwkGCgULBAwDDQIOAQ8AQYTtAAtpAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAKAAAADAAAAA4AAAAQAAAAFAAAABgAAAAcAAAAIAAAACgAAAAwAAAAOAAAAEAAAABQAAAAYAAAAHAAAACAAAAAoAAAAMAAAADgAEGE7gALegEAAAACAAAAAwAAAAQAAAAGAAAACAAAAAwAAAAQAAAAGAAAACAAAAAwAAAAQAAAAGAAAACAAAAAwAAAAAABAACAAQAAAAIAAAADAAAABAAAAAYAAAAIAAAADAAAABAAAAAYAAAAIAAAADAAAABAAAAAYAAAMS4yLjExAEGI7wALbQcAAAAEAAQACAAEAAgAAAAEAAUAEAAIAAgAAAAEAAYAIAAgAAgAAAAEAAQAEAAQAAkAAAAIABAAIAAgAAkAAAAIABAAgACAAAkAAAAIACAAgAAAAQkAAAAgAIAAAgEABAkAAAAgAAIBAgEAEAkAQYDwAAulAgMABAAFAAYABwAIAAkACgALAA0ADwARABMAFwAbAB8AIwArADMAOwBDAFMAYwBzAIMAowDDAOMAAgEAAAAAAAAQABAAEAAQABAAEAAQABAAEQARABEAEQASABIAEgASABMAEwATABMAFAAUABQAFAAVABUAFQAVABAATQDKAAAAAQACAAMABAAFAAcACQANABEAGQAhADEAQQBhAIEAwQABAYEBAQIBAwEEAQYBCAEMARABGAEgATABQAFgAAAAABAAEAAQABAAEQARABIAEgATABMAFAAUABUAFQAWABYAFwAXABgAGAAZABkAGgAaABsAGwAcABwAHQAdAEAAQAAQABEAEgAAAAgABwAJAAYACgAFAAsABAAMAAMADQACAA4AAQAPAEGw8gALwRFgBwAAAAhQAAAIEAAUCHMAEgcfAAAIcAAACDAAAAnAABAHCgAACGAAAAggAAAJoAAACAAAAAiAAAAIQAAACeAAEAcGAAAIWAAACBgAAAmQABMHOwAACHgAAAg4AAAJ0AARBxEAAAhoAAAIKAAACbAAAAgIAAAIiAAACEgAAAnwABAHBAAACFQAAAgUABUI4wATBysAAAh0AAAINAAACcgAEQcNAAAIZAAACCQAAAmoAAAIBAAACIQAAAhEAAAJ6AAQBwgAAAhcAAAIHAAACZgAFAdTAAAIfAAACDwAAAnYABIHFwAACGwAAAgsAAAJuAAACAwAAAiMAAAITAAACfgAEAcDAAAIUgAACBIAFQijABMHIwAACHIAAAgyAAAJxAARBwsAAAhiAAAIIgAACaQAAAgCAAAIggAACEIAAAnkABAHBwAACFoAAAgaAAAJlAAUB0MAAAh6AAAIOgAACdQAEgcTAAAIagAACCoAAAm0AAAICgAACIoAAAhKAAAJ9AAQBwUAAAhWAAAIFgBACAAAEwczAAAIdgAACDYAAAnMABEHDwAACGYAAAgmAAAJrAAACAYAAAiGAAAIRgAACewAEAcJAAAIXgAACB4AAAmcABQHYwAACH4AAAg+AAAJ3AASBxsAAAhuAAAILgAACbwAAAgOAAAIjgAACE4AAAn8AGAHAAAACFEAAAgRABUIgwASBx8AAAhxAAAIMQAACcIAEAcKAAAIYQAACCEAAAmiAAAIAQAACIEAAAhBAAAJ4gAQBwYAAAhZAAAIGQAACZIAEwc7AAAIeQAACDkAAAnSABEHEQAACGkAAAgpAAAJsgAACAkAAAiJAAAISQAACfIAEAcEAAAIVQAACBUAEAgCARMHKwAACHUAAAg1AAAJygARBw0AAAhlAAAIJQAACaoAAAgFAAAIhQAACEUAAAnqABAHCAAACF0AAAgdAAAJmgAUB1MAAAh9AAAIPQAACdoAEgcXAAAIbQAACC0AAAm6AAAIDQAACI0AAAhNAAAJ+gAQBwMAAAhTAAAIEwAVCMMAEwcjAAAIcwAACDMAAAnGABEHCwAACGMAAAgjAAAJpgAACAMAAAiDAAAIQwAACeYAEAcHAAAIWwAACBsAAAmWABQHQwAACHsAAAg7AAAJ1gASBxMAAAhrAAAIKwAACbYAAAgLAAAIiwAACEsAAAn2ABAHBQAACFcAAAgXAEAIAAATBzMAAAh3AAAINwAACc4AEQcPAAAIZwAACCcAAAmuAAAIBwAACIcAAAhHAAAJ7gAQBwkAAAhfAAAIHwAACZ4AFAdjAAAIfwAACD8AAAneABIHGwAACG8AAAgvAAAJvgAACA8AAAiPAAAITwAACf4AYAcAAAAIUAAACBAAFAhzABIHHwAACHAAAAgwAAAJwQAQBwoAAAhgAAAIIAAACaEAAAgAAAAIgAAACEAAAAnhABAHBgAACFgAAAgYAAAJkQATBzsAAAh4AAAIOAAACdEAEQcRAAAIaAAACCgAAAmxAAAICAAACIgAAAhIAAAJ8QAQBwQAAAhUAAAIFAAVCOMAEwcrAAAIdAAACDQAAAnJABEHDQAACGQAAAgkAAAJqQAACAQAAAiEAAAIRAAACekAEAcIAAAIXAAACBwAAAmZABQHUwAACHwAAAg8AAAJ2QASBxcAAAhsAAAILAAACbkAAAgMAAAIjAAACEwAAAn5ABAHAwAACFIAAAgSABUIowATByMAAAhyAAAIMgAACcUAEQcLAAAIYgAACCIAAAmlAAAIAgAACIIAAAhCAAAJ5QAQBwcAAAhaAAAIGgAACZUAFAdDAAAIegAACDoAAAnVABIHEwAACGoAAAgqAAAJtQAACAoAAAiKAAAISgAACfUAEAcFAAAIVgAACBYAQAgAABMHMwAACHYAAAg2AAAJzQARBw8AAAhmAAAIJgAACa0AAAgGAAAIhgAACEYAAAntABAHCQAACF4AAAgeAAAJnQAUB2MAAAh+AAAIPgAACd0AEgcbAAAIbgAACC4AAAm9AAAIDgAACI4AAAhOAAAJ/QBgBwAAAAhRAAAIEQAVCIMAEgcfAAAIcQAACDEAAAnDABAHCgAACGEAAAghAAAJowAACAEAAAiBAAAIQQAACeMAEAcGAAAIWQAACBkAAAmTABMHOwAACHkAAAg5AAAJ0wARBxEAAAhpAAAIKQAACbMAAAgJAAAIiQAACEkAAAnzABAHBAAACFUAAAgVABAIAgETBysAAAh1AAAINQAACcsAEQcNAAAIZQAACCUAAAmrAAAIBQAACIUAAAhFAAAJ6wAQBwgAAAhdAAAIHQAACZsAFAdTAAAIfQAACD0AAAnbABIHFwAACG0AAAgtAAAJuwAACA0AAAiNAAAITQAACfsAEAcDAAAIUwAACBMAFQjDABMHIwAACHMAAAgzAAAJxwARBwsAAAhjAAAIIwAACacAAAgDAAAIgwAACEMAAAnnABAHBwAACFsAAAgbAAAJlwAUB0MAAAh7AAAIOwAACdcAEgcTAAAIawAACCsAAAm3AAAICwAACIsAAAhLAAAJ9wAQBwUAAAhXAAAIFwBACAAAEwczAAAIdwAACDcAAAnPABEHDwAACGcAAAgnAAAJrwAACAcAAAiHAAAIRwAACe8AEAcJAAAIXwAACB8AAAmfABQHYwAACH8AAAg/AAAJ3wASBxsAAAhvAAAILwAACb8AAAgPAAAIjwAACE8AAAn/ABAFAQAXBQEBEwURABsFARARBQUAGQUBBBUFQQAdBQFAEAUDABgFAQIUBSEAHAUBIBIFCQAaBQEIFgWBAEAFAAAQBQIAFwWBARMFGQAbBQEYEQUHABkFAQYVBWEAHQUBYBAFBAAYBQEDFAUxABwFATASBQ0AGgUBDBYFwQBABQAAEQAKABEREQAAAAAFAAAAAAAACQAAAAALAAAAAAAAAAARAA8KERERAwoHAAEACQsLAAAJBgsAAAsABhEAAAAREREAQYGEAQshCwAAAAAAAAAAEQAKChEREQAKAAACAAkLAAAACQALAAALAEG7hAELAQwAQceEAQsVDAAAAAAMAAAAAAkMAAAAAAAMAAAMAEH1hAELAQ4AQYGFAQsVDQAAAAQNAAAAAAkOAAAAAAAOAAAOAEGvhQELARAAQbuFAQseDwAAAAAPAAAAAAkQAAAAAAAQAAAQAAASAAAAEhISAEHyhQELDhIAAAASEhIAAAAAAAAJAEGjhgELAQsAQa+GAQsVCgAAAAAKAAAAAAkLAAAAAAALAAALAEHdhgELAQwAQemGAQsnDAAAAAAMAAAAAAkMAAAAAAAMAAAMAAAwMTIzNDU2Nzg5QUJDREVGAEG0hwELARkAQduHAQsF//////8AQaCIAQtXGRJEOwI/LEcUPTMwChsGRktFNw9JDo4XA0AdPGkrNh9KLRwBICUpIQgMFRYiLhA4Pgs0MRhkdHV2L0EJfzkRI0MyQomKiwUEJignDSoeNYwHGkiTE5SVAEGAiQELig5JbGxlZ2FsIGJ5dGUgc2VxdWVuY2UARG9tYWluIGVycm9yAFJlc3VsdCBub3QgcmVwcmVzZW50YWJsZQBOb3QgYSB0dHkAUGVybWlzc2lvbiBkZW5pZWQAT3BlcmF0aW9uIG5vdCBwZXJtaXR0ZWQATm8gc3VjaCBmaWxlIG9yIGRpcmVjdG9yeQBObyBzdWNoIHByb2Nlc3MARmlsZSBleGlzdHMAVmFsdWUgdG9vIGxhcmdlIGZvciBkYXRhIHR5cGUATm8gc3BhY2UgbGVmdCBvbiBkZXZpY2UAT3V0IG9mIG1lbW9yeQBSZXNvdXJjZSBidXN5AEludGVycnVwdGVkIHN5c3RlbSBjYWxsAFJlc291cmNlIHRlbXBvcmFyaWx5IHVuYXZhaWxhYmxlAEludmFsaWQgc2VlawBDcm9zcy1kZXZpY2UgbGluawBSZWFkLW9ubHkgZmlsZSBzeXN0ZW0ARGlyZWN0b3J5IG5vdCBlbXB0eQBDb25uZWN0aW9uIHJlc2V0IGJ5IHBlZXIAT3BlcmF0aW9uIHRpbWVkIG91dABDb25uZWN0aW9uIHJlZnVzZWQASG9zdCBpcyBkb3duAEhvc3QgaXMgdW5yZWFjaGFibGUAQWRkcmVzcyBpbiB1c2UAQnJva2VuIHBpcGUASS9PIGVycm9yAE5vIHN1Y2ggZGV2aWNlIG9yIGFkZHJlc3MAQmxvY2sgZGV2aWNlIHJlcXVpcmVkAE5vIHN1Y2ggZGV2aWNlAE5vdCBhIGRpcmVjdG9yeQBJcyBhIGRpcmVjdG9yeQBUZXh0IGZpbGUgYnVzeQBFeGVjIGZvcm1hdCBlcnJvcgBJbnZhbGlkIGFyZ3VtZW50AEFyZ3VtZW50IGxpc3QgdG9vIGxvbmcAU3ltYm9saWMgbGluayBsb29wAEZpbGVuYW1lIHRvbyBsb25nAFRvbyBtYW55IG9wZW4gZmlsZXMgaW4gc3lzdGVtAE5vIGZpbGUgZGVzY3JpcHRvcnMgYXZhaWxhYmxlAEJhZCBmaWxlIGRlc2NyaXB0b3IATm8gY2hpbGQgcHJvY2VzcwBCYWQgYWRkcmVzcwBGaWxlIHRvbyBsYXJnZQBUb28gbWFueSBsaW5rcwBObyBsb2NrcyBhdmFpbGFibGUAUmVzb3VyY2UgZGVhZGxvY2sgd291bGQgb2NjdXIAU3RhdGUgbm90IHJlY292ZXJhYmxlAFByZXZpb3VzIG93bmVyIGRpZWQAT3BlcmF0aW9uIGNhbmNlbGVkAEZ1bmN0aW9uIG5vdCBpbXBsZW1lbnRlZABObyBtZXNzYWdlIG9mIGRlc2lyZWQgdHlwZQBJZGVudGlmaWVyIHJlbW92ZWQARGV2aWNlIG5vdCBhIHN0cmVhbQBObyBkYXRhIGF2YWlsYWJsZQBEZXZpY2UgdGltZW91dABPdXQgb2Ygc3RyZWFtcyByZXNvdXJjZXMATGluayBoYXMgYmVlbiBzZXZlcmVkAFByb3RvY29sIGVycm9yAEJhZCBtZXNzYWdlAEZpbGUgZGVzY3JpcHRvciBpbiBiYWQgc3RhdGUATm90IGEgc29ja2V0AERlc3RpbmF0aW9uIGFkZHJlc3MgcmVxdWlyZWQATWVzc2FnZSB0b28gbGFyZ2UAUHJvdG9jb2wgd3JvbmcgdHlwZSBmb3Igc29ja2V0AFByb3RvY29sIG5vdCBhdmFpbGFibGUAUHJvdG9jb2wgbm90IHN1cHBvcnRlZABTb2NrZXQgdHlwZSBub3Qgc3VwcG9ydGVkAE5vdCBzdXBwb3J0ZWQAUHJvdG9jb2wgZmFtaWx5IG5vdCBzdXBwb3J0ZWQAQWRkcmVzcyBmYW1pbHkgbm90IHN1cHBvcnRlZCBieSBwcm90b2NvbABBZGRyZXNzIG5vdCBhdmFpbGFibGUATmV0d29yayBpcyBkb3duAE5ldHdvcmsgdW5yZWFjaGFibGUAQ29ubmVjdGlvbiByZXNldCBieSBuZXR3b3JrAENvbm5lY3Rpb24gYWJvcnRlZABObyBidWZmZXIgc3BhY2UgYXZhaWxhYmxlAFNvY2tldCBpcyBjb25uZWN0ZWQAU29ja2V0IG5vdCBjb25uZWN0ZWQAQ2Fubm90IHNlbmQgYWZ0ZXIgc29ja2V0IHNodXRkb3duAE9wZXJhdGlvbiBhbHJlYWR5IGluIHByb2dyZXNzAE9wZXJhdGlvbiBpbiBwcm9ncmVzcwBTdGFsZSBmaWxlIGhhbmRsZQBSZW1vdGUgSS9PIGVycm9yAFF1b3RhIGV4Y2VlZGVkAE5vIG1lZGl1bSBmb3VuZABXcm9uZyBtZWRpdW0gdHlwZQBObyBlcnJvciBpbmZvcm1hdGlvbgBBkJcBC1JQUFAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAAAEAAAAIAAAAlEsAALRLAEGQmQELAgxQAEHImQELCR8AAADkTAAAAwBB5JkBC4wBLfRRWM+MscBG9rXLKTEDxwRbcDC0Xf0geH+LmthZKVBoSImrp1YDbP+3zYg/1He0K6WjcPG65Kj8QYP92W/hinovLXSWBx8NCV4Ddixw90ClLKdvV0GoqnTfoFhkA0rHxDxTrq9fGAQVseNtKIarDKS/Q/DpUIE5VxZSN/////////////////////8="; - if (!isDataURI(wasmBinaryFile)) { - wasmBinaryFile = locateFile(wasmBinaryFile); - } - function getBinary(file) { - try { - if (file == wasmBinaryFile && wasmBinary) { - return new Uint8Array(wasmBinary); - } - var binary = tryParseAsDataURI(file); - if (binary) { - return binary; - } - if (readBinary) { - return readBinary(file); - } else { - throw "sync fetching of the wasm failed: you can preload it to Module['wasmBinary'] manually, or emcc.py will do that for you when generating HTML (but not JS)"; - } - } catch (err2) { - abort(err2); - } - } - function instantiateSync(file, info) { - var instance; - var module2; - var binary; - try { - binary = getBinary(file); - module2 = new WebAssembly.Module(binary); - instance = new WebAssembly.Instance(module2, info); - } catch (e) { - var str = e.toString(); - err("failed to compile wasm module: " + str); - if (str.includes("imported Memory") || str.includes("memory import")) { - err("Memory size incompatibility issues may be due to changing INITIAL_MEMORY at runtime to something too large. Use ALLOW_MEMORY_GROWTH to allow any size memory (and also make sure not to set INITIAL_MEMORY at runtime to something smaller than it was at compile time)."); - } - throw e; - } - return [instance, module2]; - } - function createWasm() { - var info = {a: asmLibraryArg}; - function receiveInstance(instance, module2) { - var exports3 = instance.exports; - Module["asm"] = exports3; - wasmMemory = Module["asm"]["u"]; - updateGlobalBufferAndViews(wasmMemory.buffer); - wasmTable = Module["asm"]["pa"]; - addOnInit(Module["asm"]["v"]); - removeRunDependency(); - } - addRunDependency(); - if (Module["instantiateWasm"]) { - try { - var exports2 = Module["instantiateWasm"](info, receiveInstance); - return exports2; - } catch (e) { - err("Module.instantiateWasm callback failed with error: " + e); - return false; - } - } - var result = instantiateSync(wasmBinaryFile, info); - receiveInstance(result[0]); - return Module["asm"]; - } - var tempDouble; - var tempI64; - function callRuntimeCallbacks(callbacks) { - while (callbacks.length > 0) { - var callback = callbacks.shift(); - if (typeof callback == "function") { - callback(Module); - continue; - } - var func = callback.func; - if (typeof func === "number") { - if (callback.arg === void 0) { - wasmTable.get(func)(); - } else { - wasmTable.get(func)(callback.arg); - } - } else { - func(callback.arg === void 0 ? null : callback.arg); - } - } - } - function _gmtime_r(time, tmPtr) { - var date = new Date(HEAP32[time >> 2] * 1e3); - HEAP32[tmPtr >> 2] = date.getUTCSeconds(); - HEAP32[tmPtr + 4 >> 2] = date.getUTCMinutes(); - HEAP32[tmPtr + 8 >> 2] = date.getUTCHours(); - HEAP32[tmPtr + 12 >> 2] = date.getUTCDate(); - HEAP32[tmPtr + 16 >> 2] = date.getUTCMonth(); - HEAP32[tmPtr + 20 >> 2] = date.getUTCFullYear() - 1900; - HEAP32[tmPtr + 24 >> 2] = date.getUTCDay(); - HEAP32[tmPtr + 36 >> 2] = 0; - HEAP32[tmPtr + 32 >> 2] = 0; - var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); - var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0; - HEAP32[tmPtr + 28 >> 2] = yday; - if (!_gmtime_r.GMTString) - _gmtime_r.GMTString = allocateUTF8("GMT"); - HEAP32[tmPtr + 40 >> 2] = _gmtime_r.GMTString; - return tmPtr; - } - function ___gmtime_r(a0, a1) { - return _gmtime_r(a0, a1); - } - var PATH = { - splitPath: function(filename) { - var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; - return splitPathRe.exec(filename).slice(1); - }, - normalizeArray: function(parts, allowAboveRoot) { - var up = 0; - for (var i = parts.length - 1; i >= 0; i--) { - var last = parts[i]; - if (last === ".") { - parts.splice(i, 1); - } else if (last === "..") { - parts.splice(i, 1); - up++; - } else if (up) { - parts.splice(i, 1); - up--; - } - } - if (allowAboveRoot) { - for (; up; up--) { - parts.unshift(".."); - } - } - return parts; - }, - normalize: function(path) { - var isAbsolute = path.charAt(0) === "/", trailingSlash = path.substr(-1) === "/"; - path = PATH.normalizeArray(path.split("/").filter(function(p) { - return !!p; - }), !isAbsolute).join("/"); - if (!path && !isAbsolute) { - path = "."; - } - if (path && trailingSlash) { - path += "/"; - } - return (isAbsolute ? "/" : "") + path; - }, - dirname: function(path) { - var result = PATH.splitPath(path), root = result[0], dir = result[1]; - if (!root && !dir) { - return "."; - } - if (dir) { - dir = dir.substr(0, dir.length - 1); - } - return root + dir; - }, - basename: function(path) { - if (path === "/") - return "/"; - path = PATH.normalize(path); - path = path.replace(/\/$/, ""); - var lastSlash = path.lastIndexOf("/"); - if (lastSlash === -1) - return path; - return path.substr(lastSlash + 1); - }, - extname: function(path) { - return PATH.splitPath(path)[3]; - }, - join: function() { - var paths = Array.prototype.slice.call(arguments, 0); - return PATH.normalize(paths.join("/")); - }, - join2: function(l, r) { - return PATH.normalize(l + "/" + r); - } - }; - function getRandomDevice() { - { - try { - var crypto_module = require("crypto"); - return function() { - return crypto_module["randomBytes"](1)[0]; - }; - } catch (e) { - } - } - return function() { - abort("randomDevice"); - }; - } - var PATH_FS = { - resolve: function() { - var resolvedPath = "", resolvedAbsolute = false; - for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = i >= 0 ? arguments[i] : FS.cwd(); - if (typeof path !== "string") { - throw new TypeError("Arguments to path.resolve must be strings"); - } else if (!path) { - return ""; - } - resolvedPath = path + "/" + resolvedPath; - resolvedAbsolute = path.charAt(0) === "/"; - } - resolvedPath = PATH.normalizeArray(resolvedPath.split("/").filter(function(p) { - return !!p; - }), !resolvedAbsolute).join("/"); - return (resolvedAbsolute ? "/" : "") + resolvedPath || "."; - }, - relative: function(from, to) { - from = PATH_FS.resolve(from).substr(1); - to = PATH_FS.resolve(to).substr(1); - function trim(arr) { - var start = 0; - for (; start < arr.length; start++) { - if (arr[start] !== "") - break; - } - var end = arr.length - 1; - for (; end >= 0; end--) { - if (arr[end] !== "") - break; - } - if (start > end) - return []; - return arr.slice(start, end - start + 1); - } - var fromParts = trim(from.split("/")); - var toParts = trim(to.split("/")); - var length = Math.min(fromParts.length, toParts.length); - var samePartsLength = length; - for (var i = 0; i < length; i++) { - if (fromParts[i] !== toParts[i]) { - samePartsLength = i; - break; - } - } - var outputParts = []; - for (var i = samePartsLength; i < fromParts.length; i++) { - outputParts.push(".."); - } - outputParts = outputParts.concat(toParts.slice(samePartsLength)); - return outputParts.join("/"); - } - }; - var TTY = { - ttys: [], - init: function() { - }, - shutdown: function() { - }, - register: function(dev, ops) { - TTY.ttys[dev] = {input: [], output: [], ops}; - FS.registerDevice(dev, TTY.stream_ops); - }, - stream_ops: { - open: function(stream) { - var tty = TTY.ttys[stream.node.rdev]; - if (!tty) { - throw new FS.ErrnoError(43); - } - stream.tty = tty; - stream.seekable = false; - }, - close: function(stream) { - stream.tty.ops.flush(stream.tty); - }, - flush: function(stream) { - stream.tty.ops.flush(stream.tty); - }, - read: function(stream, buffer2, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.get_char) { - throw new FS.ErrnoError(60); - } - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = stream.tty.ops.get_char(stream.tty); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === void 0 && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === void 0) - break; - bytesRead++; - buffer2[offset + i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer2, offset, length, pos) { - if (!stream.tty || !stream.tty.ops.put_char) { - throw new FS.ErrnoError(60); - } - try { - for (var i = 0; i < length; i++) { - stream.tty.ops.put_char(stream.tty, buffer2[offset + i]); - } - } catch (e) { - throw new FS.ErrnoError(29); - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }, - default_tty_ops: { - get_char: function(tty) { - if (!tty.input.length) { - var result = null; - { - var BUFSIZE = 256; - var buf = Buffer.alloc ? Buffer.alloc(BUFSIZE) : new Buffer(BUFSIZE); - var bytesRead = 0; - try { - bytesRead = nodeFS.readSync(process.stdin.fd, buf, 0, BUFSIZE, null); - } catch (e) { - if (e.toString().includes("EOF")) - bytesRead = 0; - else - throw e; - } - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString("utf-8"); - } else { - result = null; - } - } - if (!result) { - return null; - } - tty.input = intArrayFromString(result, true); - } - return tty.input.shift(); - }, - put_char: function(tty, val) { - if (val === null || val === 10) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) - tty.output.push(val); - } - }, - flush: function(tty) { - if (tty.output && tty.output.length > 0) { - out(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - } - }, - default_tty1_ops: { - put_char: function(tty, val) { - if (val === null || val === 10) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } else { - if (val != 0) - tty.output.push(val); - } - }, - flush: function(tty) { - if (tty.output && tty.output.length > 0) { - err(UTF8ArrayToString(tty.output, 0)); - tty.output = []; - } - } - } - }; - function mmapAlloc(size) { - var alignedSize = alignMemory(size, 65536); - var ptr = _malloc(alignedSize); - while (size < alignedSize) - HEAP8[ptr + size++] = 0; - return ptr; - } - var MEMFS = { - ops_table: null, - mount: function(mount) { - return MEMFS.createNode(null, "/", 16384 | 511, 0); - }, - createNode: function(parent, name, mode, dev) { - if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { - throw new FS.ErrnoError(63); - } - if (!MEMFS.ops_table) { - MEMFS.ops_table = { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: {llseek: MEMFS.stream_ops.llseek} - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - allocate: MEMFS.stream_ops.allocate, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink - }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr - }, - stream: FS.chrdev_stream_ops - } - }; - } - var node = FS.createNode(parent, name, mode, dev); - if (FS.isDir(node.mode)) { - node.node_ops = MEMFS.ops_table.dir.node; - node.stream_ops = MEMFS.ops_table.dir.stream; - node.contents = {}; - } else if (FS.isFile(node.mode)) { - node.node_ops = MEMFS.ops_table.file.node; - node.stream_ops = MEMFS.ops_table.file.stream; - node.usedBytes = 0; - node.contents = null; - } else if (FS.isLink(node.mode)) { - node.node_ops = MEMFS.ops_table.link.node; - node.stream_ops = MEMFS.ops_table.link.stream; - } else if (FS.isChrdev(node.mode)) { - node.node_ops = MEMFS.ops_table.chrdev.node; - node.stream_ops = MEMFS.ops_table.chrdev.stream; - } - node.timestamp = Date.now(); - if (parent) { - parent.contents[name] = node; - parent.timestamp = node.timestamp; - } - return node; - }, - getFileDataAsTypedArray: function(node) { - if (!node.contents) - return new Uint8Array(0); - if (node.contents.subarray) - return node.contents.subarray(0, node.usedBytes); - return new Uint8Array(node.contents); - }, - expandFileStorage: function(node, newCapacity) { - var prevCapacity = node.contents ? node.contents.length : 0; - if (prevCapacity >= newCapacity) - return; - var CAPACITY_DOUBLING_MAX = 1024 * 1024; - newCapacity = Math.max(newCapacity, prevCapacity * (prevCapacity < CAPACITY_DOUBLING_MAX ? 2 : 1.125) >>> 0); - if (prevCapacity != 0) - newCapacity = Math.max(newCapacity, 256); - var oldContents = node.contents; - node.contents = new Uint8Array(newCapacity); - if (node.usedBytes > 0) - node.contents.set(oldContents.subarray(0, node.usedBytes), 0); - }, - resizeFileStorage: function(node, newSize) { - if (node.usedBytes == newSize) - return; - if (newSize == 0) { - node.contents = null; - node.usedBytes = 0; - } else { - var oldContents = node.contents; - node.contents = new Uint8Array(newSize); - if (oldContents) { - node.contents.set(oldContents.subarray(0, Math.min(newSize, node.usedBytes))); - } - node.usedBytes = newSize; - } - }, - node_ops: { - getattr: function(node) { - var attr = {}; - attr.dev = FS.isChrdev(node.mode) ? node.id : 1; - attr.ino = node.id; - attr.mode = node.mode; - attr.nlink = 1; - attr.uid = 0; - attr.gid = 0; - attr.rdev = node.rdev; - if (FS.isDir(node.mode)) { - attr.size = 4096; - } else if (FS.isFile(node.mode)) { - attr.size = node.usedBytes; - } else if (FS.isLink(node.mode)) { - attr.size = node.link.length; - } else { - attr.size = 0; - } - attr.atime = new Date(node.timestamp); - attr.mtime = new Date(node.timestamp); - attr.ctime = new Date(node.timestamp); - attr.blksize = 4096; - attr.blocks = Math.ceil(attr.size / attr.blksize); - return attr; - }, - setattr: function(node, attr) { - if (attr.mode !== void 0) { - node.mode = attr.mode; - } - if (attr.timestamp !== void 0) { - node.timestamp = attr.timestamp; - } - if (attr.size !== void 0) { - MEMFS.resizeFileStorage(node, attr.size); - } - }, - lookup: function(parent, name) { - throw FS.genericErrors[44]; - }, - mknod: function(parent, name, mode, dev) { - return MEMFS.createNode(parent, name, mode, dev); - }, - rename: function(old_node, new_dir, new_name) { - if (FS.isDir(old_node.mode)) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (new_node) { - for (var i in new_node.contents) { - throw new FS.ErrnoError(55); - } - } - } - delete old_node.parent.contents[old_node.name]; - old_node.parent.timestamp = Date.now(); - old_node.name = new_name; - new_dir.contents[new_name] = old_node; - new_dir.timestamp = old_node.parent.timestamp; - old_node.parent = new_dir; - }, - unlink: function(parent, name) { - delete parent.contents[name]; - parent.timestamp = Date.now(); - }, - rmdir: function(parent, name) { - var node = FS.lookupNode(parent, name); - for (var i in node.contents) { - throw new FS.ErrnoError(55); - } - delete parent.contents[name]; - parent.timestamp = Date.now(); - }, - readdir: function(node) { - var entries = [".", ".."]; - for (var key2 in node.contents) { - if (!node.contents.hasOwnProperty(key2)) { - continue; - } - entries.push(key2); - } - return entries; - }, - symlink: function(parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 511 | 40960, 0); - node.link = oldpath; - return node; - }, - readlink: function(node) { - if (!FS.isLink(node.mode)) { - throw new FS.ErrnoError(28); - } - return node.link; - } - }, - stream_ops: { - read: function(stream, buffer2, offset, length, position) { - var contents = stream.node.contents; - if (position >= stream.node.usedBytes) - return 0; - var size = Math.min(stream.node.usedBytes - position, length); - if (size > 8 && contents.subarray) { - buffer2.set(contents.subarray(position, position + size), offset); - } else { - for (var i = 0; i < size; i++) - buffer2[offset + i] = contents[position + i]; - } - return size; - }, - write: function(stream, buffer2, offset, length, position, canOwn) { - if (buffer2.buffer === HEAP8.buffer) { - canOwn = false; - } - if (!length) - return 0; - var node = stream.node; - node.timestamp = Date.now(); - if (buffer2.subarray && (!node.contents || node.contents.subarray)) { - if (canOwn) { - node.contents = buffer2.subarray(offset, offset + length); - node.usedBytes = length; - return length; - } else if (node.usedBytes === 0 && position === 0) { - node.contents = buffer2.slice(offset, offset + length); - node.usedBytes = length; - return length; - } else if (position + length <= node.usedBytes) { - node.contents.set(buffer2.subarray(offset, offset + length), position); - return length; - } - } - MEMFS.expandFileStorage(node, position + length); - if (node.contents.subarray && buffer2.subarray) { - node.contents.set(buffer2.subarray(offset, offset + length), position); - } else { - for (var i = 0; i < length; i++) { - node.contents[position + i] = buffer2[offset + i]; - } - } - node.usedBytes = Math.max(node.usedBytes, position + length); - return length; - }, - llseek: function(stream, offset, whence) { - var position = offset; - if (whence === 1) { - position += stream.position; - } else if (whence === 2) { - if (FS.isFile(stream.node.mode)) { - position += stream.node.usedBytes; - } - } - if (position < 0) { - throw new FS.ErrnoError(28); - } - return position; - }, - allocate: function(stream, offset, length) { - MEMFS.expandFileStorage(stream.node, offset + length); - stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); - }, - mmap: function(stream, address, length, position, prot, flags) { - if (address !== 0) { - throw new FS.ErrnoError(28); - } - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - var ptr; - var allocated; - var contents = stream.node.contents; - if (!(flags & 2) && contents.buffer === buffer) { - allocated = false; - ptr = contents.byteOffset; - } else { - if (position > 0 || position + length < contents.length) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - allocated = true; - ptr = mmapAlloc(length); - if (!ptr) { - throw new FS.ErrnoError(48); - } - HEAP8.set(contents, ptr); - } - return {ptr, allocated}; - }, - msync: function(stream, buffer2, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (mmapFlags & 2) { - return 0; - } - MEMFS.stream_ops.write(stream, buffer2, 0, length, offset, false); - return 0; - } - } - }; - var ERRNO_CODES = { - EPERM: 63, - ENOENT: 44, - ESRCH: 71, - EINTR: 27, - EIO: 29, - ENXIO: 60, - E2BIG: 1, - ENOEXEC: 45, - EBADF: 8, - ECHILD: 12, - EAGAIN: 6, - EWOULDBLOCK: 6, - ENOMEM: 48, - EACCES: 2, - EFAULT: 21, - ENOTBLK: 105, - EBUSY: 10, - EEXIST: 20, - EXDEV: 75, - ENODEV: 43, - ENOTDIR: 54, - EISDIR: 31, - EINVAL: 28, - ENFILE: 41, - EMFILE: 33, - ENOTTY: 59, - ETXTBSY: 74, - EFBIG: 22, - ENOSPC: 51, - ESPIPE: 70, - EROFS: 69, - EMLINK: 34, - EPIPE: 64, - EDOM: 18, - ERANGE: 68, - ENOMSG: 49, - EIDRM: 24, - ECHRNG: 106, - EL2NSYNC: 156, - EL3HLT: 107, - EL3RST: 108, - ELNRNG: 109, - EUNATCH: 110, - ENOCSI: 111, - EL2HLT: 112, - EDEADLK: 16, - ENOLCK: 46, - EBADE: 113, - EBADR: 114, - EXFULL: 115, - ENOANO: 104, - EBADRQC: 103, - EBADSLT: 102, - EDEADLOCK: 16, - EBFONT: 101, - ENOSTR: 100, - ENODATA: 116, - ETIME: 117, - ENOSR: 118, - ENONET: 119, - ENOPKG: 120, - EREMOTE: 121, - ENOLINK: 47, - EADV: 122, - ESRMNT: 123, - ECOMM: 124, - EPROTO: 65, - EMULTIHOP: 36, - EDOTDOT: 125, - EBADMSG: 9, - ENOTUNIQ: 126, - EBADFD: 127, - EREMCHG: 128, - ELIBACC: 129, - ELIBBAD: 130, - ELIBSCN: 131, - ELIBMAX: 132, - ELIBEXEC: 133, - ENOSYS: 52, - ENOTEMPTY: 55, - ENAMETOOLONG: 37, - ELOOP: 32, - EOPNOTSUPP: 138, - EPFNOSUPPORT: 139, - ECONNRESET: 15, - ENOBUFS: 42, - EAFNOSUPPORT: 5, - EPROTOTYPE: 67, - ENOTSOCK: 57, - ENOPROTOOPT: 50, - ESHUTDOWN: 140, - ECONNREFUSED: 14, - EADDRINUSE: 3, - ECONNABORTED: 13, - ENETUNREACH: 40, - ENETDOWN: 38, - ETIMEDOUT: 73, - EHOSTDOWN: 142, - EHOSTUNREACH: 23, - EINPROGRESS: 26, - EALREADY: 7, - EDESTADDRREQ: 17, - EMSGSIZE: 35, - EPROTONOSUPPORT: 66, - ESOCKTNOSUPPORT: 137, - EADDRNOTAVAIL: 4, - ENETRESET: 39, - EISCONN: 30, - ENOTCONN: 53, - ETOOMANYREFS: 141, - EUSERS: 136, - EDQUOT: 19, - ESTALE: 72, - ENOTSUP: 138, - ENOMEDIUM: 148, - EILSEQ: 25, - EOVERFLOW: 61, - ECANCELED: 11, - ENOTRECOVERABLE: 56, - EOWNERDEAD: 62, - ESTRPIPE: 135 - }; - var NODEFS = { - isWindows: false, - staticInit: function() { - NODEFS.isWindows = !!process.platform.match(/^win/); - var flags = {fs: fs.constants}; - if (flags["fs"]) { - flags = flags["fs"]; - } - NODEFS.flagsForNodeMap = { - 1024: flags["O_APPEND"], - 64: flags["O_CREAT"], - 128: flags["O_EXCL"], - 256: flags["O_NOCTTY"], - 0: flags["O_RDONLY"], - 2: flags["O_RDWR"], - 4096: flags["O_SYNC"], - 512: flags["O_TRUNC"], - 1: flags["O_WRONLY"] - }; - }, - bufferFrom: function(arrayBuffer) { - return Buffer["alloc"] ? Buffer.from(arrayBuffer) : new Buffer(arrayBuffer); - }, - convertNodeCode: function(e) { - var code = e.code; - return ERRNO_CODES[code]; - }, - mount: function(mount) { - return NODEFS.createNode(null, "/", NODEFS.getMode(mount.opts.root), 0); - }, - createNode: function(parent, name, mode, dev) { - if (!FS.isDir(mode) && !FS.isFile(mode) && !FS.isLink(mode)) { - throw new FS.ErrnoError(28); - } - var node = FS.createNode(parent, name, mode); - node.node_ops = NODEFS.node_ops; - node.stream_ops = NODEFS.stream_ops; - return node; - }, - getMode: function(path) { - var stat; - try { - stat = fs.lstatSync(path); - if (NODEFS.isWindows) { - stat.mode = stat.mode | (stat.mode & 292) >> 2; - } - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - return stat.mode; - }, - realPath: function(node) { - var parts = []; - while (node.parent !== node) { - parts.push(node.name); - node = node.parent; - } - parts.push(node.mount.opts.root); - parts.reverse(); - return PATH.join.apply(null, parts); - }, - flagsForNode: function(flags) { - flags &= ~2097152; - flags &= ~2048; - flags &= ~32768; - flags &= ~524288; - var newFlags = 0; - for (var k in NODEFS.flagsForNodeMap) { - if (flags & k) { - newFlags |= NODEFS.flagsForNodeMap[k]; - flags ^= k; - } - } - if (!flags) { - return newFlags; - } else { - throw new FS.ErrnoError(28); - } - }, - node_ops: { - getattr: function(node) { - var path = NODEFS.realPath(node); - var stat; - try { - stat = fs.lstatSync(path); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - if (NODEFS.isWindows && !stat.blksize) { - stat.blksize = 4096; - } - if (NODEFS.isWindows && !stat.blocks) { - stat.blocks = (stat.size + stat.blksize - 1) / stat.blksize | 0; - } - return { - dev: stat.dev, - ino: stat.ino, - mode: stat.mode, - nlink: stat.nlink, - uid: stat.uid, - gid: stat.gid, - rdev: stat.rdev, - size: stat.size, - atime: stat.atime, - mtime: stat.mtime, - ctime: stat.ctime, - blksize: stat.blksize, - blocks: stat.blocks - }; - }, - setattr: function(node, attr) { - var path = NODEFS.realPath(node); - try { - if (attr.mode !== void 0) { - fs.chmodSync(path, attr.mode); - node.mode = attr.mode; - } - if (attr.timestamp !== void 0) { - var date = new Date(attr.timestamp); - fs.utimesSync(path, date, date); - } - if (attr.size !== void 0) { - fs.truncateSync(path, attr.size); - } - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - lookup: function(parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - var mode = NODEFS.getMode(path); - return NODEFS.createNode(parent, name, mode); - }, - mknod: function(parent, name, mode, dev) { - var node = NODEFS.createNode(parent, name, mode, dev); - var path = NODEFS.realPath(node); - try { - if (FS.isDir(node.mode)) { - fs.mkdirSync(path, node.mode); - } else { - fs.writeFileSync(path, "", {mode: node.mode}); - } - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - return node; - }, - rename: function(oldNode, newDir, newName) { - var oldPath = NODEFS.realPath(oldNode); - var newPath = PATH.join2(NODEFS.realPath(newDir), newName); - try { - fs.renameSync(oldPath, newPath); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - oldNode.name = newName; - }, - unlink: function(parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.unlinkSync(path); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - rmdir: function(parent, name) { - var path = PATH.join2(NODEFS.realPath(parent), name); - try { - fs.rmdirSync(path); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - readdir: function(node) { - var path = NODEFS.realPath(node); - try { - return fs.readdirSync(path); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - symlink: function(parent, newName, oldPath) { - var newPath = PATH.join2(NODEFS.realPath(parent), newName); - try { - fs.symlinkSync(oldPath, newPath); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - readlink: function(node) { - var path = NODEFS.realPath(node); - try { - path = fs.readlinkSync(path); - path = NODEJS_PATH.relative(NODEJS_PATH.resolve(node.mount.opts.root), path); - return path; - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - } - }, - stream_ops: { - open: function(stream) { - var path = NODEFS.realPath(stream.node); - try { - if (FS.isFile(stream.node.mode)) { - stream.nfd = fs.openSync(path, NODEFS.flagsForNode(stream.flags)); - } - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - close: function(stream) { - try { - if (FS.isFile(stream.node.mode) && stream.nfd) { - fs.closeSync(stream.nfd); - } - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - read: function(stream, buffer2, offset, length, position) { - if (length === 0) - return 0; - try { - return fs.readSync(stream.nfd, NODEFS.bufferFrom(buffer2.buffer), offset, length, position); - } catch (e) { - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - write: function(stream, buffer2, offset, length, position) { - try { - return fs.writeSync(stream.nfd, NODEFS.bufferFrom(buffer2.buffer), offset, length, position); - } catch (e) { - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - }, - llseek: function(stream, offset, whence) { - var position = offset; - if (whence === 1) { - position += stream.position; - } else if (whence === 2) { - if (FS.isFile(stream.node.mode)) { - try { - var stat = fs.fstatSync(stream.nfd); - position += stat.size; - } catch (e) { - throw new FS.ErrnoError(NODEFS.convertNodeCode(e)); - } - } - } - if (position < 0) { - throw new FS.ErrnoError(28); - } - return position; - }, - mmap: function(stream, address, length, position, prot, flags) { - if (address !== 0) { - throw new FS.ErrnoError(28); - } - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - var ptr = mmapAlloc(length); - NODEFS.stream_ops.read(stream, HEAP8, ptr, length, position); - return {ptr, allocated: true}; - }, - msync: function(stream, buffer2, offset, length, mmapFlags) { - if (!FS.isFile(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (mmapFlags & 2) { - return 0; - } - NODEFS.stream_ops.write(stream, buffer2, 0, length, offset, false); - return 0; - } - } - }; - var NODERAWFS = { - lookupPath: function(path) { - return {path, node: {mode: NODEFS.getMode(path)}}; - }, - createStandardStreams: function() { - FS.streams[0] = { - fd: 0, - nfd: 0, - position: 0, - path: "", - flags: 0, - tty: true, - seekable: false - }; - for (var i = 1; i < 3; i++) { - FS.streams[i] = { - fd: i, - nfd: i, - position: 0, - path: "", - flags: 577, - tty: true, - seekable: false - }; - } - }, - cwd: function() { - return process.cwd(); - }, - chdir: function() { - process.chdir.apply(void 0, arguments); - }, - mknod: function(path, mode) { - if (FS.isDir(path)) { - fs.mkdirSync(path, mode); - } else { - fs.writeFileSync(path, "", {mode}); - } - }, - mkdir: function() { - fs.mkdirSync.apply(void 0, arguments); - }, - symlink: function() { - fs.symlinkSync.apply(void 0, arguments); - }, - rename: function() { - fs.renameSync.apply(void 0, arguments); - }, - rmdir: function() { - fs.rmdirSync.apply(void 0, arguments); - }, - readdir: function() { - fs.readdirSync.apply(void 0, arguments); - }, - unlink: function() { - fs.unlinkSync.apply(void 0, arguments); - }, - readlink: function() { - return fs.readlinkSync.apply(void 0, arguments); - }, - stat: function() { - return fs.statSync.apply(void 0, arguments); - }, - lstat: function() { - return fs.lstatSync.apply(void 0, arguments); - }, - chmod: function() { - fs.chmodSync.apply(void 0, arguments); - }, - fchmod: function() { - fs.fchmodSync.apply(void 0, arguments); - }, - chown: function() { - fs.chownSync.apply(void 0, arguments); - }, - fchown: function() { - fs.fchownSync.apply(void 0, arguments); - }, - truncate: function() { - fs.truncateSync.apply(void 0, arguments); - }, - ftruncate: function(fd, len) { - if (len < 0) { - throw new FS.ErrnoError(28); - } - fs.ftruncateSync.apply(void 0, arguments); - }, - utime: function() { - fs.utimesSync.apply(void 0, arguments); - }, - open: function(path, flags, mode, suggestFD) { - if (typeof flags === "string") { - flags = VFS.modeStringToFlags(flags); - } - var nfd = fs.openSync(path, NODEFS.flagsForNode(flags), mode); - var fd = suggestFD != null ? suggestFD : FS.nextfd(nfd); - var stream = { - fd, - nfd, - position: 0, - path, - flags, - seekable: true - }; - FS.streams[fd] = stream; - return stream; - }, - close: function(stream) { - if (!stream.stream_ops) { - fs.closeSync(stream.nfd); - } - FS.closeStream(stream.fd); - }, - llseek: function(stream, offset, whence) { - if (stream.stream_ops) { - return VFS.llseek(stream, offset, whence); - } - var position = offset; - if (whence === 1) { - position += stream.position; - } else if (whence === 2) { - position += fs.fstatSync(stream.nfd).size; - } else if (whence !== 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - if (position < 0) { - throw new FS.ErrnoError(ERRNO_CODES.EINVAL); - } - stream.position = position; - return position; - }, - read: function(stream, buffer2, offset, length, position) { - if (stream.stream_ops) { - return VFS.read(stream, buffer2, offset, length, position); - } - var seeking = typeof position !== "undefined"; - if (!seeking && stream.seekable) - position = stream.position; - var bytesRead = fs.readSync(stream.nfd, NODEFS.bufferFrom(buffer2.buffer), offset, length, position); - if (!seeking) - stream.position += bytesRead; - return bytesRead; - }, - write: function(stream, buffer2, offset, length, position) { - if (stream.stream_ops) { - return VFS.write(stream, buffer2, offset, length, position); - } - if (stream.flags & +"1024") { - FS.llseek(stream, 0, +"2"); - } - var seeking = typeof position !== "undefined"; - if (!seeking && stream.seekable) - position = stream.position; - var bytesWritten = fs.writeSync(stream.nfd, NODEFS.bufferFrom(buffer2.buffer), offset, length, position); - if (!seeking) - stream.position += bytesWritten; - return bytesWritten; - }, - allocate: function() { - throw new FS.ErrnoError(ERRNO_CODES.EOPNOTSUPP); - }, - mmap: function(stream, address, length, position, prot, flags) { - if (stream.stream_ops) { - return VFS.mmap(stream, address, length, position, prot, flags); - } - if (address !== 0) { - throw new FS.ErrnoError(28); - } - var ptr = mmapAlloc(length); - FS.read(stream, HEAP8, ptr, length, position); - return {ptr, allocated: true}; - }, - msync: function(stream, buffer2, offset, length, mmapFlags) { - if (stream.stream_ops) { - return VFS.msync(stream, buffer2, offset, length, mmapFlags); - } - if (mmapFlags & 2) { - return 0; - } - FS.write(stream, buffer2, 0, length, offset); - return 0; - }, - munmap: function() { - return 0; - }, - ioctl: function() { - throw new FS.ErrnoError(ERRNO_CODES.ENOTTY); - } - }; - var FS = { - root: null, - mounts: [], - devices: {}, - streams: [], - nextInode: 1, - nameTable: null, - currentPath: "/", - initialized: false, - ignorePermissions: true, - trackingDelegate: {}, - tracking: {openFlags: {READ: 1, WRITE: 2}}, - ErrnoError: null, - genericErrors: {}, - filesystems: null, - syncFSRequests: 0, - lookupPath: function(path, opts) { - path = PATH_FS.resolve(FS.cwd(), path); - opts = opts || {}; - if (!path) - return {path: "", node: null}; - var defaults = {follow_mount: true, recurse_count: 0}; - for (var key2 in defaults) { - if (opts[key2] === void 0) { - opts[key2] = defaults[key2]; - } - } - if (opts.recurse_count > 8) { - throw new FS.ErrnoError(32); - } - var parts = PATH.normalizeArray(path.split("/").filter(function(p) { - return !!p; - }), false); - var current = FS.root; - var current_path = "/"; - for (var i = 0; i < parts.length; i++) { - var islast = i === parts.length - 1; - if (islast && opts.parent) { - break; - } - current = FS.lookupNode(current, parts[i]); - current_path = PATH.join2(current_path, parts[i]); - if (FS.isMountpoint(current)) { - if (!islast || islast && opts.follow_mount) { - current = current.mounted.root; - } - } - if (!islast || opts.follow) { - var count = 0; - while (FS.isLink(current.mode)) { - var link = FS.readlink(current_path); - current_path = PATH_FS.resolve(PATH.dirname(current_path), link); - var lookup = FS.lookupPath(current_path, { - recurse_count: opts.recurse_count - }); - current = lookup.node; - if (count++ > 40) { - throw new FS.ErrnoError(32); - } - } - } - } - return {path: current_path, node: current}; - }, - getPath: function(node) { - var path; - while (true) { - if (FS.isRoot(node)) { - var mount = node.mount.mountpoint; - if (!path) - return mount; - return mount[mount.length - 1] !== "/" ? mount + "/" + path : mount + path; - } - path = path ? node.name + "/" + path : node.name; - node = node.parent; - } - }, - hashName: function(parentid, name) { - var hash = 0; - for (var i = 0; i < name.length; i++) { - hash = (hash << 5) - hash + name.charCodeAt(i) | 0; - } - return (parentid + hash >>> 0) % FS.nameTable.length; - }, - hashAddNode: function(node) { - var hash = FS.hashName(node.parent.id, node.name); - node.name_next = FS.nameTable[hash]; - FS.nameTable[hash] = node; - }, - hashRemoveNode: function(node) { - var hash = FS.hashName(node.parent.id, node.name); - if (FS.nameTable[hash] === node) { - FS.nameTable[hash] = node.name_next; - } else { - var current = FS.nameTable[hash]; - while (current) { - if (current.name_next === node) { - current.name_next = node.name_next; - break; - } - current = current.name_next; - } - } - }, - lookupNode: function(parent, name) { - var errCode = FS.mayLookup(parent); - if (errCode) { - throw new FS.ErrnoError(errCode, parent); - } - var hash = FS.hashName(parent.id, name); - for (var node = FS.nameTable[hash]; node; node = node.name_next) { - var nodeName = node.name; - if (node.parent.id === parent.id && nodeName === name) { - return node; - } - } - return FS.lookup(parent, name); - }, - createNode: function(parent, name, mode, rdev) { - var node = new FS.FSNode(parent, name, mode, rdev); - FS.hashAddNode(node); - return node; - }, - destroyNode: function(node) { - FS.hashRemoveNode(node); - }, - isRoot: function(node) { - return node === node.parent; - }, - isMountpoint: function(node) { - return !!node.mounted; - }, - isFile: function(mode) { - return (mode & 61440) === 32768; - }, - isDir: function(mode) { - return (mode & 61440) === 16384; - }, - isLink: function(mode) { - return (mode & 61440) === 40960; - }, - isChrdev: function(mode) { - return (mode & 61440) === 8192; - }, - isBlkdev: function(mode) { - return (mode & 61440) === 24576; - }, - isFIFO: function(mode) { - return (mode & 61440) === 4096; - }, - isSocket: function(mode) { - return (mode & 49152) === 49152; - }, - flagModes: {r: 0, "r+": 2, w: 577, "w+": 578, a: 1089, "a+": 1090}, - modeStringToFlags: function(str) { - var flags = FS.flagModes[str]; - if (typeof flags === "undefined") { - throw new Error("Unknown file open mode: " + str); - } - return flags; - }, - flagsToPermissionString: function(flag) { - var perms = ["r", "w", "rw"][flag & 3]; - if (flag & 512) { - perms += "w"; - } - return perms; - }, - nodePermissions: function(node, perms) { - if (FS.ignorePermissions) { - return 0; - } - if (perms.includes("r") && !(node.mode & 292)) { - return 2; - } else if (perms.includes("w") && !(node.mode & 146)) { - return 2; - } else if (perms.includes("x") && !(node.mode & 73)) { - return 2; - } - return 0; - }, - mayLookup: function(dir) { - var errCode = FS.nodePermissions(dir, "x"); - if (errCode) - return errCode; - if (!dir.node_ops.lookup) - return 2; - return 0; - }, - mayCreate: function(dir, name) { - try { - var node = FS.lookupNode(dir, name); - return 20; - } catch (e) { - } - return FS.nodePermissions(dir, "wx"); - }, - mayDelete: function(dir, name, isdir) { - var node; - try { - node = FS.lookupNode(dir, name); - } catch (e) { - return e.errno; - } - var errCode = FS.nodePermissions(dir, "wx"); - if (errCode) { - return errCode; - } - if (isdir) { - if (!FS.isDir(node.mode)) { - return 54; - } - if (FS.isRoot(node) || FS.getPath(node) === FS.cwd()) { - return 10; - } - } else { - if (FS.isDir(node.mode)) { - return 31; - } - } - return 0; - }, - mayOpen: function(node, flags) { - if (!node) { - return 44; - } - if (FS.isLink(node.mode)) { - return 32; - } else if (FS.isDir(node.mode)) { - if (FS.flagsToPermissionString(flags) !== "r" || flags & 512) { - return 31; - } - } - return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - }, - MAX_OPEN_FDS: 4096, - nextfd: function(fd_start, fd_end) { - fd_start = fd_start || 0; - fd_end = fd_end || FS.MAX_OPEN_FDS; - for (var fd = fd_start; fd <= fd_end; fd++) { - if (!FS.streams[fd]) { - return fd; - } - } - throw new FS.ErrnoError(33); - }, - getStream: function(fd) { - return FS.streams[fd]; - }, - createStream: function(stream, fd_start, fd_end) { - if (!FS.FSStream) { - FS.FSStream = function() { - }; - FS.FSStream.prototype = { - object: { - get: function() { - return this.node; - }, - set: function(val) { - this.node = val; - } - }, - isRead: { - get: function() { - return (this.flags & 2097155) !== 1; - } - }, - isWrite: { - get: function() { - return (this.flags & 2097155) !== 0; - } - }, - isAppend: { - get: function() { - return this.flags & 1024; - } - } - }; - } - var newStream = new FS.FSStream(); - for (var p in stream) { - newStream[p] = stream[p]; - } - stream = newStream; - var fd = FS.nextfd(fd_start, fd_end); - stream.fd = fd; - FS.streams[fd] = stream; - return stream; - }, - closeStream: function(fd) { - FS.streams[fd] = null; - }, - chrdev_stream_ops: { - open: function(stream) { - var device = FS.getDevice(stream.node.rdev); - stream.stream_ops = device.stream_ops; - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - }, - llseek: function() { - throw new FS.ErrnoError(70); - } - }, - major: function(dev) { - return dev >> 8; - }, - minor: function(dev) { - return dev & 255; - }, - makedev: function(ma, mi) { - return ma << 8 | mi; - }, - registerDevice: function(dev, ops) { - FS.devices[dev] = {stream_ops: ops}; - }, - getDevice: function(dev) { - return FS.devices[dev]; - }, - getMounts: function(mount) { - var mounts = []; - var check = [mount]; - while (check.length) { - var m = check.pop(); - mounts.push(m); - check.push.apply(check, m.mounts); - } - return mounts; - }, - syncfs: function(populate, callback) { - if (typeof populate === "function") { - callback = populate; - populate = false; - } - FS.syncFSRequests++; - if (FS.syncFSRequests > 1) { - err("warning: " + FS.syncFSRequests + " FS.syncfs operations in flight at once, probably just doing extra work"); - } - var mounts = FS.getMounts(FS.root.mount); - var completed = 0; - function doCallback(errCode) { - FS.syncFSRequests--; - return callback(errCode); - } - function done(errCode) { - if (errCode) { - if (!done.errored) { - done.errored = true; - return doCallback(errCode); - } - return; - } - if (++completed >= mounts.length) { - doCallback(null); - } - } - mounts.forEach(function(mount) { - if (!mount.type.syncfs) { - return done(null); - } - mount.type.syncfs(mount, populate, done); - }); - }, - mount: function(type, opts, mountpoint) { - var root = mountpoint === "/"; - var pseudo = !mountpoint; - var node; - if (root && FS.root) { - throw new FS.ErrnoError(10); - } else if (!root && !pseudo) { - var lookup = FS.lookupPath(mountpoint, {follow_mount: false}); - mountpoint = lookup.path; - node = lookup.node; - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - if (!FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - } - var mount = { - type, - opts, - mountpoint, - mounts: [] - }; - var mountRoot = type.mount(mount); - mountRoot.mount = mount; - mount.root = mountRoot; - if (root) { - FS.root = mountRoot; - } else if (node) { - node.mounted = mount; - if (node.mount) { - node.mount.mounts.push(mount); - } - } - return mountRoot; - }, - unmount: function(mountpoint) { - var lookup = FS.lookupPath(mountpoint, {follow_mount: false}); - if (!FS.isMountpoint(lookup.node)) { - throw new FS.ErrnoError(28); - } - var node = lookup.node; - var mount = node.mounted; - var mounts = FS.getMounts(mount); - Object.keys(FS.nameTable).forEach(function(hash) { - var current = FS.nameTable[hash]; - while (current) { - var next = current.name_next; - if (mounts.includes(current.mount)) { - FS.destroyNode(current); - } - current = next; - } - }); - node.mounted = null; - var idx = node.mount.mounts.indexOf(mount); - node.mount.mounts.splice(idx, 1); - }, - lookup: function(parent, name) { - return parent.node_ops.lookup(parent, name); - }, - mknod: function(path, mode, dev) { - var lookup = FS.lookupPath(path, {parent: true}); - var parent = lookup.node; - var name = PATH.basename(path); - if (!name || name === "." || name === "..") { - throw new FS.ErrnoError(28); - } - var errCode = FS.mayCreate(parent, name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.mknod) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.mknod(parent, name, mode, dev); - }, - create: function(path, mode) { - mode = mode !== void 0 ? mode : 438; - mode &= 4095; - mode |= 32768; - return FS.mknod(path, mode, 0); - }, - mkdir: function(path, mode) { - mode = mode !== void 0 ? mode : 511; - mode &= 511 | 512; - mode |= 16384; - return FS.mknod(path, mode, 0); - }, - mkdirTree: function(path, mode) { - var dirs = path.split("/"); - var d = ""; - for (var i = 0; i < dirs.length; ++i) { - if (!dirs[i]) - continue; - d += "/" + dirs[i]; - try { - FS.mkdir(d, mode); - } catch (e) { - if (e.errno != 20) - throw e; - } - } - }, - mkdev: function(path, mode, dev) { - if (typeof dev === "undefined") { - dev = mode; - mode = 438; - } - mode |= 8192; - return FS.mknod(path, mode, dev); - }, - symlink: function(oldpath, newpath) { - if (!PATH_FS.resolve(oldpath)) { - throw new FS.ErrnoError(44); - } - var lookup = FS.lookupPath(newpath, {parent: true}); - var parent = lookup.node; - if (!parent) { - throw new FS.ErrnoError(44); - } - var newname = PATH.basename(newpath); - var errCode = FS.mayCreate(parent, newname); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.symlink) { - throw new FS.ErrnoError(63); - } - return parent.node_ops.symlink(parent, newname, oldpath); - }, - rename: function(old_path, new_path) { - var old_dirname = PATH.dirname(old_path); - var new_dirname = PATH.dirname(new_path); - var old_name = PATH.basename(old_path); - var new_name = PATH.basename(new_path); - var lookup, old_dir, new_dir; - lookup = FS.lookupPath(old_path, {parent: true}); - old_dir = lookup.node; - lookup = FS.lookupPath(new_path, {parent: true}); - new_dir = lookup.node; - if (!old_dir || !new_dir) - throw new FS.ErrnoError(44); - if (old_dir.mount !== new_dir.mount) { - throw new FS.ErrnoError(75); - } - var old_node = FS.lookupNode(old_dir, old_name); - var relative = PATH_FS.relative(old_path, new_dirname); - if (relative.charAt(0) !== ".") { - throw new FS.ErrnoError(28); - } - relative = PATH_FS.relative(new_path, old_dirname); - if (relative.charAt(0) !== ".") { - throw new FS.ErrnoError(55); - } - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) { - } - if (old_node === new_node) { - return; - } - var isdir = FS.isDir(old_node.mode); - var errCode = FS.mayDelete(old_dir, old_name, isdir); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - errCode = new_node ? FS.mayDelete(new_dir, new_name, isdir) : FS.mayCreate(new_dir, new_name); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!old_dir.node_ops.rename) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(old_node) || new_node && FS.isMountpoint(new_node)) { - throw new FS.ErrnoError(10); - } - if (new_dir !== old_dir) { - errCode = FS.nodePermissions(old_dir, "w"); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - try { - if (FS.trackingDelegate["willMovePath"]) { - FS.trackingDelegate["willMovePath"](old_path, new_path); - } - } catch (e) { - err("FS.trackingDelegate['willMovePath']('" + old_path + "', '" + new_path + "') threw an exception: " + e.message); - } - FS.hashRemoveNode(old_node); - try { - old_dir.node_ops.rename(old_node, new_dir, new_name); - } catch (e) { - throw e; - } finally { - FS.hashAddNode(old_node); - } - try { - if (FS.trackingDelegate["onMovePath"]) - FS.trackingDelegate["onMovePath"](old_path, new_path); - } catch (e) { - err("FS.trackingDelegate['onMovePath']('" + old_path + "', '" + new_path + "') threw an exception: " + e.message); - } - }, - rmdir: function(path) { - var lookup = FS.lookupPath(path, {parent: true}); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, true); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.rmdir) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate["willDeletePath"]) { - FS.trackingDelegate["willDeletePath"](path); - } - } catch (e) { - err("FS.trackingDelegate['willDeletePath']('" + path + "') threw an exception: " + e.message); - } - parent.node_ops.rmdir(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate["onDeletePath"]) - FS.trackingDelegate["onDeletePath"](path); - } catch (e) { - err("FS.trackingDelegate['onDeletePath']('" + path + "') threw an exception: " + e.message); - } - }, - readdir: function(path) { - var lookup = FS.lookupPath(path, {follow: true}); - var node = lookup.node; - if (!node.node_ops.readdir) { - throw new FS.ErrnoError(54); - } - return node.node_ops.readdir(node); - }, - unlink: function(path) { - var lookup = FS.lookupPath(path, {parent: true}); - var parent = lookup.node; - var name = PATH.basename(path); - var node = FS.lookupNode(parent, name); - var errCode = FS.mayDelete(parent, name, false); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - if (!parent.node_ops.unlink) { - throw new FS.ErrnoError(63); - } - if (FS.isMountpoint(node)) { - throw new FS.ErrnoError(10); - } - try { - if (FS.trackingDelegate["willDeletePath"]) { - FS.trackingDelegate["willDeletePath"](path); - } - } catch (e) { - err("FS.trackingDelegate['willDeletePath']('" + path + "') threw an exception: " + e.message); - } - parent.node_ops.unlink(parent, name); - FS.destroyNode(node); - try { - if (FS.trackingDelegate["onDeletePath"]) - FS.trackingDelegate["onDeletePath"](path); - } catch (e) { - err("FS.trackingDelegate['onDeletePath']('" + path + "') threw an exception: " + e.message); - } - }, - readlink: function(path) { - var lookup = FS.lookupPath(path); - var link = lookup.node; - if (!link) { - throw new FS.ErrnoError(44); - } - if (!link.node_ops.readlink) { - throw new FS.ErrnoError(28); - } - return PATH_FS.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); - }, - stat: function(path, dontFollow) { - var lookup = FS.lookupPath(path, {follow: !dontFollow}); - var node = lookup.node; - if (!node) { - throw new FS.ErrnoError(44); - } - if (!node.node_ops.getattr) { - throw new FS.ErrnoError(63); - } - return node.node_ops.getattr(node); - }, - lstat: function(path) { - return FS.stat(path, true); - }, - chmod: function(path, mode, dontFollow) { - var node; - if (typeof path === "string") { - var lookup = FS.lookupPath(path, {follow: !dontFollow}); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, { - mode: mode & 4095 | node.mode & ~4095, - timestamp: Date.now() - }); - }, - lchmod: function(path, mode) { - FS.chmod(path, mode, true); - }, - fchmod: function(fd, mode) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chmod(stream.node, mode); - }, - chown: function(path, uid, gid, dontFollow) { - var node; - if (typeof path === "string") { - var lookup = FS.lookupPath(path, {follow: !dontFollow}); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - node.node_ops.setattr(node, {timestamp: Date.now()}); - }, - lchown: function(path, uid, gid) { - FS.chown(path, uid, gid, true); - }, - fchown: function(fd, uid, gid) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - FS.chown(stream.node, uid, gid); - }, - truncate: function(path, len) { - if (len < 0) { - throw new FS.ErrnoError(28); - } - var node; - if (typeof path === "string") { - var lookup = FS.lookupPath(path, {follow: true}); - node = lookup.node; - } else { - node = path; - } - if (!node.node_ops.setattr) { - throw new FS.ErrnoError(63); - } - if (FS.isDir(node.mode)) { - throw new FS.ErrnoError(31); - } - if (!FS.isFile(node.mode)) { - throw new FS.ErrnoError(28); - } - var errCode = FS.nodePermissions(node, "w"); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - node.node_ops.setattr(node, {size: len, timestamp: Date.now()}); - }, - ftruncate: function(fd, len) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(28); - } - FS.truncate(stream.node, len); - }, - utime: function(path, atime, mtime) { - var lookup = FS.lookupPath(path, {follow: true}); - var node = lookup.node; - node.node_ops.setattr(node, {timestamp: Math.max(atime, mtime)}); - }, - open: function(path, flags, mode, fd_start, fd_end) { - if (path === "") { - throw new FS.ErrnoError(44); - } - flags = typeof flags === "string" ? FS.modeStringToFlags(flags) : flags; - mode = typeof mode === "undefined" ? 438 : mode; - if (flags & 64) { - mode = mode & 4095 | 32768; - } else { - mode = 0; - } - var node; - if (typeof path === "object") { - node = path; - } else { - path = PATH.normalize(path); - try { - var lookup = FS.lookupPath(path, {follow: !(flags & 131072)}); - node = lookup.node; - } catch (e) { - } - } - var created = false; - if (flags & 64) { - if (node) { - if (flags & 128) { - throw new FS.ErrnoError(20); - } - } else { - node = FS.mknod(path, mode, 0); - created = true; - } - } - if (!node) { - throw new FS.ErrnoError(44); - } - if (FS.isChrdev(node.mode)) { - flags &= ~512; - } - if (flags & 65536 && !FS.isDir(node.mode)) { - throw new FS.ErrnoError(54); - } - if (!created) { - var errCode = FS.mayOpen(node, flags); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - } - if (flags & 512) { - FS.truncate(node, 0); - } - flags &= ~(128 | 512 | 131072); - var stream = FS.createStream({ - node, - path: FS.getPath(node), - flags, - seekable: true, - position: 0, - stream_ops: node.stream_ops, - ungotten: [], - error: false - }, fd_start, fd_end); - if (stream.stream_ops.open) { - stream.stream_ops.open(stream); - } - if (Module["logReadFiles"] && !(flags & 1)) { - if (!FS.readFiles) - FS.readFiles = {}; - if (!(path in FS.readFiles)) { - FS.readFiles[path] = 1; - err("FS.trackingDelegate error on read file: " + path); - } - } - try { - if (FS.trackingDelegate["onOpenFile"]) { - var trackingFlags = 0; - if ((flags & 2097155) !== 1) { - trackingFlags |= FS.tracking.openFlags.READ; - } - if ((flags & 2097155) !== 0) { - trackingFlags |= FS.tracking.openFlags.WRITE; - } - FS.trackingDelegate["onOpenFile"](path, trackingFlags); - } - } catch (e) { - err("FS.trackingDelegate['onOpenFile']('" + path + "', flags) threw an exception: " + e.message); - } - return stream; - }, - close: function(stream) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (stream.getdents) - stream.getdents = null; - try { - if (stream.stream_ops.close) { - stream.stream_ops.close(stream); - } - } catch (e) { - throw e; - } finally { - FS.closeStream(stream.fd); - } - stream.fd = null; - }, - isClosed: function(stream) { - return stream.fd === null; - }, - llseek: function(stream, offset, whence) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (!stream.seekable || !stream.stream_ops.llseek) { - throw new FS.ErrnoError(70); - } - if (whence != 0 && whence != 1 && whence != 2) { - throw new FS.ErrnoError(28); - } - stream.position = stream.stream_ops.llseek(stream, offset, whence); - stream.ungotten = []; - return stream.position; - }, - read: function(stream, buffer2, offset, length, position) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.read) { - throw new FS.ErrnoError(28); - } - var seeking = typeof position !== "undefined"; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesRead = stream.stream_ops.read(stream, buffer2, offset, length, position); - if (!seeking) - stream.position += bytesRead; - return bytesRead; - }, - write: function(stream, buffer2, offset, length, position, canOwn) { - if (length < 0 || position < 0) { - throw new FS.ErrnoError(28); - } - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(31); - } - if (!stream.stream_ops.write) { - throw new FS.ErrnoError(28); - } - if (stream.seekable && stream.flags & 1024) { - FS.llseek(stream, 0, 2); - } - var seeking = typeof position !== "undefined"; - if (!seeking) { - position = stream.position; - } else if (!stream.seekable) { - throw new FS.ErrnoError(70); - } - var bytesWritten = stream.stream_ops.write(stream, buffer2, offset, length, position, canOwn); - if (!seeking) - stream.position += bytesWritten; - try { - if (stream.path && FS.trackingDelegate["onWriteToFile"]) - FS.trackingDelegate["onWriteToFile"](stream.path); - } catch (e) { - err("FS.trackingDelegate['onWriteToFile']('" + stream.path + "') threw an exception: " + e.message); - } - return bytesWritten; - }, - allocate: function(stream, offset, length) { - if (FS.isClosed(stream)) { - throw new FS.ErrnoError(8); - } - if (offset < 0 || length <= 0) { - throw new FS.ErrnoError(28); - } - if ((stream.flags & 2097155) === 0) { - throw new FS.ErrnoError(8); - } - if (!FS.isFile(stream.node.mode) && !FS.isDir(stream.node.mode)) { - throw new FS.ErrnoError(43); - } - if (!stream.stream_ops.allocate) { - throw new FS.ErrnoError(138); - } - stream.stream_ops.allocate(stream, offset, length); - }, - mmap: function(stream, address, length, position, prot, flags) { - if ((prot & 2) !== 0 && (flags & 2) === 0 && (stream.flags & 2097155) !== 2) { - throw new FS.ErrnoError(2); - } - if ((stream.flags & 2097155) === 1) { - throw new FS.ErrnoError(2); - } - if (!stream.stream_ops.mmap) { - throw new FS.ErrnoError(43); - } - return stream.stream_ops.mmap(stream, address, length, position, prot, flags); - }, - msync: function(stream, buffer2, offset, length, mmapFlags) { - if (!stream || !stream.stream_ops.msync) { - return 0; - } - return stream.stream_ops.msync(stream, buffer2, offset, length, mmapFlags); - }, - munmap: function(stream) { - return 0; - }, - ioctl: function(stream, cmd, arg) { - if (!stream.stream_ops.ioctl) { - throw new FS.ErrnoError(59); - } - return stream.stream_ops.ioctl(stream, cmd, arg); - }, - readFile: function(path, opts) { - opts = opts || {}; - opts.flags = opts.flags || 0; - opts.encoding = opts.encoding || "binary"; - if (opts.encoding !== "utf8" && opts.encoding !== "binary") { - throw new Error('Invalid encoding type "' + opts.encoding + '"'); - } - var ret; - var stream = FS.open(path, opts.flags); - var stat = FS.stat(path); - var length = stat.size; - var buf = new Uint8Array(length); - FS.read(stream, buf, 0, length, 0); - if (opts.encoding === "utf8") { - ret = UTF8ArrayToString(buf, 0); - } else if (opts.encoding === "binary") { - ret = buf; - } - FS.close(stream); - return ret; - }, - writeFile: function(path, data, opts) { - opts = opts || {}; - opts.flags = opts.flags || 577; - var stream = FS.open(path, opts.flags, opts.mode); - if (typeof data === "string") { - var buf = new Uint8Array(lengthBytesUTF8(data) + 1); - var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); - FS.write(stream, buf, 0, actualNumBytes, void 0, opts.canOwn); - } else if (ArrayBuffer.isView(data)) { - FS.write(stream, data, 0, data.byteLength, void 0, opts.canOwn); - } else { - throw new Error("Unsupported data type"); - } - FS.close(stream); - }, - cwd: function() { - return FS.currentPath; - }, - chdir: function(path) { - var lookup = FS.lookupPath(path, {follow: true}); - if (lookup.node === null) { - throw new FS.ErrnoError(44); - } - if (!FS.isDir(lookup.node.mode)) { - throw new FS.ErrnoError(54); - } - var errCode = FS.nodePermissions(lookup.node, "x"); - if (errCode) { - throw new FS.ErrnoError(errCode); - } - FS.currentPath = lookup.path; - }, - createDefaultDirectories: function() { - FS.mkdir("/tmp"); - FS.mkdir("/home"); - FS.mkdir("/home/web_user"); - }, - createDefaultDevices: function() { - FS.mkdir("/dev"); - FS.registerDevice(FS.makedev(1, 3), { - read: function() { - return 0; - }, - write: function(stream, buffer2, offset, length, pos) { - return length; - } - }); - FS.mkdev("/dev/null", FS.makedev(1, 3)); - TTY.register(FS.makedev(5, 0), TTY.default_tty_ops); - TTY.register(FS.makedev(6, 0), TTY.default_tty1_ops); - FS.mkdev("/dev/tty", FS.makedev(5, 0)); - FS.mkdev("/dev/tty1", FS.makedev(6, 0)); - var random_device = getRandomDevice(); - FS.createDevice("/dev", "random", random_device); - FS.createDevice("/dev", "urandom", random_device); - FS.mkdir("/dev/shm"); - FS.mkdir("/dev/shm/tmp"); - }, - createSpecialDirectories: function() { - FS.mkdir("/proc"); - var proc_self = FS.mkdir("/proc/self"); - FS.mkdir("/proc/self/fd"); - FS.mount({ - mount: function() { - var node = FS.createNode(proc_self, "fd", 16384 | 511, 73); - node.node_ops = { - lookup: function(parent, name) { - var fd = +name; - var stream = FS.getStream(fd); - if (!stream) - throw new FS.ErrnoError(8); - var ret = { - parent: null, - mount: {mountpoint: "fake"}, - node_ops: { - readlink: function() { - return stream.path; - } - } - }; - ret.parent = ret; - return ret; - } - }; - return node; - } - }, {}, "/proc/self/fd"); - }, - createStandardStreams: function() { - if (Module["stdin"]) { - FS.createDevice("/dev", "stdin", Module["stdin"]); - } else { - FS.symlink("/dev/tty", "/dev/stdin"); - } - if (Module["stdout"]) { - FS.createDevice("/dev", "stdout", null, Module["stdout"]); - } else { - FS.symlink("/dev/tty", "/dev/stdout"); - } - if (Module["stderr"]) { - FS.createDevice("/dev", "stderr", null, Module["stderr"]); - } else { - FS.symlink("/dev/tty1", "/dev/stderr"); - } - FS.open("/dev/stdin", 0); - FS.open("/dev/stdout", 1); - FS.open("/dev/stderr", 1); - }, - ensureErrnoError: function() { - if (FS.ErrnoError) - return; - FS.ErrnoError = function ErrnoError(errno, node) { - this.node = node; - this.setErrno = function(errno2) { - this.errno = errno2; - }; - this.setErrno(errno); - this.message = "FS error"; - }; - FS.ErrnoError.prototype = new Error(); - FS.ErrnoError.prototype.constructor = FS.ErrnoError; - [44].forEach(function(code) { - FS.genericErrors[code] = new FS.ErrnoError(code); - FS.genericErrors[code].stack = ""; - }); - }, - staticInit: function() { - FS.ensureErrnoError(); - FS.nameTable = new Array(4096); - FS.mount(MEMFS, {}, "/"); - FS.createDefaultDirectories(); - FS.createDefaultDevices(); - FS.createSpecialDirectories(); - FS.filesystems = {MEMFS, NODEFS}; - }, - init: function(input, output, error) { - FS.init.initialized = true; - FS.ensureErrnoError(); - Module["stdin"] = input || Module["stdin"]; - Module["stdout"] = output || Module["stdout"]; - Module["stderr"] = error || Module["stderr"]; - FS.createStandardStreams(); - }, - quit: function() { - FS.init.initialized = false; - var fflush = Module["_fflush"]; - if (fflush) - fflush(0); - for (var i = 0; i < FS.streams.length; i++) { - var stream = FS.streams[i]; - if (!stream) { - continue; - } - FS.close(stream); - } - }, - getMode: function(canRead, canWrite) { - var mode = 0; - if (canRead) - mode |= 292 | 73; - if (canWrite) - mode |= 146; - return mode; - }, - findObject: function(path, dontResolveLastLink) { - var ret = FS.analyzePath(path, dontResolveLastLink); - if (ret.exists) { - return ret.object; - } else { - return null; - } - }, - analyzePath: function(path, dontResolveLastLink) { - try { - var lookup = FS.lookupPath(path, {follow: !dontResolveLastLink}); - path = lookup.path; - } catch (e) { - } - var ret = { - isRoot: false, - exists: false, - error: 0, - name: null, - path: null, - object: null, - parentExists: false, - parentPath: null, - parentObject: null - }; - try { - var lookup = FS.lookupPath(path, {parent: true}); - ret.parentExists = true; - ret.parentPath = lookup.path; - ret.parentObject = lookup.node; - ret.name = PATH.basename(path); - lookup = FS.lookupPath(path, {follow: !dontResolveLastLink}); - ret.exists = true; - ret.path = lookup.path; - ret.object = lookup.node; - ret.name = lookup.node.name; - ret.isRoot = lookup.path === "/"; - } catch (e) { - ret.error = e.errno; - } - return ret; - }, - createPath: function(parent, path, canRead, canWrite) { - parent = typeof parent === "string" ? parent : FS.getPath(parent); - var parts = path.split("/").reverse(); - while (parts.length) { - var part = parts.pop(); - if (!part) - continue; - var current = PATH.join2(parent, part); - try { - FS.mkdir(current); - } catch (e) { - } - parent = current; - } - return current; - }, - createFile: function(parent, name, properties, canRead, canWrite) { - var path = PATH.join2(typeof parent === "string" ? parent : FS.getPath(parent), name); - var mode = FS.getMode(canRead, canWrite); - return FS.create(path, mode); - }, - createDataFile: function(parent, name, data, canRead, canWrite, canOwn) { - var path = name ? PATH.join2(typeof parent === "string" ? parent : FS.getPath(parent), name) : parent; - var mode = FS.getMode(canRead, canWrite); - var node = FS.create(path, mode); - if (data) { - if (typeof data === "string") { - var arr = new Array(data.length); - for (var i = 0, len = data.length; i < len; ++i) - arr[i] = data.charCodeAt(i); - data = arr; - } - FS.chmod(node, mode | 146); - var stream = FS.open(node, 577); - FS.write(stream, data, 0, data.length, 0, canOwn); - FS.close(stream); - FS.chmod(node, mode); - } - return node; - }, - createDevice: function(parent, name, input, output) { - var path = PATH.join2(typeof parent === "string" ? parent : FS.getPath(parent), name); - var mode = FS.getMode(!!input, !!output); - if (!FS.createDevice.major) - FS.createDevice.major = 64; - var dev = FS.makedev(FS.createDevice.major++, 0); - FS.registerDevice(dev, { - open: function(stream) { - stream.seekable = false; - }, - close: function(stream) { - if (output && output.buffer && output.buffer.length) { - output(10); - } - }, - read: function(stream, buffer2, offset, length, pos) { - var bytesRead = 0; - for (var i = 0; i < length; i++) { - var result; - try { - result = input(); - } catch (e) { - throw new FS.ErrnoError(29); - } - if (result === void 0 && bytesRead === 0) { - throw new FS.ErrnoError(6); - } - if (result === null || result === void 0) - break; - bytesRead++; - buffer2[offset + i] = result; - } - if (bytesRead) { - stream.node.timestamp = Date.now(); - } - return bytesRead; - }, - write: function(stream, buffer2, offset, length, pos) { - for (var i = 0; i < length; i++) { - try { - output(buffer2[offset + i]); - } catch (e) { - throw new FS.ErrnoError(29); - } - } - if (length) { - stream.node.timestamp = Date.now(); - } - return i; - } - }); - return FS.mkdev(path, mode, dev); - }, - forceLoadFile: function(obj) { - if (obj.isDevice || obj.isFolder || obj.link || obj.contents) - return true; - if (read_) { - try { - obj.contents = intArrayFromString(read_(obj.url), true); - obj.usedBytes = obj.contents.length; - } catch (e) { - throw new FS.ErrnoError(29); - } - } else { - throw new Error("Cannot load without read() or XMLHttpRequest."); - } - }, - createLazyFile: function(parent, name, url, canRead, canWrite) { - var properties; { - var properties = {isDevice: false, url}; - } - var node = FS.createFile(parent, name, properties, canRead, canWrite); - if (properties.contents) { - node.contents = properties.contents; - } else if (properties.url) { - node.contents = null; - node.url = properties.url; - } - Object.defineProperties(node, { - usedBytes: { - get: function() { - return this.contents.length; - } - } - }); - var stream_ops = {}; - var keys = Object.keys(node.stream_ops); - keys.forEach(function(key2) { - var fn = node.stream_ops[key2]; - stream_ops[key2] = function forceLoadLazyFile() { - FS.forceLoadFile(node); - return fn.apply(null, arguments); - }; - }); - stream_ops.read = function stream_ops_read(stream, buffer2, offset, length, position) { - FS.forceLoadFile(node); - var contents = stream.node.contents; - if (position >= contents.length) - return 0; - var size = Math.min(contents.length - position, length); - if (contents.slice) { - for (var i = 0; i < size; i++) { - buffer2[offset + i] = contents[position + i]; - } - } else { - for (var i = 0; i < size; i++) { - buffer2[offset + i] = contents.get(position + i); - } - } - return size; - }; - node.stream_ops = stream_ops; - return node; - }, - createPreloadedFile: function(parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) { - Browser.init(); - var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; - function processData(byteArray) { - function finish(byteArray2) { - if (preFinish) - preFinish(); - if (!dontCreateFile) { - FS.createDataFile(parent, name, byteArray2, canRead, canWrite, canOwn); - } - if (onload) - onload(); - removeRunDependency(); - } - var handled = false; - Module["preloadPlugins"].forEach(function(plugin) { - if (handled) - return; - if (plugin["canHandle"](fullname)) { - plugin["handle"](byteArray, fullname, finish, function() { - if (onerror) - onerror(); - removeRunDependency(); - }); - handled = true; - } - }); - if (!handled) - finish(byteArray); - } - addRunDependency(); - if (typeof url == "string") { - Browser.asyncLoad(url, function(byteArray) { - processData(byteArray); - }, onerror); - } else { - processData(url); - } - }, - indexedDB: function() { - return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; - }, - DB_NAME: function() { - return "EM_FS_" + window.location.pathname; - }, - DB_VERSION: 20, - DB_STORE_NAME: "FILE_DATA", - saveFilesToDB: function(paths, onload, onerror) { - onload = onload || function() { - }; - onerror = onerror || function() { - }; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = function openRequest_onupgradeneeded() { - out("creating db"); - var db = openRequest.result; - db.createObjectStore(FS.DB_STORE_NAME); - }; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - var transaction = db.transaction([FS.DB_STORE_NAME], "readwrite"); - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) - onload(); - else - onerror(); - } - paths.forEach(function(path) { - var putRequest = files.put(FS.analyzePath(path).object.contents, path); - putRequest.onsuccess = function putRequest_onsuccess() { - ok++; - if (ok + fail == total) - finish(); - }; - putRequest.onerror = function putRequest_onerror() { - fail++; - if (ok + fail == total) - finish(); - }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - }, - loadFilesFromDB: function(paths, onload, onerror) { - onload = onload || function() { - }; - onerror = onerror || function() { - }; - var indexedDB = FS.indexedDB(); - try { - var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); - } catch (e) { - return onerror(e); - } - openRequest.onupgradeneeded = onerror; - openRequest.onsuccess = function openRequest_onsuccess() { - var db = openRequest.result; - try { - var transaction = db.transaction([FS.DB_STORE_NAME], "readonly"); - } catch (e) { - onerror(e); - return; - } - var files = transaction.objectStore(FS.DB_STORE_NAME); - var ok = 0, fail = 0, total = paths.length; - function finish() { - if (fail == 0) - onload(); - else - onerror(); - } - paths.forEach(function(path) { - var getRequest = files.get(path); - getRequest.onsuccess = function getRequest_onsuccess() { - if (FS.analyzePath(path).exists) { - FS.unlink(path); - } - FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); - ok++; - if (ok + fail == total) - finish(); - }; - getRequest.onerror = function getRequest_onerror() { - fail++; - if (ok + fail == total) - finish(); - }; - }); - transaction.onerror = onerror; - }; - openRequest.onerror = onerror; - } - }; - var SYSCALLS = { - mappings: {}, - DEFAULT_POLLMASK: 5, - umask: 511, - calculateAt: function(dirfd, path, allowEmpty) { - if (path[0] === "/") { - return path; - } - var dir; - if (dirfd === -100) { - dir = FS.cwd(); - } else { - var dirstream = FS.getStream(dirfd); - if (!dirstream) - throw new FS.ErrnoError(8); - dir = dirstream.path; - } - if (path.length == 0) { - if (!allowEmpty) { - throw new FS.ErrnoError(44); - } - return dir; - } - return PATH.join2(dir, path); - }, - doStat: function(func, path, buf) { - try { - var stat = func(path); - } catch (e) { - if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { - return -54; - } - throw e; - } - HEAP32[buf >> 2] = stat.dev; - HEAP32[buf + 4 >> 2] = 0; - HEAP32[buf + 8 >> 2] = stat.ino; - HEAP32[buf + 12 >> 2] = stat.mode; - HEAP32[buf + 16 >> 2] = stat.nlink; - HEAP32[buf + 20 >> 2] = stat.uid; - HEAP32[buf + 24 >> 2] = stat.gid; - HEAP32[buf + 28 >> 2] = stat.rdev; - HEAP32[buf + 32 >> 2] = 0; - tempI64 = [ - stat.size >>> 0, - (tempDouble = stat.size, +Math.abs(tempDouble) >= 1 ? tempDouble > 0 ? (Math.min(+Math.floor(tempDouble / 4294967296), 4294967295) | 0) >>> 0 : ~~+Math.ceil((tempDouble - +(~~tempDouble >>> 0)) / 4294967296) >>> 0 : 0) - ], HEAP32[buf + 40 >> 2] = tempI64[0], HEAP32[buf + 44 >> 2] = tempI64[1]; - HEAP32[buf + 48 >> 2] = 4096; - HEAP32[buf + 52 >> 2] = stat.blocks; - HEAP32[buf + 56 >> 2] = stat.atime.getTime() / 1e3 | 0; - HEAP32[buf + 60 >> 2] = 0; - HEAP32[buf + 64 >> 2] = stat.mtime.getTime() / 1e3 | 0; - HEAP32[buf + 68 >> 2] = 0; - HEAP32[buf + 72 >> 2] = stat.ctime.getTime() / 1e3 | 0; - HEAP32[buf + 76 >> 2] = 0; - tempI64 = [ - stat.ino >>> 0, - (tempDouble = stat.ino, +Math.abs(tempDouble) >= 1 ? tempDouble > 0 ? (Math.min(+Math.floor(tempDouble / 4294967296), 4294967295) | 0) >>> 0 : ~~+Math.ceil((tempDouble - +(~~tempDouble >>> 0)) / 4294967296) >>> 0 : 0) - ], HEAP32[buf + 80 >> 2] = tempI64[0], HEAP32[buf + 84 >> 2] = tempI64[1]; - return 0; - }, - doMsync: function(addr, stream, len, flags, offset) { - var buffer2 = HEAPU8.slice(addr, addr + len); - FS.msync(stream, buffer2, offset, len, flags); - }, - doMkdir: function(path, mode) { - path = PATH.normalize(path); - if (path[path.length - 1] === "/") - path = path.substr(0, path.length - 1); - FS.mkdir(path, mode, 0); - return 0; - }, - doMknod: function(path, mode, dev) { - switch (mode & 61440) { - case 32768: - case 8192: - case 24576: - case 4096: - case 49152: - break; - default: - return -28; - } - FS.mknod(path, mode, dev); - return 0; - }, - doReadlink: function(path, buf, bufsize) { - if (bufsize <= 0) - return -28; - var ret = FS.readlink(path); - var len = Math.min(bufsize, lengthBytesUTF8(ret)); - var endChar = HEAP8[buf + len]; - stringToUTF8(ret, buf, bufsize + 1); - HEAP8[buf + len] = endChar; - return len; - }, - doAccess: function(path, amode) { - if (amode & ~7) { - return -28; - } - var node; - var lookup = FS.lookupPath(path, {follow: true}); - node = lookup.node; - if (!node) { - return -44; - } - var perms = ""; - if (amode & 4) - perms += "r"; - if (amode & 2) - perms += "w"; - if (amode & 1) - perms += "x"; - if (perms && FS.nodePermissions(node, perms)) { - return -2; - } - return 0; - }, - doDup: function(path, flags, suggestFD) { - var suggest = FS.getStream(suggestFD); - if (suggest) - FS.close(suggest); - return FS.open(path, flags, 0, suggestFD, suggestFD).fd; - }, - doReadv: function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[iov + i * 8 >> 2]; - var len = HEAP32[iov + (i * 8 + 4) >> 2]; - var curr = FS.read(stream, HEAP8, ptr, len, offset); - if (curr < 0) - return -1; - ret += curr; - if (curr < len) - break; - } - return ret; - }, - doWritev: function(stream, iov, iovcnt, offset) { - var ret = 0; - for (var i = 0; i < iovcnt; i++) { - var ptr = HEAP32[iov + i * 8 >> 2]; - var len = HEAP32[iov + (i * 8 + 4) >> 2]; - var curr = FS.write(stream, HEAP8, ptr, len, offset); - if (curr < 0) - return -1; - ret += curr; - } - return ret; - }, - varargs: void 0, - get: function() { - SYSCALLS.varargs += 4; - var ret = HEAP32[SYSCALLS.varargs - 4 >> 2]; - return ret; - }, - getStr: function(ptr) { - var ret = UTF8ToString(ptr); - return ret; - }, - getStreamFromFD: function(fd) { - var stream = FS.getStream(fd); - if (!stream) - throw new FS.ErrnoError(8); - return stream; - }, - get64: function(low, high) { - return low; - } - }; - function ___sys_chmod(path, mode) { - try { - path = SYSCALLS.getStr(path); - FS.chmod(path, mode); - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function setErrNo(value) { - HEAP32[___errno_location() >> 2] = value; - return value; - } - function ___sys_fcntl64(fd, cmd, varargs) { - SYSCALLS.varargs = varargs; - try { - var stream = SYSCALLS.getStreamFromFD(fd); - switch (cmd) { - case 0: { - var arg = SYSCALLS.get(); - if (arg < 0) { - return -28; - } - var newStream; - newStream = FS.open(stream.path, stream.flags, 0, arg); - return newStream.fd; - } - case 1: - case 2: - return 0; - case 3: - return stream.flags; - case 4: { - var arg = SYSCALLS.get(); - stream.flags |= arg; - return 0; - } - case 12: { - var arg = SYSCALLS.get(); - var offset = 0; - HEAP16[arg + offset >> 1] = 2; - return 0; - } - case 13: - case 14: - return 0; - case 16: - case 8: - return -28; - case 9: - setErrNo(28); - return -1; - default: { - return -28; - } - } - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_fstat64(fd, buf) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - return SYSCALLS.doStat(FS.stat, stream.path, buf); - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_ioctl(fd, op, varargs) { - SYSCALLS.varargs = varargs; - try { - var stream = SYSCALLS.getStreamFromFD(fd); - switch (op) { - case 21509: - case 21505: { - if (!stream.tty) - return -59; - return 0; - } - case 21510: - case 21511: - case 21512: - case 21506: - case 21507: - case 21508: { - if (!stream.tty) - return -59; - return 0; - } - case 21519: { - if (!stream.tty) - return -59; - var argp = SYSCALLS.get(); - HEAP32[argp >> 2] = 0; - return 0; - } - case 21520: { - if (!stream.tty) - return -59; - return -28; - } - case 21531: { - var argp = SYSCALLS.get(); - return FS.ioctl(stream, op, argp); - } - case 21523: { - if (!stream.tty) - return -59; - return 0; - } - case 21524: { - if (!stream.tty) - return -59; - return 0; - } - default: - abort("bad ioctl syscall " + op); - } - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_open(path, flags, varargs) { - SYSCALLS.varargs = varargs; - try { - var pathname = SYSCALLS.getStr(path); - var mode = varargs ? SYSCALLS.get() : 0; - var stream = FS.open(pathname, flags, mode); - return stream.fd; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_rename(old_path, new_path) { - try { - old_path = SYSCALLS.getStr(old_path); - new_path = SYSCALLS.getStr(new_path); - FS.rename(old_path, new_path); - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_rmdir(path) { - try { - path = SYSCALLS.getStr(path); - FS.rmdir(path); - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_stat64(path, buf) { - try { - path = SYSCALLS.getStr(path); - return SYSCALLS.doStat(FS.stat, path, buf); - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function ___sys_unlink(path) { - try { - path = SYSCALLS.getStr(path); - FS.unlink(path); - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return -e.errno; - } - } - function _emscripten_memcpy_big(dest, src, num) { - HEAPU8.copyWithin(dest, src, src + num); - } - function emscripten_realloc_buffer(size) { - try { - wasmMemory.grow(size - buffer.byteLength + 65535 >>> 16); - updateGlobalBufferAndViews(wasmMemory.buffer); - return 1; - } catch (e) { - } - } - function _emscripten_resize_heap(requestedSize) { - var oldSize = HEAPU8.length; - requestedSize = requestedSize >>> 0; - var maxHeapSize = 2147483648; - if (requestedSize > maxHeapSize) { - return false; - } - for (var cutDown = 1; cutDown <= 4; cutDown *= 2) { - var overGrownHeapSize = oldSize * (1 + 0.2 / cutDown); - overGrownHeapSize = Math.min(overGrownHeapSize, requestedSize + 100663296); - var newSize = Math.min(maxHeapSize, alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)); - var replacement = emscripten_realloc_buffer(newSize); - if (replacement) { - return true; - } - } - return false; - } - function _fd_close(fd) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - FS.close(stream); - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return e.errno; - } - } - function _fd_fdstat_get(fd, pbuf) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - var type = stream.tty ? 2 : FS.isDir(stream.mode) ? 3 : FS.isLink(stream.mode) ? 7 : 4; - HEAP8[pbuf >> 0] = type; - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return e.errno; - } - } - function _fd_read(fd, iov, iovcnt, pnum) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doReadv(stream, iov, iovcnt); - HEAP32[pnum >> 2] = num; - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return e.errno; - } - } - function _fd_seek(fd, offset_low, offset_high, whence, newOffset) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - var HIGH_OFFSET = 4294967296; - var offset = offset_high * HIGH_OFFSET + (offset_low >>> 0); - var DOUBLE_LIMIT = 9007199254740992; - if (offset <= -DOUBLE_LIMIT || offset >= DOUBLE_LIMIT) { - return -61; - } - FS.llseek(stream, offset, whence); - tempI64 = [ - stream.position >>> 0, - (tempDouble = stream.position, +Math.abs(tempDouble) >= 1 ? tempDouble > 0 ? (Math.min(+Math.floor(tempDouble / 4294967296), 4294967295) | 0) >>> 0 : ~~+Math.ceil((tempDouble - +(~~tempDouble >>> 0)) / 4294967296) >>> 0 : 0) - ], HEAP32[newOffset >> 2] = tempI64[0], HEAP32[newOffset + 4 >> 2] = tempI64[1]; - if (stream.getdents && offset === 0 && whence === 0) - stream.getdents = null; - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return e.errno; - } - } - function _fd_write(fd, iov, iovcnt, pnum) { - try { - var stream = SYSCALLS.getStreamFromFD(fd); - var num = SYSCALLS.doWritev(stream, iov, iovcnt); - HEAP32[pnum >> 2] = num; - return 0; - } catch (e) { - if (typeof FS === "undefined" || !(e instanceof FS.ErrnoError)) - abort(e); - return e.errno; - } - } - function _setTempRet0(val) { - } - function _time(ptr) { - var ret = Date.now() / 1e3 | 0; - if (ptr) { - HEAP32[ptr >> 2] = ret; - } - return ret; - } - function _tzset() { - if (_tzset.called) - return; - _tzset.called = true; - var currentYear = new Date().getFullYear(); - var winter = new Date(currentYear, 0, 1); - var summer = new Date(currentYear, 6, 1); - var winterOffset = winter.getTimezoneOffset(); - var summerOffset = summer.getTimezoneOffset(); - var stdTimezoneOffset = Math.max(winterOffset, summerOffset); - HEAP32[__get_timezone() >> 2] = stdTimezoneOffset * 60; - HEAP32[__get_daylight() >> 2] = Number(winterOffset != summerOffset); - function extractZone(date) { - var match = date.toTimeString().match(/\(([A-Za-z ]+)\)$/); - return match ? match[1] : "GMT"; - } - var winterName = extractZone(winter); - var summerName = extractZone(summer); - var winterNamePtr = allocateUTF8(winterName); - var summerNamePtr = allocateUTF8(summerName); - if (summerOffset < winterOffset) { - HEAP32[__get_tzname() >> 2] = winterNamePtr; - HEAP32[__get_tzname() + 4 >> 2] = summerNamePtr; - } else { - HEAP32[__get_tzname() >> 2] = summerNamePtr; - HEAP32[__get_tzname() + 4 >> 2] = winterNamePtr; - } - } - function _timegm(tmPtr) { - _tzset(); - var time = Date.UTC(HEAP32[tmPtr + 20 >> 2] + 1900, HEAP32[tmPtr + 16 >> 2], HEAP32[tmPtr + 12 >> 2], HEAP32[tmPtr + 8 >> 2], HEAP32[tmPtr + 4 >> 2], HEAP32[tmPtr >> 2], 0); - var date = new Date(time); - HEAP32[tmPtr + 24 >> 2] = date.getUTCDay(); - var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0); - var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0; - HEAP32[tmPtr + 28 >> 2] = yday; - return date.getTime() / 1e3 | 0; - } - var FSNode = function(parent, name, mode, rdev) { - if (!parent) { - parent = this; - } - this.parent = parent; - this.mount = parent.mount; - this.mounted = null; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.node_ops = {}; - this.stream_ops = {}; - this.rdev = rdev; - }; - var readMode = 292 | 73; - var writeMode = 146; - Object.defineProperties(FSNode.prototype, { - read: { - get: function() { - return (this.mode & readMode) === readMode; - }, - set: function(val) { - val ? this.mode |= readMode : this.mode &= ~readMode; - } - }, - write: { - get: function() { - return (this.mode & writeMode) === writeMode; - }, - set: function(val) { - val ? this.mode |= writeMode : this.mode &= ~writeMode; - } - }, - isFolder: { - get: function() { - return FS.isDir(this.mode); - } - }, - isDevice: { - get: function() { - return FS.isChrdev(this.mode); - } - } - }); - FS.FSNode = FSNode; - FS.staticInit(); - { - var fs = frozenFs; - var NODEJS_PATH = path__default.default; - NODEFS.staticInit(); - } - { - var _wrapNodeError = function(func) { - return function() { - try { - return func.apply(this, arguments); - } catch (e) { - if (!e.code) - throw e; - throw new FS.ErrnoError(ERRNO_CODES[e.code]); - } - }; - }; - var VFS = Object.assign({}, FS); - for (var _key in NODERAWFS) - FS[_key] = _wrapNodeError(NODERAWFS[_key]); - } - function intArrayFromString(stringy, dontAddNull, length) { - var len = length > 0 ? length : lengthBytesUTF8(stringy) + 1; - var u8array = new Array(len); - var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); - if (dontAddNull) - u8array.length = numBytesWritten; - return u8array; - } - function intArrayFromBase64(s) { - { - var buf; - try { - buf = Buffer.from(s, "base64"); - } catch (_) { - buf = new Buffer(s, "base64"); - } - return new Uint8Array(buf["buffer"], buf["byteOffset"], buf["byteLength"]); - } - } - function tryParseAsDataURI(filename) { - if (!isDataURI(filename)) { - return; - } - return intArrayFromBase64(filename.slice(dataURIPrefix.length)); - } - var asmLibraryArg = { - s: ___gmtime_r, - p: ___sys_chmod, - e: ___sys_fcntl64, - k: ___sys_fstat64, - o: ___sys_ioctl, - q: ___sys_open, - i: ___sys_rename, - r: ___sys_rmdir, - c: ___sys_stat64, - h: ___sys_unlink, - l: _emscripten_memcpy_big, - m: _emscripten_resize_heap, - f: _fd_close, - j: _fd_fdstat_get, - g: _fd_read, - n: _fd_seek, - d: _fd_write, - a: _setTempRet0, - b: _time, - t: _timegm - }; - var asm = createWasm(); - Module["___wasm_call_ctors"] = asm["v"]; - Module["_zip_ext_count_symlinks"] = asm["w"]; - Module["_zip_file_get_external_attributes"] = asm["x"]; - Module["_zipstruct_stat"] = asm["y"]; - Module["_zipstruct_statS"] = asm["z"]; - Module["_zipstruct_stat_name"] = asm["A"]; - Module["_zipstruct_stat_index"] = asm["B"]; - Module["_zipstruct_stat_size"] = asm["C"]; - Module["_zipstruct_stat_mtime"] = asm["D"]; - Module["_zipstruct_stat_crc"] = asm["E"]; - Module["_zipstruct_error"] = asm["F"]; - Module["_zipstruct_errorS"] = asm["G"]; - Module["_zipstruct_error_code_zip"] = asm["H"]; - Module["_zipstruct_stat_comp_size"] = asm["I"]; - Module["_zipstruct_stat_comp_method"] = asm["J"]; - Module["_zip_close"] = asm["K"]; - Module["_zip_delete"] = asm["L"]; - Module["_zip_dir_add"] = asm["M"]; - Module["_zip_discard"] = asm["N"]; - Module["_zip_error_init_with_code"] = asm["O"]; - Module["_zip_get_error"] = asm["P"]; - Module["_zip_file_get_error"] = asm["Q"]; - Module["_zip_error_strerror"] = asm["R"]; - Module["_zip_fclose"] = asm["S"]; - Module["_zip_file_add"] = asm["T"]; - Module["_free"] = asm["U"]; - var _malloc = Module["_malloc"] = asm["V"]; - var ___errno_location = Module["___errno_location"] = asm["W"]; - Module["_zip_source_error"] = asm["X"]; - Module["_zip_source_seek"] = asm["Y"]; - Module["_zip_file_set_external_attributes"] = asm["Z"]; - Module["_zip_file_set_mtime"] = asm["_"]; - Module["_zip_fopen"] = asm["$"]; - Module["_zip_fopen_index"] = asm["aa"]; - Module["_zip_fread"] = asm["ba"]; - Module["_zip_get_name"] = asm["ca"]; - Module["_zip_get_num_entries"] = asm["da"]; - Module["_zip_source_read"] = asm["ea"]; - Module["_zip_name_locate"] = asm["fa"]; - Module["_zip_open"] = asm["ga"]; - Module["_zip_open_from_source"] = asm["ha"]; - Module["_zip_set_file_compression"] = asm["ia"]; - Module["_zip_source_buffer"] = asm["ja"]; - Module["_zip_source_buffer_create"] = asm["ka"]; - Module["_zip_source_close"] = asm["la"]; - Module["_zip_source_free"] = asm["ma"]; - Module["_zip_source_keep"] = asm["na"]; - Module["_zip_source_open"] = asm["oa"]; - Module["_zip_source_set_mtime"] = asm["qa"]; - Module["_zip_source_tell"] = asm["ra"]; - Module["_zip_stat"] = asm["sa"]; - Module["_zip_stat_index"] = asm["ta"]; - var __get_tzname = Module["__get_tzname"] = asm["ua"]; - var __get_daylight = Module["__get_daylight"] = asm["va"]; - var __get_timezone = Module["__get_timezone"] = asm["wa"]; - var stackSave = Module["stackSave"] = asm["xa"]; - var stackRestore = Module["stackRestore"] = asm["ya"]; - var stackAlloc = Module["stackAlloc"] = asm["za"]; - Module["cwrap"] = cwrap; - Module["getValue"] = getValue; - var calledRun; - dependenciesFulfilled = function runCaller() { - if (!calledRun) - run(); - if (!calledRun) - dependenciesFulfilled = runCaller; - }; - function run(args) { - if (runDependencies > 0) { - return; - } - preRun(); - if (runDependencies > 0) { - return; - } - function doRun() { - if (calledRun) - return; - calledRun = true; - Module["calledRun"] = true; - if (ABORT) - return; - initRuntime(); - readyPromiseResolve(Module); - if (Module["onRuntimeInitialized"]) - Module["onRuntimeInitialized"](); - postRun(); - } - if (Module["setStatus"]) { - Module["setStatus"]("Running..."); - setTimeout(function() { - setTimeout(function() { - Module["setStatus"](""); - }, 1); - doRun(); - }, 1); - } else { - doRun(); - } - } - Module["run"] = run; - if (Module["preInit"]) { - if (typeof Module["preInit"] == "function") - Module["preInit"] = [Module["preInit"]]; - while (Module["preInit"].length > 0) { - Module["preInit"].pop()(); - } - } - run(); - return createModule2; - }; -}(); -module.exports = createModule; -}(libzipSync)); - -const createModule = libzipSync.exports; - -const number64 = [ - `number`, - `number` -]; -var Errors; -(function(Errors2) { - Errors2[Errors2["ZIP_ER_OK"] = 0] = "ZIP_ER_OK"; - Errors2[Errors2["ZIP_ER_MULTIDISK"] = 1] = "ZIP_ER_MULTIDISK"; - Errors2[Errors2["ZIP_ER_RENAME"] = 2] = "ZIP_ER_RENAME"; - Errors2[Errors2["ZIP_ER_CLOSE"] = 3] = "ZIP_ER_CLOSE"; - Errors2[Errors2["ZIP_ER_SEEK"] = 4] = "ZIP_ER_SEEK"; - Errors2[Errors2["ZIP_ER_READ"] = 5] = "ZIP_ER_READ"; - Errors2[Errors2["ZIP_ER_WRITE"] = 6] = "ZIP_ER_WRITE"; - Errors2[Errors2["ZIP_ER_CRC"] = 7] = "ZIP_ER_CRC"; - Errors2[Errors2["ZIP_ER_ZIPCLOSED"] = 8] = "ZIP_ER_ZIPCLOSED"; - Errors2[Errors2["ZIP_ER_NOENT"] = 9] = "ZIP_ER_NOENT"; - Errors2[Errors2["ZIP_ER_EXISTS"] = 10] = "ZIP_ER_EXISTS"; - Errors2[Errors2["ZIP_ER_OPEN"] = 11] = "ZIP_ER_OPEN"; - Errors2[Errors2["ZIP_ER_TMPOPEN"] = 12] = "ZIP_ER_TMPOPEN"; - Errors2[Errors2["ZIP_ER_ZLIB"] = 13] = "ZIP_ER_ZLIB"; - Errors2[Errors2["ZIP_ER_MEMORY"] = 14] = "ZIP_ER_MEMORY"; - Errors2[Errors2["ZIP_ER_CHANGED"] = 15] = "ZIP_ER_CHANGED"; - Errors2[Errors2["ZIP_ER_COMPNOTSUPP"] = 16] = "ZIP_ER_COMPNOTSUPP"; - Errors2[Errors2["ZIP_ER_EOF"] = 17] = "ZIP_ER_EOF"; - Errors2[Errors2["ZIP_ER_INVAL"] = 18] = "ZIP_ER_INVAL"; - Errors2[Errors2["ZIP_ER_NOZIP"] = 19] = "ZIP_ER_NOZIP"; - Errors2[Errors2["ZIP_ER_INTERNAL"] = 20] = "ZIP_ER_INTERNAL"; - Errors2[Errors2["ZIP_ER_INCONS"] = 21] = "ZIP_ER_INCONS"; - Errors2[Errors2["ZIP_ER_REMOVE"] = 22] = "ZIP_ER_REMOVE"; - Errors2[Errors2["ZIP_ER_DELETED"] = 23] = "ZIP_ER_DELETED"; - Errors2[Errors2["ZIP_ER_ENCRNOTSUPP"] = 24] = "ZIP_ER_ENCRNOTSUPP"; - Errors2[Errors2["ZIP_ER_RDONLY"] = 25] = "ZIP_ER_RDONLY"; - Errors2[Errors2["ZIP_ER_NOPASSWD"] = 26] = "ZIP_ER_NOPASSWD"; - Errors2[Errors2["ZIP_ER_WRONGPASSWD"] = 27] = "ZIP_ER_WRONGPASSWD"; - Errors2[Errors2["ZIP_ER_OPNOTSUPP"] = 28] = "ZIP_ER_OPNOTSUPP"; - Errors2[Errors2["ZIP_ER_INUSE"] = 29] = "ZIP_ER_INUSE"; - Errors2[Errors2["ZIP_ER_TELL"] = 30] = "ZIP_ER_TELL"; - Errors2[Errors2["ZIP_ER_COMPRESSED_DATA"] = 31] = "ZIP_ER_COMPRESSED_DATA"; -})(Errors || (Errors = {})); -const makeInterface = (libzip) => ({ - get HEAP8() { - return libzip.HEAP8; - }, - get HEAPU8() { - return libzip.HEAPU8; - }, - errors: Errors, - SEEK_SET: 0, - SEEK_CUR: 1, - SEEK_END: 2, - ZIP_CHECKCONS: 4, - ZIP_CREATE: 1, - ZIP_EXCL: 2, - ZIP_TRUNCATE: 8, - ZIP_RDONLY: 16, - ZIP_FL_OVERWRITE: 8192, - ZIP_FL_COMPRESSED: 4, - ZIP_OPSYS_DOS: 0, - ZIP_OPSYS_AMIGA: 1, - ZIP_OPSYS_OPENVMS: 2, - ZIP_OPSYS_UNIX: 3, - ZIP_OPSYS_VM_CMS: 4, - ZIP_OPSYS_ATARI_ST: 5, - ZIP_OPSYS_OS_2: 6, - ZIP_OPSYS_MACINTOSH: 7, - ZIP_OPSYS_Z_SYSTEM: 8, - ZIP_OPSYS_CPM: 9, - ZIP_OPSYS_WINDOWS_NTFS: 10, - ZIP_OPSYS_MVS: 11, - ZIP_OPSYS_VSE: 12, - ZIP_OPSYS_ACORN_RISC: 13, - ZIP_OPSYS_VFAT: 14, - ZIP_OPSYS_ALTERNATE_MVS: 15, - ZIP_OPSYS_BEOS: 16, - ZIP_OPSYS_TANDEM: 17, - ZIP_OPSYS_OS_400: 18, - ZIP_OPSYS_OS_X: 19, - ZIP_CM_DEFAULT: -1, - ZIP_CM_STORE: 0, - ZIP_CM_DEFLATE: 8, - uint08S: libzip._malloc(1), - uint16S: libzip._malloc(2), - uint32S: libzip._malloc(4), - uint64S: libzip._malloc(8), - malloc: libzip._malloc, - free: libzip._free, - getValue: libzip.getValue, - open: libzip.cwrap(`zip_open`, `number`, [`string`, `number`, `number`]), - openFromSource: libzip.cwrap(`zip_open_from_source`, `number`, [`number`, `number`, `number`]), - close: libzip.cwrap(`zip_close`, `number`, [`number`]), - discard: libzip.cwrap(`zip_discard`, null, [`number`]), - getError: libzip.cwrap(`zip_get_error`, `number`, [`number`]), - getName: libzip.cwrap(`zip_get_name`, `string`, [`number`, `number`, `number`]), - getNumEntries: libzip.cwrap(`zip_get_num_entries`, `number`, [`number`, `number`]), - delete: libzip.cwrap(`zip_delete`, `number`, [`number`, `number`]), - stat: libzip.cwrap(`zip_stat`, `number`, [`number`, `string`, `number`, `number`]), - statIndex: libzip.cwrap(`zip_stat_index`, `number`, [`number`, ...number64, `number`, `number`]), - fopen: libzip.cwrap(`zip_fopen`, `number`, [`number`, `string`, `number`]), - fopenIndex: libzip.cwrap(`zip_fopen_index`, `number`, [`number`, ...number64, `number`]), - fread: libzip.cwrap(`zip_fread`, `number`, [`number`, `number`, `number`, `number`]), - fclose: libzip.cwrap(`zip_fclose`, `number`, [`number`]), - dir: { - add: libzip.cwrap(`zip_dir_add`, `number`, [`number`, `string`]) - }, - file: { - add: libzip.cwrap(`zip_file_add`, `number`, [`number`, `string`, `number`, `number`]), - getError: libzip.cwrap(`zip_file_get_error`, `number`, [`number`]), - getExternalAttributes: libzip.cwrap(`zip_file_get_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]), - setExternalAttributes: libzip.cwrap(`zip_file_set_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]), - setMtime: libzip.cwrap(`zip_file_set_mtime`, `number`, [`number`, ...number64, `number`, `number`]), - setCompression: libzip.cwrap(`zip_set_file_compression`, `number`, [`number`, ...number64, `number`, `number`]) - }, - ext: { - countSymlinks: libzip.cwrap(`zip_ext_count_symlinks`, `number`, [`number`]) - }, - error: { - initWithCode: libzip.cwrap(`zip_error_init_with_code`, null, [`number`, `number`]), - strerror: libzip.cwrap(`zip_error_strerror`, `string`, [`number`]) - }, - name: { - locate: libzip.cwrap(`zip_name_locate`, `number`, [`number`, `string`, `number`]) - }, - source: { - fromUnattachedBuffer: libzip.cwrap(`zip_source_buffer_create`, `number`, [`number`, `number`, `number`, `number`]), - fromBuffer: libzip.cwrap(`zip_source_buffer`, `number`, [`number`, `number`, ...number64, `number`]), - free: libzip.cwrap(`zip_source_free`, null, [`number`]), - keep: libzip.cwrap(`zip_source_keep`, null, [`number`]), - open: libzip.cwrap(`zip_source_open`, `number`, [`number`]), - close: libzip.cwrap(`zip_source_close`, `number`, [`number`]), - seek: libzip.cwrap(`zip_source_seek`, `number`, [`number`, ...number64, `number`]), - tell: libzip.cwrap(`zip_source_tell`, `number`, [`number`]), - read: libzip.cwrap(`zip_source_read`, `number`, [`number`, `number`, `number`]), - error: libzip.cwrap(`zip_source_error`, `number`, [`number`]), - setMtime: libzip.cwrap(`zip_source_set_mtime`, `number`, [`number`, `number`]) - }, - struct: { - stat: libzip.cwrap(`zipstruct_stat`, `number`, []), - statS: libzip.cwrap(`zipstruct_statS`, `number`, []), - statName: libzip.cwrap(`zipstruct_stat_name`, `string`, [`number`]), - statIndex: libzip.cwrap(`zipstruct_stat_index`, `number`, [`number`]), - statSize: libzip.cwrap(`zipstruct_stat_size`, `number`, [`number`]), - statCompSize: libzip.cwrap(`zipstruct_stat_comp_size`, `number`, [`number`]), - statCompMethod: libzip.cwrap(`zipstruct_stat_comp_method`, `number`, [`number`]), - statMtime: libzip.cwrap(`zipstruct_stat_mtime`, `number`, [`number`]), - statCrc: libzip.cwrap(`zipstruct_stat_crc`, `number`, [`number`]), - error: libzip.cwrap(`zipstruct_error`, `number`, []), - errorS: libzip.cwrap(`zipstruct_errorS`, `number`, []), - errorCodeZip: libzip.cwrap(`zipstruct_error_code_zip`, `number`, [`number`]) - } -}); - -let mod = null; -function getLibzipSync() { - if (mod === null) - mod = makeInterface(createModule()); - return mod; -} - -var __defProp$2 = Object.defineProperty; -var __defProps$1 = Object.defineProperties; -var __getOwnPropDescs$1 = Object.getOwnPropertyDescriptors; -var __getOwnPropSymbols$3 = Object.getOwnPropertySymbols; -var __hasOwnProp$3 = Object.prototype.hasOwnProperty; -var __propIsEnum$3 = Object.prototype.propertyIsEnumerable; -var __defNormalProp$2 = (obj, key, value) => key in obj ? __defProp$2(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues$2 = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp$3.call(b, prop)) - __defNormalProp$2(a, prop, b[prop]); - if (__getOwnPropSymbols$3) - for (var prop of __getOwnPropSymbols$3(b)) { - if (__propIsEnum$3.call(b, prop)) - __defNormalProp$2(a, prop, b[prop]); - } - return a; -}; -var __spreadProps$1 = (a, b) => __defProps$1(a, __getOwnPropDescs$1(b)); -var ErrorCode; -(function(ErrorCode2) { - ErrorCode2["API_ERROR"] = `API_ERROR`; - ErrorCode2["BUILTIN_NODE_RESOLUTION_FAILED"] = `BUILTIN_NODE_RESOLUTION_FAILED`; - ErrorCode2["EXPORTS_RESOLUTION_FAILED"] = `EXPORTS_RESOLUTION_FAILED`; - ErrorCode2["MISSING_DEPENDENCY"] = `MISSING_DEPENDENCY`; - ErrorCode2["MISSING_PEER_DEPENDENCY"] = `MISSING_PEER_DEPENDENCY`; - ErrorCode2["QUALIFIED_PATH_RESOLUTION_FAILED"] = `QUALIFIED_PATH_RESOLUTION_FAILED`; - ErrorCode2["INTERNAL"] = `INTERNAL`; - ErrorCode2["UNDECLARED_DEPENDENCY"] = `UNDECLARED_DEPENDENCY`; - ErrorCode2["UNSUPPORTED"] = `UNSUPPORTED`; -})(ErrorCode || (ErrorCode = {})); -const MODULE_NOT_FOUND_ERRORS = new Set([ - ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED, - ErrorCode.MISSING_DEPENDENCY, - ErrorCode.MISSING_PEER_DEPENDENCY, - ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, - ErrorCode.UNDECLARED_DEPENDENCY -]); -function makeError(pnpCode, message, data = {}, code) { - code != null ? code : code = MODULE_NOT_FOUND_ERRORS.has(pnpCode) ? `MODULE_NOT_FOUND` : pnpCode; - const propertySpec = { - configurable: true, - writable: true, - enumerable: false - }; - return Object.defineProperties(new Error(message), { - code: __spreadProps$1(__spreadValues$2({}, propertySpec), { - value: code - }), - pnpCode: __spreadProps$1(__spreadValues$2({}, propertySpec), { - value: pnpCode - }), - data: __spreadProps$1(__spreadValues$2({}, propertySpec), { - value: data - }) - }); -} -function getIssuerModule(parent) { - let issuer = parent; - while (issuer && (issuer.id === `[eval]` || issuer.id === `` || !issuer.filename)) - issuer = issuer.parent; - return issuer || null; -} -function getPathForDisplay(p) { - return npath.normalize(npath.fromPortablePath(p)); -} - -const builtinModules = new Set(require$$0.Module.builtinModules || Object.keys(process.binding(`natives`))); -const isBuiltinModule = (request) => request.startsWith(`node:`) || builtinModules.has(request); -function readPackageScope(checkPath) { - const rootSeparatorIndex = checkPath.indexOf(npath.sep); - let separatorIndex; - do { - separatorIndex = checkPath.lastIndexOf(npath.sep); - checkPath = checkPath.slice(0, separatorIndex); - if (checkPath.endsWith(`${npath.sep}node_modules`)) - return false; - const pjson = readPackage(checkPath + npath.sep); - if (pjson) { - return { - data: pjson, - path: checkPath - }; - } - } while (separatorIndex > rootSeparatorIndex); - return false; -} -function readPackage(requestPath) { - const jsonPath = npath.resolve(requestPath, `package.json`); - if (!fs__default.default.existsSync(jsonPath)) - return null; - return JSON.parse(fs__default.default.readFileSync(jsonPath, `utf8`)); -} -function ERR_REQUIRE_ESM(filename, parentPath = null) { - const basename = parentPath && path__default.default.basename(filename) === path__default.default.basename(parentPath) ? filename : path__default.default.basename(filename); - const msg = `require() of ES Module ${filename}${parentPath ? ` from ${parentPath}` : ``} not supported. -Instead change the require of ${basename} in ${parentPath} to a dynamic import() which is available in all CommonJS modules.`; - const err = new Error(msg); - err.code = `ERR_REQUIRE_ESM`; - return err; -} - -var __getOwnPropSymbols$2 = Object.getOwnPropertySymbols; -var __hasOwnProp$2 = Object.prototype.hasOwnProperty; -var __propIsEnum$2 = Object.prototype.propertyIsEnumerable; -var __objRest$1 = (source, exclude) => { - var target = {}; - for (var prop in source) - if (__hasOwnProp$2.call(source, prop) && exclude.indexOf(prop) < 0) - target[prop] = source[prop]; - if (source != null && __getOwnPropSymbols$2) - for (var prop of __getOwnPropSymbols$2(source)) { - if (exclude.indexOf(prop) < 0 && __propIsEnum$2.call(source, prop)) - target[prop] = source[prop]; - } - return target; -}; -function applyPatch(pnpapi, opts) { - const defaultCache = {}; - let enableNativeHooks = true; - process.versions.pnp = String(pnpapi.VERSIONS.std); - const moduleExports = require$$0__default.default; - moduleExports.findPnpApi = (lookupSource) => { - const lookupPath = lookupSource instanceof url.URL ? url.fileURLToPath(lookupSource) : lookupSource; - const apiPath = opts.manager.findApiPathFor(lookupPath); - if (apiPath === null) - return null; - const apiEntry = opts.manager.getApiEntry(apiPath, true); - return apiEntry.instance.findPackageLocator(lookupPath) ? apiEntry.instance : null; - }; - function getRequireStack(parent) { - const requireStack = []; - for (let cursor = parent; cursor; cursor = cursor.parent) - requireStack.push(cursor.filename || cursor.id); - return requireStack; - } - const originalModuleLoad = require$$0.Module._load; - require$$0.Module._load = function(request, parent, isMain) { - if (!enableNativeHooks) - return originalModuleLoad.call(require$$0.Module, request, parent, isMain); - if (isBuiltinModule(request)) { - try { - enableNativeHooks = false; - return originalModuleLoad.call(require$$0.Module, request, parent, isMain); - } finally { - enableNativeHooks = true; - } - } - const parentApiPath = opts.manager.getApiPathFromParent(parent); - const parentApi = parentApiPath !== null ? opts.manager.getApiEntry(parentApiPath, true).instance : null; - if (parentApi === null) - return originalModuleLoad(request, parent, isMain); - if (request === `pnpapi`) - return parentApi; - const modulePath = require$$0.Module._resolveFilename(request, parent, isMain); - const isOwnedByRuntime = parentApi !== null ? parentApi.findPackageLocator(modulePath) !== null : false; - const moduleApiPath = isOwnedByRuntime ? parentApiPath : opts.manager.findApiPathFor(npath.dirname(modulePath)); - const entry = moduleApiPath !== null ? opts.manager.getApiEntry(moduleApiPath) : {instance: null, cache: defaultCache}; - const cacheEntry = entry.cache[modulePath]; - if (cacheEntry) { - if (cacheEntry.loaded === false && cacheEntry.isLoading !== true) { - try { - cacheEntry.isLoading = true; - if (isMain) { - process.mainModule = cacheEntry; - cacheEntry.id = `.`; - } - cacheEntry.load(modulePath); - } finally { - cacheEntry.isLoading = false; - } - } - return cacheEntry.exports; - } - const module = new require$$0.Module(modulePath, parent != null ? parent : void 0); - module.pnpApiPath = moduleApiPath; - entry.cache[modulePath] = module; - if (isMain) { - process.mainModule = module; - module.id = `.`; - } - let hasThrown = true; - try { - module.isLoading = true; - module.load(modulePath); - hasThrown = false; - } finally { - module.isLoading = false; - if (hasThrown) { - delete require$$0.Module._cache[modulePath]; - } - } - return module.exports; - }; - function getIssuerSpecsFromPaths(paths) { - return paths.map((path) => ({ - apiPath: opts.manager.findApiPathFor(path), - path, - module: null - })); - } - function getIssuerSpecsFromModule(module) { - var _a; - if (module && module.id !== `` && module.id !== `internal/preload` && !module.parent && !module.filename && module.paths.length > 0) { - return [{ - apiPath: opts.manager.findApiPathFor(module.paths[0]), - path: module.paths[0], - module - }]; - } - const issuer = getIssuerModule(module); - if (issuer !== null) { - const path = npath.dirname(issuer.filename); - const apiPath = opts.manager.getApiPathFromParent(issuer); - return [{apiPath, path, module}]; - } else { - const path = process.cwd(); - const apiPath = (_a = opts.manager.findApiPathFor(npath.join(path, `[file]`))) != null ? _a : opts.manager.getApiPathFromParent(null); - return [{apiPath, path, module}]; - } - } - function makeFakeParent(path) { - const fakeParent = new require$$0.Module(``); - const fakeFilePath = npath.join(path, `[file]`); - fakeParent.paths = require$$0.Module._nodeModulePaths(fakeFilePath); - return fakeParent; - } - const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:@[^/]+\/)?[^/]+)\/*(.*|)$/; - const originalModuleResolveFilename = require$$0.Module._resolveFilename; - require$$0.Module._resolveFilename = function(request, parent, isMain, options) { - if (isBuiltinModule(request)) - return request; - if (!enableNativeHooks) - return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, options); - if (options && options.plugnplay === false) { - const _a = options, rest = __objRest$1(_a, ["plugnplay"]); - const forwardedOptions = Object.keys(rest).length > 0 ? rest : void 0; - try { - enableNativeHooks = false; - return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, forwardedOptions); - } finally { - enableNativeHooks = true; - } - } - if (options) { - const optionNames = new Set(Object.keys(options)); - optionNames.delete(`paths`); - optionNames.delete(`plugnplay`); - if (optionNames.size > 0) { - throw makeError(ErrorCode.UNSUPPORTED, `Some options passed to require() aren't supported by PnP yet (${Array.from(optionNames).join(`, `)})`); - } - } - const issuerSpecs = options && options.paths ? getIssuerSpecsFromPaths(options.paths) : getIssuerSpecsFromModule(parent); - if (request.match(pathRegExp) === null) { - const parentDirectory = (parent == null ? void 0 : parent.filename) != null ? npath.dirname(parent.filename) : null; - const absoluteRequest = npath.isAbsolute(request) ? request : parentDirectory !== null ? npath.resolve(parentDirectory, request) : null; - if (absoluteRequest !== null) { - const apiPath = parentDirectory === npath.dirname(absoluteRequest) && (parent == null ? void 0 : parent.pnpApiPath) ? parent.pnpApiPath : opts.manager.findApiPathFor(absoluteRequest); - if (apiPath !== null) { - issuerSpecs.unshift({ - apiPath, - path: parentDirectory, - module: null - }); - } - } - } - let firstError; - for (const {apiPath, path, module} of issuerSpecs) { - let resolution; - const issuerApi = apiPath !== null ? opts.manager.getApiEntry(apiPath, true).instance : null; - try { - if (issuerApi !== null) { - resolution = issuerApi.resolveRequest(request, path !== null ? `${path}/` : null); - } else { - if (path === null) - throw new Error(`Assertion failed: Expected the path to be set`); - resolution = originalModuleResolveFilename.call(require$$0.Module, request, module || makeFakeParent(path), isMain); - } - } catch (error) { - firstError = firstError || error; - continue; - } - if (resolution !== null) { - return resolution; - } - } - const requireStack = getRequireStack(parent); - Object.defineProperty(firstError, `requireStack`, { - configurable: true, - writable: true, - enumerable: false, - value: requireStack - }); - if (requireStack.length > 0) - firstError.message += ` -Require stack: -- ${requireStack.join(` -- `)}`; - if (typeof firstError.pnpCode === `string`) - Error.captureStackTrace(firstError); - throw firstError; - }; - const originalFindPath = require$$0.Module._findPath; - require$$0.Module._findPath = function(request, paths, isMain) { - if (request === `pnpapi`) - return false; - if (!enableNativeHooks) - return originalFindPath.call(require$$0.Module, request, paths, isMain); - const isAbsolute = npath.isAbsolute(request); - if (isAbsolute) - paths = [``]; - else if (!paths || paths.length === 0) - return false; - for (const path of paths) { - let resolution; - try { - const pnpApiPath = opts.manager.findApiPathFor(isAbsolute ? request : path); - if (pnpApiPath !== null) { - const api = opts.manager.getApiEntry(pnpApiPath, true).instance; - resolution = api.resolveRequest(request, path) || false; - } else { - resolution = originalFindPath.call(require$$0.Module, request, [path], isMain); - } - } catch (error) { - continue; - } - if (resolution) { - return resolution; - } - } - return false; - }; - const originalExtensionJSFunction = require$$0.Module._extensions[`.js`]; - require$$0.Module._extensions[`.js`] = function(module, filename) { - var _a, _b; - if (filename.endsWith(`.js`)) { - const pkg = readPackageScope(filename); - if (pkg && ((_a = pkg.data) == null ? void 0 : _a.type) === `module`) { - const err = ERR_REQUIRE_ESM(filename, (_b = module.parent) == null ? void 0 : _b.filename); - Error.captureStackTrace(err); - throw err; - } - } - originalExtensionJSFunction.call(this, module, filename); - }; - const originalDlopen = process.dlopen; - process.dlopen = function(...args) { - const [module, filename, ...rest] = args; - return originalDlopen.call(this, module, npath.fromPortablePath(VirtualFS.resolveVirtual(npath.toPortablePath(filename))), ...rest); - }; - const originalEmit = process.emit; - process.emit = function(name, data, ...args) { - if (name === `warning` && typeof data === `object` && data.name === `ExperimentalWarning` && (data.message.includes(`--experimental-loader`) || data.message.includes(`Custom ESM Loaders is an experimental feature`))) - return false; - return originalEmit.apply(process, arguments); - }; - patchFs(fs__default.default, new PosixFS(opts.fakeFs)); -} - -function hydrateRuntimeState(data, {basePath}) { - const portablePath = npath.toPortablePath(basePath); - const absolutePortablePath = ppath.resolve(portablePath); - const ignorePattern = data.ignorePatternData !== null ? new RegExp(data.ignorePatternData) : null; - const packageLocatorsByLocations = new Map(); - const packageRegistry = new Map(data.packageRegistryData.map(([packageName, packageStoreData]) => { - return [packageName, new Map(packageStoreData.map(([packageReference, packageInformationData]) => { - var _a; - if (packageName === null !== (packageReference === null)) - throw new Error(`Assertion failed: The name and reference should be null, or neither should`); - const discardFromLookup = (_a = packageInformationData.discardFromLookup) != null ? _a : false; - const packageLocator = {name: packageName, reference: packageReference}; - const entry = packageLocatorsByLocations.get(packageInformationData.packageLocation); - if (!entry) { - packageLocatorsByLocations.set(packageInformationData.packageLocation, {locator: packageLocator, discardFromLookup}); - } else { - entry.discardFromLookup = entry.discardFromLookup && discardFromLookup; - if (!discardFromLookup) { - entry.locator = packageLocator; - } - } - let resolvedPackageLocation = null; - return [packageReference, { - packageDependencies: new Map(packageInformationData.packageDependencies), - packagePeers: new Set(packageInformationData.packagePeers), - linkType: packageInformationData.linkType, - discardFromLookup, - get packageLocation() { - return resolvedPackageLocation || (resolvedPackageLocation = ppath.join(absolutePortablePath, packageInformationData.packageLocation)); - } - }]; - }))]; - })); - const fallbackExclusionList = new Map(data.fallbackExclusionList.map(([packageName, packageReferences]) => { - return [packageName, new Set(packageReferences)]; - })); - const fallbackPool = new Map(data.fallbackPool); - const dependencyTreeRoots = data.dependencyTreeRoots; - const enableTopLevelFallback = data.enableTopLevelFallback; - return { - basePath: portablePath, - dependencyTreeRoots, - enableTopLevelFallback, - fallbackExclusionList, - fallbackPool, - ignorePattern, - packageLocatorsByLocations, - packageRegistry - }; -} - -/** - * @param {object} exports - * @param {Set} keys - */ -function loop(exports, keys) { - if (typeof exports === 'string') { - return exports; - } - - if (exports) { - let idx, tmp; - if (Array.isArray(exports)) { - for (idx=0; idx < exports.length; idx++) { - if (tmp = loop(exports[idx], keys)) return tmp; - } - } else { - for (idx in exports) { - if (keys.has(idx)) { - return loop(exports[idx], keys); - } - } - } - } -} - -/** - * @param {string} name The package name - * @param {string} entry The target entry, eg "." - * @param {number} [condition] Unmatched condition? - */ -function bail(name, entry, condition) { - throw new Error( - condition - ? `No known conditions for "${entry}" entry in "${name}" package` - : `Missing "${entry}" export in "${name}" package` - ); -} - -/** - * @param {string} name the package name - * @param {string} entry the target path/import - */ -function toName(name, entry) { - return entry === name ? '.' - : entry[0] === '.' ? entry - : entry.replace(new RegExp('^' + name + '\/'), './'); -} - -/** - * @param {object} pkg package.json contents - * @param {string} [entry] entry name or import path - * @param {object} [options] - * @param {boolean} [options.browser] - * @param {boolean} [options.require] - * @param {string[]} [options.conditions] - * @param {boolean} [options.unsafe] - */ -function resolve(pkg, entry='.', options={}) { - let { name, exports } = pkg; - - if (exports) { - let { browser, require, unsafe, conditions=[] } = options; - - let target = toName(name, entry); - if (target[0] !== '.') target = './' + target; - - if (typeof exports === 'string') { - return target === '.' ? exports : bail(name, target); - } - - let allows = new Set(['default', ...conditions]); - unsafe || allows.add(require ? 'require' : 'import'); - unsafe || allows.add(browser ? 'browser' : 'node'); - - let key, tmp, isSingle=false; - - for (key in exports) { - isSingle = key[0] !== '.'; - break; - } - - if (isSingle) { - return target === '.' - ? loop(exports, allows) || bail(name, target, 1) - : bail(name, target); - } - - if (tmp = exports[target]) { - return loop(tmp, allows) || bail(name, target, 1); - } - - for (key in exports) { - tmp = key[key.length - 1]; - if (tmp === '/' && target.startsWith(key)) { - return (tmp = loop(exports[key], allows)) - ? (tmp + target.substring(key.length)) - : bail(name, target, 1); - } - if (tmp === '*' && target.startsWith(key.slice(0, -1))) { - // do not trigger if no *content* to inject - if (target.substring(key.length - 1).length > 0) { - return (tmp = loop(exports[key], allows)) - ? tmp.replace('*', target.substring(key.length - 1)) - : bail(name, target, 1); - } - } - } - - return bail(name, target); - } -} - -var __defProp$1 = Object.defineProperty; -var __defProps = Object.defineProperties; -var __getOwnPropDescs = Object.getOwnPropertyDescriptors; -var __getOwnPropSymbols$1 = Object.getOwnPropertySymbols; -var __hasOwnProp$1 = Object.prototype.hasOwnProperty; -var __propIsEnum$1 = Object.prototype.propertyIsEnumerable; -var __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues$1 = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp$1.call(b, prop)) - __defNormalProp$1(a, prop, b[prop]); - if (__getOwnPropSymbols$1) - for (var prop of __getOwnPropSymbols$1(b)) { - if (__propIsEnum$1.call(b, prop)) - __defNormalProp$1(a, prop, b[prop]); - } - return a; -}; -var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b)); -function makeApi(runtimeState, opts) { - const alwaysWarnOnFallback = Number(process.env.PNP_ALWAYS_WARN_ON_FALLBACK) > 0; - const debugLevel = Number(process.env.PNP_DEBUG_LEVEL); - const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/; - const isStrictRegExp = /^(\/|\.{1,2}(\/|$))/; - const isDirRegExp = /\/$/; - const isRelativeRegexp = /^\.{0,2}\//; - const topLevelLocator = {name: null, reference: null}; - const fallbackLocators = []; - const emittedWarnings = new Set(); - if (runtimeState.enableTopLevelFallback === true) - fallbackLocators.push(topLevelLocator); - if (opts.compatibilityMode !== false) { - for (const name of [`react-scripts`, `gatsby`]) { - const packageStore = runtimeState.packageRegistry.get(name); - if (packageStore) { - for (const reference of packageStore.keys()) { - if (reference === null) { - throw new Error(`Assertion failed: This reference shouldn't be null`); - } else { - fallbackLocators.push({name, reference}); - } - } - } - } - } - const { - ignorePattern, - packageRegistry, - packageLocatorsByLocations - } = runtimeState; - function makeLogEntry(name, args) { - return { - fn: name, - args, - error: null, - result: null - }; - } - function trace(entry) { - var _a, _b, _c, _d, _e, _f; - const colors = (_c = (_b = (_a = process.stderr) == null ? void 0 : _a.hasColors) == null ? void 0 : _b.call(_a)) != null ? _c : process.stdout.isTTY; - const c = (n, str) => `[${n}m${str}`; - const error = entry.error; - if (error) - console.error(c(`31;1`, `\u2716 ${(_d = entry.error) == null ? void 0 : _d.message.replace(/\n.*/s, ``)}`)); - else - console.error(c(`33;1`, `\u203C Resolution`)); - if (entry.args.length > 0) - console.error(); - for (const arg of entry.args) - console.error(` ${c(`37;1`, `In \u2190`)} ${nodeUtils.inspect(arg, {colors, compact: true})}`); - if (entry.result) { - console.error(); - console.error(` ${c(`37;1`, `Out \u2192`)} ${nodeUtils.inspect(entry.result, {colors, compact: true})}`); - } - const stack = (_f = (_e = new Error().stack.match(/(?<=^ +)at.*/gm)) == null ? void 0 : _e.slice(2)) != null ? _f : []; - if (stack.length > 0) { - console.error(); - for (const line of stack) { - console.error(` ${c(`38;5;244`, line)}`); - } - } - console.error(); - } - function maybeLog(name, fn) { - if (opts.allowDebug === false) - return fn; - if (Number.isFinite(debugLevel)) { - if (debugLevel >= 2) { - return (...args) => { - const logEntry = makeLogEntry(name, args); - try { - return logEntry.result = fn(...args); - } catch (error) { - throw logEntry.error = error; - } finally { - trace(logEntry); - } - }; - } else if (debugLevel >= 1) { - return (...args) => { - try { - return fn(...args); - } catch (error) { - const logEntry = makeLogEntry(name, args); - logEntry.error = error; - trace(logEntry); - throw error; - } - }; - } - } - return fn; - } - function getPackageInformationSafe(packageLocator) { - const packageInformation = getPackageInformation(packageLocator); - if (!packageInformation) { - throw makeError(ErrorCode.INTERNAL, `Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)`); - } - return packageInformation; - } - function isDependencyTreeRoot(packageLocator) { - if (packageLocator.name === null) - return true; - for (const dependencyTreeRoot of runtimeState.dependencyTreeRoots) - if (dependencyTreeRoot.name === packageLocator.name && dependencyTreeRoot.reference === packageLocator.reference) - return true; - return false; - } - const defaultExportsConditions = new Set([`default`, `node`, `require`]); - function applyNodeExportsResolution(unqualifiedPath, conditions = defaultExportsConditions) { - const locator = findPackageLocator(ppath.join(unqualifiedPath, `internal.js`), { - resolveIgnored: true, - includeDiscardFromLookup: true - }); - if (locator === null) { - throw makeError(ErrorCode.INTERNAL, `The locator that owns the "${unqualifiedPath}" path can't be found inside the dependency tree (this is probably an internal error)`); - } - const {packageLocation} = getPackageInformationSafe(locator); - const manifestPath = ppath.join(packageLocation, Filename.manifest); - if (!opts.fakeFs.existsSync(manifestPath)) - return null; - const pkgJson = JSON.parse(opts.fakeFs.readFileSync(manifestPath, `utf8`)); - let subpath = ppath.contains(packageLocation, unqualifiedPath); - if (subpath === null) { - throw makeError(ErrorCode.INTERNAL, `unqualifiedPath doesn't contain the packageLocation (this is probably an internal error)`); - } - if (!isRelativeRegexp.test(subpath)) - subpath = `./${subpath}`; - let resolvedExport; - try { - resolvedExport = resolve(pkgJson, ppath.normalize(subpath), { - conditions, - unsafe: true - }); - } catch (error) { - throw makeError(ErrorCode.EXPORTS_RESOLUTION_FAILED, error.message, {unqualifiedPath: getPathForDisplay(unqualifiedPath), locator, pkgJson, subpath: getPathForDisplay(subpath), conditions}, `ERR_PACKAGE_PATH_NOT_EXPORTED`); - } - if (typeof resolvedExport === `string`) - return ppath.join(packageLocation, resolvedExport); - return null; - } - function applyNodeExtensionResolution(unqualifiedPath, candidates, {extensions}) { - let stat; - try { - candidates.push(unqualifiedPath); - stat = opts.fakeFs.statSync(unqualifiedPath); - } catch (error) { - } - if (stat && !stat.isDirectory()) - return opts.fakeFs.realpathSync(unqualifiedPath); - if (stat && stat.isDirectory()) { - let pkgJson; - try { - pkgJson = JSON.parse(opts.fakeFs.readFileSync(ppath.join(unqualifiedPath, Filename.manifest), `utf8`)); - } catch (error) { - } - let nextUnqualifiedPath; - if (pkgJson && pkgJson.main) - nextUnqualifiedPath = ppath.resolve(unqualifiedPath, pkgJson.main); - if (nextUnqualifiedPath && nextUnqualifiedPath !== unqualifiedPath) { - const resolution = applyNodeExtensionResolution(nextUnqualifiedPath, candidates, {extensions}); - if (resolution !== null) { - return resolution; - } - } - } - for (let i = 0, length = extensions.length; i < length; i++) { - const candidateFile = `${unqualifiedPath}${extensions[i]}`; - candidates.push(candidateFile); - if (opts.fakeFs.existsSync(candidateFile)) { - return candidateFile; - } - } - if (stat && stat.isDirectory()) { - for (let i = 0, length = extensions.length; i < length; i++) { - const candidateFile = ppath.format({dir: unqualifiedPath, name: `index`, ext: extensions[i]}); - candidates.push(candidateFile); - if (opts.fakeFs.existsSync(candidateFile)) { - return candidateFile; - } - } - } - return null; - } - function makeFakeModule(path) { - const fakeModule = new require$$0.Module(path, null); - fakeModule.filename = path; - fakeModule.paths = require$$0.Module._nodeModulePaths(path); - return fakeModule; - } - function callNativeResolution(request, issuer) { - if (issuer.endsWith(`/`)) - issuer = ppath.join(issuer, `internal.js`); - return require$$0.Module._resolveFilename(npath.fromPortablePath(request), makeFakeModule(npath.fromPortablePath(issuer)), false, {plugnplay: false}); - } - function isPathIgnored(path) { - if (ignorePattern === null) - return false; - const subPath = ppath.contains(runtimeState.basePath, path); - if (subPath === null) - return false; - if (ignorePattern.test(subPath.replace(/\/$/, ``))) { - return true; - } else { - return false; - } - } - const VERSIONS = {std: 3, resolveVirtual: 1, getAllLocators: 1}; - const topLevel = topLevelLocator; - function getPackageInformation({name, reference}) { - const packageInformationStore = packageRegistry.get(name); - if (!packageInformationStore) - return null; - const packageInformation = packageInformationStore.get(reference); - if (!packageInformation) - return null; - return packageInformation; - } - function findPackageDependents({name, reference}) { - const dependents = []; - for (const [dependentName, packageInformationStore] of packageRegistry) { - if (dependentName === null) - continue; - for (const [dependentReference, packageInformation] of packageInformationStore) { - if (dependentReference === null) - continue; - const dependencyReference = packageInformation.packageDependencies.get(name); - if (dependencyReference !== reference) - continue; - if (dependentName === name && dependentReference === reference) - continue; - dependents.push({ - name: dependentName, - reference: dependentReference - }); - } - } - return dependents; - } - function findBrokenPeerDependencies(dependency, initialPackage) { - const brokenPackages = new Map(); - const alreadyVisited = new Set(); - const traversal = (currentPackage) => { - const identifier = JSON.stringify(currentPackage.name); - if (alreadyVisited.has(identifier)) - return; - alreadyVisited.add(identifier); - const dependents = findPackageDependents(currentPackage); - for (const dependent of dependents) { - const dependentInformation = getPackageInformationSafe(dependent); - if (dependentInformation.packagePeers.has(dependency)) { - traversal(dependent); - } else { - let brokenSet = brokenPackages.get(dependent.name); - if (typeof brokenSet === `undefined`) - brokenPackages.set(dependent.name, brokenSet = new Set()); - brokenSet.add(dependent.reference); - } - } - }; - traversal(initialPackage); - const brokenList = []; - for (const name of [...brokenPackages.keys()].sort()) - for (const reference of [...brokenPackages.get(name)].sort()) - brokenList.push({name, reference}); - return brokenList; - } - function findPackageLocator(location, {resolveIgnored = false, includeDiscardFromLookup = false} = {}) { - if (isPathIgnored(location) && !resolveIgnored) - return null; - let relativeLocation = ppath.relative(runtimeState.basePath, location); - if (!relativeLocation.match(isStrictRegExp)) - relativeLocation = `./${relativeLocation}`; - if (!relativeLocation.endsWith(`/`)) - relativeLocation = `${relativeLocation}/`; - do { - const entry = packageLocatorsByLocations.get(relativeLocation); - if (typeof entry === `undefined` || entry.discardFromLookup && !includeDiscardFromLookup) { - relativeLocation = relativeLocation.substring(0, relativeLocation.lastIndexOf(`/`, relativeLocation.length - 2) + 1); - continue; - } - return entry.locator; - } while (relativeLocation !== ``); - return null; - } - function resolveToUnqualified(request, issuer, {considerBuiltins = true} = {}) { - if (request === `pnpapi`) - return npath.toPortablePath(opts.pnpapiResolution); - if (considerBuiltins && isBuiltinModule(request)) - return null; - const requestForDisplay = getPathForDisplay(request); - const issuerForDisplay = issuer && getPathForDisplay(issuer); - if (issuer && isPathIgnored(issuer)) { - if (!ppath.isAbsolute(request) || findPackageLocator(request) === null) { - const result = callNativeResolution(request, issuer); - if (result === false) { - throw makeError(ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED, `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer was explicitely ignored by the regexp) - -Require request: "${requestForDisplay}" -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay}); - } - return npath.toPortablePath(result); - } - } - let unqualifiedPath; - const dependencyNameMatch = request.match(pathRegExp); - if (!dependencyNameMatch) { - if (ppath.isAbsolute(request)) { - unqualifiedPath = ppath.normalize(request); - } else { - if (!issuer) { - throw makeError(ErrorCode.API_ERROR, `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`, {request: requestForDisplay, issuer: issuerForDisplay}); - } - const absoluteIssuer = ppath.resolve(issuer); - if (issuer.match(isDirRegExp)) { - unqualifiedPath = ppath.normalize(ppath.join(absoluteIssuer, request)); - } else { - unqualifiedPath = ppath.normalize(ppath.join(ppath.dirname(absoluteIssuer), request)); - } - } - } else { - if (!issuer) { - throw makeError(ErrorCode.API_ERROR, `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`, {request: requestForDisplay, issuer: issuerForDisplay}); - } - const [, dependencyName, subPath] = dependencyNameMatch; - const issuerLocator = findPackageLocator(issuer); - if (!issuerLocator) { - const result = callNativeResolution(request, issuer); - if (result === false) { - throw makeError(ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED, `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer doesn't seem to be part of the Yarn-managed dependency tree). - -Require path: "${requestForDisplay}" -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay}); - } - return npath.toPortablePath(result); - } - const issuerInformation = getPackageInformationSafe(issuerLocator); - let dependencyReference = issuerInformation.packageDependencies.get(dependencyName); - let fallbackReference = null; - if (dependencyReference == null) { - if (issuerLocator.name !== null) { - const exclusionEntry = runtimeState.fallbackExclusionList.get(issuerLocator.name); - const canUseFallbacks = !exclusionEntry || !exclusionEntry.has(issuerLocator.reference); - if (canUseFallbacks) { - for (let t = 0, T = fallbackLocators.length; t < T; ++t) { - const fallbackInformation = getPackageInformationSafe(fallbackLocators[t]); - const reference = fallbackInformation.packageDependencies.get(dependencyName); - if (reference == null) - continue; - if (alwaysWarnOnFallback) - fallbackReference = reference; - else - dependencyReference = reference; - break; - } - if (runtimeState.enableTopLevelFallback) { - if (dependencyReference == null && fallbackReference === null) { - const reference = runtimeState.fallbackPool.get(dependencyName); - if (reference != null) { - fallbackReference = reference; - } - } - } - } - } - } - let error = null; - if (dependencyReference === null) { - if (isDependencyTreeRoot(issuerLocator)) { - error = makeError(ErrorCode.MISSING_PEER_DEPENDENCY, `Your application tried to access ${dependencyName} (a peer dependency); this isn't allowed as there is no ancestor to satisfy the requirement. Use a devDependency if needed. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay, dependencyName}); - } else { - const brokenAncestors = findBrokenPeerDependencies(dependencyName, issuerLocator); - if (brokenAncestors.every((ancestor) => isDependencyTreeRoot(ancestor))) { - error = makeError(ErrorCode.MISSING_PEER_DEPENDENCY, `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by your application; this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) -${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference} -`).join(``)} -`, {request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors}); - } else { - error = makeError(ErrorCode.MISSING_PEER_DEPENDENCY, `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) - -${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference} -`).join(``)} -`, {request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors}); - } - } - } else if (dependencyReference === void 0) { - if (!considerBuiltins && isBuiltinModule(request)) { - if (isDependencyTreeRoot(issuerLocator)) { - error = makeError(ErrorCode.UNDECLARED_DEPENDENCY, `Your application tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in your dependencies, this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay, dependencyName}); - } else { - error = makeError(ErrorCode.UNDECLARED_DEPENDENCY, `${issuerLocator.name} tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in ${issuerLocator.name}'s dependencies, this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName}); - } - } else { - if (isDependencyTreeRoot(issuerLocator)) { - error = makeError(ErrorCode.UNDECLARED_DEPENDENCY, `Your application tried to access ${dependencyName}, but it isn't declared in your dependencies; this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerForDisplay} -`, {request: requestForDisplay, issuer: issuerForDisplay, dependencyName}); - } else { - error = makeError(ErrorCode.UNDECLARED_DEPENDENCY, `${issuerLocator.name} tried to access ${dependencyName}, but it isn't declared in its dependencies; this makes the require call ambiguous and unsound. - -Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) -`, {request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName}); - } - } - } - if (dependencyReference == null) { - if (fallbackReference === null || error === null) - throw error || new Error(`Assertion failed: Expected an error to have been set`); - dependencyReference = fallbackReference; - const message = error.message.replace(/\n.*/g, ``); - error.message = message; - if (!emittedWarnings.has(message) && debugLevel !== 0) { - emittedWarnings.add(message); - process.emitWarning(error); - } - } - const dependencyLocator = Array.isArray(dependencyReference) ? {name: dependencyReference[0], reference: dependencyReference[1]} : {name: dependencyName, reference: dependencyReference}; - const dependencyInformation = getPackageInformationSafe(dependencyLocator); - if (!dependencyInformation.packageLocation) { - throw makeError(ErrorCode.MISSING_DEPENDENCY, `A dependency seems valid but didn't get installed for some reason. This might be caused by a partial install, such as dev vs prod. - -Required package: ${dependencyLocator.name}@${dependencyLocator.reference}${dependencyLocator.name !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``} -Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay}) -`, {request: requestForDisplay, issuer: issuerForDisplay, dependencyLocator: Object.assign({}, dependencyLocator)}); - } - const dependencyLocation = dependencyInformation.packageLocation; - if (subPath) { - unqualifiedPath = ppath.join(dependencyLocation, subPath); - } else { - unqualifiedPath = dependencyLocation; - } - } - return ppath.normalize(unqualifiedPath); - } - function resolveUnqualifiedExport(request, unqualifiedPath, conditions = defaultExportsConditions) { - if (isStrictRegExp.test(request)) - return unqualifiedPath; - const unqualifiedExportPath = applyNodeExportsResolution(unqualifiedPath, conditions); - if (unqualifiedExportPath) { - return ppath.normalize(unqualifiedExportPath); - } else { - return unqualifiedPath; - } - } - function resolveUnqualified(unqualifiedPath, {extensions = Object.keys(require$$0.Module._extensions)} = {}) { - var _a, _b; - const candidates = []; - const qualifiedPath = applyNodeExtensionResolution(unqualifiedPath, candidates, {extensions}); - if (qualifiedPath) { - return ppath.normalize(qualifiedPath); - } else { - const unqualifiedPathForDisplay = getPathForDisplay(unqualifiedPath); - const containingPackage = findPackageLocator(unqualifiedPath); - if (containingPackage) { - const {packageLocation} = getPackageInformationSafe(containingPackage); - let exists = true; - try { - opts.fakeFs.accessSync(packageLocation); - } catch (err) { - if ((err == null ? void 0 : err.code) === `ENOENT`) { - exists = false; - } else { - const readableError = ((_b = (_a = err == null ? void 0 : err.message) != null ? _a : err) != null ? _b : `empty exception thrown`).replace(/^[A-Z]/, ($0) => $0.toLowerCase()); - throw makeError(ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, `Required package exists but could not be accessed (${readableError}). - -Missing package: ${containingPackage.name}@${containingPackage.reference} -Expected package location: ${getPathForDisplay(packageLocation)} -`, {unqualifiedPath: unqualifiedPathForDisplay, extensions}); - } - } - if (!exists) { - const errorMessage = packageLocation.includes(`/unplugged/`) ? `Required unplugged package missing from disk. This may happen when switching branches without running installs (unplugged packages must be fully materialized on disk to work).` : `Required package missing from disk. If you keep your packages inside your repository then restarting the Node process may be enough. Otherwise, try to run an install first.`; - throw makeError(ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, `${errorMessage} - -Missing package: ${containingPackage.name}@${containingPackage.reference} -Expected package location: ${getPathForDisplay(packageLocation)} -`, {unqualifiedPath: unqualifiedPathForDisplay, extensions}); - } - } - throw makeError(ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, `Qualified path resolution failed: we looked for the following paths, but none could be accessed. - -Source path: ${unqualifiedPathForDisplay} -${candidates.map((candidate) => `Not found: ${getPathForDisplay(candidate)} -`).join(``)}`, {unqualifiedPath: unqualifiedPathForDisplay, extensions}); - } - } - function resolveRequest(request, issuer, {considerBuiltins, extensions, conditions} = {}) { - try { - const unqualifiedPath = resolveToUnqualified(request, issuer, {considerBuiltins}); - if (request === `pnpapi`) - return unqualifiedPath; - if (unqualifiedPath === null) - return null; - const isIssuerIgnored = () => issuer !== null ? isPathIgnored(issuer) : false; - const remappedPath = (!considerBuiltins || !isBuiltinModule(request)) && !isIssuerIgnored() ? resolveUnqualifiedExport(request, unqualifiedPath, conditions) : unqualifiedPath; - return resolveUnqualified(remappedPath, {extensions}); - } catch (error) { - if (Object.prototype.hasOwnProperty.call(error, `pnpCode`)) - Object.assign(error.data, {request: getPathForDisplay(request), issuer: issuer && getPathForDisplay(issuer)}); - throw error; - } - } - function resolveVirtual(request) { - const normalized = ppath.normalize(request); - const resolved = VirtualFS.resolveVirtual(normalized); - return resolved !== normalized ? resolved : null; - } - return { - VERSIONS, - topLevel, - getLocator: (name, referencish) => { - if (Array.isArray(referencish)) { - return {name: referencish[0], reference: referencish[1]}; - } else { - return {name, reference: referencish}; - } - }, - getDependencyTreeRoots: () => { - return [...runtimeState.dependencyTreeRoots]; - }, - getAllLocators() { - const locators = []; - for (const [name, entry] of packageRegistry) - for (const reference of entry.keys()) - if (name !== null && reference !== null) - locators.push({name, reference}); - return locators; - }, - getPackageInformation: (locator) => { - const info = getPackageInformation(locator); - if (info === null) - return null; - const packageLocation = npath.fromPortablePath(info.packageLocation); - const nativeInfo = __spreadProps(__spreadValues$1({}, info), {packageLocation}); - return nativeInfo; - }, - findPackageLocator: (path) => { - return findPackageLocator(npath.toPortablePath(path)); - }, - resolveToUnqualified: maybeLog(`resolveToUnqualified`, (request, issuer, opts2) => { - const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null; - const resolution = resolveToUnqualified(npath.toPortablePath(request), portableIssuer, opts2); - if (resolution === null) - return null; - return npath.fromPortablePath(resolution); - }), - resolveUnqualified: maybeLog(`resolveUnqualified`, (unqualifiedPath, opts2) => { - return npath.fromPortablePath(resolveUnqualified(npath.toPortablePath(unqualifiedPath), opts2)); - }), - resolveRequest: maybeLog(`resolveRequest`, (request, issuer, opts2) => { - const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null; - const resolution = resolveRequest(npath.toPortablePath(request), portableIssuer, opts2); - if (resolution === null) - return null; - return npath.fromPortablePath(resolution); - }), - resolveVirtual: maybeLog(`resolveVirtual`, (path) => { - const result = resolveVirtual(npath.toPortablePath(path)); - if (result !== null) { - return npath.fromPortablePath(result); - } else { - return null; - } - }) - }; -} - -function makeManager(pnpapi, opts) { - const initialApiPath = npath.toPortablePath(pnpapi.resolveToUnqualified(`pnpapi`, null)); - const initialApiStats = opts.fakeFs.statSync(npath.toPortablePath(initialApiPath)); - const apiMetadata = new Map([ - [initialApiPath, { - cache: require$$0.Module._cache, - instance: pnpapi, - stats: initialApiStats, - lastRefreshCheck: Date.now() - }] - ]); - function loadApiInstance(pnpApiPath) { - const nativePath = npath.fromPortablePath(pnpApiPath); - const module = new require$$0.Module(nativePath, null); - module.load(nativePath); - return module.exports; - } - function refreshApiEntry(pnpApiPath, apiEntry) { - const timeNow = Date.now(); - if (timeNow - apiEntry.lastRefreshCheck < 500) - return; - apiEntry.lastRefreshCheck = timeNow; - const stats = opts.fakeFs.statSync(pnpApiPath); - if (stats.mtime > apiEntry.stats.mtime) { - process.emitWarning(`[Warning] The runtime detected new informations in a PnP file; reloading the API instance (${npath.fromPortablePath(pnpApiPath)})`); - apiEntry.stats = stats; - apiEntry.instance = loadApiInstance(pnpApiPath); - } - } - function getApiEntry(pnpApiPath, refresh = false) { - let apiEntry = apiMetadata.get(pnpApiPath); - if (typeof apiEntry !== `undefined`) { - if (refresh) { - refreshApiEntry(pnpApiPath, apiEntry); - } - } else { - apiMetadata.set(pnpApiPath, apiEntry = { - cache: {}, - instance: loadApiInstance(pnpApiPath), - stats: opts.fakeFs.statSync(pnpApiPath), - lastRefreshCheck: Date.now() - }); - } - return apiEntry; - } - const findApiPathCache = new Map(); - function addToCacheAndReturn(start, end, target) { - if (target !== null) - target = VirtualFS.resolveVirtual(target); - let curr; - let next = start; - do { - curr = next; - findApiPathCache.set(curr, target); - next = ppath.dirname(curr); - } while (curr !== end); - return target; - } - function findApiPathFor(modulePath) { - let bestCandidate = null; - for (const [apiPath, apiEntry] of apiMetadata) { - const locator = apiEntry.instance.findPackageLocator(modulePath); - if (!locator) - continue; - if (apiMetadata.size === 1) - return apiPath; - const packageInformation = apiEntry.instance.getPackageInformation(locator); - if (!packageInformation) - throw new Error(`Assertion failed: Couldn't get package information for '${modulePath}'`); - if (!bestCandidate) - bestCandidate = {packageLocation: packageInformation.packageLocation, apiPaths: []}; - if (packageInformation.packageLocation === bestCandidate.packageLocation) { - bestCandidate.apiPaths.push(apiPath); - } else if (packageInformation.packageLocation.length > bestCandidate.packageLocation.length) { - bestCandidate = {packageLocation: packageInformation.packageLocation, apiPaths: [apiPath]}; - } - } - if (bestCandidate) { - if (bestCandidate.apiPaths.length === 1) - return bestCandidate.apiPaths[0]; - const controlSegment = bestCandidate.apiPaths.map((apiPath) => ` ${npath.fromPortablePath(apiPath)}`).join(` -`); - throw new Error(`Unable to locate pnpapi, the module '${modulePath}' is controlled by multiple pnpapi instances. -This is usually caused by using the global cache (enableGlobalCache: true) - -Controlled by: -${controlSegment} -`); - } - const start = ppath.resolve(npath.toPortablePath(modulePath)); - let curr; - let next = start; - do { - curr = next; - const cached = findApiPathCache.get(curr); - if (cached !== void 0) - return addToCacheAndReturn(start, curr, cached); - const cjsCandidate = ppath.join(curr, Filename.pnpCjs); - if (opts.fakeFs.existsSync(cjsCandidate) && opts.fakeFs.statSync(cjsCandidate).isFile()) - return addToCacheAndReturn(start, curr, cjsCandidate); - const legacyCjsCandidate = ppath.join(curr, Filename.pnpJs); - if (opts.fakeFs.existsSync(legacyCjsCandidate) && opts.fakeFs.statSync(legacyCjsCandidate).isFile()) - return addToCacheAndReturn(start, curr, legacyCjsCandidate); - next = ppath.dirname(curr); - } while (curr !== PortablePath.root); - return addToCacheAndReturn(start, curr, null); - } - function getApiPathFromParent(parent) { - if (parent == null) - return initialApiPath; - if (typeof parent.pnpApiPath === `undefined`) { - if (parent.filename !== null) { - return parent.pnpApiPath = findApiPathFor(parent.filename); - } else { - return initialApiPath; - } - } - if (parent.pnpApiPath !== null) - return parent.pnpApiPath; - return null; - } - return { - getApiPathFromParent, - findApiPathFor, - getApiEntry - }; -} - -var __defProp = Object.defineProperty; -var __getOwnPropSymbols = Object.getOwnPropertySymbols; -var __hasOwnProp = Object.prototype.hasOwnProperty; -var __propIsEnum = Object.prototype.propertyIsEnumerable; -var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, {enumerable: true, configurable: true, writable: true, value}) : obj[key] = value; -var __spreadValues = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp.call(b, prop)) - __defNormalProp(a, prop, b[prop]); - if (__getOwnPropSymbols) - for (var prop of __getOwnPropSymbols(b)) { - if (__propIsEnum.call(b, prop)) - __defNormalProp(a, prop, b[prop]); - } - return a; -}; -var __objRest = (source, exclude) => { - var target = {}; - for (var prop in source) - if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0) - target[prop] = source[prop]; - if (source != null && __getOwnPropSymbols) - for (var prop of __getOwnPropSymbols(source)) { - if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop)) - target[prop] = source[prop]; - } - return target; -}; -const localFs = __spreadValues({}, fs__default.default); -const nodeFs = new NodeFS(localFs); -const defaultRuntimeState = $$SETUP_STATE(hydrateRuntimeState); -const defaultPnpapiResolution = __filename; -const defaultFsLayer = new VirtualFS({ - baseFs: new ZipOpenFS({ - baseFs: nodeFs, - libzip: () => getLibzipSync(), - maxOpenFiles: 80, - readOnlyArchives: true - }) -}); -class DynamicFS extends ProxiedFS { - constructor() { - super(ppath); - this.baseFs = defaultFsLayer; - } - mapToBase(p) { - return p; - } - mapFromBase(p) { - return p; - } -} -const dynamicFsLayer = new DynamicFS(); -let manager; -const defaultApi = Object.assign(makeApi(defaultRuntimeState, { - fakeFs: dynamicFsLayer, - pnpapiResolution: defaultPnpapiResolution -}), { - makeApi: (_a) => { - var _b = _a, { - basePath = void 0, - fakeFs = dynamicFsLayer, - pnpapiResolution = defaultPnpapiResolution - } = _b, rest = __objRest(_b, [ - "basePath", - "fakeFs", - "pnpapiResolution" - ]); - const apiRuntimeState = typeof basePath !== `undefined` ? $$SETUP_STATE(hydrateRuntimeState, basePath) : defaultRuntimeState; - return makeApi(apiRuntimeState, __spreadValues({ - fakeFs, - pnpapiResolution - }, rest)); - }, - setup: (api) => { - applyPatch(api || defaultApi, { - fakeFs: defaultFsLayer, - manager - }); - dynamicFsLayer.baseFs = new NodeFS(fs__default.default); - } -}); -manager = makeManager(defaultApi, { - fakeFs: dynamicFsLayer -}); -if (module.parent && module.parent.id === `internal/preload`) { - defaultApi.setup(); - if (module.filename) { - delete require$$0__default.default._cache[module.filename]; - } -} -if (process.mainModule === module) { - const reportError = (code, message, data) => { - process.stdout.write(`${JSON.stringify([{code, message, data}, null])} -`); - }; - const reportSuccess = (resolution) => { - process.stdout.write(`${JSON.stringify([null, resolution])} -`); - }; - const processResolution = (request, issuer) => { - try { - reportSuccess(defaultApi.resolveRequest(request, issuer)); - } catch (error) { - reportError(error.code, error.message, error.data); - } - }; - const processRequest = (data) => { - try { - const [request, issuer] = JSON.parse(data); - processResolution(request, issuer); - } catch (error) { - reportError(`INVALID_JSON`, error.message, error.data); - } - }; - if (process.argv.length > 2) { - if (process.argv.length !== 4) { - process.stderr.write(`Usage: ${process.argv[0]} ${process.argv[1]} -`); - process.exitCode = 64; - } else { - processResolution(process.argv[2], process.argv[3]); - } - } else { - let buffer = ``; - const decoder = new StringDecoder__default.default.StringDecoder(); - process.stdin.on(`data`, (chunk) => { - buffer += decoder.write(chunk); - do { - const index = buffer.indexOf(` -`); - if (index === -1) - break; - const line = buffer.slice(0, index); - buffer = buffer.slice(index + 1); - processRequest(line); - } while (true); - }); - } -} - -module.exports = defaultApi; diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index e86954d2d5e..00000000000 --- a/yarn.lock +++ /dev/null @@ -1,8328 +0,0 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 6 - cacheKey: 8 - -"@aashutoshrathi/word-wrap@npm:^1.2.3": - version: 1.2.6 - resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" - checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.0, @babel/code-frame@npm:^7.16.0": - version: 7.16.7 - resolution: "@babel/code-frame@npm:7.16.7" - dependencies: - "@babel/highlight": ^7.16.7 - checksum: db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.16.7": - version: 7.16.7 - resolution: "@babel/helper-validator-identifier@npm:7.16.7" - checksum: dbb3db9d184343152520a209b5684f5e0ed416109cde82b428ca9c759c29b10c7450657785a8b5c5256aa74acc6da491c1f0cf6b784939f7931ef82982051b69 - languageName: node - linkType: hard - -"@babel/highlight@npm:^7.16.7": - version: 7.17.12 - resolution: "@babel/highlight@npm:7.17.12" - dependencies: - "@babel/helper-validator-identifier": ^7.16.7 - chalk: ^2.0.0 - js-tokens: ^4.0.0 - checksum: 841a11aa353113bcce662b47085085a379251bf8b09054e37e1e082da1bf0d59355a556192a6b5e9ee98e8ee6f1f2831ac42510633c5e7043e3744dda2d6b9d6 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.23.9": - version: 7.23.9 - resolution: "@babel/parser@npm:7.23.9" - bin: - parser: ./bin/babel-parser.js - checksum: e7cd4960ac8671774e13803349da88d512f9292d7baa952173260d3e8f15620a28a3701f14f709d769209022f9e7b79965256b8be204fc550cfe783cdcabe7c7 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.6.0, @babel/parser@npm:^7.9.6": - version: 7.18.4 - resolution: "@babel/parser@npm:7.18.4" - bin: - parser: ./bin/babel-parser.js - checksum: e05b2dc720c4b200e088258f3c2a2de5041c140444edc38181d1217b10074e881a7133162c5b62356061f26279f08df5a06ec14c5842996ee8601ad03c57a44f - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.21.0": - version: 7.23.2 - resolution: "@babel/runtime@npm:7.23.2" - dependencies: - regenerator-runtime: ^0.14.0 - checksum: 6c4df4839ec75ca10175f636d6362f91df8a3137f86b38f6cd3a4c90668a0fe8e9281d320958f4fbd43b394988958585a17c3aab2a4ea6bf7316b22916a371fb - languageName: node - linkType: hard - -"@babel/types@npm:^7.6.1, @babel/types@npm:^7.8.3, @babel/types@npm:^7.9.6": - version: 7.18.4 - resolution: "@babel/types@npm:7.18.4" - dependencies: - "@babel/helper-validator-identifier": ^7.16.7 - to-fast-properties: ^2.0.0 - checksum: 85df59beb99c1b95e9e41590442f2ffa1e5b1b558d025489db40c9f7c906bd03a17da26c3ec486e5800e80af27c42ca7eee9506d9212ab17766d2d68d30fbf52 - languageName: node - linkType: hard - -"@bcoe/v8-coverage@npm:^0.2.3": - version: 0.2.3 - resolution: "@bcoe/v8-coverage@npm:0.2.3" - checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27 - languageName: node - linkType: hard - -"@css-render/plugin-bem@npm:^0.15.12": - version: 0.15.12 - resolution: "@css-render/plugin-bem@npm:0.15.12" - peerDependencies: - css-render: ~0.15.12 - checksum: 9fa7ddd62b19beefa1280d731bc45f26f016e0f4f4535025247b4de831b3a37f72f7eaa7098c10fac784a5f1eb723078ee293068e77c04e6e40953f260e4fc14 - languageName: node - linkType: hard - -"@css-render/vue3-ssr@npm:^0.15.10": - version: 0.15.10 - resolution: "@css-render/vue3-ssr@npm:0.15.10" - peerDependencies: - vue: ^3.0.11 - checksum: 7977e0c440d34cd03743809313bea7362e913bf20acb988a1019bbbd8c2aa2c045794344b625fdd6d2bbb1bef9bcf9dccc866978d524b9a358389068c58c81a8 - languageName: node - linkType: hard - -"@css-render/vue3-ssr@npm:^0.15.12": - version: 0.15.12 - resolution: "@css-render/vue3-ssr@npm:0.15.12" - peerDependencies: - vue: ^3.0.11 - checksum: a5505ae1619827dd2f2d1e294f58c927e8e292c93aa6750ffcb8690cc57e797a01c23c828dd4c9a3bde3add500c2385bd85905bb7f3280c76be2010f1c15537d - languageName: node - linkType: hard - -"@emotion/hash@npm:~0.8.0": - version: 0.8.0 - resolution: "@emotion/hash@npm:0.8.0" - checksum: 4b35d88a97e67275c1d990c96d3b0450451d089d1508619488fc0acb882cb1ac91e93246d471346ebd1b5402215941ef4162efe5b51534859b39d8b3a0e3ffaa - languageName: node - linkType: hard - -"@esbuild/android-arm64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/android-arm64@npm:0.18.20" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/android-arm@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/android-arm@npm:0.18.20" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@esbuild/android-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/android-x64@npm:0.18.20" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/darwin-arm64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/darwin-arm64@npm:0.18.20" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/darwin-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/darwin-x64@npm:0.18.20" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/freebsd-arm64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/freebsd-arm64@npm:0.18.20" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/freebsd-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/freebsd-x64@npm:0.18.20" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/linux-arm64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-arm64@npm:0.18.20" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/linux-arm@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-arm@npm:0.18.20" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@esbuild/linux-ia32@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-ia32@npm:0.18.20" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/linux-loong64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-loong64@npm:0.18.20" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - -"@esbuild/linux-mips64el@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-mips64el@npm:0.18.20" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - -"@esbuild/linux-ppc64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-ppc64@npm:0.18.20" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/linux-riscv64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-riscv64@npm:0.18.20" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - -"@esbuild/linux-s390x@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-s390x@npm:0.18.20" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - -"@esbuild/linux-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/linux-x64@npm:0.18.20" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/netbsd-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/netbsd-x64@npm:0.18.20" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/openbsd-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/openbsd-x64@npm:0.18.20" - conditions: os=openbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/sunos-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/sunos-x64@npm:0.18.20" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/win32-arm64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/win32-arm64@npm:0.18.20" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/win32-ia32@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/win32-ia32@npm:0.18.20" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/win32-x64@npm:0.18.20": - version: 0.18.20 - resolution: "@esbuild/win32-x64@npm:0.18.20" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.4.0 - resolution: "@eslint-community/eslint-utils@npm:4.4.0" - dependencies: - eslint-visitor-keys: ^3.3.0 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.6.0": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.6.1": - version: 4.8.0 - resolution: "@eslint-community/regexpp@npm:4.8.0" - checksum: 601e6d033d556e98e8c929905bef335f20d7389762812df4d0f709d9b4d2631610dda975fb272e23b5b68e24a163b3851b114c8080a0a19fb4c141a1eff6305b - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.1.4": - version: 2.1.4 - resolution: "@eslint/eslintrc@npm:2.1.4" - 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 - checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127 - languageName: node - linkType: hard - -"@eslint/js@npm:8.57.0": - version: 8.57.0 - resolution: "@eslint/js@npm:8.57.0" - checksum: 315dc65b0e9893e2bff139bddace7ea601ad77ed47b4550e73da8c9c2d2766c7a575c3cddf17ef85b8fd6a36ff34f91729d0dcca56e73ca887c10df91a41b0bb - languageName: node - linkType: hard - -"@floating-ui/core@npm:^1.4.1": - version: 1.4.1 - resolution: "@floating-ui/core@npm:1.4.1" - dependencies: - "@floating-ui/utils": ^0.1.1 - checksum: be4ab864fe17eeba5e205bd554c264b9a4895a57c573661bbf638357fa3108677fed7ba3269ec15b4da90e29274c9b626d5a15414e8d1fe691e210d02a03695c - languageName: node - linkType: hard - -"@floating-ui/dom@npm:^1.5.1": - version: 1.5.2 - resolution: "@floating-ui/dom@npm:1.5.2" - dependencies: - "@floating-ui/core": ^1.4.1 - "@floating-ui/utils": ^0.1.1 - checksum: 3c71eed50bb22cec8f1f31750ad3d42b3b7b4b29dc6e4351100ff05a62445a5404abb71c733320f8376a8c5e78852e1cfba1b81e22bfc4ca0728f50ca8998dc5 - languageName: node - linkType: hard - -"@floating-ui/utils@npm:^0.1.1": - version: 0.1.2 - resolution: "@floating-ui/utils@npm:0.1.2" - checksum: 3e29fd3c69be2d27bb95ebe54129a6a29ea2d8112b2cbb568168cf2f1e787e6ed6305d743598469476bec28122b7ea3ea4b54a1a2d59d30dc4b4307391472299 - languageName: node - linkType: hard - -"@fullcalendar/bootstrap5@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/bootstrap5@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - checksum: a0c3b9434668f0ba9b19765d13ff53bbc536ac530dc4303ed7a0812f1dafd7ed094073328cdfd58608ff00e13fe9e42f38d8314372642a14e17fb582bfb6eb24 - languageName: node - linkType: hard - -"@fullcalendar/core@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/core@npm:6.1.11" - dependencies: - preact: ~10.12.1 - checksum: 0078a6f96b06a637de08ba28a317bbcbf7768f53ce7891faa2a656ca2bed0e887e555d6f3203b77d6c271ccb128fa85d592411fcfd87746514a5cec68376ad87 - languageName: node - linkType: hard - -"@fullcalendar/daygrid@npm:6.1.11, @fullcalendar/daygrid@npm:~6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/daygrid@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - checksum: 6eb5606de58b7a8ec30d96618a6d15b2c0d7108c94593ff94e81a8d87ce8efb1f29f3849c6c3f2b8ae56198ffe6235e2ec0e4a1270993c022dc194016e595685 - languageName: node - linkType: hard - -"@fullcalendar/icalendar@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/icalendar@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - ical.js: ^1.4.0 - checksum: 4e6eff15a81dda9d275ba555a0b4648a1410c1504694915a1669eb3c1c2299e1bce2817b78dbf33378621972bb0bc90a1d1f53515dc071b5f5abf79d10d1854a - languageName: node - linkType: hard - -"@fullcalendar/interaction@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/interaction@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - checksum: c67d4cfa0b158b848fb482835c5f44c52650037a4b912e16e2ea1955bf476c847d0ec95aea79b37b78207b2da3a7c4d2b37bd5c8b15a89bdd5e3b7ae3b7af9ba - languageName: node - linkType: hard - -"@fullcalendar/list@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/list@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - checksum: 84a8cd6e63407e8fb95b4b2810a49c8815d9491a298a4761b9399cc8384abebf6227cc5ec93b942783f6ea6c6bcb4e94844fd5a12d73700e535f4f15ee02b7d6 - languageName: node - linkType: hard - -"@fullcalendar/luxon3@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/luxon3@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - luxon: ^3.0.0 - checksum: 8e7f45aab2e2235b2027ca99aeabb35a91f0b2fcb608d52357abb582b4640ed8a0d7a4569ffa25628fbe04d2ee13051ec66304c6abef7cd7a364fa173db09ab7 - languageName: node - linkType: hard - -"@fullcalendar/timegrid@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/timegrid@npm:6.1.11" - dependencies: - "@fullcalendar/daygrid": ~6.1.11 - peerDependencies: - "@fullcalendar/core": ~6.1.11 - checksum: 4a11e6dd908e7d7f660149e6d61eff847efa14d0dcf532f8793de6b035d1a573ef7423fea0df791b6dc5f3d9792df77b72c7e6a1150289d04eca3ff9959a80ec - languageName: node - linkType: hard - -"@fullcalendar/vue3@npm:6.1.11": - version: 6.1.11 - resolution: "@fullcalendar/vue3@npm:6.1.11" - peerDependencies: - "@fullcalendar/core": ~6.1.11 - vue: ^3.0.11 - checksum: 5891a596e92269151cb62feaaffdc87ac8ad55b277e8bbad435855ab872fabb2f88766b8bc0659745c5205e3550a2c8923c5fc990ade8401de2ed6a2a9c5701e - languageName: node - linkType: hard - -"@gar/promisify@npm:^1.1.3": - version: 1.1.3 - resolution: "@gar/promisify@npm:1.1.3" - checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 - languageName: node - linkType: hard - -"@html-validate/stylish@npm:^4.1.0": - version: 4.1.0 - resolution: "@html-validate/stylish@npm:4.1.0" - dependencies: - kleur: ^4.0.0 - checksum: 4af90db4f9e8855e9b411e9bec9cd6644a5026c49383621a9257e814823fa2deac9eb65ab89b36bb327071a0669560994ec9831a6fbd883428200d0d36e2f9a9 - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.14": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" - dependencies: - "@humanwhocodes/object-schema": ^2.0.2 - debug: ^4.3.1 - minimatch: ^3.0.5 - checksum: 861ccce9eaea5de19546653bccf75bf09fe878bc39c3aab00aeee2d2a0e654516adad38dd1098aab5e3af0145bbcbf3f309bdf4d964f8dab9dcd5834ae4c02f2 - languageName: node - linkType: hard - -"@humanwhocodes/module-importer@npm:^1.0.1": - version: 1.0.1 - resolution: "@humanwhocodes/module-importer@npm:1.0.1" - checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61 - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^2.0.2": - version: 2.0.2 - resolution: "@humanwhocodes/object-schema@npm:2.0.2" - checksum: 2fc11503361b5fb4f14714c700c02a3f4c7c93e9acd6b87a29f62c522d90470f364d6161b03d1cc618b979f2ae02aed1106fd29d302695d8927e2fc8165ba8ee - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - 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" - checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9 - languageName: node - linkType: hard - -"@jridgewell/resolve-uri@npm:^3.0.3": - version: 3.1.0 - resolution: "@jridgewell/resolve-uri@npm:3.1.0" - checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10": - version: 1.4.14 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" - checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.15": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.12": - version: 0.3.14 - resolution: "@jridgewell/trace-mapping@npm:0.3.14" - dependencies: - "@jridgewell/resolve-uri": ^3.0.3 - "@jridgewell/sourcemap-codec": ^1.4.10 - checksum: b9537b9630ffb631aef9651a085fe361881cde1772cd482c257fe3c78c8fd5388d681f504a9c9fe1081b1c05e8f75edf55ee10fdb58d92bbaa8dbf6a7bd6b18c - languageName: node - linkType: hard - -"@juggle/resize-observer@npm:^3.3.1": - version: 3.3.1 - resolution: "@juggle/resize-observer@npm:3.3.1" - checksum: ddabc4044276a2cb57d469c4917206c7e39f2463aa8e3430e33e4eda554412afe29c22afa40e6708b49dad5d56768dc83acd68a704b1dcd49a0906bb96b991b2 - languageName: node - linkType: hard - -"@kurkle/color@npm:0.3.1": - version: 0.3.1 - resolution: "@kurkle/color@npm:0.3.1" - checksum: e6be5c081bf5acfd4a1803dcd5a0733caf450e73148d5f02dc536b1ff0c60c959c23472a26c9c3c6c78ada04fb6a53c9202db9b2de8ea56f6eeec381f9cc3a1a - languageName: node - linkType: hard - -"@kurkle/color@npm:^0.3.0": - version: 0.3.4 - resolution: "@kurkle/color@npm:0.3.4" - checksum: b95c6abe0241ba1745b3c84de3b464296b95ce577110b54f46e6c6dcc9a0966491533df43812bd6c66f92cf818e385d1390b280cd5851d4afb52fc37f8a6c0b9 - languageName: node - linkType: hard - -"@lezer/common@npm:^0.15.0, @lezer/common@npm:^0.15.7": - version: 0.15.12 - resolution: "@lezer/common@npm:0.15.12" - checksum: dae65816187bd690bf446bec116313d3b5328e70e3e1f7c806273d9356ca2017cf82aa650ea53b95260fb98898ea73d44f33319f9dbbd48d473e2f20771b2377 - languageName: node - linkType: hard - -"@lezer/lr@npm:^0.15.4": - version: 0.15.8 - resolution: "@lezer/lr@npm:0.15.8" - dependencies: - "@lezer/common": ^0.15.0 - checksum: e741225d6ac9cf08f8016bad49622fbd4a4e0d20c2e8c2b38a0abf0ddca69c58275b0ebdb9d5dde2905cf84f6977bc302f7ed5e5ba42c23afa27e9e65b900f36 - languageName: node - linkType: hard - -"@lmdb/lmdb-darwin-arm64@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-darwin-arm64@npm:2.5.2" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@lmdb/lmdb-darwin-arm64@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-darwin-arm64@npm:2.8.5" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@lmdb/lmdb-darwin-x64@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-darwin-x64@npm:2.5.2" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@lmdb/lmdb-darwin-x64@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-darwin-x64@npm:2.8.5" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-arm64@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-linux-arm64@npm:2.5.2" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-arm64@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-linux-arm64@npm:2.8.5" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-arm@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-linux-arm@npm:2.5.2" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-arm@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-linux-arm@npm:2.8.5" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-x64@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-linux-x64@npm:2.5.2" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@lmdb/lmdb-linux-x64@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-linux-x64@npm:2.8.5" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@lmdb/lmdb-win32-x64@npm:2.5.2": - version: 2.5.2 - resolution: "@lmdb/lmdb-win32-x64@npm:2.5.2" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@lmdb/lmdb-win32-x64@npm:2.8.5": - version: 2.8.5 - resolution: "@lmdb/lmdb-win32-x64@npm:2.8.5" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@mischnic/json-sourcemap@npm:^0.1.0": - version: 0.1.0 - resolution: "@mischnic/json-sourcemap@npm:0.1.0" - dependencies: - "@lezer/common": ^0.15.7 - "@lezer/lr": ^0.15.4 - json5: ^2.2.1 - checksum: a30eda9eb02db5213b7aa2dc3c688257884a8969849ffa5a3a7c64c5f2a1cfed06691d94f02b37294a3a3b9efe7f88ee6b86c9ef20a799af54807ff2de2d253e - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:2.0.2" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.2" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-darwin-x64@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-darwin-x64@npm:2.0.2" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-darwin-x64@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-darwin-x64@npm:3.0.2" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-arm64@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-arm64@npm:2.0.2" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-arm64@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-arm64@npm:3.0.2" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-arm@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-arm@npm:2.0.2" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-arm@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-arm@npm:3.0.2" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-x64@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-x64@npm:2.0.2" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-linux-x64@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-linux-x64@npm:3.0.2" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-win32-x64@npm:2.0.2": - version: 2.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-win32-x64@npm:2.0.2" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@msgpackr-extract/msgpackr-extract-win32-x64@npm:3.0.2": - version: 3.0.2 - resolution: "@msgpackr-extract/msgpackr-extract-win32-x64@npm:3.0.2" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:2.1.5": - version: 2.1.5 - resolution: "@nodelib/fs.scandir@npm:2.1.5" - dependencies: - "@nodelib/fs.stat": 2.0.5 - run-parallel: ^1.1.9 - checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:2.0.5": - version: 2.0.5 - resolution: "@nodelib/fs.stat@npm:2.0.5" - checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:^1.2.8": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" - dependencies: - "@nodelib/fs.scandir": 2.1.5 - fastq: ^1.6.0 - checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^2.1.0": - version: 2.1.0 - resolution: "@npmcli/fs@npm:2.1.0" - dependencies: - "@gar/promisify": ^1.1.3 - semver: ^7.3.5 - checksum: 6ec6d678af6da49f9dac50cd882d7f661934dd278972ffbaacde40d9eaa2871292d634000a0cca9510f6fc29855fbd4af433e1adbff90a524ec3eaf140f1219b - languageName: node - linkType: hard - -"@npmcli/move-file@npm:^2.0.0": - version: 2.0.0 - resolution: "@npmcli/move-file@npm:2.0.0" - dependencies: - mkdirp: ^1.0.4 - rimraf: ^3.0.2 - checksum: 1388777b507b0c592d53f41b9d182e1a8de7763bc625fc07999b8edbc22325f074e5b3ec90af79c89d6987fdb2325bc66d59f483258543c14a43661621f841b0 - languageName: node - linkType: hard - -"@parcel/bundler-default@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/bundler-default@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/graph": 3.2.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - checksum: f211a76f55dc34918715c5f1911660cfe0461a55a975929fd419a57423c97eeb4f6db9c14775fc078f6879916cef185f468a1e97077d13a76cf735dc1c885892 - languageName: node - linkType: hard - -"@parcel/cache@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/cache@npm:2.12.0" - dependencies: - "@parcel/fs": 2.12.0 - "@parcel/logger": 2.12.0 - "@parcel/utils": 2.12.0 - lmdb: 2.8.5 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: a45e7998098c4ad31e8a55ea242b50ec638fb3d4614293cf1910a6f227ccc8e324ab56a7486d66d88a6e6d9f2a68621450e42d95dde3d1e986f4918e8f8e0912 - languageName: node - linkType: hard - -"@parcel/cache@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/cache@npm:2.6.2" - dependencies: - "@parcel/fs": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/utils": 2.6.2 - lmdb: 2.5.2 - peerDependencies: - "@parcel/core": ^2.6.2 - checksum: e7b540fe104390399b5f51a3b48c048d38b02b304abbf9180d6398aba8adbd765d2e7acd4708c38a04b7a25b953f2c54e5126a451b1aa2b57c6f5b82f499a1a7 - languageName: node - linkType: hard - -"@parcel/codeframe@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/codeframe@npm:2.12.0" - dependencies: - chalk: ^4.1.0 - checksum: 265c4d7ebee57323c0ff6f28f9cbb1a4b988409a6317eddc1d98d779f3221338739513106f2247d4cd3d6f6edd642f0719e7663d6a2fd98361fdb87bc72666f0 - languageName: node - linkType: hard - -"@parcel/codeframe@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/codeframe@npm:2.6.2" - dependencies: - chalk: ^4.1.0 - checksum: 3253f42b907edefecbc14d6a3f3924eeda1c828c32d9eb4b05d771c68ff124d6a7065aa950dd990beda73fa6b1c18f2b25329a013e8b52742a371cbcf620054f - languageName: node - linkType: hard - -"@parcel/compressor-raw@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/compressor-raw@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - checksum: 16c56704f33a91f7694a1a6b7ab157d731331123cbb32faf1ab09356327f7214fd2eb3c54babc120f7f41dded8742a6e58b524b5f410d3ef1bc47aaf47bc75c8 - languageName: node - linkType: hard - -"@parcel/config-default@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/config-default@npm:2.12.0" - dependencies: - "@parcel/bundler-default": 2.12.0 - "@parcel/compressor-raw": 2.12.0 - "@parcel/namer-default": 2.12.0 - "@parcel/optimizer-css": 2.12.0 - "@parcel/optimizer-htmlnano": 2.12.0 - "@parcel/optimizer-image": 2.12.0 - "@parcel/optimizer-svgo": 2.12.0 - "@parcel/optimizer-swc": 2.12.0 - "@parcel/packager-css": 2.12.0 - "@parcel/packager-html": 2.12.0 - "@parcel/packager-js": 2.12.0 - "@parcel/packager-raw": 2.12.0 - "@parcel/packager-svg": 2.12.0 - "@parcel/packager-wasm": 2.12.0 - "@parcel/reporter-dev-server": 2.12.0 - "@parcel/resolver-default": 2.12.0 - "@parcel/runtime-browser-hmr": 2.12.0 - "@parcel/runtime-js": 2.12.0 - "@parcel/runtime-react-refresh": 2.12.0 - "@parcel/runtime-service-worker": 2.12.0 - "@parcel/transformer-babel": 2.12.0 - "@parcel/transformer-css": 2.12.0 - "@parcel/transformer-html": 2.12.0 - "@parcel/transformer-image": 2.12.0 - "@parcel/transformer-js": 2.12.0 - "@parcel/transformer-json": 2.12.0 - "@parcel/transformer-postcss": 2.12.0 - "@parcel/transformer-posthtml": 2.12.0 - "@parcel/transformer-raw": 2.12.0 - "@parcel/transformer-react-refresh-wrap": 2.12.0 - "@parcel/transformer-svg": 2.12.0 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: 72877c5dc432d6f6a8ffe8dba1342a6c0c2f615d9346f78f654adc61b62cecb4cc425726ee7a088d86894742397b4fb25cfeee7abd1ad6cbe2cfd5d77cd5a781 - languageName: node - linkType: hard - -"@parcel/core@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/core@npm:2.12.0" - dependencies: - "@mischnic/json-sourcemap": ^0.1.0 - "@parcel/cache": 2.12.0 - "@parcel/diagnostic": 2.12.0 - "@parcel/events": 2.12.0 - "@parcel/fs": 2.12.0 - "@parcel/graph": 3.2.0 - "@parcel/logger": 2.12.0 - "@parcel/package-manager": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/profiler": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - "@parcel/workers": 2.12.0 - abortcontroller-polyfill: ^1.1.9 - base-x: ^3.0.8 - browserslist: ^4.6.6 - clone: ^2.1.1 - dotenv: ^7.0.0 - dotenv-expand: ^5.1.0 - json5: ^2.2.0 - msgpackr: ^1.9.9 - nullthrows: ^1.1.1 - semver: ^7.5.2 - checksum: 5bf674630833a157867a5d0b5448cb36ab82fcabdc8f0486efbf896f6321e7b224d6e2b724cebdca2f227690a55d085bd1c89cb1430e2ebcd3583876e33cacce - languageName: node - linkType: hard - -"@parcel/core@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/core@npm:2.6.2" - dependencies: - "@mischnic/json-sourcemap": ^0.1.0 - "@parcel/cache": 2.6.2 - "@parcel/diagnostic": 2.6.2 - "@parcel/events": 2.6.2 - "@parcel/fs": 2.6.2 - "@parcel/graph": 2.6.2 - "@parcel/hash": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/package-manager": 2.6.2 - "@parcel/plugin": 2.6.2 - "@parcel/source-map": ^2.0.0 - "@parcel/types": 2.6.2 - "@parcel/utils": 2.6.2 - "@parcel/workers": 2.6.2 - abortcontroller-polyfill: ^1.1.9 - base-x: ^3.0.8 - browserslist: ^4.6.6 - clone: ^2.1.1 - dotenv: ^7.0.0 - dotenv-expand: ^5.1.0 - json5: ^2.2.0 - msgpackr: ^1.5.4 - nullthrows: ^1.1.1 - semver: ^5.7.1 - checksum: f550cbbd5ee9db5c9c9dda79ad6b4c307d8d16ca52d6abc42d1df846ad6f5a9dedf0aa1dcb6550a66611b8e89a52bc4036039ef4bc62e007c6faab63541d4c69 - languageName: node - linkType: hard - -"@parcel/diagnostic@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/diagnostic@npm:2.12.0" - dependencies: - "@mischnic/json-sourcemap": ^0.1.0 - nullthrows: ^1.1.1 - checksum: a4b918c1a00406de73755b5bb5c7d862c69e49e2cd1837889a85279f9e5be1f8f7b8f96e66f358e30e7dbc7a3919ebe5dafeeb9771db2b682ed9ecf60daba431 - languageName: node - linkType: hard - -"@parcel/diagnostic@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/diagnostic@npm:2.6.2" - dependencies: - "@mischnic/json-sourcemap": ^0.1.0 - nullthrows: ^1.1.1 - checksum: c20c7b12c4a9e840d612fcc0d891675a8fd0a79558698b1f96009cc3631a3222faf7484ebf36f728d255e91d9868ae67638766f7231e016ba078e7cf1899f6b3 - languageName: node - linkType: hard - -"@parcel/events@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/events@npm:2.12.0" - checksum: 136a8a2921fbc84f9228fd133eec87fbd5cde2beaf974f1aef47fab1a99f11c2919a5d7507b4fc8da81b5c00a474a4808c05b178fca9f8c0c897044d3f5ff342 - languageName: node - linkType: hard - -"@parcel/events@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/events@npm:2.6.2" - checksum: 272898db0c5de72bd59d7f43acce188a9c6574abc7235f6b47bf0376a73b49ea634f1fab5c3cdcf846a16e541f40ced16275325f80cc04332543d25d297973d1 - languageName: node - linkType: hard - -"@parcel/fs-search@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/fs-search@npm:2.6.2" - dependencies: - detect-libc: ^1.0.3 - checksum: 99850b1fd81009bbfb150421cfe9a7fc5936b617eb682a154227e563f53dc60baeb131c3825dda2d8bc240fcc3e96889f96b2a85ef7063c1d4925f4c0f9f7842 - languageName: node - linkType: hard - -"@parcel/fs@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/fs@npm:2.12.0" - dependencies: - "@parcel/rust": 2.12.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - "@parcel/watcher": ^2.0.7 - "@parcel/workers": 2.12.0 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: 43d454d55da6ed14f5c422ade547485fe3d31a58a0e10c502f96dd8bb933f4402979c0ae252776d6ae83b3d0a27873390f892337a8fe78ddbc3729e531254007 - languageName: node - linkType: hard - -"@parcel/fs@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/fs@npm:2.6.2" - dependencies: - "@parcel/fs-search": 2.6.2 - "@parcel/types": 2.6.2 - "@parcel/utils": 2.6.2 - "@parcel/watcher": ^2.0.0 - "@parcel/workers": 2.6.2 - peerDependencies: - "@parcel/core": ^2.6.2 - checksum: b5e324d93b5149fb75ba3b931cf45ed1e56266b1585d6ecd14d969cebb673ebd4c3a8d9762bf387185066b838a1a9e1d5a7411fc174a55e3801eae8b1201f68e - languageName: node - linkType: hard - -"@parcel/graph@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/graph@npm:2.6.2" - dependencies: - "@parcel/utils": 2.6.2 - nullthrows: ^1.1.1 - checksum: 74490009e804b14bcf795fe4a1518ae8dd21f04ac4a26fde43cfad69cf6874fe9a1ab7e7b4305d6ceb15b11600e8156504a8ee3279134b22133ffbb4cdab3398 - languageName: node - linkType: hard - -"@parcel/graph@npm:3.2.0": - version: 3.2.0 - resolution: "@parcel/graph@npm:3.2.0" - dependencies: - nullthrows: ^1.1.1 - checksum: b4d31624fc684aab053721b1bdcd3ba4ca465159a4253725a32393aac473eb6016fe7d1a2742f123b6b67437c8af89ee36291220dae51d807833f61ab60744f3 - languageName: node - linkType: hard - -"@parcel/hash@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/hash@npm:2.6.2" - dependencies: - detect-libc: ^1.0.3 - xxhash-wasm: ^0.4.2 - checksum: 212f34e4397bdc48824892eb556755eeb2e3210dfd217cc14740ff94a3adaed89f4a18591916668aad7a0bf906a06b523ad6326fd970753a57b019453d26fb63 - languageName: node - linkType: hard - -"@parcel/logger@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/logger@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/events": 2.12.0 - checksum: be3fe9d9eaec60d8f2546a5f521048629b9206cd37b9863c9311fcd021b4748c57479490f1e7188a36e6eabfb42cda7d4eaf60bc11664ef9b87d164487774a23 - languageName: node - linkType: hard - -"@parcel/logger@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/logger@npm:2.6.2" - dependencies: - "@parcel/diagnostic": 2.6.2 - "@parcel/events": 2.6.2 - checksum: d3536408dac9a28476821f6ba536f8f2b4efba635581d603fdadc78ec062084bdbeec17ab8d38c11c0b368092f63a1db1b757c986ede702654ab69d94b4b815c - languageName: node - linkType: hard - -"@parcel/markdown-ansi@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/markdown-ansi@npm:2.12.0" - dependencies: - chalk: ^4.1.0 - checksum: 850ee665d934ef059d914e15d2dce601618db5d28ac700da9ac1197455135b7cb8ebe560ecae4905f2225ce37c5b5dad86fbe6210afb10d46c513b64ea6faec7 - languageName: node - linkType: hard - -"@parcel/markdown-ansi@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/markdown-ansi@npm:2.6.2" - dependencies: - chalk: ^4.1.0 - checksum: 742c64c5db484565de8ab549daf76f3b24156720e1914fc26c3b9d2e0b933213d0a37c421e54053387a5011e2060ef430b7b932265eb1922e4b23b151b06a449 - languageName: node - linkType: hard - -"@parcel/namer-default@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/namer-default@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - nullthrows: ^1.1.1 - checksum: dc92ec094595658aad21ec668290ee158f71a400783188292ebf00240b81c2041afda1749a1a6081a465943d03cf26a92cf549cbead95f2873450d063361677f - languageName: node - linkType: hard - -"@parcel/node-resolver-core@npm:3.3.0": - version: 3.3.0 - resolution: "@parcel/node-resolver-core@npm:3.3.0" - dependencies: - "@mischnic/json-sourcemap": ^0.1.0 - "@parcel/diagnostic": 2.12.0 - "@parcel/fs": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - semver: ^7.5.2 - checksum: acc3721678d88b20f0bd6c90520e495a4032039332eb1155b69dc093ddb2ab7890240eb553f243f1383bd4e441c64a9870f5b5f84a2bb783b94574f859a813fd - languageName: node - linkType: hard - -"@parcel/optimizer-css@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-css@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - browserslist: ^4.6.6 - lightningcss: ^1.22.1 - nullthrows: ^1.1.1 - checksum: abcdf58c2999b53931274528ad5763a05202c65a5251b978f4989230430b5ecc620dbd6527de1a1970db80f993a6052eacea9c8b7d9d738335cce7f01a016751 - languageName: node - linkType: hard - -"@parcel/optimizer-data-url@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-data-url@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - isbinaryfile: ^4.0.2 - mime: ^2.4.4 - checksum: 03972939615d2c8fddc6df223bd8f17d26b24712ed165ec60a95feda4759f3fe1b5ee25f295a02933022bbf8ef480211490c34c412e7e8e53fee7c4b970291a0 - languageName: node - linkType: hard - -"@parcel/optimizer-htmlnano@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-htmlnano@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - htmlnano: ^2.0.0 - nullthrows: ^1.1.1 - posthtml: ^0.16.5 - svgo: ^2.4.0 - checksum: 64e571f56f959c4cf1fd724e3b50e741b57f90acf035ca5a6908cf7186c42993bfb372db9ac39f9a9dd9bd57be4bba12a527da451893547f6da27db55d63ff13 - languageName: node - linkType: hard - -"@parcel/optimizer-image@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-image@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/utils": 2.12.0 - "@parcel/workers": 2.12.0 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: 7d28379bf1619d6ea0c70fbfef8b6b05941ac2cc0c1de46f2639ec5c40b53a984985538dfeefd35ba20cde31778502631ace1294c9bc0bcce36607ac53c5a3a8 - languageName: node - linkType: hard - -"@parcel/optimizer-svgo@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-svgo@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - svgo: ^2.4.0 - checksum: d3a4d2de9f77b4b084e88b611f1f431d4651f8b819122c92f9d9c1479b5936962a85bf1297e15e07823c3521dffec6083f4b1f4d962392f481dfb7b2a148e7f7 - languageName: node - linkType: hard - -"@parcel/optimizer-swc@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/optimizer-swc@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - "@swc/core": ^1.3.36 - nullthrows: ^1.1.1 - checksum: 0b7fdf3df1e1fff3ed821d7e73f8cd7df4e8e96abd5b12f4e695d762d37736b24eb5bbf365f217ccb04e7a2b5807afec9af9d8c8ab7a97130d74cdc1347c3951 - languageName: node - linkType: hard - -"@parcel/package-manager@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/package-manager@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/fs": 2.12.0 - "@parcel/logger": 2.12.0 - "@parcel/node-resolver-core": 3.3.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - "@parcel/workers": 2.12.0 - "@swc/core": ^1.3.36 - semver: ^7.5.2 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: a517e9efe1330a34ead2758b2c44ac4e635450dccad87051dcc98b6090ba76f472de4de91f1de8151027397286b11e000faf4c80d34a2bc06a4c7f7bd23e97f5 - languageName: node - linkType: hard - -"@parcel/package-manager@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/package-manager@npm:2.6.2" - dependencies: - "@parcel/diagnostic": 2.6.2 - "@parcel/fs": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/types": 2.6.2 - "@parcel/utils": 2.6.2 - "@parcel/workers": 2.6.2 - semver: ^5.7.1 - peerDependencies: - "@parcel/core": ^2.6.2 - checksum: 0c7dfce953da0f26bcd2bc05104767d5d5e0391d66bb76a700022e562c91be683a43e6b4b81ce0c00bc02b3715f4045e0d144d73631dcf7eee2ebd1316dbb879 - languageName: node - linkType: hard - -"@parcel/packager-css@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-css@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - lightningcss: ^1.22.1 - nullthrows: ^1.1.1 - checksum: 684aaa1d8551e65c0af0d44905f1c08f1c0247d05b1af224abaf5007e197e12facb2b511bf2eee66c432613f31e04753d94dd23773c08fe77eb0f2b8ee41799f - languageName: node - linkType: hard - -"@parcel/packager-html@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-html@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - posthtml: ^0.16.5 - checksum: ee558ad616a21b94781a922c7ac8ee6da831cc8f7c4e4642a43027ce6df32ea93f4addabf573b9a955f4aa5cc5462bf8a42fc33809fab68249044e4ab2900a14 - languageName: node - linkType: hard - -"@parcel/packager-js@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-js@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - globals: ^13.2.0 - nullthrows: ^1.1.1 - checksum: 2189b7ff152ddb80739f65f5dffbcce12dbaeb9c8ef5b702e0c253c9b57e390f055b46e8874017b43313b67cfb4e89675a49854a844fcbed6bd1f7885e193cd5 - languageName: node - linkType: hard - -"@parcel/packager-raw@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-raw@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - checksum: 39ce2fc7aede5b81be4bcd1939c49d9166250bedf8c408687c9a125154cc4fcfcd7181e38faa3137817144f75f070c5eaa40472f68ec0aaa9bd2a070674a1093 - languageName: node - linkType: hard - -"@parcel/packager-svg@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-svg@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - posthtml: ^0.16.4 - checksum: 436ac9ea3988ed79e637f6c8990f5f3de75816edc912d26388deeee94ef49b782ced25f427e15b4e721c9e25da6e90ca19f1efd85c3a8aedb1850cb293250b9f - languageName: node - linkType: hard - -"@parcel/packager-wasm@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/packager-wasm@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - checksum: a10e1cd9885a48ad1153b2ca83ef3c852f4a2ed48c67df4f1677da8660878faa1ee3d9da16f0b820f33d17f9181d845d6038f0ea3470c937f973fbe2dd3b86b6 - languageName: node - linkType: hard - -"@parcel/plugin@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/plugin@npm:2.12.0" - dependencies: - "@parcel/types": 2.12.0 - checksum: 0b52f1dd0675ea4f597a3f882f47434b7c5dabc997a875d07f1cf178e37adc927ed86e084502030a04ac6c9b548152741dfdeb8b6d730f7d8af2bfe3465a77d3 - languageName: node - linkType: hard - -"@parcel/plugin@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/plugin@npm:2.6.2" - dependencies: - "@parcel/types": 2.6.2 - checksum: 23da0fa37213a6aef0df3949eff7a53994ed68f413e396ee73d7246277b1e0b2f3ce5d34039cf25a5b79db05a1c769a74564d106e2005fe30b89a628a217294a - languageName: node - linkType: hard - -"@parcel/profiler@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/profiler@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/events": 2.12.0 - chrome-trace-event: ^1.0.2 - checksum: b683b74e10ca469d34588e6a15fe5abbeae66f844c75eaf8aaa588912c41f3668bcff087f6c4ff931a861731443f3addf5a16cfad644827e1daa89e020cf0fb3 - languageName: node - linkType: hard - -"@parcel/reporter-cli@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/reporter-cli@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - chalk: ^4.1.0 - term-size: ^2.2.1 - checksum: 8cc524fa155fa0b9cf0f084cdc184f8cacdaf439d4ac7a74cf431ab9a2a6d0f6c238563efa30e3d49da01e78b61c31a81879c510bb05d44c226e7fcde553994d - languageName: node - linkType: hard - -"@parcel/reporter-dev-server@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/reporter-dev-server@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - checksum: 43957b4656442f4609f29a74cd07b1c358dba263faa622c18841dbd4065e251a959b1e2675de45cf0e42f17a52f27594d4ae83f86e30b59e53f143ce6fe13c52 - languageName: node - linkType: hard - -"@parcel/reporter-tracer@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/reporter-tracer@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - chrome-trace-event: ^1.0.3 - nullthrows: ^1.1.1 - checksum: 24cddacd19f2f5dfde30133fbc1d484666a59cc384013a81e7eb1ba8517ad362e0f92d81e7b42f909657eb4df0d7519a3ed51e0de36a9f3f7c9a3b703054a20f - languageName: node - linkType: hard - -"@parcel/resolver-default@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/resolver-default@npm:2.12.0" - dependencies: - "@parcel/node-resolver-core": 3.3.0 - "@parcel/plugin": 2.12.0 - checksum: f3652eea094151f8a820c0214251209c625ac80ecc086b1869893a14620ad9b6bc86d65496a7687929484ade6db61e375647811d23a114509b4a16e7caf40408 - languageName: node - linkType: hard - -"@parcel/runtime-browser-hmr@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/runtime-browser-hmr@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - checksum: bbba57ecee5668fe2316fc8961f559d2c9296f05fb0feee002dfc1010aa1f2bc4a4ae2ab7778f132ed793e3ebcae05c558552ff86871b37ed25bfab572499191 - languageName: node - linkType: hard - -"@parcel/runtime-js@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/runtime-js@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - checksum: 6afa3e7eb27c11b4fdb2236d3f2e3f07c284927217b5811ebb0d73cd24dfdc8718a6bbb6f43be0d86bb9473f0493bc207d35ce25beaa1ba384b3141ced7ff3bc - languageName: node - linkType: hard - -"@parcel/runtime-react-refresh@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/runtime-react-refresh@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - react-error-overlay: 6.0.9 - react-refresh: ^0.9.0 - checksum: 41aee9a87484575b67dcce07d676a4e26bf0bb79ddea5328ef4a8d729a74da29f0c625b0a7a479c5086e5c79e4616e89034138aad3c97a6db2cf059f1a19d1c9 - languageName: node - linkType: hard - -"@parcel/runtime-service-worker@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/runtime-service-worker@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - checksum: c71246428e1ba69649fe4ecc1ed272f34fb52ff14f364c159e6f979332bb1280483b4eb7633bfe3ab3b3d7c381b524f669e356d9705ba4764bc149977e965c53 - languageName: node - linkType: hard - -"@parcel/rust@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/rust@npm:2.12.0" - checksum: 51c5b67b9ee83e12d544774dad705d500dda52948f65cdb6c7bfa4275a9692561aa141c68be9c8fd29a8cd795a1fe4f3537bc2f1f91a80163d0bb5a0bd223ad0 - languageName: node - linkType: hard - -"@parcel/source-map@npm:^2.0.0": - version: 2.0.5 - resolution: "@parcel/source-map@npm:2.0.5" - dependencies: - detect-libc: ^1.0.3 - checksum: b5e677edeb3f395e5a5ce340545b720ed220a3a953a8d338c11f90a33685d926c0553241ccc2e75a09d347a5f4de26d50b2068f018bd74d33131fb46a0ede114 - languageName: node - linkType: hard - -"@parcel/source-map@npm:^2.1.1": - version: 2.1.1 - resolution: "@parcel/source-map@npm:2.1.1" - dependencies: - detect-libc: ^1.0.3 - checksum: 1fa27a7047ec08faf7fe1dd0e2ae95a27b84697ecfaed029d0b7d06e46d84ed8f98a9dc9d308fe623655f3c985052dcf7622de479bfa6103c44884fb7f6c810a - languageName: node - linkType: hard - -"@parcel/transformer-babel@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-babel@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - browserslist: ^4.6.6 - json5: ^2.2.0 - nullthrows: ^1.1.1 - semver: ^7.5.2 - checksum: b8c457c0be7662d8262671469fa7e7cc69dcf72e67a7abeadfd41a71c193f10eae857e1ea6d5db9842cd3f471f9b299c5d716c99dbc0929d537c7d050a995e6e - languageName: node - linkType: hard - -"@parcel/transformer-css@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-css@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - browserslist: ^4.6.6 - lightningcss: ^1.22.1 - nullthrows: ^1.1.1 - checksum: 3a6f16321d4759b17e13db8953c43cf9ed00aad8ef4354bea04647be60c0b6d36c8a28765a78c79038cbcbb2b32e9cc955f8bc6bddf0e59aa30cae6b89f8a8e9 - languageName: node - linkType: hard - -"@parcel/transformer-html@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-html@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - nullthrows: ^1.1.1 - posthtml: ^0.16.5 - posthtml-parser: ^0.10.1 - posthtml-render: ^3.0.0 - semver: ^7.5.2 - srcset: 4 - checksum: 7fcfac62ca73f239b1a4a4b049c1ef5eb6831a625e873a784c51c9f28957f7c8c7d5f8e86b8e98b9f8a0f7c8f27c3782f5a620931e96c400a0e6e9c203a200bb - languageName: node - linkType: hard - -"@parcel/transformer-image@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-image@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - "@parcel/workers": 2.12.0 - nullthrows: ^1.1.1 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: 0a1581eaccd9c26fbc83da6b576c2b3dc07080d694744b6224ed35a8d77d30a2c3231061f67700281e6963f8a0d23d67f67c73553ea5b94ebfbbbc9c34f60ba3 - languageName: node - linkType: hard - -"@parcel/transformer-inline-string@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-inline-string@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - checksum: 5f63c086956b64cf67ca006efe99048e2b2ce7d23df7703d2709da1971f391f62620dc9186ae604d00918345718656af438f3d681a312fbdcc05fd0477499c83 - languageName: node - linkType: hard - -"@parcel/transformer-js@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-js@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/utils": 2.12.0 - "@parcel/workers": 2.12.0 - "@swc/helpers": ^0.5.0 - browserslist: ^4.6.6 - nullthrows: ^1.1.1 - regenerator-runtime: ^0.13.7 - semver: ^7.5.2 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: b9fe4c887b08d5032a2dc87e529dbcf19b75e1274d6fcbe5e7e8d92bae0186c063e93b93747e49eb67763c29232f1b2411f237c64d5af782d2f6ff663f98a9fd - languageName: node - linkType: hard - -"@parcel/transformer-json@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-json@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - json5: ^2.2.0 - checksum: a711cb65a8bfa4bcffcced0a8ecc91c4e4ddc65d77d2328a7ca8800170f2fa4e6316df06ad55816c65852f45092bcb4e42f8125d179d3223abe4d0650306c134 - languageName: node - linkType: hard - -"@parcel/transformer-postcss@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-postcss@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/utils": 2.12.0 - clone: ^2.1.1 - nullthrows: ^1.1.1 - postcss-value-parser: ^4.2.0 - semver: ^7.5.2 - checksum: b210044a7f13078ed5acf1d02c0169f1daab3e5134de5cfb4aa4900c70a0e19b7cef08e1f03793a1e9af6e625b0ae0b0598803cfa8338e13ba6e8cc792fbba0b - languageName: node - linkType: hard - -"@parcel/transformer-posthtml@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-posthtml@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - posthtml: ^0.16.5 - posthtml-parser: ^0.10.1 - posthtml-render: ^3.0.0 - semver: ^7.5.2 - checksum: b62582ae7e0af9e3fbca8baf589261548c994c8fbfa45ca57901faa1a1cf23122035784a92688fdad9f8b626d26d877f3f465bb5799d56eef264314ecfe74b1d - languageName: node - linkType: hard - -"@parcel/transformer-raw@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-raw@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - checksum: de6681e2e723d9877f3e2fd3c4983ac4de8ecae26f5d0c51ce6d231bd29d644f86db9558426cd69adfdbb89edd824c08ef92ada09aaceaa66dd1f44d1c027d60 - languageName: node - linkType: hard - -"@parcel/transformer-react-refresh-wrap@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-react-refresh-wrap@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/utils": 2.12.0 - react-refresh: ^0.9.0 - checksum: 9aba8c1ab0e7a3dc4da735f093b38e6bcda04385b5ba3373d2b2d09f8099c5dd40493d4b77ca697f499d8d204b6288fd1a5dc1b6c717041d612dcdc501908937 - languageName: node - linkType: hard - -"@parcel/transformer-sass@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-sass@npm:2.12.0" - dependencies: - "@parcel/plugin": 2.12.0 - "@parcel/source-map": ^2.1.1 - sass: ^1.38.0 - checksum: ce6b4d329b60dd4766a47b064cb10d18406ce569488b7f7c6fe561e9180786b813194935d9679bbe4b9afa43877a034d57a4b61e1166a2801af3889196a1e3d8 - languageName: node - linkType: hard - -"@parcel/transformer-svg@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/transformer-svg@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/plugin": 2.12.0 - "@parcel/rust": 2.12.0 - nullthrows: ^1.1.1 - posthtml: ^0.16.5 - posthtml-parser: ^0.10.1 - posthtml-render: ^3.0.0 - semver: ^7.5.2 - checksum: 92b7c6589477e93f8ded857924dee82c498a83641c03b1ce3f836219ca3e8e543b9281128f8647529e561eb5212a1f173d2cb1a1eed5d7cc9487b782db82158c - languageName: node - linkType: hard - -"@parcel/types@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/types@npm:2.12.0" - dependencies: - "@parcel/cache": 2.12.0 - "@parcel/diagnostic": 2.12.0 - "@parcel/fs": 2.12.0 - "@parcel/package-manager": 2.12.0 - "@parcel/source-map": ^2.1.1 - "@parcel/workers": 2.12.0 - utility-types: ^3.10.0 - checksum: 250f95580cd441ee9c5178d65088da9eb105d4b300b753fb6c4b54383e8fa6272eb6273ff45cd223c7eb02fefdee17a18997116f1da26b9a24455c51a8aaf6b2 - languageName: node - linkType: hard - -"@parcel/types@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/types@npm:2.6.2" - dependencies: - "@parcel/cache": 2.6.2 - "@parcel/diagnostic": 2.6.2 - "@parcel/fs": 2.6.2 - "@parcel/package-manager": 2.6.2 - "@parcel/source-map": ^2.0.0 - "@parcel/workers": 2.6.2 - utility-types: ^3.10.0 - checksum: 16f3c3ac36eb6f4bfdf91e65b893b10be8911f708752976baf270d087f82957069fb84b410312fc231543ed74573e6dcf5bc01373fe1113f87f91833cb6d5a86 - languageName: node - linkType: hard - -"@parcel/utils@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/utils@npm:2.12.0" - dependencies: - "@parcel/codeframe": 2.12.0 - "@parcel/diagnostic": 2.12.0 - "@parcel/logger": 2.12.0 - "@parcel/markdown-ansi": 2.12.0 - "@parcel/rust": 2.12.0 - "@parcel/source-map": ^2.1.1 - chalk: ^4.1.0 - nullthrows: ^1.1.1 - checksum: ba80a60fed98c572a4e1dc81f87e0d63fc570221f6759e980b04eff88d3c92a83411a787a08da2720a7e541e52cc6890b1122f59ad7f4fc444f9dbfa8beba818 - languageName: node - linkType: hard - -"@parcel/utils@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/utils@npm:2.6.2" - dependencies: - "@parcel/codeframe": 2.6.2 - "@parcel/diagnostic": 2.6.2 - "@parcel/hash": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/markdown-ansi": 2.6.2 - "@parcel/source-map": ^2.0.0 - chalk: ^4.1.0 - checksum: a74fdca9664412c6a18ef151cba80e784bb5e74784c5b1e1a8f00c0ab8c747203a819a3211e6822b9d86694825297b73c7fd4a8145212f78b2718d1e4b03c987 - languageName: node - linkType: hard - -"@parcel/watcher@npm:^2.0.0": - version: 2.0.5 - resolution: "@parcel/watcher@npm:2.0.5" - dependencies: - node-addon-api: ^3.2.1 - node-gyp: latest - node-gyp-build: ^4.3.0 - checksum: ddc5b073e82cfadbc3bca3c1c0d5e64f445550f77a073fa3f7b1ac4547ec545fd6474ba5cd7e37aa0121d1ea37e70535172be74f9b081a17e7458849cedffdb0 - languageName: node - linkType: hard - -"@parcel/watcher@npm:^2.0.7": - version: 2.0.7 - resolution: "@parcel/watcher@npm:2.0.7" - dependencies: - node-addon-api: ^3.2.1 - node-gyp: latest - node-gyp-build: ^4.3.0 - checksum: 9cf92fbf4486ad6af441286ce85bcd53a03445abb069c61485d3e0aafabe3da3008be06e38f386c3c0e117f743ed1fe04a88936be1daaf9c455e1e7e5b15f562 - languageName: node - linkType: hard - -"@parcel/workers@npm:2.12.0": - version: 2.12.0 - resolution: "@parcel/workers@npm:2.12.0" - dependencies: - "@parcel/diagnostic": 2.12.0 - "@parcel/logger": 2.12.0 - "@parcel/profiler": 2.12.0 - "@parcel/types": 2.12.0 - "@parcel/utils": 2.12.0 - nullthrows: ^1.1.1 - peerDependencies: - "@parcel/core": ^2.12.0 - checksum: e19c3c0a6651a9cef760aca3210356cff36c29d1472b544bec298bc4ffa9aa7429749cf6ce0b1009d034d8a086412833e3af48b3a88f95bb1700e09a8e62ca2f - languageName: node - linkType: hard - -"@parcel/workers@npm:2.6.2": - version: 2.6.2 - resolution: "@parcel/workers@npm:2.6.2" - dependencies: - "@parcel/diagnostic": 2.6.2 - "@parcel/logger": 2.6.2 - "@parcel/types": 2.6.2 - "@parcel/utils": 2.6.2 - chrome-trace-event: ^1.0.2 - nullthrows: ^1.1.1 - peerDependencies: - "@parcel/core": ^2.6.2 - checksum: 92b65cd3fde225dcd377f1f529caeb0d8ee56a9aeef3785716b1ad210132e5dc1b6bd9b7c4c6920094e0030c6aad9cc42d5dbf7b4fb0fb4668eedfd332e0b242 - languageName: node - linkType: hard - -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f - languageName: node - linkType: hard - -"@popperjs/core@npm:*": - version: 2.11.5 - resolution: "@popperjs/core@npm:2.11.5" - checksum: fd7f9dca3fb716d7426332b6ee283f88d2724c0ab342fb678865a640bad403dfb9eeebd8204a406986162f7e2b33394f104320008b74d0e9066d7322f70ea35d - languageName: node - linkType: hard - -"@popperjs/core@npm:2.11.8": - version: 2.11.8 - resolution: "@popperjs/core@npm:2.11.8" - checksum: e5c69fdebf52a4012f6a1f14817ca8e9599cb1be73dd1387e1785e2ed5e5f0862ff817f420a87c7fc532add1f88a12e25aeb010ffcbdc98eace3d55ce2139cf0 - languageName: node - linkType: hard - -"@rollup/pluginutils@npm:5.1.0": - version: 5.1.0 - resolution: "@rollup/pluginutils@npm:5.1.0" - dependencies: - "@types/estree": ^1.0.0 - estree-walker: ^2.0.2 - picomatch: ^2.3.1 - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: 3cc5a6d91452a6eabbfd1ae79b4dd1f1e809d2eecda6e175deb784e75b0911f47e9ecce73f8dd315d6a8b3f362582c91d3c0f66908b6ced69345b3cbe28f8ce8 - languageName: node - linkType: hard - -"@sidvind/better-ajv-errors@npm:2.1.3": - version: 2.1.3 - resolution: "@sidvind/better-ajv-errors@npm:2.1.3" - dependencies: - "@babel/code-frame": ^7.16.0 - chalk: ^4.1.0 - peerDependencies: - ajv: 4.11.8 - 8 - checksum: 949cb805a130a61c00895231aa33c1c9e51b72ae21bd59fe088fc9671b0e921b99183d816d34a02fe5d07647477c570a92d7d327c5e99670605e92b0d2ef163b - languageName: node - linkType: hard - -"@swc/core-darwin-arm64@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-darwin-arm64@npm:1.3.62" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@swc/core-darwin-x64@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-darwin-x64@npm:1.3.62" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@swc/core-linux-arm-gnueabihf@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.3.62" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@swc/core-linux-arm64-gnu@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-linux-arm64-gnu@npm:1.3.62" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@swc/core-linux-arm64-musl@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-linux-arm64-musl@npm:1.3.62" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@swc/core-linux-x64-gnu@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-linux-x64-gnu@npm:1.3.62" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@swc/core-linux-x64-musl@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-linux-x64-musl@npm:1.3.62" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@swc/core-win32-arm64-msvc@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-win32-arm64-msvc@npm:1.3.62" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@swc/core-win32-ia32-msvc@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-win32-ia32-msvc@npm:1.3.62" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@swc/core-win32-x64-msvc@npm:1.3.62": - version: 1.3.62 - resolution: "@swc/core-win32-x64-msvc@npm:1.3.62" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@swc/core@npm:^1.3.36": - version: 1.3.62 - resolution: "@swc/core@npm:1.3.62" - dependencies: - "@swc/core-darwin-arm64": 1.3.62 - "@swc/core-darwin-x64": 1.3.62 - "@swc/core-linux-arm-gnueabihf": 1.3.62 - "@swc/core-linux-arm64-gnu": 1.3.62 - "@swc/core-linux-arm64-musl": 1.3.62 - "@swc/core-linux-x64-gnu": 1.3.62 - "@swc/core-linux-x64-musl": 1.3.62 - "@swc/core-win32-arm64-msvc": 1.3.62 - "@swc/core-win32-ia32-msvc": 1.3.62 - "@swc/core-win32-x64-msvc": 1.3.62 - peerDependencies: - "@swc/helpers": ^0.5.0 - dependenciesMeta: - "@swc/core-darwin-arm64": - optional: true - "@swc/core-darwin-x64": - optional: true - "@swc/core-linux-arm-gnueabihf": - optional: true - "@swc/core-linux-arm64-gnu": - optional: true - "@swc/core-linux-arm64-musl": - optional: true - "@swc/core-linux-x64-gnu": - optional: true - "@swc/core-linux-x64-musl": - optional: true - "@swc/core-win32-arm64-msvc": - optional: true - "@swc/core-win32-ia32-msvc": - optional: true - "@swc/core-win32-x64-msvc": - optional: true - peerDependenciesMeta: - "@swc/helpers": - optional: true - checksum: a7a0d9ffdb8a2b0050e0ff89fdb86fe189d9bcb7f91cb6847f1bfe3e2b520a87ea2e83692dfd80b6d541fb5addb2194769484516b8ca6d3c62ad80f1c79a9368 - languageName: node - linkType: hard - -"@swc/helpers@npm:^0.5.0": - version: 0.5.1 - resolution: "@swc/helpers@npm:0.5.1" - dependencies: - tslib: ^2.4.0 - checksum: 71e0e27234590435e4c62b97ef5e796f88e786841a38c7116a5e27a3eafa7b9ead7cdec5249b32165902076de78446945311c973e59bddf77c1e24f33a8f272a - languageName: node - linkType: hard - -"@tootallnate/once@npm:2": - version: 2.0.0 - resolution: "@tootallnate/once@npm:2.0.0" - checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 - languageName: node - linkType: hard - -"@trysound/sax@npm:0.2.0": - version: 0.2.0 - resolution: "@trysound/sax@npm:0.2.0" - checksum: 11226c39b52b391719a2a92e10183e4260d9651f86edced166da1d95f39a0a1eaa470e44d14ac685ccd6d3df7e2002433782872c0feeb260d61e80f21250e65c - languageName: node - linkType: hard - -"@twuni/emojify@npm:1.0.2": - version: 1.0.2 - resolution: "@twuni/emojify@npm:1.0.2" - checksum: 0044c83b0589767dae1c1bb933cd56f2e5031a438f0fc993413e4cc229080e29c275cdd836be33ee02ddd59a5d1d6223a718685650f11ecfffc69c881c072152 - languageName: node - linkType: hard - -"@types/estree@npm:^1.0.0": - version: 1.0.0 - resolution: "@types/estree@npm:1.0.0" - checksum: 910d97fb7092c6738d30a7430ae4786a38542023c6302b95d46f49420b797f21619cdde11fa92b338366268795884111c2eb10356e4bd2c8ad5b92941e9e6443 - languageName: node - linkType: hard - -"@types/hammerjs@npm:^2.0.45": - version: 2.0.46 - resolution: "@types/hammerjs@npm:2.0.46" - checksum: caba6ec788d19905c71092670b58514b3d1f5eee5382bf9205e8df688d51e7857b7994e2dd7aed57fac8977bdf0e456d67fbaf23440a4385b8ce25fe2af1ec39 - languageName: node - linkType: hard - -"@types/istanbul-lib-coverage@npm:^2.0.1": - version: 2.0.4 - resolution: "@types/istanbul-lib-coverage@npm:2.0.4" - checksum: a25d7589ee65c94d31464c16b72a9dc81dfa0bea9d3e105ae03882d616e2a0712a9c101a599ec482d297c3591e16336962878cb3eb1a0a62d5b76d277a890ce7 - languageName: node - linkType: hard - -"@types/json5@npm:^0.0.29": - version: 0.0.29 - resolution: "@types/json5@npm:0.0.29" - checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac - languageName: node - linkType: hard - -"@types/katex@npm:^0.16.2": - version: 0.16.5 - resolution: "@types/katex@npm:0.16.5" - checksum: a1ce22cd87acd9b32891931f2bc4355c3540cc0a423e161a2e5b040d3e50812cb85ce1fd09f23d42324b19f9da30ded6b1807114f215624f670d79bb46c47cc8 - languageName: node - linkType: hard - -"@types/lodash-es@npm:^4.17.9": - version: 4.17.10 - resolution: "@types/lodash-es@npm:4.17.10" - dependencies: - "@types/lodash": "*" - checksum: 129e9dde830815a72f9bd17c3a7b7ffb10a9cf76d65c7bb4f14df13b38411ed3ebe9ebbc2f9059c4e61198e784d499e48d0a281e27a4defbbba748dd8a4cfd9d - languageName: node - linkType: hard - -"@types/lodash@npm:*": - version: 4.14.182 - resolution: "@types/lodash@npm:4.14.182" - checksum: 7dd137aa9dbabd632408bd37009d984655164fa1ecc3f2b6eb94afe35bf0a5852cbab6183148d883e9c73a958b7fec9a9bcf7c8e45d41195add6a18c34958209 - languageName: node - linkType: hard - -"@types/lodash@npm:^4.14.198": - version: 4.14.200 - resolution: "@types/lodash@npm:4.14.200" - checksum: 6471f8bb5da692a6ecf03a8da4935bfbc341e67ee9bcb4f5730bfacff0c367232548f0a01e8ac5ea18c6fe78fb085d502494e33ccb47a7ee87cbdee03b47d00d - languageName: node - linkType: hard - -"@types/node@npm:~17.0.5": - version: 17.0.29 - resolution: "@types/node@npm:17.0.29" - checksum: bb9d7bce9d6d3882efd9d63b773b548dce98df4bd57eff8ceaa316aa2f3346e36d3618764cc93da84bbff92005174a35eec3465cde91ee973ef1c351ffa40074 - languageName: node - linkType: hard - -"@types/parse-json@npm:^4.0.0": - version: 4.0.0 - resolution: "@types/parse-json@npm:4.0.0" - checksum: fd6bce2b674b6efc3db4c7c3d336bd70c90838e8439de639b909ce22f3720d21344f52427f1d9e57b265fcb7f6c018699b99e5e0c208a1a4823014269a6bf35b - languageName: node - linkType: hard - -"@ungap/structured-clone@npm:^1.2.0": - version: 1.2.0 - resolution: "@ungap/structured-clone@npm:1.2.0" - checksum: 4f656b7b4672f2ce6e272f2427d8b0824ed11546a601d8d5412b9d7704e83db38a8d9f402ecdf2b9063fc164af842ad0ec4a55819f621ed7e7ea4d1efcc74524 - languageName: node - linkType: hard - -"@vitejs/plugin-vue@npm:4.6.2": - version: 4.6.2 - resolution: "@vitejs/plugin-vue@npm:4.6.2" - peerDependencies: - vite: ^4.0.0 || ^5.0.0 - vue: ^3.2.25 - checksum: 01bc4ed64319444f7dcad89f2c8da209f2a2fae1b7b9308c5f8593b5a307287d23178e7b252e1e6f89b20b69ae6629479e06adb7b49c70f5c409401d657e909b - languageName: node - linkType: hard - -"@volar/language-core@npm:2.1.4": - version: 2.1.4 - resolution: "@volar/language-core@npm:2.1.4" - dependencies: - "@volar/source-map": 2.1.4 - checksum: 7430f651431ed00eb7489d48c0596f4653fe70da3c779acfaa5807051db4491c9e4e154e9f0de3c9d863a3b4b1194a517a75395ca9134ea2b1b8af5ff637b204 - languageName: node - linkType: hard - -"@volar/language-service@npm:~2.1.0": - version: 2.1.4 - resolution: "@volar/language-service@npm:2.1.4" - dependencies: - "@volar/language-core": 2.1.4 - vscode-languageserver-protocol: ^3.17.5 - vscode-languageserver-textdocument: ^1.0.11 - vscode-uri: ^3.0.8 - checksum: 06cdcfacf0fab22cee652cab1ae1729628d7ebf68f5f9e791e19e3715b2a4775c0bd2ec2e7a9b0815d93f244d7a745f3ea41aa5084923b10e9258a5f54c1107b - languageName: node - linkType: hard - -"@volar/source-map@npm:2.1.4, @volar/source-map@npm:~2.1.3": - version: 2.1.4 - resolution: "@volar/source-map@npm:2.1.4" - dependencies: - muggle-string: ^0.4.0 - checksum: e2f65bcfd667a02ee5cfe49e612b12e75c05fdaecf3b3590fdd7a0255dce7e51d09e8d4c390c2098ca7321cea219c16a8ea3f6c0f36ca9c0edff3975990b458b - languageName: node - linkType: hard - -"@vscode/l10n@npm:^0.0.18": - version: 0.0.18 - resolution: "@vscode/l10n@npm:0.0.18" - checksum: c33876cebdef0385359619200ecb5d7c46d7f9abffb80f9fab1f83abb5d6bfdb44cc6d792d1b1b9c736c729121274733bbdcd5d2d2eea0d157bdf662d521edef - languageName: node - linkType: hard - -"@vue/compiler-core@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/compiler-core@npm:3.4.21" - dependencies: - "@babel/parser": ^7.23.9 - "@vue/shared": 3.4.21 - entities: ^4.5.0 - estree-walker: ^2.0.2 - source-map-js: ^1.0.2 - checksum: 0d6b7732bc5ca5b4561526bbe646f9acd09cd70561b6c822d15856347f21a009ebf30f2f85b1b7500f24f7c0333a2af8ee645c389abe52485c1f4724c982b306 - languageName: node - linkType: hard - -"@vue/compiler-dom@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/compiler-dom@npm:3.4.21" - dependencies: - "@vue/compiler-core": 3.4.21 - "@vue/shared": 3.4.21 - checksum: f53e4f4e0afc954cede91a8cbeb3a4e053531a43a0f5999d1b18da443ca3f1f6fc9344a8741c72c5719a61bb34e18004ac88e16747bcf145ebc8a31188263690 - languageName: node - linkType: hard - -"@vue/compiler-sfc@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/compiler-sfc@npm:3.4.21" - dependencies: - "@babel/parser": ^7.23.9 - "@vue/compiler-core": 3.4.21 - "@vue/compiler-dom": 3.4.21 - "@vue/compiler-ssr": 3.4.21 - "@vue/shared": 3.4.21 - estree-walker: ^2.0.2 - magic-string: ^0.30.7 - postcss: ^8.4.35 - source-map-js: ^1.0.2 - checksum: 226dc404be96a2811777825918d971feb42650e262159183548d64a463c4153fab97cdc2647224c609c89dbc0d930c6d9dbe6528ef52a1396b4b22163c20569a - languageName: node - linkType: hard - -"@vue/compiler-ssr@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/compiler-ssr@npm:3.4.21" - dependencies: - "@vue/compiler-dom": 3.4.21 - "@vue/shared": 3.4.21 - checksum: c510bee68b1a5b7f8ae3fe771c10ce9c397f876a234ced9df89e4a8353f3874870857e929cbb37e6d785d355b43f2264dc3a7fd5cb6867dc5b39ddca607ea3ed - languageName: node - linkType: hard - -"@vue/devtools-api@npm:^6.5.0": - version: 6.5.0 - resolution: "@vue/devtools-api@npm:6.5.0" - checksum: ec819ef3a426e91d09e9cfefd2827e9ed8ec9d62bb3b3e0674f3da8c7e92a4b879c3b777dc7329172ca6fe2670b62dd5580d23160339208f0f5ae038f2e504ad - languageName: node - linkType: hard - -"@vue/devtools-api@npm:^6.5.1": - version: 6.6.1 - resolution: "@vue/devtools-api@npm:6.6.1" - checksum: cf12b5ebcc7729725087072289410107b55bb82e0b86b8442e4e85516977110a8a3f4e1dec763be8b567a59173703b4e9c0ac1b0489bb2bb81363af7ea258a27 - languageName: node - linkType: hard - -"@vue/language-plugin-pug@npm:2.0.7": - version: 2.0.7 - resolution: "@vue/language-plugin-pug@npm:2.0.7" - dependencies: - "@volar/source-map": ~2.1.3 - volar-service-pug: 0.0.34 - checksum: 11cc96eb5f240144e91b27fe06fcd48de4ef1e4c7fe666d1173b346ed64b7edfa922bd4eb2e512a91a0c6b907975afcaf69cfee4c91af11168590142b3aba4c3 - languageName: node - linkType: hard - -"@vue/reactivity@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/reactivity@npm:3.4.21" - dependencies: - "@vue/shared": 3.4.21 - checksum: 79c7ebe3ec9295cdcb4d762e3a4c0e3eb67d7f12c9deb37baf372c4f48cd5914cdeeba14add433c3149b9c4dd890dc9891ee76e9d13c8ebcd521b5a754a8cc0d - languageName: node - linkType: hard - -"@vue/runtime-core@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/runtime-core@npm:3.4.21" - dependencies: - "@vue/reactivity": 3.4.21 - "@vue/shared": 3.4.21 - checksum: 4eb9b5d91fe58bc5b3f38293099d704ba7699a16d4ce68de03fbe5fc703e521ebfe3cefc156ef866d2ce0cbd1c2af1795674b39ab2b764bfedc069aa05233231 - languageName: node - linkType: hard - -"@vue/runtime-dom@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/runtime-dom@npm:3.4.21" - dependencies: - "@vue/runtime-core": 3.4.21 - "@vue/shared": 3.4.21 - csstype: ^3.1.3 - checksum: ebfdaa081fb7f18214a4e3324a7b58cc1bfe9b585cfc9dc5cf2ee480f233f992c32a6a3a3b595040babf26570ca18e748049d9284c42beceac8665e8f4ce5383 - languageName: node - linkType: hard - -"@vue/server-renderer@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/server-renderer@npm:3.4.21" - dependencies: - "@vue/compiler-ssr": 3.4.21 - "@vue/shared": 3.4.21 - peerDependencies: - vue: 3.4.21 - checksum: faa3dc48767fc4308ffa031d07a6dbb362f26b0b8893f82747e6d879f046c373978402d1c15ed08267ebc0f090809cd3d554e6a4f582affcefb5239be5d4860c - languageName: node - linkType: hard - -"@vue/shared@npm:3.4.21": - version: 3.4.21 - resolution: "@vue/shared@npm:3.4.21" - checksum: 5f30a408911f339c647baa88c45c3a2f6d58dbdaf2bd404753690f24b612717bdfe9050401d8ffb02613a9a06dd0b43c8307420cd69fda6e92e6d65bf9bc0c6f - languageName: node - linkType: hard - -"abbrev@npm:1": - version: 1.1.1 - resolution: "abbrev@npm:1.1.1" - checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 - languageName: node - linkType: hard - -"abortcontroller-polyfill@npm:^1.1.9": - version: 1.7.3 - resolution: "abortcontroller-polyfill@npm:1.7.3" - checksum: 55739d7f0c9bd6afa2aabb3148778967c4dd4dcff91f6b9259df38da34f9882d3f7730b0954e9767a19cc16a8dd9a58915da4e8a50220300d45af3817d7557b1 - languageName: node - linkType: hard - -"acorn-jsx@npm:^5.3.2": - version: 5.3.2 - resolution: "acorn-jsx@npm:5.3.2" - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950 - languageName: node - linkType: hard - -"acorn@npm:^7.1.1": - version: 7.4.1 - resolution: "acorn@npm:7.4.1" - bin: - acorn: bin/acorn - checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407 - languageName: node - linkType: hard - -"acorn@npm:^8.7.1": - version: 8.7.1 - resolution: "acorn@npm:8.7.1" - bin: - acorn: bin/acorn - checksum: aca0aabf98826717920ac2583fdcad0a6fbe4e583fdb6e843af2594e907455aeafe30b1e14f1757cd83ce1776773cf8296ffc3a4acf13f0bd3dfebcf1db6ae80 - languageName: node - linkType: hard - -"acorn@npm:^8.9.0": - version: 8.10.0 - resolution: "acorn@npm:8.10.0" - bin: - acorn: bin/acorn - checksum: 538ba38af0cc9e5ef983aee196c4b8b4d87c0c94532334fa7e065b2c8a1f85863467bb774231aae91613fcda5e68740c15d97b1967ae3394d20faddddd8af61d - languageName: node - linkType: hard - -"agent-base@npm:6, agent-base@npm:^6.0.2": - version: 6.0.2 - resolution: "agent-base@npm:6.0.2" - dependencies: - debug: 4 - checksum: f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d - languageName: node - linkType: hard - -"agentkeepalive@npm:^4.2.1": - version: 4.2.1 - resolution: "agentkeepalive@npm:4.2.1" - dependencies: - debug: ^4.1.0 - depd: ^1.1.2 - humanize-ms: ^1.2.1 - checksum: 39cb49ed8cf217fd6da058a92828a0a84e0b74c35550f82ee0a10e1ee403c4b78ade7948be2279b188b7a7303f5d396ea2738b134731e464bf28de00a4f72a18 - languageName: node - linkType: hard - -"aggregate-error@npm:^3.0.0": - version: 3.1.0 - resolution: "aggregate-error@npm:3.1.0" - dependencies: - clean-stack: ^2.0.0 - indent-string: ^4.0.0 - checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 - languageName: node - linkType: hard - -"ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" - 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 - checksum: 874972efe5c4202ab0a68379481fbd3d1b5d0a7bd6d3cc21d40d3536ebff3352a2a1fabb632d4fd2cc7fe4cbdcd5ed6782084c9bbf7f32a1536d18f9da5007d4 - languageName: node - linkType: hard - -"ajv@npm:^8.0.0": - version: 8.11.0 - resolution: "ajv@npm:8.11.0" - dependencies: - fast-deep-equal: ^3.1.1 - json-schema-traverse: ^1.0.0 - require-from-string: ^2.0.2 - uri-js: ^4.2.2 - checksum: 5e0ff226806763be73e93dd7805b634f6f5921e3e90ca04acdf8db81eed9d8d3f0d4c5f1213047f45ebbf8047ffe0c840fa1ef2ec42c3a644899f69aa72b5bef - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.0.1 - resolution: "ansi-regex@npm:6.0.1" - checksum: 1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 - languageName: node - linkType: hard - -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: ^1.9.0 - checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: ^2.0.1 - checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 - languageName: node - linkType: hard - -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 - languageName: node - linkType: hard - -"anymatch@npm:~3.1.2": - version: 3.1.2 - resolution: "anymatch@npm:3.1.2" - dependencies: - normalize-path: ^3.0.0 - picomatch: ^2.0.4 - checksum: 985163db2292fac9e5a1e072bf99f1b5baccf196e4de25a0b0b81865ebddeb3b3eb4480734ef0a2ac8c002845396b91aa89121f5b84f93981a4658164a9ec6e9 - languageName: node - linkType: hard - -"aproba@npm:^1.0.3 || ^2.0.0": - version: 2.0.0 - resolution: "aproba@npm:2.0.0" - checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 - languageName: node - linkType: hard - -"are-we-there-yet@npm:^3.0.0": - version: 3.0.0 - resolution: "are-we-there-yet@npm:3.0.0" - dependencies: - delegates: ^1.0.0 - readable-stream: ^3.6.0 - checksum: 348edfdd931b0b50868b55402c01c3f64df1d4c229ab6f063539a5025fd6c5f5bb8a0cab409bbed8d75d34762d22aa91b7c20b4204eb8177063158d9ba792981 - languageName: node - linkType: hard - -"argparse@npm:^2.0.1": - version: 2.0.1 - resolution: "argparse@npm:2.0.1" - checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced - languageName: node - linkType: hard - -"array-buffer-byte-length@npm:^1.0.0": - version: 1.0.0 - resolution: "array-buffer-byte-length@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - is-array-buffer: ^3.0.1 - checksum: 044e101ce150f4804ad19c51d6c4d4cfa505c5b2577bd179256e4aa3f3f6a0a5e9874c78cd428ee566ac574c8a04d7ce21af9fe52e844abfdccb82b33035a7c3 - languageName: node - linkType: hard - -"array-includes@npm:^3.1.7": - version: 3.1.7 - resolution: "array-includes@npm:3.1.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - get-intrinsic: ^1.2.1 - is-string: ^1.0.7 - checksum: 06f9e4598fac12a919f7c59a3f04f010ea07f0b7f0585465ed12ef528a60e45f374e79d1bddbb34cdd4338357d00023ddbd0ac18b0be36964f5e726e8965d7fc - languageName: node - linkType: hard - -"array.prototype.findlastindex@npm:^1.2.3": - version: 1.2.3 - resolution: "array.prototype.findlastindex@npm:1.2.3" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - es-shim-unscopables: ^1.0.0 - get-intrinsic: ^1.2.1 - checksum: 31f35d7b370c84db56484618132041a9af401b338f51899c2e78ef7690fbba5909ee7ca3c59a7192085b328cc0c68c6fd1f6d1553db01a689a589ae510f3966e - languageName: node - linkType: hard - -"array.prototype.flat@npm:^1.3.2": - version: 1.3.2 - resolution: "array.prototype.flat@npm:1.3.2" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - es-shim-unscopables: ^1.0.0 - checksum: 5d6b4bf102065fb3f43764bfff6feb3295d372ce89591e6005df3d0ce388527a9f03c909af6f2a973969a4d178ab232ffc9236654149173e0e187ec3a1a6b87b - languageName: node - linkType: hard - -"array.prototype.flatmap@npm:^1.3.2": - version: 1.3.2 - resolution: "array.prototype.flatmap@npm:1.3.2" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - es-shim-unscopables: ^1.0.0 - checksum: ce09fe21dc0bcd4f30271f8144083aa8c13d4639074d6c8dc82054b847c7fc9a0c97f857491f4da19d4003e507172a78f4bcd12903098adac8b9cd374f734be3 - languageName: node - linkType: hard - -"arraybuffer.prototype.slice@npm:^1.0.2": - version: 1.0.2 - resolution: "arraybuffer.prototype.slice@npm:1.0.2" - dependencies: - array-buffer-byte-length: ^1.0.0 - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - get-intrinsic: ^1.2.1 - is-array-buffer: ^3.0.2 - is-shared-array-buffer: ^1.0.2 - checksum: c200faf437786f5b2c80d4564ff5481c886a16dee642ef02abdc7306c7edd523d1f01d1dd12b769c7eb42ac9bc53874510db19a92a2c035c0f6696172aafa5d3 - languageName: node - linkType: hard - -"asap@npm:~2.0.3": - version: 2.0.6 - resolution: "asap@npm:2.0.6" - checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d - languageName: node - linkType: hard - -"assert-never@npm:^1.2.1": - version: 1.2.1 - resolution: "assert-never@npm:1.2.1" - checksum: ea4f1756d90f55254c4dc7a20d6c5d5bc169160562aefe3d8756b598c10e695daf568f21b6d6b12245d7f3782d3ff83ef6a01ab75d487adfc6909470a813bf8c - languageName: node - linkType: hard - -"async-validator@npm:^4.2.5": - version: 4.2.5 - resolution: "async-validator@npm:4.2.5" - checksum: 3e3d891a2e21497c8a646afeb7b1e6ed5f98de5f58ce3600732080f327cb581e65d8d8ff184273f1461dc84105d49f5cf31422a67ce50e787967c306838b6f40 - languageName: node - linkType: hard - -"available-typed-arrays@npm:^1.0.5": - version: 1.0.5 - resolution: "available-typed-arrays@npm:1.0.5" - checksum: 20eb47b3cefd7db027b9bbb993c658abd36d4edd3fe1060e83699a03ee275b0c9b216cc076ff3f2db29073225fb70e7613987af14269ac1fe2a19803ccc97f1a - languageName: node - linkType: hard - -"babel-walk@npm:3.0.0-canary-5": - version: 3.0.0-canary-5 - resolution: "babel-walk@npm:3.0.0-canary-5" - dependencies: - "@babel/types": ^7.9.6 - checksum: 6fe7ee3889343a6602f665c28ea135956a0767d7f7ca5fc1d72c5243e2f6e9d8a64f51254bf2fd0cce47b79fceeccf7a357f37cfa755a509dfb930a21151837c - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 - languageName: node - linkType: hard - -"base-x@npm:^3.0.8": - version: 3.0.9 - resolution: "base-x@npm:3.0.9" - dependencies: - safe-buffer: ^5.0.1 - checksum: 957101d6fd09e1903e846fd8f69fd7e5e3e50254383e61ab667c725866bec54e5ece5ba49ce385128ae48f9ec93a26567d1d5ebb91f4d56ef4a9cc0d5a5481e8 - languageName: node - linkType: hard - -"binary-extensions@npm:^2.0.0": - version: 2.2.0 - resolution: "binary-extensions@npm:2.2.0" - checksum: ccd267956c58d2315f5d3ea6757cf09863c5fc703e50fbeb13a7dc849b812ef76e3cf9ca8f35a0c48498776a7478d7b4a0418e1e2b8cb9cb9731f2922aaad7f8 - languageName: node - linkType: hard - -"boolbase@npm:^1.0.0": - version: 1.0.0 - resolution: "boolbase@npm:1.0.0" - checksum: 3e25c80ef626c3a3487c73dbfc70ac322ec830666c9ad915d11b701142fab25ec1e63eff2c450c74347acfd2de854ccde865cd79ef4db1683f7c7b046ea43bb0 - languageName: node - linkType: hard - -"bootstrap-icons@npm:1.11.3": - version: 1.11.3 - resolution: "bootstrap-icons@npm:1.11.3" - checksum: d5cdb90fe37af9051f369cbced8aa25bde9c29895f6ab47cbadcfdca71ae5b49093fceb4261c910a84d4352a5a4f998fdae4f1c245897bc6a1042321f4380c07 - languageName: node - linkType: hard - -"bootstrap@npm:5.3.3": - version: 5.3.3 - resolution: "bootstrap@npm:5.3.3" - peerDependencies: - "@popperjs/core": ^2.11.8 - checksum: 537b68db30150075614310e9ebdf1be9b4affdf89ca226d59f4352e82a368b203af13ed0ce5ccfa4e06f141ecd233f7432ca3817e9c1a39863a05fbe13c73c4b - languageName: node - linkType: hard - -"bootstrap@npm:^5.1.3": - version: 5.1.3 - resolution: "bootstrap@npm:5.1.3" - peerDependencies: - "@popperjs/core": ^2.10.2 - checksum: 301b5ed872efba061104cf22ac93568e3837867fb5527ab9326a51510fb752bd4883e1d488225c8be72f86d9d3a55ef5b166aa7fa62c2fdd077c3f05b65752f8 - languageName: node - linkType: hard - -"brace-expansion@npm:^1.1.7": - version: 1.1.11 - resolution: "brace-expansion@npm:1.1.11" - dependencies: - balanced-match: ^1.0.0 - concat-map: 0.0.1 - checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 - languageName: node - linkType: hard - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: ^1.0.0 - checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 - languageName: node - linkType: hard - -"braces@npm:~3.0.2": - version: 3.0.2 - resolution: "braces@npm:3.0.2" - dependencies: - fill-range: ^7.0.1 - checksum: e2a8e769a863f3d4ee887b5fe21f63193a891c68b612ddb4b68d82d1b5f3ff9073af066c343e9867a393fe4c2555dcb33e89b937195feb9c1613d259edfcd459 - languageName: node - linkType: hard - -"browser-fs-access@npm:0.35.0": - version: 0.35.0 - resolution: "browser-fs-access@npm:0.35.0" - checksum: 5f3bf1ec17ffc2c991af7d92e2100f0b3d6cdd638a4dbf59e72c86a6de534816d7ad40cd25b63bf8f15d2ae47f1cd46ad27f13104029e62f8f101722dabf3a37 - languageName: node - linkType: hard - -browserlist@latest: - version: 1.0.1 - resolution: "browserlist@npm:1.0.1" - dependencies: - chalk: ^2.4.1 - bin: - browserlist: ./cli.js - checksum: db4dc273b59637f4e716676978d2c8a2431fb021860ec8ea9552eebe24bff67e955630d42c3995a9b03c1606819b18fb032ab943103b54b830933ec4d695e516 - languageName: node - linkType: hard - -"browserslist@npm:^4.6.6": - version: 4.20.3 - resolution: "browserslist@npm:4.20.3" - dependencies: - caniuse-lite: ^1.0.30001332 - electron-to-chromium: ^1.4.118 - escalade: ^3.1.1 - node-releases: ^2.0.3 - picocolors: ^1.0.0 - bin: - browserslist: cli.js - checksum: 1e4b719ac2ca0fe235218a606e8b8ef16b8809e0973b924158c39fbc435a0b0fe43437ea52dd6ef5ad2efcb83fcb07431244e472270177814217f7c563651f7d - languageName: node - linkType: hard - -"builtin-modules@npm:^3.3.0": - version: 3.3.0 - resolution: "builtin-modules@npm:3.3.0" - checksum: db021755d7ed8be048f25668fe2117620861ef6703ea2c65ed2779c9e3636d5c3b82325bd912244293959ff3ae303afa3471f6a15bf5060c103e4cc3a839749d - languageName: node - linkType: hard - -"builtins@npm:^4.0.0": - version: 4.1.0 - resolution: "builtins@npm:4.1.0" - dependencies: - semver: ^7.0.0 - checksum: 3524f5a5898c3f77a73fee2e0046e676abbb0acc18db1e495676ee07fbef1537134b0e9c4da525f4cb12ba3cd1b430a26c373d32b59b80a5c048f8ace31b595f - languageName: node - linkType: hard - -"builtins@npm:^5.0.1": - version: 5.0.1 - resolution: "builtins@npm:5.0.1" - dependencies: - semver: ^7.0.0 - checksum: 66d204657fe36522822a95b288943ad11b58f5eaede235b11d8c4edaa28ce4800087d44a2681524c340494aadb120a0068011acabe99d30e8f11a7d826d83515 - languageName: node - linkType: hard - -"c8@npm:9.1.0": - version: 9.1.0 - resolution: "c8@npm:9.1.0" - dependencies: - "@bcoe/v8-coverage": ^0.2.3 - "@istanbuljs/schema": ^0.1.3 - find-up: ^5.0.0 - foreground-child: ^3.1.1 - istanbul-lib-coverage: ^3.2.0 - istanbul-lib-report: ^3.0.1 - istanbul-reports: ^3.1.6 - test-exclude: ^6.0.0 - v8-to-istanbul: ^9.0.0 - yargs: ^17.7.2 - yargs-parser: ^21.1.1 - bin: - c8: bin/c8.js - checksum: c5249bf9c390784a33b05f5e930f5301793c15105c874a0130839dbf3309ce8832376f77be5e325a40cc2955f455f1d7aea754858befd07eee535dd42b287bbe - languageName: node - linkType: hard - -"cacache@npm:^16.1.0": - version: 16.1.0 - resolution: "cacache@npm:16.1.0" - dependencies: - "@npmcli/fs": ^2.1.0 - "@npmcli/move-file": ^2.0.0 - chownr: ^2.0.0 - fs-minipass: ^2.1.0 - glob: ^8.0.1 - infer-owner: ^1.0.4 - lru-cache: ^7.7.1 - minipass: ^3.1.6 - minipass-collect: ^1.0.2 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - mkdirp: ^1.0.4 - p-map: ^4.0.0 - promise-inflight: ^1.0.1 - rimraf: ^3.0.2 - ssri: ^9.0.0 - tar: ^6.1.11 - unique-filename: ^1.1.1 - checksum: ddfcf92f079f24ccecef4e2ca1e4428443787b61429b921803b020fd0f33d9ac829ac47837b74b40868d8ae4f1b2ed82e164cdaa5508fbd790eee005a9d88469 - languageName: node - linkType: hard - -"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": - version: 1.0.2 - resolution: "call-bind@npm:1.0.2" - dependencies: - function-bind: ^1.1.1 - get-intrinsic: ^1.0.2 - checksum: f8e31de9d19988a4b80f3e704788c4a2d6b6f3d17cfec4f57dc29ced450c53a49270dc66bf0fbd693329ee948dd33e6c90a329519aef17474a4d961e8d6426b0 - languageName: node - linkType: hard - -"call-bind@npm:^1.0.4, call-bind@npm:^1.0.5": - version: 1.0.5 - resolution: "call-bind@npm:1.0.5" - dependencies: - function-bind: ^1.1.2 - get-intrinsic: ^1.2.1 - set-function-length: ^1.1.1 - checksum: 449e83ecbd4ba48e7eaac5af26fea3b50f8f6072202c2dd7c5a6e7a6308f2421abe5e13a3bbd55221087f76320c5e09f25a8fdad1bab2b77c68ae74d92234ea5 - languageName: node - linkType: hard - -"callsites@npm:^3.0.0": - version: 3.1.0 - resolution: "callsites@npm:3.1.0" - checksum: 072d17b6abb459c2ba96598918b55868af677154bec7e73d222ef95a8fdb9bbf7dae96a8421085cdad8cd190d86653b5b6dc55a4484f2e5b2e27d5e0c3fc15b3 - languageName: node - linkType: hard - -"caniuse-lite@npm:1.0.30001603": - version: 1.0.30001603 - resolution: "caniuse-lite@npm:1.0.30001603" - checksum: e66e0d24b899c2ed3fdcc2dd44df29c4fc06d74fa8f43abe81fc7cff4a72b092d438e0fb5b7daeb252ee267519f32c6c7d229a15e7a4f4263afef6ea3832b661 - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001332": - version: 1.0.30001430 - resolution: "caniuse-lite@npm:1.0.30001430" - checksum: 15200fe2658871807341a451b01e3d6ae2bf5e0e30b60af86e1e8d9e1655a5f5011bb23fdc3d6b696019d63d3e60ad6864b15c40c80c538c4500ac5098b9701b - languageName: node - linkType: hard - -"chalk@npm:^2.0.0, chalk@npm:^2.4.1": - version: 2.4.2 - resolution: "chalk@npm:2.4.2" - dependencies: - ansi-styles: ^3.2.1 - escape-string-regexp: ^1.0.5 - supports-color: ^5.3.0 - checksum: ec3661d38fe77f681200f878edbd9448821924e0f93a9cefc0e26a33b145f1027a2084bf19967160d11e1f03bfe4eaffcabf5493b89098b2782c3fe0b03d80c2 - languageName: node - linkType: hard - -"chalk@npm:^4.0.0, chalk@npm:^4.1.0": - version: 4.1.2 - resolution: "chalk@npm:4.1.2" - dependencies: - ansi-styles: ^4.1.0 - supports-color: ^7.1.0 - checksum: fe75c9d5c76a7a98d45495b91b2172fa3b7a09e0cc9370e5c8feb1c567b85c4288e2b3fded7cfdd7359ac28d6b3844feb8b82b8686842e93d23c827c417e83fc - languageName: node - linkType: hard - -"character-parser@npm:^2.2.0": - version: 2.2.0 - resolution: "character-parser@npm:2.2.0" - dependencies: - is-regex: ^1.0.3 - checksum: 71826fae509d4dc3ef07c2e824da9c8853f910ba0d8fe699edaab263051fd3b8db77bb96e46ed896bb36ed1d86108e6d6ceedff436bec7786ba7f0b585a0bc93 - languageName: node - linkType: hard - -"chart.js@npm:^4.5.1": - version: 4.5.1 - resolution: "chart.js@npm:4.5.1" - dependencies: - "@kurkle/color": ^0.3.0 - checksum: 34b35b373642994b2adac197e91363625930530e29fc1baa6dbb411b5e1295f9f6572922003a0224a21a3019aec916567c1ed00c33b1373081f189fc188e5a7b - languageName: node - linkType: hard - -"chartjs-plugin-zoom@npm:2.2.0": - version: 2.2.0 - resolution: "chartjs-plugin-zoom@npm:2.2.0" - dependencies: - "@types/hammerjs": ^2.0.45 - hammerjs: ^2.0.8 - peerDependencies: - chart.js: ">=3.2.0" - checksum: a540e3834082eeb4dedb5ec6ca381f94d7e101075c19a7b65f2a4cd2d12685b3a416e718c9cf7145799802874fb397f69b71a955dfc56b035946cde4d1eb6c8e - languageName: node - linkType: hard - -"chokidar@npm:>=3.0.0 <4.0.0": - version: 3.5.3 - resolution: "chokidar@npm:3.5.3" - dependencies: - 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 - dependenciesMeta: - fsevents: - optional: true - checksum: b49fcde40176ba007ff361b198a2d35df60d9bb2a5aab228279eb810feae9294a6b4649ab15981304447afe1e6ffbf4788ad5db77235dc770ab777c6e771980c - languageName: node - linkType: hard - -"chownr@npm:^2.0.0": - version: 2.0.0 - resolution: "chownr@npm:2.0.0" - checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f - languageName: node - linkType: hard - -"chrome-trace-event@npm:^1.0.2, chrome-trace-event@npm:^1.0.3": - version: 1.0.3 - resolution: "chrome-trace-event@npm:1.0.3" - checksum: cb8b1fc7e881aaef973bd0c4a43cd353c2ad8323fb471a041e64f7c2dd849cde4aad15f8b753331a32dda45c973f032c8a03b8177fc85d60eaa75e91e08bfb97 - languageName: node - linkType: hard - -"clean-stack@npm:^2.0.0": - version: 2.2.0 - resolution: "clean-stack@npm:2.2.0" - checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 - languageName: node - linkType: hard - -"cliui@npm:^8.0.1": - version: 8.0.1 - resolution: "cliui@npm:8.0.1" - dependencies: - string-width: ^4.2.0 - strip-ansi: ^6.0.1 - wrap-ansi: ^7.0.0 - checksum: 79648b3b0045f2e285b76fb2e24e207c6db44323581e421c3acbd0e86454cba1b37aea976ab50195a49e7384b871e6dfb2247ad7dec53c02454ac6497394cb56 - languageName: node - linkType: hard - -"clone@npm:^2.1.1": - version: 2.1.2 - resolution: "clone@npm:2.1.2" - checksum: aaf106e9bc025b21333e2f4c12da539b568db4925c0501a1bf4070836c9e848c892fa22c35548ce0d1132b08bbbfa17a00144fe58fccdab6fa900fec4250f67d - languageName: node - linkType: hard - -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: 1.1.3 - checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: ~1.1.4 - checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 - languageName: node - linkType: hard - -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 09c5d3e33d2105850153b14466501f2bfb30324a2f76568a408763a3b7433b0e50e5b4ab1947868e65cb101bb7cb75029553f2c333b6d4b8138a73fcc133d69d - languageName: node - linkType: hard - -"color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 - languageName: node - linkType: hard - -"color-support@npm:^1.1.3": - version: 1.1.3 - resolution: "color-support@npm:1.1.3" - bin: - color-support: bin.js - checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b - languageName: node - linkType: hard - -"commander@npm:7, commander@npm:^7.0.0, commander@npm:^7.2.0": - version: 7.2.0 - resolution: "commander@npm:7.2.0" - checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc - languageName: node - linkType: hard - -"concat-map@npm:0.0.1": - version: 0.0.1 - resolution: "concat-map@npm:0.0.1" - checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af - languageName: node - linkType: hard - -"console-control-strings@npm:^1.1.0": - version: 1.1.0 - resolution: "console-control-strings@npm:1.1.0" - checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed - languageName: node - linkType: hard - -"constantinople@npm:^4.0.1": - version: 4.0.1 - resolution: "constantinople@npm:4.0.1" - dependencies: - "@babel/parser": ^7.6.0 - "@babel/types": ^7.6.1 - checksum: 8f70f16ddf97cdc263ca16b398bc52470c25e2ec5ed27bc015f251b849597223ce3a123e6924f43efddeb75422c1f55b7e56e0e2e594e4dd2964bfc9392b9b82 - languageName: node - linkType: hard - -"convert-source-map@npm:^1.6.0": - version: 1.8.0 - resolution: "convert-source-map@npm:1.8.0" - dependencies: - safe-buffer: ~5.1.1 - checksum: 985d974a2d33e1a2543ada51c93e1ba2f73eaed608dc39f229afc78f71dcc4c8b7d7c684aa647e3c6a3a204027444d69e53e169ce94e8d1fa8d7dee80c9c8fed - languageName: node - linkType: hard - -"cosmiconfig@npm:^7.0.1": - version: 7.0.1 - resolution: "cosmiconfig@npm:7.0.1" - 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 - checksum: 4be63e7117955fd88333d7460e4c466a90f556df6ef34efd59034d2463484e339666c41f02b523d574a797ec61f4a91918c5b89a316db2ea2f834e0d2d09465b - languageName: node - linkType: hard - -"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2": - version: 7.0.3 - resolution: "cross-spawn@npm:7.0.3" - dependencies: - path-key: ^3.1.0 - shebang-command: ^2.0.0 - which: ^2.0.1 - checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52 - languageName: node - linkType: hard - -"css-render@npm:^0.15.10": - version: 0.15.10 - resolution: "css-render@npm:0.15.10" - dependencies: - "@emotion/hash": ~0.8.0 - "@types/node": ~17.0.5 - csstype: ~3.0.5 - checksum: 051ebb6a56bc8ef1149ef15eecef54b9a08e6ba1aec8866e459c6823988c5307b7e52de4c80fa17ac80d04a81573dbe7811092b2ba85cc586c78fb1f0f7ab918 - languageName: node - linkType: hard - -"css-render@npm:^0.15.12": - version: 0.15.12 - resolution: "css-render@npm:0.15.12" - dependencies: - "@emotion/hash": ~0.8.0 - csstype: ~3.0.5 - checksum: 80265c5055e3a77b7ee357c16e3090f84f19a2f4e0917425c430f987e0af62c2491121832c7e0c7b0037eaff4291dc0385b1e6ef068c6088a704973e971defd0 - languageName: node - linkType: hard - -"css-select@npm:^4.1.3": - version: 4.3.0 - resolution: "css-select@npm:4.3.0" - dependencies: - boolbase: ^1.0.0 - css-what: ^6.0.1 - domhandler: ^4.3.1 - domutils: ^2.8.0 - nth-check: ^2.0.1 - checksum: d6202736839194dd7f910320032e7cfc40372f025e4bf21ca5bf6eb0a33264f322f50ba9c0adc35dadd342d3d6fae5ca244779a4873afbfa76561e343f2058e0 - languageName: node - linkType: hard - -"css-tree@npm:^1.1.2, css-tree@npm:^1.1.3": - version: 1.1.3 - resolution: "css-tree@npm:1.1.3" - dependencies: - mdn-data: 2.0.14 - source-map: ^0.6.1 - checksum: 79f9b81803991b6977b7fcb1588799270438274d89066ce08f117f5cdb5e20019b446d766c61506dd772c839df84caa16042d6076f20c97187f5abe3b50e7d1f - languageName: node - linkType: hard - -"css-what@npm:^6.0.1": - version: 6.1.0 - resolution: "css-what@npm:6.1.0" - checksum: b975e547e1e90b79625918f84e67db5d33d896e6de846c9b584094e529f0c63e2ab85ee33b9daffd05bff3a146a1916bec664e18bb76dd5f66cbff9fc13b2bbe - languageName: node - linkType: hard - -"cssesc@npm:^3.0.0": - version: 3.0.0 - resolution: "cssesc@npm:3.0.0" - bin: - cssesc: bin/cssesc - checksum: f8c4ababffbc5e2ddf2fa9957dda1ee4af6048e22aeda1869d0d00843223c1b13ad3f5d88b51caa46c994225eacb636b764eb807a8883e2fb6f99b4f4e8c48b2 - languageName: node - linkType: hard - -"csso@npm:^4.2.0": - version: 4.2.0 - resolution: "csso@npm:4.2.0" - dependencies: - css-tree: ^1.1.2 - checksum: 380ba9663da3bcea58dee358a0d8c4468bb6539be3c439dc266ac41c047217f52fd698fb7e4b6b6ccdfb8cf53ef4ceed8cc8ceccb8dfca2aa628319826b5b998 - languageName: node - linkType: hard - -"csstype@npm:^3.1.3": - version: 3.1.3 - resolution: "csstype@npm:3.1.3" - checksum: 8db785cc92d259102725b3c694ec0c823f5619a84741b5c7991b8ad135dfaa66093038a1cc63e03361a6cd28d122be48f2106ae72334e067dd619a51f49eddf7 - languageName: node - linkType: hard - -"csstype@npm:~3.0.5": - version: 3.0.11 - resolution: "csstype@npm:3.0.11" - checksum: 95e56abfe9ca219ae065acb4e43f61771a03170eed919127f558dfa168240867aba7629c8d98a201a0dd06d9a5ce82686f0570031c928516c61816adbc7c877f - languageName: node - linkType: hard - -"d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3": - version: 3.1.6 - resolution: "d3-array@npm:3.1.6" - dependencies: - internmap: 1 - 2 - checksum: 32f515bd2559624681048ca86b0bd395047887b3473ddf136ddb4276620c39a0f3996865320ac49c74969a06a8e30e6f9d2d2097e908ba49c11b0f7fe0cbebda - languageName: node - linkType: hard - -"d3-array@npm:^3.2.0": - version: 3.2.0 - resolution: "d3-array@npm:3.2.0" - dependencies: - internmap: 1 - 2 - checksum: e236f6670b60b64abb6c435da25b5cbbdc2c7c0decdbf9355bc4cf6803d6da4fa820b7b78b9cbd127edb493555934a9788d45084c2f39d7c2e1a2b7aa48264a4 - languageName: node - linkType: hard - -"d3-axis@npm:3": - version: 3.0.0 - resolution: "d3-axis@npm:3.0.0" - checksum: 227ddaa6d4bad083539c1ec245e2228b4620cca941997a8a650cb0af239375dc20271993127eedac66f0543f331027aca09385e1e16eed023f93eac937cddf0b - languageName: node - linkType: hard - -"d3-brush@npm:3": - version: 3.0.0 - resolution: "d3-brush@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-drag: 2 - 3 - d3-interpolate: 1 - 3 - d3-selection: 3 - d3-transition: 3 - checksum: 1d042167769a02ac76271c71e90376d7184206e489552b7022a8ec2860209fe269db55e0a3430f3dcbe13b6fec2ff65b1adeaccba3218991b38e022390df72e3 - languageName: node - linkType: hard - -"d3-chord@npm:3": - version: 3.0.1 - resolution: "d3-chord@npm:3.0.1" - dependencies: - d3-path: 1 - 3 - checksum: ddf35d41675e0f8738600a8a2f05bf0858def413438c12cba357c5802ecc1014c80a658acbbee63cbad2a8c747912efb2358455d93e59906fe37469f1dc6b78b - languageName: node - linkType: hard - -"d3-color@npm:1 - 3, d3-color@npm:3": - version: 3.1.0 - resolution: "d3-color@npm:3.1.0" - checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b - languageName: node - linkType: hard - -"d3-contour@npm:4": - version: 4.0.0 - resolution: "d3-contour@npm:4.0.0" - dependencies: - d3-array: ^3.2.0 - checksum: 1f9b9e56d0966d98a4c740b6af32b4fa2d14424159644adc24f4eb0ab023afbd414938f63f95032a66407fb701f4966efe40875e2cc0460fb653a943d3fc86b0 - languageName: node - linkType: hard - -"d3-delaunay@npm:6": - version: 6.0.2 - resolution: "d3-delaunay@npm:6.0.2" - dependencies: - delaunator: 5 - checksum: 80b18686dd7a5919a570000061f1515d106b7c7e3cba9da55706c312fc8f6de58a72674f2ea4eadc6694611f2df59f82c8b9d304845dd8b7903ee1f303aa5865 - languageName: node - linkType: hard - -"d3-dispatch@npm:1 - 3, d3-dispatch@npm:3": - version: 3.0.1 - resolution: "d3-dispatch@npm:3.0.1" - checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 - languageName: node - linkType: hard - -"d3-drag@npm:2 - 3, d3-drag@npm:3": - version: 3.0.0 - resolution: "d3-drag@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-selection: 3 - checksum: d297231e60ecd633b0d076a63b4052b436ddeb48b5a3a11ff68c7e41a6774565473a6b064c5e9256e88eca6439a917ab9cea76032c52d944ddbf4fd289e31111 - languageName: node - linkType: hard - -"d3-dsv@npm:1 - 3, d3-dsv@npm:3": - version: 3.0.1 - resolution: "d3-dsv@npm:3.0.1" - dependencies: - commander: 7 - iconv-lite: 0.6 - rw: 1 - bin: - csv2json: bin/dsv2json.js - csv2tsv: bin/dsv2dsv.js - dsv2dsv: bin/dsv2dsv.js - dsv2json: bin/dsv2json.js - json2csv: bin/json2dsv.js - json2dsv: bin/json2dsv.js - json2tsv: bin/json2dsv.js - tsv2csv: bin/dsv2dsv.js - tsv2json: bin/dsv2json.js - checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a - languageName: node - linkType: hard - -"d3-ease@npm:1 - 3, d3-ease@npm:3": - version: 3.0.1 - resolution: "d3-ease@npm:3.0.1" - checksum: 06e2ee5326d1e3545eab4e2c0f84046a123dcd3b612e68858219aa034da1160333d9ce3da20a1d3486d98cb5c2a06f7d233eee1bc19ce42d1533458bd85dedcd - languageName: node - linkType: hard - -"d3-fetch@npm:3": - version: 3.0.1 - resolution: "d3-fetch@npm:3.0.1" - dependencies: - d3-dsv: 1 - 3 - checksum: 382dcea06549ef82c8d0b719e5dc1d96286352579e3b51b20f71437f5800323315b09cf7dcfd4e1f60a41e1204deb01758470cea257d2285a7abd9dcec806984 - languageName: node - linkType: hard - -"d3-force@npm:3": - version: 3.0.0 - resolution: "d3-force@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-quadtree: 1 - 3 - d3-timer: 1 - 3 - checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def - languageName: node - linkType: hard - -"d3-format@npm:1 - 3, d3-format@npm:3": - version: 3.1.0 - resolution: "d3-format@npm:3.1.0" - checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 - languageName: node - linkType: hard - -"d3-geo@npm:3": - version: 3.0.1 - resolution: "d3-geo@npm:3.0.1" - dependencies: - d3-array: 2.5.0 - 3 - checksum: e0f7e6a2f0d4c26efe08a7aa2c40b9a1a5a037220c6aaa51fb527035597e6e8841222b433e5681f9b5588b5b6f9a1c2d7f032a76ccbac3a17b0c1cbfffd05c1b - languageName: node - linkType: hard - -"d3-hierarchy@npm:3": - version: 3.1.2 - resolution: "d3-hierarchy@npm:3.1.2" - checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 - languageName: node - linkType: hard - -"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:3": - version: 3.0.1 - resolution: "d3-interpolate@npm:3.0.1" - dependencies: - d3-color: 1 - 3 - checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b - languageName: node - linkType: hard - -"d3-path@npm:1 - 3, d3-path@npm:3": - version: 3.0.1 - resolution: "d3-path@npm:3.0.1" - checksum: 6347c7055e0af330acadbe7f02144963eecabff560a791ecfeaffb45662e4d38eedabc6109dc481478f136b41d03707d3a43321ca9a115962888c99732ceb41a - languageName: node - linkType: hard - -"d3-polygon@npm:3": - version: 3.0.1 - resolution: "d3-polygon@npm:3.0.1" - checksum: 0b85c532517895544683849768a2c377cee3801ef8ccf3fa9693c8871dd21a0c1a2a0fc75ff54192f0ba2c562b0da2bc27f5bf959dfafc7fa23573b574865d2c - languageName: node - linkType: hard - -"d3-quadtree@npm:1 - 3, d3-quadtree@npm:3": - version: 3.0.1 - resolution: "d3-quadtree@npm:3.0.1" - checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 - languageName: node - linkType: hard - -"d3-random@npm:3": - version: 3.0.1 - resolution: "d3-random@npm:3.0.1" - checksum: a70ad8d1cabe399ebeb2e482703121ac8946a3b336830b518da6848b9fdd48a111990fc041dc716f16885a72176ffa2898f2a250ca3d363ecdba5ef92b18e131 - languageName: node - linkType: hard - -"d3-scale-chromatic@npm:3": - version: 3.0.0 - resolution: "d3-scale-chromatic@npm:3.0.0" - dependencies: - d3-color: 1 - 3 - d3-interpolate: 1 - 3 - checksum: a8ce4cb0267a17b28ebbb929f5e3071d985908a9c13b6fcaa2a198e1e018f275804d691c5794b970df0049725b7944f32297b31603d235af6414004f0c7f82c0 - languageName: node - linkType: hard - -"d3-scale@npm:4": - version: 4.0.2 - resolution: "d3-scale@npm:4.0.2" - dependencies: - d3-array: 2.10.0 - 3 - d3-format: 1 - 3 - d3-interpolate: 1.2.0 - 3 - d3-time: 2.1.1 - 3 - d3-time-format: 2 - 4 - checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e - languageName: node - linkType: hard - -"d3-selection@npm:2 - 3, d3-selection@npm:3": - version: 3.0.0 - resolution: "d3-selection@npm:3.0.0" - checksum: f4e60e133309115b99f5b36a79ae0a19d71ee6e2d5e3c7216ef3e75ebd2cb1e778c2ed2fa4c01bef35e0dcbd96c5428f5bd6ca2184fe2957ed582fde6841cbc5 - languageName: node - linkType: hard - -"d3-shape@npm:3": - version: 3.1.0 - resolution: "d3-shape@npm:3.1.0" - dependencies: - d3-path: 1 - 3 - checksum: 3dffe31b56feaf0817954748c9823c0e1fb6ab888b83775e9d568176ffa369546064ae49403963aac70108272988f632452634851f1c8a92805134d0c40e6dba - languageName: node - linkType: hard - -"d3-time-format@npm:2 - 4, d3-time-format@npm:4": - version: 4.1.0 - resolution: "d3-time-format@npm:4.1.0" - dependencies: - d3-time: 1 - 3 - checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 - languageName: node - linkType: hard - -"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:3": - version: 3.0.0 - resolution: "d3-time@npm:3.0.0" - dependencies: - d3-array: 2 - 3 - checksum: 01646568ef01682550b7ee9f32394e4eb116a29515564861958871ed8de8fff02a25cd50dd8c4413921e6d9ecb8c8ce39be3266f655c8c18599fe58bcb253d60 - languageName: node - linkType: hard - -"d3-timer@npm:1 - 3, d3-timer@npm:3": - version: 3.0.1 - resolution: "d3-timer@npm:3.0.1" - checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 - languageName: node - linkType: hard - -"d3-transition@npm:2 - 3, d3-transition@npm:3": - version: 3.0.1 - resolution: "d3-transition@npm:3.0.1" - dependencies: - d3-color: 1 - 3 - d3-dispatch: 1 - 3 - d3-ease: 1 - 3 - d3-interpolate: 1 - 3 - d3-timer: 1 - 3 - peerDependencies: - d3-selection: 2 - 3 - checksum: cb1e6e018c3abf0502fe9ff7b631ad058efb197b5e14b973a410d3935aead6e3c07c67d726cfab258e4936ef2667c2c3d1cd2037feb0765f0b4e1d3b8788c0ea - languageName: node - linkType: hard - -"d3-zoom@npm:3": - version: 3.0.0 - resolution: "d3-zoom@npm:3.0.0" - dependencies: - d3-dispatch: 1 - 3 - d3-drag: 2 - 3 - d3-interpolate: 1 - 3 - d3-selection: 2 - 3 - d3-transition: 2 - 3 - checksum: 8056e3527281cfd1ccbcbc458408f86973b0583e9dac00e51204026d1d36803ca437f970b5736f02fafed9f2b78f145f72a5dbc66397e02d4d95d4c594b8ff54 - languageName: node - linkType: hard - -"d3@npm:7.9.0": - version: 7.9.0 - resolution: "d3@npm:7.9.0" - dependencies: - d3-array: 3 - d3-axis: 3 - d3-brush: 3 - d3-chord: 3 - d3-color: 3 - d3-contour: 4 - d3-delaunay: 6 - d3-dispatch: 3 - d3-drag: 3 - d3-dsv: 3 - d3-ease: 3 - d3-fetch: 3 - d3-force: 3 - d3-format: 3 - d3-geo: 3 - d3-hierarchy: 3 - d3-interpolate: 3 - d3-path: 3 - d3-polygon: 3 - d3-quadtree: 3 - d3-random: 3 - d3-scale: 4 - d3-scale-chromatic: 3 - d3-selection: 3 - d3-shape: 3 - d3-time: 3 - d3-time-format: 4 - d3-timer: 3 - d3-transition: 3 - d3-zoom: 3 - checksum: 1c0e9135f1fb78aa32b187fafc8b56ae6346102bd0e4e5e5a5339611a51e6038adbaa293fae373994228100eddd87320e930b1be922baeadc07c9fd43d26d99b - languageName: node - linkType: hard - -"date-fns-tz@npm:^2.0.0": - version: 2.0.0 - resolution: "date-fns-tz@npm:2.0.0" - peerDependencies: - date-fns: ">=2.0.0" - checksum: a6553603a9d26dd9669326c99a58a2335ac550bc060c74b86a5ad9e1de73c9d4e3e5236f0f552f990e616e4e8dcc2b6a637913a04d2e04396e6a9f8ae83c73da - languageName: node - linkType: hard - -"date-fns@npm:^2.30.0": - version: 2.30.0 - resolution: "date-fns@npm:2.30.0" - dependencies: - "@babel/runtime": ^7.21.0 - checksum: f7be01523282e9bb06c0cd2693d34f245247a29098527d4420628966a2d9aad154bd0e90a6b1cf66d37adcb769cd108cf8a7bd49d76db0fb119af5cdd13644f4 - languageName: node - linkType: hard - -"debug@npm:2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" - dependencies: - ms: 2.1.2 - peerDependenciesMeta: - supports-color: - optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 - languageName: node - linkType: hard - -"debug@npm:^3.2.7": - version: 3.2.7 - resolution: "debug@npm:3.2.7" - dependencies: - ms: ^2.1.1 - checksum: b3d8c5940799914d30314b7c3304a43305fd0715581a919dacb8b3176d024a782062368405b47491516d2091d6462d4d11f2f4974a405048094f8bfebfa3071c - languageName: node - linkType: hard - -"deep-is@npm:^0.1.3": - version: 0.1.4 - resolution: "deep-is@npm:0.1.4" - checksum: edb65dd0d7d1b9c40b2f50219aef30e116cedd6fc79290e740972c132c09106d2e80aa0bc8826673dd5a00222d4179c84b36a790eef63a4c4bca75a37ef90804 - languageName: node - linkType: hard - -"deepmerge@npm:4.3.1, deepmerge@npm:^4.3.1": - version: 4.3.1 - resolution: "deepmerge@npm:4.3.1" - checksum: 2024c6a980a1b7128084170c4cf56b0fd58a63f2da1660dcfe977415f27b17dbe5888668b59d0b063753f3220719d5e400b7f113609489c90160bb9a5518d052 - languageName: node - linkType: hard - -"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.1": - version: 1.1.1 - resolution: "define-data-property@npm:1.1.1" - dependencies: - get-intrinsic: ^1.2.1 - gopd: ^1.0.1 - has-property-descriptors: ^1.0.0 - checksum: a29855ad3f0630ea82e3c5012c812efa6ca3078d5c2aa8df06b5f597c1cde6f7254692df41945851d903e05a1668607b6d34e778f402b9ff9ffb38111f1a3f0d - languageName: node - linkType: hard - -"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4": - version: 1.1.4 - resolution: "define-properties@npm:1.1.4" - dependencies: - has-property-descriptors: ^1.0.0 - object-keys: ^1.1.1 - checksum: ce0aef3f9eb193562b5cfb79b2d2c86b6a109dfc9fdcb5f45d680631a1a908c06824ddcdb72b7573b54e26ace07f0a23420aaba0d5c627b34d2c1de8ef527e2b - languageName: node - linkType: hard - -"define-properties@npm:^1.2.0": - version: 1.2.0 - resolution: "define-properties@npm:1.2.0" - dependencies: - has-property-descriptors: ^1.0.0 - object-keys: ^1.1.1 - checksum: e60aee6a19b102df4e2b1f301816804e81ab48bb91f00d0d935f269bf4b3f79c88b39e4f89eaa132890d23267335fd1140dfcd8d5ccd61031a0a2c41a54e33a6 - languageName: node - linkType: hard - -"delaunator@npm:5": - version: 5.0.0 - resolution: "delaunator@npm:5.0.0" - dependencies: - robust-predicates: ^3.0.0 - checksum: d6764188442b7f7c6bcacebd96edc00e35f542a96f1af3ef600e586bfb9849a3682c489c0ab423440c90bc4c7cac77f28761babff76fa29e193e1cf50a95b860 - languageName: node - linkType: hard - -"delegates@npm:^1.0.0": - version: 1.0.0 - resolution: "delegates@npm:1.0.0" - checksum: a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd - languageName: node - linkType: hard - -"depd@npm:2.0.0": - version: 2.0.0 - resolution: "depd@npm:2.0.0" - checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a - languageName: node - linkType: hard - -"depd@npm:^1.1.2": - version: 1.1.2 - resolution: "depd@npm:1.1.2" - checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9 - languageName: node - linkType: hard - -"destroy@npm:1.2.0": - version: 1.2.0 - resolution: "destroy@npm:1.2.0" - checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 - languageName: node - linkType: hard - -"detect-libc@npm:^1.0.3": - version: 1.0.3 - resolution: "detect-libc@npm:1.0.3" - bin: - detect-libc: ./bin/detect-libc.js - checksum: daaaed925ffa7889bd91d56e9624e6c8033911bb60f3a50a74a87500680652969dbaab9526d1e200a4c94acf80fc862a22131841145a0a8482d60a99c24f4a3e - languageName: node - linkType: hard - -"detect-libc@npm:^2.0.1": - version: 2.0.2 - resolution: "detect-libc@npm:2.0.2" - checksum: 2b2cd3649b83d576f4be7cc37eb3b1815c79969c8b1a03a40a4d55d83bc74d010753485753448eacb98784abf22f7dbd3911fd3b60e29fda28fed2d1a997944d - languageName: node - linkType: hard - -"doctrine@npm:^2.1.0": - version: 2.1.0 - resolution: "doctrine@npm:2.1.0" - dependencies: - esutils: ^2.0.2 - checksum: a45e277f7feaed309fe658ace1ff286c6e2002ac515af0aaf37145b8baa96e49899638c7cd47dccf84c3d32abfc113246625b3ac8f552d1046072adee13b0dc8 - languageName: node - linkType: hard - -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: ^2.0.2 - checksum: fd7673ca77fe26cd5cba38d816bc72d641f500f1f9b25b83e8ce28827fe2da7ad583a8da26ab6af85f834138cf8dae9f69b0cd6ab925f52ddab1754db44d99ce - languageName: node - linkType: hard - -"doctypes@npm:^1.1.0": - version: 1.1.0 - resolution: "doctypes@npm:1.1.0" - checksum: 6e6c2d1a80f2072dc4831994c914c44455e341c5ab18c16797368a0afd59d7c22f3335805ba2c1dd2931e9539d1ba8b613b7650dc63f6ab56b77b8d888055de8 - languageName: node - linkType: hard - -"dom-serializer@npm:^1.0.1": - version: 1.4.1 - resolution: "dom-serializer@npm:1.4.1" - dependencies: - domelementtype: ^2.0.1 - domhandler: ^4.2.0 - entities: ^2.0.0 - checksum: fbb0b01f87a8a2d18e6e5a388ad0f7ec4a5c05c06d219377da1abc7bb0f674d804f4a8a94e3f71ff15f6cb7dcfc75704a54b261db672b9b3ab03da6b758b0b22 - languageName: node - linkType: hard - -"domelementtype@npm:^2.0.1, domelementtype@npm:^2.2.0": - version: 2.3.0 - resolution: "domelementtype@npm:2.3.0" - checksum: ee837a318ff702622f383409d1f5b25dd1024b692ef64d3096ff702e26339f8e345820f29a68bcdcea8cfee3531776b3382651232fbeae95612d6f0a75efb4f6 - languageName: node - linkType: hard - -"domhandler@npm:^4.2.0, domhandler@npm:^4.2.2, domhandler@npm:^4.3.1": - version: 4.3.1 - resolution: "domhandler@npm:4.3.1" - dependencies: - domelementtype: ^2.2.0 - checksum: 4c665ceed016e1911bf7d1dadc09dc888090b64dee7851cccd2fcf5442747ec39c647bb1cb8c8919f8bbdd0f0c625a6bafeeed4b2d656bbecdbae893f43ffaaa - languageName: node - linkType: hard - -"domutils@npm:^2.8.0": - version: 2.8.0 - resolution: "domutils@npm:2.8.0" - dependencies: - dom-serializer: ^1.0.1 - domelementtype: ^2.2.0 - domhandler: ^4.2.0 - checksum: abf7434315283e9aadc2a24bac0e00eab07ae4313b40cc239f89d84d7315ebdfd2fb1b5bf750a96bc1b4403d7237c7b2ebf60459be394d625ead4ca89b934391 - languageName: node - linkType: hard - -"dotenv-expand@npm:^5.1.0": - version: 5.1.0 - resolution: "dotenv-expand@npm:5.1.0" - checksum: 8017675b7f254384915d55f9eb6388e577cf0a1231a28d54b0ca03b782be9501b0ac90ac57338636d395fa59051e6209e9b44b8ddf169ce6076dffb5dea227d3 - languageName: node - linkType: hard - -"dotenv@npm:^7.0.0": - version: 7.0.0 - resolution: "dotenv@npm:7.0.0" - checksum: 18a7b3ef0e90fd6fcce7c7cbdd48d923b0cb180807540b80c797bda4a098097e17820d6315ae28eec22f73954cd0ab9d81904d46370183817c09f694d40566ff - languageName: node - linkType: hard - -"eastasianwidth@npm:^0.2.0": - version: 0.2.0 - resolution: "eastasianwidth@npm:0.2.0" - checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed - languageName: node - linkType: hard - -"ee-first@npm:1.1.1": - version: 1.1.1 - resolution: "ee-first@npm:1.1.1" - checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f - languageName: node - linkType: hard - -"electron-to-chromium@npm:^1.4.118": - version: 1.4.137 - resolution: "electron-to-chromium@npm:1.4.137" - checksum: 639d7b94906efafcf363519c3698eecc44be46755a6a5cdc9088954329978866cc93fbd57e08b97290599b68d5226243d21de9fa50be416b8a5d3fa8fd42c3a0 - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 - languageName: node - linkType: hard - -"emoji-regex@npm:^9.2.2": - version: 9.2.2 - resolution: "emoji-regex@npm:9.2.2" - checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 - languageName: node - linkType: hard - -"encodeurl@npm:~1.0.2": - version: 1.0.2 - resolution: "encodeurl@npm:1.0.2" - checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c - languageName: node - linkType: hard - -"encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: ^0.6.2 - checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f - languageName: node - linkType: hard - -"entities@npm:^2.0.0": - version: 2.2.0 - resolution: "entities@npm:2.2.0" - checksum: 19010dacaf0912c895ea262b4f6128574f9ccf8d4b3b65c7e8334ad0079b3706376360e28d8843ff50a78aabcb8f08f0a32dbfacdc77e47ed77ca08b713669b3 - languageName: node - linkType: hard - -"entities@npm:^3.0.1": - version: 3.0.1 - resolution: "entities@npm:3.0.1" - checksum: aaf7f12033f0939be91f5161593f853f2da55866db55ccbf72f45430b8977e2b79dbd58c53d0fdd2d00bd7d313b75b0968d09f038df88e308aa97e39f9456572 - languageName: node - linkType: hard - -"entities@npm:^4.5.0": - version: 4.5.0 - resolution: "entities@npm:4.5.0" - checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 - languageName: node - linkType: hard - -"env-paths@npm:^2.2.0": - version: 2.2.1 - resolution: "env-paths@npm:2.2.1" - checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e - languageName: node - linkType: hard - -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 - languageName: node - linkType: hard - -"error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" - dependencies: - is-arrayish: ^0.2.1 - checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 - languageName: node - linkType: hard - -"es-abstract@npm:^1.22.1": - version: 1.22.3 - resolution: "es-abstract@npm:1.22.3" - dependencies: - array-buffer-byte-length: ^1.0.0 - arraybuffer.prototype.slice: ^1.0.2 - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.5 - es-set-tostringtag: ^2.0.1 - es-to-primitive: ^1.2.1 - function.prototype.name: ^1.1.6 - get-intrinsic: ^1.2.2 - get-symbol-description: ^1.0.0 - globalthis: ^1.0.3 - gopd: ^1.0.1 - has-property-descriptors: ^1.0.0 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - hasown: ^2.0.0 - internal-slot: ^1.0.5 - is-array-buffer: ^3.0.2 - is-callable: ^1.2.7 - is-negative-zero: ^2.0.2 - is-regex: ^1.1.4 - is-shared-array-buffer: ^1.0.2 - is-string: ^1.0.7 - is-typed-array: ^1.1.12 - is-weakref: ^1.0.2 - object-inspect: ^1.13.1 - object-keys: ^1.1.1 - object.assign: ^4.1.4 - regexp.prototype.flags: ^1.5.1 - safe-array-concat: ^1.0.1 - safe-regex-test: ^1.0.0 - string.prototype.trim: ^1.2.8 - string.prototype.trimend: ^1.0.7 - string.prototype.trimstart: ^1.0.7 - typed-array-buffer: ^1.0.0 - typed-array-byte-length: ^1.0.0 - typed-array-byte-offset: ^1.0.0 - typed-array-length: ^1.0.4 - unbox-primitive: ^1.0.2 - which-typed-array: ^1.1.13 - checksum: b1bdc962856836f6e72be10b58dc128282bdf33771c7a38ae90419d920fc3b36cc5d2b70a222ad8016e3fc322c367bf4e9e89fc2bc79b7e933c05b218e83d79a - languageName: node - linkType: hard - -"es-set-tostringtag@npm:^2.0.1": - version: 2.0.1 - resolution: "es-set-tostringtag@npm:2.0.1" - dependencies: - get-intrinsic: ^1.1.3 - has: ^1.0.3 - has-tostringtag: ^1.0.0 - checksum: ec416a12948cefb4b2a5932e62093a7cf36ddc3efd58d6c58ca7ae7064475ace556434b869b0bbeb0c365f1032a8ccd577211101234b69837ad83ad204fff884 - languageName: node - linkType: hard - -"es-shim-unscopables@npm:^1.0.0": - version: 1.0.0 - resolution: "es-shim-unscopables@npm:1.0.0" - dependencies: - has: ^1.0.3 - checksum: 83e95cadbb6ee44d3644dfad60dcad7929edbc42c85e66c3e99aefd68a3a5c5665f2686885cddb47dfeabfd77bd5ea5a7060f2092a955a729bbd8834f0d86fa1 - languageName: node - linkType: hard - -"es-to-primitive@npm:^1.2.1": - version: 1.2.1 - resolution: "es-to-primitive@npm:1.2.1" - dependencies: - is-callable: ^1.1.4 - is-date-object: ^1.0.1 - is-symbol: ^1.0.2 - checksum: 4ead6671a2c1402619bdd77f3503991232ca15e17e46222b0a41a5d81aebc8740a77822f5b3c965008e631153e9ef0580540007744521e72de8e33599fca2eed - languageName: node - linkType: hard - -"esbuild@npm:^0.18.10": - version: 0.18.20 - resolution: "esbuild@npm:0.18.20" - dependencies: - "@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 - dependenciesMeta: - "@esbuild/android-arm": - optional: true - "@esbuild/android-arm64": - optional: true - "@esbuild/android-x64": - optional: true - "@esbuild/darwin-arm64": - optional: true - "@esbuild/darwin-x64": - optional: true - "@esbuild/freebsd-arm64": - optional: true - "@esbuild/freebsd-x64": - optional: true - "@esbuild/linux-arm": - optional: true - "@esbuild/linux-arm64": - optional: true - "@esbuild/linux-ia32": - optional: true - "@esbuild/linux-loong64": - optional: true - "@esbuild/linux-mips64el": - optional: true - "@esbuild/linux-ppc64": - optional: true - "@esbuild/linux-riscv64": - optional: true - "@esbuild/linux-s390x": - optional: true - "@esbuild/linux-x64": - optional: true - "@esbuild/netbsd-x64": - optional: true - "@esbuild/openbsd-x64": - optional: true - "@esbuild/sunos-x64": - optional: true - "@esbuild/win32-arm64": - optional: true - "@esbuild/win32-ia32": - optional: true - "@esbuild/win32-x64": - optional: true - bin: - esbuild: bin/esbuild - checksum: 5d253614e50cdb6ec22095afd0c414f15688e7278a7eb4f3720a6dd1306b0909cf431e7b9437a90d065a31b1c57be60130f63fe3e8d0083b588571f31ee6ec7b - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: a3e2a99f07acb74b3ad4989c48ca0c3140f69f923e56d0cba0526240ee470b91010f9d39001f2a4a313841d237ede70a729e92125191ba5d21e74b106800b133 - languageName: node - linkType: hard - -"escape-html@npm:~1.0.3": - version: 1.0.3 - resolution: "escape-html@npm:1.0.3" - checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 - languageName: node - linkType: hard - -"eslint-compat-utils@npm:^0.1.2": - version: 0.1.2 - resolution: "eslint-compat-utils@npm:0.1.2" - peerDependencies: - eslint: ">=6.0.0" - checksum: 2315d9db81efb7f58808053bf32a1d5970b38e01cd8244f4f1b5aa05d883255c5c93fc184e9c29a0e7e2dcf16ff16330977302474d3fa870e41c5bed9c66f76b - languageName: node - linkType: hard - -"eslint-config-standard@npm:17.1.0": - version: 17.1.0 - resolution: "eslint-config-standard@npm:17.1.0" - peerDependencies: - eslint: ^8.0.1 - eslint-plugin-import: ^2.25.2 - eslint-plugin-n: "^15.0.0 || ^16.0.0 " - eslint-plugin-promise: ^6.0.0 - checksum: 8ed14ffe424b8a7e67b85e44f75c46dc4c6954f7c474c871c56fb0daf40b6b2a7af2db55102b12a440158b2be898e1fb8333b05e3dbeaeaef066fdbc863eaa88 - languageName: node - linkType: hard - -"eslint-import-resolver-node@npm:^0.3.9": - version: 0.3.9 - resolution: "eslint-import-resolver-node@npm:0.3.9" - dependencies: - debug: ^3.2.7 - is-core-module: ^2.13.0 - resolve: ^1.22.4 - checksum: 439b91271236b452d478d0522a44482e8c8540bf9df9bd744062ebb89ab45727a3acd03366a6ba2bdbcde8f9f718bab7fe8db64688aca75acf37e04eafd25e22 - languageName: node - linkType: hard - -"eslint-module-utils@npm:^2.8.0": - version: 2.8.0 - resolution: "eslint-module-utils@npm:2.8.0" - dependencies: - debug: ^3.2.7 - peerDependenciesMeta: - eslint: - optional: true - checksum: 74c6dfea7641ebcfe174be61168541a11a14aa8d72e515f5f09af55cd0d0862686104b0524aa4b8e0ce66418a44aa38a94d2588743db5fd07a6b49ffd16921d2 - languageName: node - linkType: hard - -"eslint-plugin-cypress@npm:2.15.1": - version: 2.15.1 - resolution: "eslint-plugin-cypress@npm:2.15.1" - dependencies: - globals: ^13.20.0 - peerDependencies: - eslint: ">= 3.2.1" - checksum: 3e66fa9a943fff52eaf3758250a63c2a0f8ffd60c50572beaf3688b33a55fbf0060d18ef32bc26abb57aef070517db827c22fd3d607582861d464970f95e550e - languageName: node - linkType: hard - -"eslint-plugin-es-x@npm:^7.5.0": - version: 7.5.0 - resolution: "eslint-plugin-es-x@npm:7.5.0" - dependencies: - "@eslint-community/eslint-utils": ^4.1.2 - "@eslint-community/regexpp": ^4.6.0 - eslint-compat-utils: ^0.1.2 - peerDependencies: - eslint: ">=8" - checksum: e770e57df78c3c38582de9bc4b9632ec5101a6dae8ac84f6ac219e8d8eb137f943db9730e037cfbc82f5d3ab6358e1b494fa6c628f425ebfc7e3094d5aa9d223 - languageName: node - linkType: hard - -"eslint-plugin-es@npm:^3.0.0": - version: 3.0.1 - resolution: "eslint-plugin-es@npm:3.0.1" - dependencies: - eslint-utils: ^2.0.0 - regexpp: ^3.0.0 - peerDependencies: - eslint: ">=4.19.1" - checksum: e57592c52301ee8ddc296ae44216df007f3a870bcb3be8d1fbdb909a1d3a3efe3fa3785de02066f9eba1d6466b722d3eb3cc3f8b75b3cf6a1cbded31ac6298e4 - languageName: node - linkType: hard - -"eslint-plugin-es@npm:^4.1.0": - version: 4.1.0 - resolution: "eslint-plugin-es@npm:4.1.0" - dependencies: - eslint-utils: ^2.0.0 - regexpp: ^3.0.0 - peerDependencies: - eslint: ">=4.19.1" - checksum: 26b87a216d3625612b1d3ca8653ac8a1d261046d2a973bb0eb2759070267d2bfb0509051facdeb5ae03dc8dfb51a434be23aff7309a752ca901d637da535677f - languageName: node - linkType: hard - -"eslint-plugin-import@npm:2.29.1": - version: 2.29.1 - resolution: "eslint-plugin-import@npm:2.29.1" - dependencies: - array-includes: ^3.1.7 - array.prototype.findlastindex: ^1.2.3 - 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.8.0 - hasown: ^2.0.0 - is-core-module: ^2.13.1 - is-glob: ^4.0.3 - minimatch: ^3.1.2 - object.fromentries: ^2.0.7 - object.groupby: ^1.0.1 - object.values: ^1.1.7 - semver: ^6.3.1 - tsconfig-paths: ^3.15.0 - peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: e65159aef808136d26d029b71c8c6e4cb5c628e65e5de77f1eb4c13a379315ae55c9c3afa847f43f4ff9df7e54515c77ffc6489c6a6f81f7dd7359267577468c - languageName: node - linkType: hard - -"eslint-plugin-n@npm:*": - version: 15.2.0 - resolution: "eslint-plugin-n@npm:15.2.0" - dependencies: - builtins: ^4.0.0 - eslint-plugin-es: ^4.1.0 - eslint-utils: ^3.0.0 - ignore: ^5.1.1 - is-core-module: ^2.3.0 - minimatch: ^3.0.4 - resolve: ^1.10.1 - semver: ^6.3.0 - peerDependencies: - eslint: ">=7.0.0" - checksum: 4303dea35a40877958e5de9d54c098d842191428e1cef0df320cc3533ecd0b539a67323f6788bffdf76445c2f5a5dfe28837a5d1efb70ebb29c0caa6259bb805 - languageName: node - linkType: hard - -"eslint-plugin-n@npm:16.6.2": - version: 16.6.2 - resolution: "eslint-plugin-n@npm:16.6.2" - dependencies: - "@eslint-community/eslint-utils": ^4.4.0 - builtins: ^5.0.1 - eslint-plugin-es-x: ^7.5.0 - get-tsconfig: ^4.7.0 - globals: ^13.24.0 - ignore: ^5.2.4 - is-builtin-module: ^3.2.1 - is-core-module: ^2.12.1 - minimatch: ^3.1.2 - resolve: ^1.22.2 - semver: ^7.5.3 - peerDependencies: - eslint: ">=7.0.0" - checksum: 3b468da0038cf25af582608983491b33ac2d481b6a94a0ff2e715d3b85e1ff8cb93df4cd67b689d520bea1bfb8f2b717f01606bf6b2ea19fe8f9c0999ea7057d - languageName: node - linkType: hard - -"eslint-plugin-node@npm:11.1.0": - version: 11.1.0 - resolution: "eslint-plugin-node@npm:11.1.0" - dependencies: - eslint-plugin-es: ^3.0.0 - eslint-utils: ^2.0.0 - ignore: ^5.1.1 - minimatch: ^3.0.4 - resolve: ^1.10.1 - semver: ^6.1.0 - peerDependencies: - eslint: ">=5.16.0" - checksum: 5804c4f8a6e721f183ef31d46fbe3b4e1265832f352810060e0502aeac7de034df83352fc88643b19641bb2163f2587f1bd4119aff0fd21e8d98c57c450e013b - languageName: node - linkType: hard - -"eslint-plugin-promise@npm:6.1.1": - version: 6.1.1 - resolution: "eslint-plugin-promise@npm:6.1.1" - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - checksum: 46b9a4f79dae5539987922afc27cc17cbccdecf4f0ba19c0ccbf911b0e31853e9f39d9959eefb9637461b52772afa1a482f1f87ff16c1ba38bdb6fcf21897e9a - languageName: node - linkType: hard - -"eslint-plugin-vue@npm:9.24.0": - version: 9.24.0 - resolution: "eslint-plugin-vue@npm:9.24.0" - dependencies: - "@eslint-community/eslint-utils": ^4.4.0 - globals: ^13.24.0 - natural-compare: ^1.4.0 - nth-check: ^2.1.1 - postcss-selector-parser: ^6.0.15 - semver: ^7.6.0 - vue-eslint-parser: ^9.4.2 - xml-name-validator: ^4.0.0 - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - checksum: 2309b919d8fced6210c11e09107f443990063c0392843909cf50fad682e820c48bf5cc28b82a1239c03fd7ceeb4239e1baa653370c4c76689ec5fb8a970cd303 - languageName: node - linkType: hard - -"eslint-scope@npm:^7.1.1": - version: 7.1.1 - resolution: "eslint-scope@npm:7.1.1" - dependencies: - esrecurse: ^4.3.0 - estraverse: ^5.2.0 - checksum: 9f6e974ab2db641ca8ab13508c405b7b859e72afe9f254e8131ff154d2f40c99ad4545ce326fd9fde3212ff29707102562a4834f1c48617b35d98c71a97fbf3e - languageName: node - linkType: hard - -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" - dependencies: - esrecurse: ^4.3.0 - estraverse: ^5.2.0 - checksum: ec97dbf5fb04b94e8f4c5a91a7f0a6dd3c55e46bfc7bbcd0e3138c3a76977570e02ed89a1810c778dcd72072ff0e9621ba1379b4babe53921d71e2e4486fda3e - languageName: node - linkType: hard - -"eslint-utils@npm:^2.0.0": - version: 2.1.0 - resolution: "eslint-utils@npm:2.1.0" - dependencies: - eslint-visitor-keys: ^1.1.0 - checksum: 27500938f348da42100d9e6ad03ae29b3de19ba757ae1a7f4a087bdcf83ac60949bbb54286492ca61fac1f5f3ac8692dd21537ce6214240bf95ad0122f24d71d - languageName: node - linkType: hard - -"eslint-utils@npm:^3.0.0": - version: 3.0.0 - resolution: "eslint-utils@npm:3.0.0" - dependencies: - eslint-visitor-keys: ^2.0.0 - peerDependencies: - eslint: ">=5" - checksum: 0668fe02f5adab2e5a367eee5089f4c39033af20499df88fe4e6aba2015c20720404d8c3d6349b6f716b08fdf91b9da4e5d5481f265049278099c4c836ccb619 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^1.1.0": - version: 1.3.0 - resolution: "eslint-visitor-keys@npm:1.3.0" - checksum: 37a19b712f42f4c9027e8ba98c2b06031c17e0c0a4c696cd429bd9ee04eb43889c446f2cd545e1ff51bef9593fcec94ecd2c2ef89129fcbbf3adadbef520376a - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^2.0.0": - version: 2.1.0 - resolution: "eslint-visitor-keys@npm:2.1.0" - checksum: e3081d7dd2611a35f0388bbdc2f5da60b3a3c5b8b6e928daffff7391146b434d691577aa95064c8b7faad0b8a680266bcda0a42439c18c717b80e6718d7e267d - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.3.0": - version: 3.3.0 - resolution: "eslint-visitor-keys@npm:3.3.0" - checksum: d59e68a7c5a6d0146526b0eec16ce87fbf97fe46b8281e0d41384224375c4e52f5ffb9e16d48f4ea50785cde93f766b0c898e31ab89978d88b0e1720fbfb7808 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.4.1": - version: 3.4.1 - resolution: "eslint-visitor-keys@npm:3.4.1" - checksum: f05121d868202736b97de7d750847a328fcfa8593b031c95ea89425333db59676ac087fa905eba438d0a3c5769632f828187e0c1a0d271832a2153c1d3661c2c - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.4.3": - version: 3.4.3 - resolution: "eslint-visitor-keys@npm:3.4.3" - checksum: 36e9ef87fca698b6fd7ca5ca35d7b2b6eeaaf106572e2f7fd31c12d3bfdaccdb587bba6d3621067e5aece31c8c3a348b93922ab8f7b2cbc6aaab5e1d89040c60 - languageName: node - linkType: hard - -"eslint@npm:8.57.0": - version: 8.57.0 - resolution: "eslint@npm:8.57.0" - dependencies: - "@eslint-community/eslint-utils": ^4.2.0 - "@eslint-community/regexpp": ^4.6.1 - "@eslint/eslintrc": ^2.1.4 - "@eslint/js": 8.57.0 - "@humanwhocodes/config-array": ^0.11.14 - "@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 - checksum: 3a48d7ff85ab420a8447e9810d8087aea5b1df9ef68c9151732b478de698389ee656fd895635b5f2871c89ee5a2652b3f343d11e9db6f8486880374ebc74a2d9 - languageName: node - linkType: hard - -"espree@npm:^9.3.1": - version: 9.3.2 - resolution: "espree@npm:9.3.2" - dependencies: - acorn: ^8.7.1 - acorn-jsx: ^5.3.2 - eslint-visitor-keys: ^3.3.0 - checksum: 9a790d6779847051e87f70d720a0f6981899a722419e80c92ab6dee01e1ab83b8ce52d11b4dc96c2c490182efb5a4c138b8b0d569205bfe1cd4629e658e58c30 - languageName: node - linkType: hard - -"espree@npm:^9.6.0, espree@npm:^9.6.1": - version: 9.6.1 - resolution: "espree@npm:9.6.1" - dependencies: - acorn: ^8.9.0 - acorn-jsx: ^5.3.2 - eslint-visitor-keys: ^3.4.1 - checksum: eb8c149c7a2a77b3f33a5af80c10875c3abd65450f60b8af6db1bfcfa8f101e21c1e56a561c6dc13b848e18148d43469e7cd208506238554fb5395a9ea5a1ab9 - languageName: node - linkType: hard - -"esquery@npm:^1.4.0": - version: 1.4.0 - resolution: "esquery@npm:1.4.0" - dependencies: - estraverse: ^5.1.0 - checksum: a0807e17abd7fbe5fbd4fab673038d6d8a50675cdae6b04fbaa520c34581be0c5fa24582990e8acd8854f671dd291c78bb2efb9e0ed5b62f33bac4f9cf820210 - languageName: node - linkType: hard - -"esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" - dependencies: - estraverse: ^5.1.0 - checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 - languageName: node - linkType: hard - -"esrecurse@npm:^4.3.0": - version: 4.3.0 - resolution: "esrecurse@npm:4.3.0" - dependencies: - estraverse: ^5.2.0 - checksum: ebc17b1a33c51cef46fdc28b958994b1dc43cd2e86237515cbc3b4e5d2be6a811b2315d0a1a4d9d340b6d2308b15322f5c8291059521cc5f4802f65e7ec32837 - languageName: node - linkType: hard - -"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": - version: 5.3.0 - resolution: "estraverse@npm:5.3.0" - checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b - languageName: node - linkType: hard - -"estree-walker@npm:^2.0.2": - version: 2.0.2 - resolution: "estree-walker@npm:2.0.2" - checksum: 6151e6f9828abe2259e57f5fd3761335bb0d2ebd76dc1a01048ccee22fabcfef3c0859300f6d83ff0d1927849368775ec5a6d265dde2f6de5a1be1721cd94efc - languageName: node - linkType: hard - -"esutils@npm:^2.0.2": - version: 2.0.3 - resolution: "esutils@npm:2.0.3" - checksum: 22b5b08f74737379a840b8ed2036a5fb35826c709ab000683b092d9054e5c2a82c27818f12604bfc2a9a76b90b6834ef081edbc1c7ae30d1627012e067c6ec87 - languageName: node - linkType: hard - -"etag@npm:~1.8.1": - version: 1.8.1 - resolution: "etag@npm:1.8.1" - checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff - languageName: node - linkType: hard - -"evtd@npm:^0.2.2": - version: 0.2.3 - resolution: "evtd@npm:0.2.3" - checksum: 5ddded626355bf97c62e9b0a99aa2187b74e90b50032c06e2e75723250a152ad5b57bbca844fc07d3bd0b9f22f8dfe96ae4c68614efe5f879a4191c3c8070b5a - languageName: node - linkType: hard - -"evtd@npm:^0.2.4": - version: 0.2.4 - resolution: "evtd@npm:0.2.4" - checksum: 1f9151a077c83c0f63df40a1b4e6d844616b502e60950b0e08674f05fed3257ca64afd71d1e24e4d8f55e7d8c32fe8e1797d87b2d2b14e1237be159010330ec1 - languageName: node - linkType: hard - -"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": - version: 3.1.3 - resolution: "fast-deep-equal@npm:3.1.3" - checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d - languageName: node - linkType: hard - -"fast-json-stable-stringify@npm:^2.0.0": - version: 2.1.0 - resolution: "fast-json-stable-stringify@npm:2.1.0" - checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb - languageName: node - linkType: hard - -"fast-levenshtein@npm:^2.0.6": - version: 2.0.6 - resolution: "fast-levenshtein@npm:2.0.6" - checksum: 92cfec0a8dfafd9c7a15fba8f2cc29cd0b62b85f056d99ce448bbcd9f708e18ab2764bda4dd5158364f4145a7c72788538994f0d1787b956ef0d1062b0f7c24c - languageName: node - linkType: hard - -"fastq@npm:^1.6.0": - version: 1.13.0 - resolution: "fastq@npm:1.13.0" - dependencies: - reusify: ^1.0.4 - checksum: 32cf15c29afe622af187d12fc9cd93e160a0cb7c31a3bb6ace86b7dea3b28e7b72acde89c882663f307b2184e14782c6c664fa315973c03626c7d4bff070bb0b - languageName: node - linkType: hard - -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" - dependencies: - flat-cache: ^3.0.4 - checksum: f49701feaa6314c8127c3c2f6173cfefff17612f5ed2daaafc6da13b5c91fd43e3b2a58fd0d63f9f94478a501b167615931e7200e31485e320f74a33885a9c74 - languageName: node - linkType: hard - -"file-saver@npm:2.0.5": - version: 2.0.5 - resolution: "file-saver@npm:2.0.5" - checksum: c62d96e5cebc58b4bdf3ae8a60d5cf9607ad82f75f798c33a4ee63435ac2203002584d5256a2a780eda7feb5e19dc3b6351c2212e58b3f529e63d265a7cc79f7 - languageName: node - linkType: hard - -"fill-range@npm:^7.0.1": - version: 7.0.1 - resolution: "fill-range@npm:7.0.1" - dependencies: - to-regex-range: ^5.0.1 - checksum: cc283f4e65b504259e64fd969bcf4def4eb08d85565e906b7d36516e87819db52029a76b6363d0f02d0d532f0033c9603b9e2d943d56ee3b0d4f7ad3328ff917 - languageName: node - linkType: hard - -"find-up@npm:^5.0.0": - version: 5.0.0 - resolution: "find-up@npm:5.0.0" - dependencies: - locate-path: ^6.0.0 - path-exists: ^4.0.0 - checksum: 07955e357348f34660bde7920783204ff5a26ac2cafcaa28bace494027158a97b9f56faaf2d89a6106211a8174db650dd9f503f9c0d526b1202d5554a00b9095 - languageName: node - linkType: hard - -"flat-cache@npm:^3.0.4": - version: 3.0.4 - resolution: "flat-cache@npm:3.0.4" - dependencies: - flatted: ^3.1.0 - rimraf: ^3.0.2 - checksum: 4fdd10ecbcbf7d520f9040dd1340eb5dfe951e6f0ecf2252edeec03ee68d989ec8b9a20f4434270e71bcfd57800dc09b3344fca3966b2eb8f613072c7d9a2365 - languageName: node - linkType: hard - -"flatted@npm:^3.1.0": - version: 3.2.5 - resolution: "flatted@npm:3.2.5" - checksum: 3c436e9695ccca29620b4be5671dd72e5dd0a7500e0856611b7ca9bd8169f177f408c3b9abfa78dfe1493ee2d873e2c119080a8a9bee4e1a186a9e60ca6c89f1 - languageName: node - linkType: hard - -"for-each@npm:^0.3.3": - version: 0.3.3 - resolution: "for-each@npm:0.3.3" - dependencies: - is-callable: ^1.1.3 - checksum: 6c48ff2bc63362319c65e2edca4a8e1e3483a2fabc72fbe7feaf8c73db94fc7861bd53bc02c8a66a0c1dd709da6b04eec42e0abdd6b40ce47305ae92a25e5d28 - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0, foreground-child@npm:^3.1.1": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" - dependencies: - cross-spawn: ^7.0.0 - signal-exit: ^4.0.1 - checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 - languageName: node - linkType: hard - -"fresh@npm:0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346 - languageName: node - linkType: hard - -"fs-minipass@npm:^2.0.0, fs-minipass@npm:^2.1.0": - version: 2.1.0 - resolution: "fs-minipass@npm:2.1.0" - dependencies: - minipass: ^3.0.0 - checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 - languageName: node - linkType: hard - -"fs.realpath@npm:^1.0.0": - version: 1.0.0 - resolution: "fs.realpath@npm:1.0.0" - checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 - languageName: node - linkType: hard - -"fsevents@npm:~2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: latest - checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f - conditions: os=darwin - languageName: node - linkType: hard - -"fsevents@patch:fsevents@~2.3.2#~builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=18f3a7" - dependencies: - node-gyp: latest - conditions: os=darwin - languageName: node - linkType: hard - -"function-bind@npm:^1.1.1": - version: 1.1.1 - resolution: "function-bind@npm:1.1.1" - checksum: b32fbaebb3f8ec4969f033073b43f5c8befbb58f1a79e12f1d7490358150359ebd92f49e72ff0144f65f2c48ea2a605bff2d07965f548f6474fd8efd95bf361a - languageName: node - linkType: hard - -"function-bind@npm:^1.1.2": - version: 1.1.2 - resolution: "function-bind@npm:1.1.2" - checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1 - languageName: node - linkType: hard - -"function.prototype.name@npm:^1.1.6": - version: 1.1.6 - resolution: "function.prototype.name@npm:1.1.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - functions-have-names: ^1.2.3 - checksum: 7a3f9bd98adab09a07f6e1f03da03d3f7c26abbdeaeee15223f6c04a9fb5674792bdf5e689dac19b97ac71de6aad2027ba3048a9b883aa1b3173eed6ab07f479 - languageName: node - linkType: hard - -"functions-have-names@npm:^1.2.3": - version: 1.2.3 - resolution: "functions-have-names@npm:1.2.3" - checksum: c3f1f5ba20f4e962efb71344ce0a40722163e85bee2101ce25f88214e78182d2d2476aa85ef37950c579eb6cf6ee811c17b3101bb84004bb75655f3e33f3fdb5 - languageName: node - linkType: hard - -"gauge@npm:^4.0.3": - version: 4.0.4 - resolution: "gauge@npm:4.0.4" - dependencies: - aproba: ^1.0.3 || ^2.0.0 - color-support: ^1.1.3 - console-control-strings: ^1.1.0 - has-unicode: ^2.0.1 - signal-exit: ^3.0.7 - string-width: ^4.2.3 - strip-ansi: ^6.0.1 - wide-align: ^1.1.5 - checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d - languageName: node - linkType: hard - -"get-caller-file@npm:^2.0.5": - version: 2.0.5 - resolution: "get-caller-file@npm:2.0.5" - checksum: b9769a836d2a98c3ee734a88ba712e62703f1df31b94b784762c433c27a386dd6029ff55c2a920c392e33657d80191edbf18c61487e198844844516f843496b9 - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1": - version: 1.1.1 - resolution: "get-intrinsic@npm:1.1.1" - dependencies: - function-bind: ^1.1.1 - has: ^1.0.3 - has-symbols: ^1.0.1 - checksum: a9fe2ca8fa3f07f9b0d30fb202bcd01f3d9b9b6b732452e79c48e79f7d6d8d003af3f9e38514250e3553fdc83c61650851cb6870832ac89deaaceb08e3721a17 - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.1.3": - version: 1.2.0 - resolution: "get-intrinsic@npm:1.2.0" - dependencies: - function-bind: ^1.1.1 - has: ^1.0.3 - has-symbols: ^1.0.3 - checksum: 78fc0487b783f5c58cf2dccafc3ae656ee8d2d8062a8831ce4a95e7057af4587a1d4882246c033aca0a7b4965276f4802b45cc300338d1b77a73d3e3e3f4877d - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1": - version: 1.2.1 - resolution: "get-intrinsic@npm:1.2.1" - dependencies: - function-bind: ^1.1.1 - has: ^1.0.3 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - checksum: 5b61d88552c24b0cf6fa2d1b3bc5459d7306f699de060d76442cce49a4721f52b8c560a33ab392cf5575b7810277d54ded9d4d39a1ea61855619ebc005aa7e5f - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.2.2": - version: 1.2.2 - resolution: "get-intrinsic@npm:1.2.2" - dependencies: - function-bind: ^1.1.2 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - hasown: ^2.0.0 - checksum: 447ff0724df26829908dc033b62732359596fcf66027bc131ab37984afb33842d9cd458fd6cecadfe7eac22fd8a54b349799ed334cf2726025c921c7250e7417 - languageName: node - linkType: hard - -"get-port@npm:^4.2.0": - version: 4.2.0 - resolution: "get-port@npm:4.2.0" - checksum: 6c9a452b2d6e81fe36781a69ed201883d37c02f141ba5770eaef3eca768ca38777c2eba4bec303f6b8c3f45f29036f95d5606b255f613320a6b4b680e1975c07 - languageName: node - linkType: hard - -"get-symbol-description@npm:^1.0.0": - version: 1.0.0 - resolution: "get-symbol-description@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.1.1 - checksum: 9ceff8fe968f9270a37a1f73bf3f1f7bda69ca80f4f80850670e0e7b9444ff99323f7ac52f96567f8b5f5fbe7ac717a0d81d3407c7313e82810c6199446a5247 - languageName: node - linkType: hard - -"get-tsconfig@npm:^4.7.0": - version: 4.7.2 - resolution: "get-tsconfig@npm:4.7.2" - dependencies: - resolve-pkg-maps: ^1.0.0 - checksum: 172358903250eff0103943f816e8a4e51d29b8e5449058bdf7266714a908a48239f6884308bd3a6ff28b09f692b9533dbebfd183ab63e4e14f073cda91f1bca9 - languageName: node - linkType: hard - -"glob-parent@npm:^6.0.2": - version: 6.0.2 - resolution: "glob-parent@npm:6.0.2" - dependencies: - is-glob: ^4.0.3 - checksum: c13ee97978bef4f55106b71e66428eb1512e71a7466ba49025fc2aec59a5bfb0954d5abd58fc5ee6c9b076eef4e1f6d3375c2e964b88466ca390da4419a786a8 - languageName: node - linkType: hard - -"glob-parent@npm:~5.1.2": - version: 5.1.2 - resolution: "glob-parent@npm:5.1.2" - dependencies: - is-glob: ^4.0.1 - checksum: f4f2bfe2425296e8a47e36864e4f42be38a996db40420fe434565e4480e3322f18eb37589617a98640c5dc8fdec1a387007ee18dbb1f3f5553409c34d17f425e - languageName: node - linkType: hard - -"glob@npm:^10.0.0": - version: 10.2.4 - resolution: "glob@npm:10.2.4" - dependencies: - foreground-child: ^3.1.0 - jackspeak: ^2.0.3 - minimatch: ^9.0.0 - minipass: ^5.0.0 || ^6.0.0 - path-scurry: ^1.7.0 - bin: - glob: dist/cjs/src/bin.js - checksum: 29845faaa1a8bd2d1f2f26e0c4e5040898c7b4ccfb42e0a558319f6229d124dbc7ccf0ff214402505c5b62c1a39d9d2a1de9c582a74ad415591b96fa53cef466 - languageName: node - linkType: hard - -"glob@npm:^7.1.3, glob@npm:^7.1.4": - version: 7.2.3 - resolution: "glob@npm:7.2.3" - 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 - checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 - languageName: node - linkType: hard - -"glob@npm:^8.0.1": - version: 8.0.3 - resolution: "glob@npm:8.0.3" - dependencies: - fs.realpath: ^1.0.0 - inflight: ^1.0.4 - inherits: 2 - minimatch: ^5.0.1 - once: ^1.3.0 - checksum: 50bcdea19d8e79d8de5f460b1939ffc2b3299eac28deb502093fdca22a78efebc03e66bf54f0abc3d3d07d8134d19a32850288b7440d77e072aa55f9d33b18c5 - languageName: node - linkType: hard - -"globals@npm:^13.19.0": - version: 13.19.0 - resolution: "globals@npm:13.19.0" - dependencies: - type-fest: ^0.20.2 - checksum: a000dbd00bcf28f0941d8a29c3522b1c3b8e4bfe4e60e262c477a550c3cbbe8dbe2925a6905f037acd40f9a93c039242e1f7079c76b0fd184bc41dcc3b5c8e2e - languageName: node - linkType: hard - -"globals@npm:^13.2.0": - version: 13.15.0 - resolution: "globals@npm:13.15.0" - dependencies: - type-fest: ^0.20.2 - checksum: 383ade0873b2ab29ce6d143466c203ed960491575bc97406395e5c8434026fb02472ab2dfff5bc16689b8460269b18fda1047975295cd0183904385c51258bae - languageName: node - linkType: hard - -"globals@npm:^13.20.0": - version: 13.21.0 - resolution: "globals@npm:13.21.0" - dependencies: - type-fest: ^0.20.2 - checksum: 86c92ca8a04efd864c10852cd9abb1ebe6d447dcc72936783e66eaba1087d7dba5c9c3421a48d6ca722c319378754dbcc3f3f732dbe47592d7de908edf58a773 - languageName: node - linkType: hard - -"globals@npm:^13.24.0": - version: 13.24.0 - resolution: "globals@npm:13.24.0" - dependencies: - type-fest: ^0.20.2 - checksum: 56066ef058f6867c04ff203b8a44c15b038346a62efbc3060052a1016be9f56f4cf0b2cd45b74b22b81e521a889fc7786c73691b0549c2f3a6e825b3d394f43c - languageName: node - linkType: hard - -"globalthis@npm:^1.0.3": - version: 1.0.3 - resolution: "globalthis@npm:1.0.3" - dependencies: - define-properties: ^1.1.3 - checksum: fbd7d760dc464c886d0196166d92e5ffb4c84d0730846d6621a39fbbc068aeeb9c8d1421ad330e94b7bca4bb4ea092f5f21f3d36077812af5d098b4dc006c998 - languageName: node - linkType: hard - -"gopd@npm:^1.0.1": - version: 1.0.1 - resolution: "gopd@npm:1.0.1" - dependencies: - get-intrinsic: ^1.1.3 - checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.2.6": - version: 4.2.10 - resolution: "graceful-fs@npm:4.2.10" - checksum: 3f109d70ae123951905d85032ebeae3c2a5a7a997430df00ea30df0e3a6c60cf6689b109654d6fdacd28810a053348c4d14642da1d075049e6be1ba5216218da - languageName: node - linkType: hard - -"graphemer@npm:^1.4.0": - version: 1.4.0 - resolution: "graphemer@npm:1.4.0" - checksum: bab8f0be9b568857c7bec9fda95a89f87b783546d02951c40c33f84d05bb7da3fd10f863a9beb901463669b6583173a8c8cc6d6b306ea2b9b9d5d3d943c3a673 - languageName: node - linkType: hard - -"hammerjs@npm:^2.0.8": - version: 2.0.8 - resolution: "hammerjs@npm:2.0.8" - checksum: b092da7d1565a165d7edb53ef0ce212837a8b11f897aa3cf81a7818b66686b0ab3f4747fbce8fc8a41d1376594639ce3a054b0fd4889ca8b5b136a29ca500e27 - languageName: node - linkType: hard - -"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": - version: 1.0.2 - resolution: "has-bigints@npm:1.0.2" - checksum: 390e31e7be7e5c6fe68b81babb73dfc35d413604d7ee5f56da101417027a4b4ce6a27e46eff97ad040c835b5d228676eae99a9b5c3bc0e23c8e81a49241ff45b - languageName: node - linkType: hard - -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 4a15638b454bf086c8148979aae044dd6e39d63904cd452d970374fa6a87623423da485dfb814e7be882e05c096a7ccf1ebd48e7e7501d0208d8384ff4dea73b - languageName: node - linkType: hard - -"has-flag@npm:^4.0.0": - version: 4.0.0 - resolution: "has-flag@npm:4.0.0" - checksum: 261a1357037ead75e338156b1f9452c016a37dcd3283a972a30d9e4a87441ba372c8b81f818cd0fbcd9c0354b4ae7e18b9e1afa1971164aef6d18c2b6095a8ad - languageName: node - linkType: hard - -"has-property-descriptors@npm:^1.0.0": - version: 1.0.0 - resolution: "has-property-descriptors@npm:1.0.0" - dependencies: - get-intrinsic: ^1.1.1 - checksum: a6d3f0a266d0294d972e354782e872e2fe1b6495b321e6ef678c9b7a06a40408a6891817350c62e752adced73a94ac903c54734fee05bf65b1905ee1368194bb - languageName: node - linkType: hard - -"has-proto@npm:^1.0.1": - version: 1.0.1 - resolution: "has-proto@npm:1.0.1" - checksum: febc5b5b531de8022806ad7407935e2135f1cc9e64636c3916c6842bd7995994ca3b29871ecd7954bd35f9e2986c17b3b227880484d22259e2f8e6ce63fd383e - languageName: node - linkType: hard - -"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": - version: 1.0.3 - resolution: "has-symbols@npm:1.0.3" - checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 - languageName: node - linkType: hard - -"has-tostringtag@npm:^1.0.0": - version: 1.0.0 - resolution: "has-tostringtag@npm:1.0.0" - dependencies: - has-symbols: ^1.0.2 - checksum: cc12eb28cb6ae22369ebaad3a8ab0799ed61270991be88f208d508076a1e99abe4198c965935ce85ea90b60c94ddda73693b0920b58e7ead048b4a391b502c1c - languageName: node - linkType: hard - -"has-unicode@npm:^2.0.1": - version: 2.0.1 - resolution: "has-unicode@npm:2.0.1" - checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 - languageName: node - linkType: hard - -"has@npm:^1.0.3": - version: 1.0.3 - resolution: "has@npm:1.0.3" - dependencies: - function-bind: ^1.1.1 - checksum: b9ad53d53be4af90ce5d1c38331e712522417d017d5ef1ebd0507e07c2fbad8686fffb8e12ddecd4c39ca9b9b47431afbb975b8abf7f3c3b82c98e9aad052792 - languageName: node - linkType: hard - -"hasown@npm:^2.0.0": - version: 2.0.0 - resolution: "hasown@npm:2.0.0" - dependencies: - function-bind: ^1.1.2 - checksum: 6151c75ca12554565098641c98a40f4cc86b85b0fd5b6fe92360967e4605a4f9610f7757260b4e8098dd1c2ce7f4b095f2006fe72a570e3b6d2d28de0298c176 - languageName: node - linkType: hard - -"highcharts@npm:11.4.0": - version: 11.4.0 - resolution: "highcharts@npm:11.4.0" - checksum: 873e6619148d346223f7a98e3d23c1d58975ef4143d67d57ef88898c967495519b76b47c1f546c48535362bf4542cbe4f9f3423cc4339db152454f86e7887ddf - languageName: node - linkType: hard - -"highlight.js@npm:^11.8.0": - version: 11.9.0 - resolution: "highlight.js@npm:11.9.0" - checksum: 4043d31c5de9d27d13387d9a9e5e1939557254b7b85f0fab85d9cae0e420e131a3456ebf6148552020a1d8a216d671d583f2433d6c4de6179b8a66487a8325cb - languageName: node - linkType: hard - -"html-escaper@npm:^2.0.0": - version: 2.0.2 - resolution: "html-escaper@npm:2.0.2" - checksum: d2df2da3ad40ca9ee3a39c5cc6475ef67c8f83c234475f24d8e9ce0dc80a2c82df8e1d6fa78ddd1e9022a586ea1bd247a615e80a5cd9273d90111ddda7d9e974 - languageName: node - linkType: hard - -"html-validate@npm:8.18.1": - version: 8.18.1 - resolution: "html-validate@npm:8.18.1" - dependencies: - "@babel/code-frame": ^7.10.0 - "@html-validate/stylish": ^4.1.0 - "@sidvind/better-ajv-errors": 2.1.3 - ajv: ^8.0.0 - deepmerge: 4.3.1 - glob: ^10.0.0 - ignore: 5.3.1 - kleur: ^4.1.0 - minimist: ^1.2.0 - prompts: ^2.0.0 - semver: ^7.0.0 - peerDependencies: - jest: ^27.1 || ^28.1.3 || ^29.0.3 - jest-diff: ^27.1 || ^28.1.3 || ^29.0.3 - jest-snapshot: ^27.1 || ^28.1.3 || ^29.0.3 - vitest: ^0.34 || ^1 - peerDependenciesMeta: - jest: - optional: true - jest-diff: - optional: true - jest-snapshot: - optional: true - vitest: - optional: true - bin: - html-validate: bin/html-validate.js - checksum: 53479bf75bcb6ad748a6543583de6a26bfb55d85c0ae793bd6619c0079795f482c01b4168a7dea2584219f31b8a05c3ea2a0d5ebfd639099caf623263d3ac536 - languageName: node - linkType: hard - -"htmlnano@npm:^2.0.0": - version: 2.0.2 - resolution: "htmlnano@npm:2.0.2" - dependencies: - cosmiconfig: ^7.0.1 - posthtml: ^0.16.5 - timsort: ^0.3.0 - peerDependencies: - cssnano: ^5.0.11 - postcss: ^8.3.11 - purgecss: ^4.0.3 - relateurl: ^0.2.7 - srcset: ^5.0.0 - svgo: ^2.8.0 - terser: ^5.10.0 - uncss: ^0.17.3 - peerDependenciesMeta: - cssnano: - optional: true - postcss: - optional: true - purgecss: - optional: true - relateurl: - optional: true - srcset: - optional: true - svgo: - optional: true - terser: - optional: true - uncss: - optional: true - checksum: 41f9e0c0e54367730109e9ea31a1e625ebfa4134f6689d36aba76551cb62a9a5c200bee556b4ad12c230d3586243ac6ebaaaab93bb3091d7f96686a98c5caa1a - languageName: node - linkType: hard - -"htmlparser2@npm:^7.1.1": - version: 7.2.0 - resolution: "htmlparser2@npm:7.2.0" - dependencies: - domelementtype: ^2.0.1 - domhandler: ^4.2.2 - domutils: ^2.8.0 - entities: ^3.0.1 - checksum: 96563d9965729cfcb3f5f19c26d013c6831b4cb38d79d8c185e9cd669ea6a9ffe8fb9ccc74d29a068c9078aa0e2767053ed6b19aa32723c41550340d0094bea0 - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.0": - version: 4.1.1 - resolution: "http-cache-semantics@npm:4.1.1" - checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 - languageName: node - linkType: hard - -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 - languageName: node - linkType: hard - -"http-proxy-agent@npm:^5.0.0": - version: 5.0.0 - resolution: "http-proxy-agent@npm:5.0.0" - dependencies: - "@tootallnate/once": 2 - agent-base: 6 - debug: 4 - checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 - languageName: node - linkType: hard - -"https-proxy-agent@npm:^5.0.0": - version: 5.0.1 - resolution: "https-proxy-agent@npm:5.0.1" - dependencies: - agent-base: 6 - debug: 4 - checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 - languageName: node - linkType: hard - -"humanize-ms@npm:^1.2.1": - version: 1.2.1 - resolution: "humanize-ms@npm:1.2.1" - dependencies: - ms: ^2.0.0 - checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 - languageName: node - linkType: hard - -"ical.js@npm:1.5.0": - version: 1.5.0 - resolution: "ical.js@npm:1.5.0" - checksum: 51df7a01f462dc8a02b3c3c28acb288756071044c4a8b56ff5179995bb219e569e72cfedac6f4ab03dc643be34f5d88c09a7d79c4be6ba8a7623b7336eecb110 - languageName: node - linkType: hard - -"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" - dependencies: - safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf - languageName: node - linkType: hard - -"ignore@npm:5.3.1": - version: 5.3.1 - resolution: "ignore@npm:5.3.1" - checksum: 71d7bb4c1dbe020f915fd881108cbe85a0db3d636a0ea3ba911393c53946711d13a9b1143c7e70db06d571a5822c0a324a6bcde5c9904e7ca5047f01f1bf8cd3 - languageName: node - linkType: hard - -"ignore@npm:^5.1.1, ignore@npm:^5.2.0": - version: 5.2.0 - resolution: "ignore@npm:5.2.0" - checksum: 6b1f926792d614f64c6c83da3a1f9c83f6196c2839aa41e1e32dd7b8d174cef2e329d75caabb62cb61ce9dc432f75e67d07d122a037312db7caa73166a1bdb77 - languageName: node - linkType: hard - -"ignore@npm:^5.2.4": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef - languageName: node - linkType: hard - -"immutable@npm:^4.0.0": - version: 4.0.0 - resolution: "immutable@npm:4.0.0" - checksum: 4b5e9181e4d5fa06728a481835ec09c86367e5d03268666c95b522b7644ab891098022e4479a43c4c81a68f2ed82f10751ce5d33e208d7b873b6e7f9dfaf4d87 - languageName: node - linkType: hard - -"import-fresh@npm:^3.2.1": - version: 3.3.0 - resolution: "import-fresh@npm:3.3.0" - dependencies: - parent-module: ^1.0.0 - resolve-from: ^4.0.0 - checksum: 2cacfad06e652b1edc50be650f7ec3be08c5e5a6f6d12d035c440a42a8cc028e60a5b99ca08a77ab4d6b1346da7d971915828f33cdab730d3d42f08242d09baa - languageName: node - linkType: hard - -"imurmurhash@npm:^0.1.4": - version: 0.1.4 - resolution: "imurmurhash@npm:0.1.4" - checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 - languageName: node - linkType: hard - -"indent-string@npm:^4.0.0": - version: 4.0.0 - resolution: "indent-string@npm:4.0.0" - checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 - languageName: node - linkType: hard - -"infer-owner@npm:^1.0.4": - version: 1.0.4 - resolution: "infer-owner@npm:1.0.4" - checksum: 181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89 - languageName: node - linkType: hard - -"inflight@npm:^1.0.4": - version: 1.0.6 - resolution: "inflight@npm:1.0.6" - dependencies: - once: ^1.3.0 - wrappy: 1 - checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd - languageName: node - linkType: hard - -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 - languageName: node - linkType: hard - -"internal-slot@npm:^1.0.5": - version: 1.0.5 - resolution: "internal-slot@npm:1.0.5" - dependencies: - get-intrinsic: ^1.2.0 - has: ^1.0.3 - side-channel: ^1.0.4 - checksum: 97e84046bf9e7574d0956bd98d7162313ce7057883b6db6c5c7b5e5f05688864b0978ba07610c726d15d66544ffe4b1050107d93f8a39ebc59b15d8b429b497a - languageName: node - linkType: hard - -"internmap@npm:1 - 2": - version: 2.0.3 - resolution: "internmap@npm:2.0.3" - checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 - languageName: node - linkType: hard - -"ip@npm:^1.1.5": - version: 1.1.8 - resolution: "ip@npm:1.1.8" - checksum: a2ade53eb339fb0cbe9e69a44caab10d6e3784662285eb5d2677117ee4facc33a64679051c35e0dfdb1a3983a51ce2f5d2cb36446d52e10d01881789b76e28fb - languageName: node - linkType: hard - -"is-array-buffer@npm:^3.0.1": - version: 3.0.1 - resolution: "is-array-buffer@npm:3.0.1" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.1.3 - is-typed-array: ^1.1.10 - checksum: f26ab87448e698285daf707e52a533920449f7abf63714140ffab9d5571aa5a71ac2fa2677e8b793ad0d5d3e40078d4d2c8a0ab39c957e3cfc6513bb6c9dfdc9 - languageName: node - linkType: hard - -"is-array-buffer@npm:^3.0.2": - version: 3.0.2 - resolution: "is-array-buffer@npm:3.0.2" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.2.0 - is-typed-array: ^1.1.10 - checksum: dcac9dda66ff17df9cabdc58214172bf41082f956eab30bb0d86bc0fab1e44b690fc8e1f855cf2481245caf4e8a5a006a982a71ddccec84032ed41f9d8da8c14 - languageName: node - linkType: hard - -"is-arrayish@npm:^0.2.1": - version: 0.2.1 - resolution: "is-arrayish@npm:0.2.1" - checksum: eef4417e3c10e60e2c810b6084942b3ead455af16c4509959a27e490e7aee87cfb3f38e01bbde92220b528a0ee1a18d52b787e1458ee86174d8c7f0e58cd488f - languageName: node - linkType: hard - -"is-bigint@npm:^1.0.1": - version: 1.0.4 - resolution: "is-bigint@npm:1.0.4" - dependencies: - has-bigints: ^1.0.1 - checksum: c56edfe09b1154f8668e53ebe8252b6f185ee852a50f9b41e8d921cb2bed425652049fbe438723f6cb48a63ca1aa051e948e7e401e093477c99c84eba244f666 - languageName: node - linkType: hard - -"is-binary-path@npm:~2.1.0": - version: 2.1.0 - resolution: "is-binary-path@npm:2.1.0" - dependencies: - binary-extensions: ^2.0.0 - checksum: 84192eb88cff70d320426f35ecd63c3d6d495da9d805b19bc65b518984b7c0760280e57dbf119b7e9be6b161784a5a673ab2c6abe83abb5198a432232ad5b35c - languageName: node - linkType: hard - -"is-boolean-object@npm:^1.1.0": - version: 1.1.2 - resolution: "is-boolean-object@npm:1.1.2" - dependencies: - call-bind: ^1.0.2 - has-tostringtag: ^1.0.0 - checksum: c03b23dbaacadc18940defb12c1c0e3aaece7553ef58b162a0f6bba0c2a7e1551b59f365b91e00d2dbac0522392d576ef322628cb1d036a0fe51eb466db67222 - languageName: node - linkType: hard - -"is-builtin-module@npm:^3.2.1": - version: 3.2.1 - resolution: "is-builtin-module@npm:3.2.1" - dependencies: - builtin-modules: ^3.3.0 - checksum: e8f0ffc19a98240bda9c7ada84d846486365af88d14616e737d280d378695c8c448a621dcafc8332dbf0fcd0a17b0763b845400709963fa9151ddffece90ae88 - languageName: node - linkType: hard - -"is-callable@npm:^1.1.3, is-callable@npm:^1.2.7": - version: 1.2.7 - resolution: "is-callable@npm:1.2.7" - checksum: 61fd57d03b0d984e2ed3720fb1c7a897827ea174bd44402878e059542ea8c4aeedee0ea0985998aa5cc2736b2fa6e271c08587addb5b3959ac52cf665173d1ac - languageName: node - linkType: hard - -"is-callable@npm:^1.1.4": - version: 1.2.4 - resolution: "is-callable@npm:1.2.4" - checksum: 1a28d57dc435797dae04b173b65d6d1e77d4f16276e9eff973f994eadcfdc30a017e6a597f092752a083c1103cceb56c91e3dadc6692fedb9898dfaba701575f - languageName: node - linkType: hard - -"is-core-module@npm:^2.12.0, is-core-module@npm:^2.12.1": - version: 2.12.1 - resolution: "is-core-module@npm:2.12.1" - dependencies: - has: ^1.0.3 - checksum: f04ea30533b5e62764e7b2e049d3157dc0abd95ef44275b32489ea2081176ac9746ffb1cdb107445cf1ff0e0dfcad522726ca27c27ece64dadf3795428b8e468 - languageName: node - linkType: hard - -"is-core-module@npm:^2.13.0": - version: 2.13.0 - resolution: "is-core-module@npm:2.13.0" - dependencies: - has: ^1.0.3 - checksum: 053ab101fb390bfeb2333360fd131387bed54e476b26860dc7f5a700bbf34a0ec4454f7c8c4d43e8a0030957e4b3db6e16d35e1890ea6fb654c833095e040355 - languageName: node - linkType: hard - -"is-core-module@npm:^2.13.1": - version: 2.13.1 - resolution: "is-core-module@npm:2.13.1" - dependencies: - hasown: ^2.0.0 - checksum: 256559ee8a9488af90e4bad16f5583c6d59e92f0742e9e8bb4331e758521ee86b810b93bae44f390766ffbc518a0488b18d9dab7da9a5ff997d499efc9403f7c - languageName: node - linkType: hard - -"is-core-module@npm:^2.3.0, is-core-module@npm:^2.8.1": - version: 2.9.0 - resolution: "is-core-module@npm:2.9.0" - dependencies: - has: ^1.0.3 - checksum: b27034318b4b462f1c8f1dfb1b32baecd651d891a4e2d1922135daeff4141dfced2b82b07aef83ef54275c4a3526aa38da859223664d0868ca24182badb784ce - languageName: node - linkType: hard - -"is-date-object@npm:^1.0.1": - version: 1.0.5 - resolution: "is-date-object@npm:1.0.5" - dependencies: - has-tostringtag: ^1.0.0 - checksum: baa9077cdf15eb7b58c79398604ca57379b2fc4cf9aa7a9b9e295278648f628c9b201400c01c5e0f7afae56507d741185730307cbe7cad3b9f90a77e5ee342fc - languageName: node - linkType: hard - -"is-expression@npm:^4.0.0": - version: 4.0.0 - resolution: "is-expression@npm:4.0.0" - dependencies: - acorn: ^7.1.1 - object-assign: ^4.1.1 - checksum: 0f01d0ff53fbbec36abae8fbb7ef056c6d024f7128646856a3e6c500b205788d3e0f337025e72df979d7d7cf4674a00370633d7f8974c668b2d3fdb7e8a83bdb - languageName: node - linkType: hard - -"is-extglob@npm:^2.1.1": - version: 2.1.1 - resolution: "is-extglob@npm:2.1.1" - checksum: df033653d06d0eb567461e58a7a8c9f940bd8c22274b94bf7671ab36df5719791aae15eef6d83bbb5e23283967f2f984b8914559d4449efda578c775c4be6f85 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 - languageName: node - linkType: hard - -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": - version: 4.0.3 - resolution: "is-glob@npm:4.0.3" - dependencies: - is-extglob: ^2.1.1 - checksum: d381c1319fcb69d341cc6e6c7cd588e17cd94722d9a32dbd60660b993c4fb7d0f19438674e68dfec686d09b7c73139c9166b47597f846af387450224a8101ab4 - languageName: node - linkType: hard - -"is-json@npm:^2.0.1": - version: 2.0.1 - resolution: "is-json@npm:2.0.1" - checksum: 29efc4f82e912bf54cd7b28632dd8e52a311085ca879fe51c869a81ba1313bb689eb440ace53dd480edbc009f92a425c24059e0766f4117fe9888fe59e86186f - languageName: node - linkType: hard - -"is-lambda@npm:^1.0.1": - version: 1.0.1 - resolution: "is-lambda@npm:1.0.1" - checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 - languageName: node - linkType: hard - -"is-negative-zero@npm:^2.0.2": - version: 2.0.2 - resolution: "is-negative-zero@npm:2.0.2" - checksum: f3232194c47a549da60c3d509c9a09be442507616b69454716692e37ae9f37c4dea264fb208ad0c9f3efd15a796a46b79df07c7e53c6227c32170608b809149a - languageName: node - linkType: hard - -"is-number-object@npm:^1.0.4": - version: 1.0.7 - resolution: "is-number-object@npm:1.0.7" - dependencies: - has-tostringtag: ^1.0.0 - checksum: d1e8d01bb0a7134c74649c4e62da0c6118a0bfc6771ea3c560914d52a627873e6920dd0fd0ebc0e12ad2ff4687eac4c308f7e80320b973b2c8a2c8f97a7524f7 - languageName: node - linkType: hard - -"is-number@npm:^7.0.0": - version: 7.0.0 - resolution: "is-number@npm:7.0.0" - checksum: 456ac6f8e0f3111ed34668a624e45315201dff921e5ac181f8ec24923b99e9f32ca1a194912dc79d539c97d33dba17dc635202ff0b2cf98326f608323276d27a - languageName: node - linkType: hard - -"is-path-inside@npm:^3.0.3": - version: 3.0.3 - resolution: "is-path-inside@npm:3.0.3" - checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9 - languageName: node - linkType: hard - -"is-promise@npm:^2.0.0": - version: 2.2.2 - resolution: "is-promise@npm:2.2.2" - checksum: 18bf7d1c59953e0ad82a1ed963fb3dc0d135c8f299a14f89a17af312fc918373136e56028e8831700e1933519630cc2fd4179a777030330fde20d34e96f40c78 - languageName: node - linkType: hard - -"is-regex@npm:^1.0.3, is-regex@npm:^1.1.4": - version: 1.1.4 - resolution: "is-regex@npm:1.1.4" - dependencies: - call-bind: ^1.0.2 - has-tostringtag: ^1.0.0 - checksum: 362399b33535bc8f386d96c45c9feb04cf7f8b41c182f54174c1a45c9abbbe5e31290bbad09a458583ff6bf3b2048672cdb1881b13289569a7c548370856a652 - languageName: node - linkType: hard - -"is-shared-array-buffer@npm:^1.0.2": - version: 1.0.2 - resolution: "is-shared-array-buffer@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - checksum: 9508929cf14fdc1afc9d61d723c6e8d34f5e117f0bffda4d97e7a5d88c3a8681f633a74f8e3ad1fe92d5113f9b921dc5ca44356492079612f9a247efbce7032a - languageName: node - linkType: hard - -"is-string@npm:^1.0.5, is-string@npm:^1.0.7": - version: 1.0.7 - resolution: "is-string@npm:1.0.7" - dependencies: - has-tostringtag: ^1.0.0 - checksum: 323b3d04622f78d45077cf89aab783b2f49d24dc641aa89b5ad1a72114cfeff2585efc8c12ef42466dff32bde93d839ad321b26884cf75e5a7892a938b089989 - languageName: node - linkType: hard - -"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": - version: 1.0.4 - resolution: "is-symbol@npm:1.0.4" - dependencies: - has-symbols: ^1.0.2 - checksum: 92805812ef590738d9de49d677cd17dfd486794773fb6fa0032d16452af46e9b91bb43ffe82c983570f015b37136f4b53b28b8523bfb10b0ece7a66c31a54510 - languageName: node - linkType: hard - -"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.9": - version: 1.1.10 - resolution: "is-typed-array@npm:1.1.10" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - for-each: ^0.3.3 - gopd: ^1.0.1 - has-tostringtag: ^1.0.0 - checksum: aac6ecb59d4c56a1cdeb69b1f129154ef462bbffe434cb8a8235ca89b42f258b7ae94073c41b3cb7bce37f6a1733ad4499f07882d5d5093a7ba84dfc4ebb8017 - languageName: node - linkType: hard - -"is-typed-array@npm:^1.1.12": - version: 1.1.12 - resolution: "is-typed-array@npm:1.1.12" - dependencies: - which-typed-array: ^1.1.11 - checksum: 4c89c4a3be07186caddadf92197b17fda663a9d259ea0d44a85f171558270d36059d1c386d34a12cba22dfade5aba497ce22778e866adc9406098c8fc4771796 - languageName: node - linkType: hard - -"is-weakref@npm:^1.0.2": - version: 1.0.2 - resolution: "is-weakref@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - checksum: 95bd9a57cdcb58c63b1c401c60a474b0f45b94719c30f548c891860f051bc2231575c290a6b420c6bc6e7ed99459d424c652bd5bf9a1d5259505dc35b4bf83de - languageName: node - linkType: hard - -"isarray@npm:^2.0.5": - version: 2.0.5 - resolution: "isarray@npm:2.0.5" - checksum: bd5bbe4104438c4196ba58a54650116007fa0262eccef13a4c55b2e09a5b36b59f1e75b9fcc49883dd9d4953892e6fc007eef9e9155648ceea036e184b0f930a - languageName: node - linkType: hard - -"isbinaryfile@npm:^4.0.2": - version: 4.0.10 - resolution: "isbinaryfile@npm:4.0.10" - checksum: a6b28db7e23ac7a77d3707567cac81356ea18bd602a4f21f424f862a31d0e7ab4f250759c98a559ece35ffe4d99f0d339f1ab884ffa9795172f632ab8f88e686 - languageName: node - linkType: hard - -"isexe@npm:^2.0.0": - version: 2.0.0 - resolution: "isexe@npm:2.0.0" - checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 - languageName: node - linkType: hard - -"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": - version: 3.2.0 - resolution: "istanbul-lib-coverage@npm:3.2.0" - checksum: a2a545033b9d56da04a8571ed05c8120bf10e9bce01cf8633a3a2b0d1d83dff4ac4fe78d6d5673c27fc29b7f21a41d75f83a36be09f82a61c367b56aa73c1ff9 - languageName: node - linkType: hard - -"istanbul-lib-report@npm:^3.0.0": - version: 3.0.0 - resolution: "istanbul-lib-report@npm:3.0.0" - dependencies: - istanbul-lib-coverage: ^3.0.0 - make-dir: ^3.0.0 - supports-color: ^7.1.0 - checksum: 3f29eb3f53c59b987386e07fe772d24c7f58c6897f34c9d7a296f4000de7ae3de9eb95c3de3df91dc65b134c84dee35c54eee572a56243e8907c48064e34ff1b - languageName: node - linkType: hard - -"istanbul-lib-report@npm:^3.0.1": - version: 3.0.1 - resolution: "istanbul-lib-report@npm:3.0.1" - dependencies: - istanbul-lib-coverage: ^3.0.0 - make-dir: ^4.0.0 - supports-color: ^7.1.0 - checksum: fd17a1b879e7faf9bb1dc8f80b2a16e9f5b7b8498fe6ed580a618c34df0bfe53d2abd35bf8a0a00e628fb7405462576427c7df20bbe4148d19c14b431c974b21 - languageName: node - linkType: hard - -"istanbul-reports@npm:^3.1.6": - version: 3.1.6 - resolution: "istanbul-reports@npm:3.1.6" - dependencies: - html-escaper: ^2.0.0 - istanbul-lib-report: ^3.0.0 - checksum: 44c4c0582f287f02341e9720997f9e82c071627e1e862895745d5f52ec72c9b9f38e1d12370015d2a71dcead794f34c7732aaef3fab80a24bc617a21c3d911d6 - languageName: node - linkType: hard - -"jackspeak@npm:^2.0.3": - version: 2.2.0 - resolution: "jackspeak@npm:2.2.0" - dependencies: - "@isaacs/cliui": ^8.0.2 - "@pkgjs/parseargs": ^0.11.0 - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: d8cd5be4f0e89cef04add5b0b068162a086bdb1ca68113ed729e99489b7865ca3edcc6430d6fd20c430e15382929ef5f3c7ec36e6aa7c17be23cac116f92dcff - languageName: node - linkType: hard - -"jquery-migrate@npm:3.4.1": - version: 3.4.1 - resolution: "jquery-migrate@npm:3.4.1" - peerDependencies: - jquery: ">=3 <4" - checksum: d2cb17d055672d4030788e0e1625aa27e33344fc2e5cb69d4f209ae3baedc6cf16142ad55d09c24fa0fe3aa64a7e1e803b6622bd7022e011293f2d294ce1e864 - languageName: node - linkType: hard - -"jquery@npm:3.7.1": - version: 3.7.1 - resolution: "jquery@npm:3.7.1" - checksum: 4370b8139d6ae82867eb6f7f21d1edccf1d1bdf41c0840920ea80d366c2cd5dbe1ceebb110ee9772aa839b04400faa1572c5c560b507c688ed7b61cea26c0e27 - languageName: node - linkType: hard - -"js-cookie@npm:3.0.5": - version: 3.0.5 - resolution: "js-cookie@npm:3.0.5" - checksum: 2dbd2809c6180fbcf060c6957cb82dbb47edae0ead6bd71cbeedf448aa6b6923115003b995f7d3e3077bfe2cb76295ea6b584eb7196cca8ba0a09f389f64967a - languageName: node - linkType: hard - -"js-stringify@npm:^1.0.2": - version: 1.0.2 - resolution: "js-stringify@npm:1.0.2" - checksum: f9701d9e535d3ac0f62bbf2624b76c5d0af5b889187232817ae284a41ba21fd7a8b464c2dce3815d8cf52c8bea3480be6b368cfc2c67da799cad458058e8bbf5 - languageName: node - linkType: hard - -"js-tokens@npm:^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 - languageName: node - linkType: hard - -"js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" - dependencies: - argparse: ^2.0.1 - bin: - js-yaml: bin/js-yaml.js - checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a - languageName: node - linkType: hard - -"json-parse-even-better-errors@npm:^2.3.0": - version: 2.3.1 - resolution: "json-parse-even-better-errors@npm:2.3.1" - checksum: 798ed4cf3354a2d9ccd78e86d2169515a0097a5c133337807cdf7f1fc32e1391d207ccfc276518cc1d7d8d4db93288b8a50ba4293d212ad1336e52a8ec0a941f - languageName: node - linkType: hard - -"json-schema-traverse@npm:^0.4.1": - version: 0.4.1 - resolution: "json-schema-traverse@npm:0.4.1" - checksum: 7486074d3ba247769fda17d5181b345c9fb7d12e0da98b22d1d71a5db9698d8b4bd900a3ec1a4ffdd60846fc2556274a5c894d0c48795f14cb03aeae7b55260b - languageName: node - linkType: hard - -"json-schema-traverse@npm:^1.0.0": - version: 1.0.0 - resolution: "json-schema-traverse@npm:1.0.0" - checksum: 02f2f466cdb0362558b2f1fd5e15cce82ef55d60cd7f8fa828cf35ba74330f8d767fcae5c5c2adb7851fa811766c694b9405810879bc4e1ddd78a7c0e03658ad - languageName: node - linkType: hard - -"json-stable-stringify-without-jsonify@npm:^1.0.1": - version: 1.0.1 - resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" - checksum: cff44156ddce9c67c44386ad5cddf91925fe06b1d217f2da9c4910d01f358c6e3989c4d5a02683c7a5667f9727ff05831f7aa8ae66c8ff691c556f0884d49215 - languageName: node - linkType: hard - -"json5@npm:^1.0.2": - version: 1.0.2 - resolution: "json5@npm:1.0.2" - dependencies: - minimist: ^1.2.0 - bin: - json5: lib/cli.js - checksum: 866458a8c58a95a49bef3adba929c625e82532bcff1fe93f01d29cb02cac7c3fe1f4b79951b7792c2da9de0b32871a8401a6e3c5b36778ad852bf5b8a61165d7 - languageName: node - linkType: hard - -"json5@npm:^2.2.0, json5@npm:^2.2.1": - version: 2.2.1 - resolution: "json5@npm:2.2.1" - bin: - json5: lib/cli.js - checksum: 74b8a23b102a6f2bf2d224797ae553a75488b5adbaee9c9b6e5ab8b510a2fc6e38f876d4c77dea672d4014a44b2399e15f2051ac2b37b87f74c0c7602003543b - languageName: node - linkType: hard - -"jstransformer@npm:1.0.0": - version: 1.0.0 - resolution: "jstransformer@npm:1.0.0" - dependencies: - is-promise: ^2.0.0 - promise: ^7.0.1 - checksum: 1e019fde17a38766a5b96bccf0738156badc60cfa61e2ba8a8bbd3b855e7d5d7e17492b8a66e4aaabc39483e335d23217343ae32d0f7e5a81af42a95c3e075f9 - languageName: node - linkType: hard - -"kleur@npm:^3.0.3": - version: 3.0.3 - resolution: "kleur@npm:3.0.3" - checksum: df82cd1e172f957bae9c536286265a5cdbd5eeca487cb0a3b2a7b41ef959fc61f8e7c0e9aeea9c114ccf2c166b6a8dd45a46fd619c1c569d210ecd2765ad5169 - languageName: node - linkType: hard - -"kleur@npm:^4.0.0, kleur@npm:^4.1.0": - version: 4.1.4 - resolution: "kleur@npm:4.1.4" - checksum: 7f6db36e378045dec14acd3cbf0b1e59130c09e984ee8b8ce56dd2d2257cfff90389c1e8f8b19bd09dd5d241080566a814b4ccd99fdcef91f59ef93ec33c8a44 - languageName: node - linkType: hard - -"levn@npm:^0.4.1": - version: 0.4.1 - resolution: "levn@npm:0.4.1" - dependencies: - prelude-ls: ^1.2.1 - type-check: ~0.4.0 - checksum: 12c5021c859bd0f5248561bf139121f0358285ec545ebf48bb3d346820d5c61a4309535c7f387ed7d84361cf821e124ce346c6b7cef8ee09a67c1473b46d0fc4 - languageName: node - linkType: hard - -"lightningcss-darwin-arm64@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-darwin-arm64@npm:1.17.1" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"lightningcss-darwin-x64@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-darwin-x64@npm:1.17.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"lightningcss-linux-arm-gnueabihf@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-linux-arm-gnueabihf@npm:1.17.1" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"lightningcss-linux-arm64-gnu@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-linux-arm64-gnu@npm:1.17.1" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"lightningcss-linux-arm64-musl@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-linux-arm64-musl@npm:1.17.1" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"lightningcss-linux-x64-gnu@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-linux-x64-gnu@npm:1.17.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"lightningcss-linux-x64-musl@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-linux-x64-musl@npm:1.17.1" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"lightningcss-win32-x64-msvc@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss-win32-x64-msvc@npm:1.17.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"lightningcss@npm:1.17.1": - version: 1.17.1 - resolution: "lightningcss@npm:1.17.1" - dependencies: - detect-libc: ^1.0.3 - lightningcss-darwin-arm64: 1.17.1 - lightningcss-darwin-x64: 1.17.1 - lightningcss-linux-arm-gnueabihf: 1.17.1 - lightningcss-linux-arm64-gnu: 1.17.1 - lightningcss-linux-arm64-musl: 1.17.1 - lightningcss-linux-x64-gnu: 1.17.1 - lightningcss-linux-x64-musl: 1.17.1 - lightningcss-win32-x64-msvc: 1.17.1 - dependenciesMeta: - lightningcss-darwin-arm64: - optional: true - lightningcss-darwin-x64: - optional: true - lightningcss-linux-arm-gnueabihf: - optional: true - lightningcss-linux-arm64-gnu: - optional: true - lightningcss-linux-arm64-musl: - optional: true - lightningcss-linux-x64-gnu: - optional: true - lightningcss-linux-x64-musl: - optional: true - lightningcss-win32-x64-msvc: - optional: true - checksum: 0bf9d5c9321db457dd25c47281b7a8af36377ede05a45daa894f1f9070fe70b9db1325646aa2a574f0212e5f961f0f57b0419847141a4f49321bca72169aef16 - languageName: node - linkType: hard - -"lines-and-columns@npm:^1.1.6": - version: 1.2.4 - resolution: "lines-and-columns@npm:1.2.4" - checksum: 0c37f9f7fa212b38912b7145e1cd16a5f3cd34d782441c3e6ca653485d326f58b3caccda66efce1c5812bde4961bbde3374fae4b0d11bf1226152337f3894aa5 - languageName: node - linkType: hard - -"list.js@npm:2.3.1": - version: 2.3.1 - resolution: "list.js@npm:2.3.1" - dependencies: - string-natural-compare: ^2.0.2 - checksum: 3bb4e9035b422ebcb6b3ca643b11c69acc0254bd1561722c7525e8fe6a8f5732bbd553961112fbdabc2b58cda3db77be6182154e43a89523da4ff472c0aca5fc - languageName: node - linkType: hard - -"lmdb@npm:2.5.2": - version: 2.5.2 - resolution: "lmdb@npm:2.5.2" - dependencies: - "@lmdb/lmdb-darwin-arm64": 2.5.2 - "@lmdb/lmdb-darwin-x64": 2.5.2 - "@lmdb/lmdb-linux-arm": 2.5.2 - "@lmdb/lmdb-linux-arm64": 2.5.2 - "@lmdb/lmdb-linux-x64": 2.5.2 - "@lmdb/lmdb-win32-x64": 2.5.2 - msgpackr: ^1.5.4 - node-addon-api: ^4.3.0 - node-gyp: latest - node-gyp-build-optional-packages: 5.0.3 - ordered-binary: ^1.2.4 - weak-lru-cache: ^1.2.2 - dependenciesMeta: - "@lmdb/lmdb-darwin-arm64": - optional: true - "@lmdb/lmdb-darwin-x64": - optional: true - "@lmdb/lmdb-linux-arm": - optional: true - "@lmdb/lmdb-linux-arm64": - optional: true - "@lmdb/lmdb-linux-x64": - optional: true - "@lmdb/lmdb-win32-x64": - optional: true - checksum: 3362dc2b03c6fbdfc02291001007e4096767476e65fbf8d5e332ef473946a0d108319748ef5974ebb84cf6ffa4015c039920f130bcc09c03a751b03a9fd93dff - languageName: node - linkType: hard - -"lmdb@npm:2.8.5": - version: 2.8.5 - resolution: "lmdb@npm:2.8.5" - dependencies: - "@lmdb/lmdb-darwin-arm64": 2.8.5 - "@lmdb/lmdb-darwin-x64": 2.8.5 - "@lmdb/lmdb-linux-arm": 2.8.5 - "@lmdb/lmdb-linux-arm64": 2.8.5 - "@lmdb/lmdb-linux-x64": 2.8.5 - "@lmdb/lmdb-win32-x64": 2.8.5 - msgpackr: ^1.9.5 - node-addon-api: ^6.1.0 - node-gyp: latest - node-gyp-build-optional-packages: 5.1.1 - ordered-binary: ^1.4.1 - weak-lru-cache: ^1.2.2 - dependenciesMeta: - "@lmdb/lmdb-darwin-arm64": - optional: true - "@lmdb/lmdb-darwin-x64": - optional: true - "@lmdb/lmdb-linux-arm": - optional: true - "@lmdb/lmdb-linux-arm64": - optional: true - "@lmdb/lmdb-linux-x64": - optional: true - "@lmdb/lmdb-win32-x64": - optional: true - bin: - download-lmdb-prebuilds: bin/download-prebuilds.js - checksum: b1ec76650d3b19d4c966cd7a4ee2324270c7d20f46b569d23bc287c7c7e7da667d3d330aa78be1aa2717af63b3531cd1d53a5ee4faf1c293c038513e4f3aa832 - languageName: node - linkType: hard - -"locate-path@npm:^6.0.0": - version: 6.0.0 - resolution: "locate-path@npm:6.0.0" - dependencies: - p-locate: ^5.0.0 - checksum: 72eb661788a0368c099a184c59d2fee760b3831c9c1c33955e8a19ae4a21b4116e53fa736dc086cdeb9fce9f7cc508f2f92d2d3aae516f133e16a2bb59a39f5a - languageName: node - linkType: hard - -"lodash-es@npm:4.17.21, lodash-es@npm:^4.17.21": - version: 4.17.21 - resolution: "lodash-es@npm:4.17.21" - checksum: 05cbffad6e2adbb331a4e16fbd826e7faee403a1a04873b82b42c0f22090f280839f85b95393f487c1303c8a3d2a010048bf06151a6cbe03eee4d388fb0a12d2 - languageName: node - linkType: hard - -"lodash.merge@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.merge@npm:4.6.2" - checksum: ad580b4bdbb7ca1f7abf7e1bce63a9a0b98e370cf40194b03380a46b4ed799c9573029599caebc1b14e3f24b111aef72b96674a56cfa105e0f5ac70546cdc005 - languageName: node - linkType: hard - -"lodash@npm:4.17.21, lodash@npm:^4.17.21": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 - languageName: node - linkType: hard - -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" - dependencies: - yallist: ^4.0.0 - checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 - languageName: node - linkType: hard - -"lru-cache@npm:^7.7.1": - version: 7.10.1 - resolution: "lru-cache@npm:7.10.1" - checksum: e8b190d71ed0fcd7b29c71a3e9b01f851c92d1ef8865ff06b5581ca991db1e5e006920ed4da8b56da1910664ed51abfd76c46fb55e82ac252ff6c970ff910d72 - languageName: node - linkType: hard - -"lru-cache@npm:^9.1.1": - version: 9.1.1 - resolution: "lru-cache@npm:9.1.1" - checksum: 4d703bb9b66216bbee55ead82a9682820a2b6acbdfca491b235390b1ef1056000a032d56dfb373fdf9ad4492f1fa9d04cc9a05a77f25bd7ce6901d21ad9b68b7 - languageName: node - linkType: hard - -"luxon@npm:3.4.4": - version: 3.4.4 - resolution: "luxon@npm:3.4.4" - checksum: 36c1f99c4796ee4bfddf7dc94fa87815add43ebc44c8934c924946260a58512f0fd2743a629302885df7f35ccbd2d13f178c15df046d0e3b6eb71db178f1c60c - languageName: node - linkType: hard - -"magic-string@npm:^0.30.7": - version: 0.30.7 - resolution: "magic-string@npm:0.30.7" - dependencies: - "@jridgewell/sourcemap-codec": ^1.4.15 - checksum: bdf102e36a44d1728ec61b69d655caba3f66ca58898e292f6debe57dc30896bd37908bfe3464a7464a435831a9e44aa905cebd681e21c2f44bbe4dddf225619f - languageName: node - linkType: hard - -"make-dir@npm:^3.0.0": - version: 3.1.0 - resolution: "make-dir@npm:3.1.0" - dependencies: - semver: ^6.0.0 - checksum: 484200020ab5a1fdf12f393fe5f385fc8e4378824c940fba1729dcd198ae4ff24867bc7a5646331e50cead8abff5d9270c456314386e629acec6dff4b8016b78 - languageName: node - linkType: hard - -"make-dir@npm:^4.0.0": - version: 4.0.0 - resolution: "make-dir@npm:4.0.0" - dependencies: - semver: ^7.5.3 - checksum: bf0731a2dd3aab4db6f3de1585cea0b746bb73eb5a02e3d8d72757e376e64e6ada190b1eddcde5b2f24a81b688a9897efd5018737d05e02e2a671dda9cff8a8a - languageName: node - linkType: hard - -"make-fetch-happen@npm:^10.0.3": - version: 10.1.5 - resolution: "make-fetch-happen@npm:10.1.5" - dependencies: - agentkeepalive: ^4.2.1 - cacache: ^16.1.0 - http-cache-semantics: ^4.1.0 - http-proxy-agent: ^5.0.0 - https-proxy-agent: ^5.0.0 - is-lambda: ^1.0.1 - lru-cache: ^7.7.1 - minipass: ^3.1.6 - minipass-collect: ^1.0.2 - minipass-fetch: ^2.0.3 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - negotiator: ^0.6.3 - promise-retry: ^2.0.1 - socks-proxy-agent: ^6.1.1 - ssri: ^9.0.0 - checksum: b0b42a1ccdcbc3180749727a52cf6887d9df6218d8ca35101bb9f7ab35729dd166d99203b70149a19a818d1ba72de40b982002ddb0b308c548457f5725d6e7f6 - languageName: node - linkType: hard - -"mdn-data@npm:2.0.14": - version: 2.0.14 - resolution: "mdn-data@npm:2.0.14" - checksum: 9d0128ed425a89f4cba8f787dca27ad9408b5cb1b220af2d938e2a0629d17d879a34d2cb19318bdb26c3f14c77dd5dfbae67211f5caaf07b61b1f2c5c8c7dc16 - languageName: node - linkType: hard - -"mime@npm:1.6.0": - version: 1.6.0 - resolution: "mime@npm:1.6.0" - bin: - mime: cli.js - checksum: fef25e39263e6d207580bdc629f8872a3f9772c923c7f8c7e793175cee22777bbe8bba95e5d509a40aaa292d8974514ce634ae35769faa45f22d17edda5e8557 - languageName: node - linkType: hard - -"mime@npm:^2.4.4": - version: 2.6.0 - resolution: "mime@npm:2.6.0" - bin: - mime: cli.js - checksum: 1497ba7b9f6960694268a557eae24b743fd2923da46ec392b042469f4b901721ba0adcf8b0d3c2677839d0e243b209d76e5edcbd09cfdeffa2dfb6bb4df4b862 - languageName: node - linkType: hard - -"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" - dependencies: - brace-expansion: ^1.1.7 - checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a - languageName: node - linkType: hard - -"minimatch@npm:^5.0.1": - version: 5.1.0 - resolution: "minimatch@npm:5.1.0" - dependencies: - brace-expansion: ^2.0.1 - checksum: 15ce53d31a06361e8b7a629501b5c75491bc2b59712d53e802b1987121d91b433d73fcc5be92974fde66b2b51d8fb28d75a9ae900d249feb792bb1ba2a4f0a90 - languageName: node - linkType: hard - -"minimatch@npm:^9.0.0": - version: 9.0.0 - resolution: "minimatch@npm:9.0.0" - dependencies: - brace-expansion: ^2.0.1 - checksum: 7bd57899edd1d1b0560f50b5b2d1ea4ad2a366c5a2c8e0a943372cf2f200b64c256bae45a87a80915adbce27fa36526264296ace0da57b600481fe5ea3e372e5 - languageName: node - linkType: hard - -"minimist@npm:^1.2.0, minimist@npm:^1.2.6": - version: 1.2.6 - resolution: "minimist@npm:1.2.6" - checksum: d15428cd1e11eb14e1233bcfb88ae07ed7a147de251441d61158619dfb32c4d7e9061d09cab4825fdee18ecd6fce323228c8c47b5ba7cd20af378ca4048fb3fb - languageName: node - linkType: hard - -"minipass-collect@npm:^1.0.2": - version: 1.0.2 - resolution: "minipass-collect@npm:1.0.2" - dependencies: - minipass: ^3.0.0 - checksum: 14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10 - languageName: node - linkType: hard - -"minipass-fetch@npm:^2.0.3": - version: 2.1.0 - resolution: "minipass-fetch@npm:2.1.0" - dependencies: - encoding: ^0.1.13 - minipass: ^3.1.6 - minipass-sized: ^1.0.3 - minizlib: ^2.1.2 - dependenciesMeta: - encoding: - optional: true - checksum: 1334732859a3f7959ed22589bafd9c40384b885aebb5932328071c33f86b3eb181d54c86919675d1825ab5f1c8e4f328878c863873258d113c29d79a4b0c9c9f - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.5 - resolution: "minipass-flush@npm:1.0.5" - dependencies: - minipass: ^3.0.0 - checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: ^3.0.0 - checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b - languageName: node - linkType: hard - -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" - dependencies: - minipass: ^3.0.0 - checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0, minipass@npm:^3.1.1, minipass@npm:^3.1.6": - version: 3.1.6 - resolution: "minipass@npm:3.1.6" - dependencies: - yallist: ^4.0.0 - checksum: 57a04041413a3531a65062452cb5175f93383ef245d6f4a2961d34386eb9aa8ac11ac7f16f791f5e8bbaf1dfb1ef01596870c88e8822215db57aa591a5bb0a77 - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.0": - version: 6.0.1 - resolution: "minipass@npm:6.0.1" - checksum: 1df70bb5653251ad7bb0c979e07c18bbc64af1a92472a1d598f4311646da0c192d6ad92850cdfb9f0cd3ada8a9da369dd361c9f2e38a9f64b6a368ae2ac27fac - languageName: node - linkType: hard - -"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": - version: 2.1.2 - resolution: "minizlib@npm:2.1.2" - dependencies: - minipass: ^3.0.0 - yallist: ^4.0.0 - checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 - languageName: node - linkType: hard - -"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": - version: 1.0.4 - resolution: "mkdirp@npm:1.0.4" - bin: - mkdirp: bin/cmd.js - checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f - languageName: node - linkType: hard - -"moment-timezone@npm:0.5.45": - version: 0.5.45 - resolution: "moment-timezone@npm:0.5.45" - dependencies: - moment: ^2.29.4 - checksum: a22e9f983fbe1a01757ce30685bce92e3f6efa692eb682afd47b82da3ff960b3c8c2c3883ec6715c124bc985a342b57cba1f6ba25a1c8b4c7ad766db3cd5e1d0 - languageName: node - linkType: hard - -"moment@npm:2.30.1": - version: 2.30.1 - resolution: "moment@npm:2.30.1" - checksum: 859236bab1e88c3e5802afcf797fc801acdbd0ee509d34ea3df6eea21eb6bcc2abd4ae4e4e64aa7c986aa6cba563c6e62806218e6412a765010712e5fa121ba6 - languageName: node - linkType: hard - -"moment@npm:^2.29.4": - version: 2.29.4 - resolution: "moment@npm:2.29.4" - checksum: 0ec3f9c2bcba38dc2451b1daed5daded747f17610b92427bebe1d08d48d8b7bdd8d9197500b072d14e326dd0ccf3e326b9e3d07c5895d3d49e39b6803b76e80e - languageName: node - linkType: hard - -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - -"ms@npm:2.1.2, ms@npm:^2.1.1": - version: 2.1.2 - resolution: "ms@npm:2.1.2" - checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f - languageName: node - linkType: hard - -"ms@npm:2.1.3, ms@npm:^2.0.0": - version: 2.1.3 - resolution: "ms@npm:2.1.3" - checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d - languageName: node - linkType: hard - -"msgpackr-extract@npm:^2.0.2": - version: 2.0.2 - resolution: "msgpackr-extract@npm:2.0.2" - dependencies: - "@msgpackr-extract/msgpackr-extract-darwin-arm64": 2.0.2 - "@msgpackr-extract/msgpackr-extract-darwin-x64": 2.0.2 - "@msgpackr-extract/msgpackr-extract-linux-arm": 2.0.2 - "@msgpackr-extract/msgpackr-extract-linux-arm64": 2.0.2 - "@msgpackr-extract/msgpackr-extract-linux-x64": 2.0.2 - "@msgpackr-extract/msgpackr-extract-win32-x64": 2.0.2 - node-gyp: latest - node-gyp-build-optional-packages: 5.0.2 - dependenciesMeta: - "@msgpackr-extract/msgpackr-extract-darwin-arm64": - optional: true - "@msgpackr-extract/msgpackr-extract-darwin-x64": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm64": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-x64": - optional: true - "@msgpackr-extract/msgpackr-extract-win32-x64": - optional: true - checksum: 6b24c0e89eae881012484787082a50290f78d2dc69df28c28838c65f9cda3f585272c73b9ebbf386f9958c16a9956f0cabddf2ccfc1229ee612a6b88e9519c68 - languageName: node - linkType: hard - -"msgpackr-extract@npm:^3.0.2": - version: 3.0.2 - resolution: "msgpackr-extract@npm:3.0.2" - dependencies: - "@msgpackr-extract/msgpackr-extract-darwin-arm64": 3.0.2 - "@msgpackr-extract/msgpackr-extract-darwin-x64": 3.0.2 - "@msgpackr-extract/msgpackr-extract-linux-arm": 3.0.2 - "@msgpackr-extract/msgpackr-extract-linux-arm64": 3.0.2 - "@msgpackr-extract/msgpackr-extract-linux-x64": 3.0.2 - "@msgpackr-extract/msgpackr-extract-win32-x64": 3.0.2 - node-gyp: latest - node-gyp-build-optional-packages: 5.0.7 - dependenciesMeta: - "@msgpackr-extract/msgpackr-extract-darwin-arm64": - optional: true - "@msgpackr-extract/msgpackr-extract-darwin-x64": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm64": - optional: true - "@msgpackr-extract/msgpackr-extract-linux-x64": - optional: true - "@msgpackr-extract/msgpackr-extract-win32-x64": - optional: true - bin: - download-msgpackr-prebuilds: bin/download-prebuilds.js - checksum: 5adb809b965bac41c310e60373d54c955fe78e4d134ab036d0f9ee5b322cec0a739878d395e17c1ac82d840705896b2dafae6a8cc04ad34c14d2de4b06b58330 - languageName: node - linkType: hard - -"msgpackr@npm:^1.5.4": - version: 1.6.0 - resolution: "msgpackr@npm:1.6.0" - dependencies: - msgpackr-extract: ^2.0.2 - dependenciesMeta: - msgpackr-extract: - optional: true - checksum: 7f94acbe93d4ba10fd05a8a88523a2c90c5385ab1ebb7feff25903c6d465255e52f6c0b64b70a93f08e2ba190a490b62d1396b0f392c8ecc3707871acc0115f7 - languageName: node - linkType: hard - -"msgpackr@npm:^1.9.5": - version: 1.9.9 - resolution: "msgpackr@npm:1.9.9" - dependencies: - msgpackr-extract: ^3.0.2 - dependenciesMeta: - msgpackr-extract: - optional: true - checksum: b63182d99f479d79f0d082fd2688ce7cf699b1aee71e20f28591c30b48743bb57868fdd72656759a892891072d186d864702c756434520709e8fe7e0d350a119 - languageName: node - linkType: hard - -"msgpackr@npm:^1.9.9": - version: 1.10.1 - resolution: "msgpackr@npm:1.10.1" - dependencies: - msgpackr-extract: ^3.0.2 - dependenciesMeta: - msgpackr-extract: - optional: true - checksum: e422d18b01051598b23701eebeb4b9e2c686b9c7826b20f564724837ba2b5cd4af74c91a549eaeaf8186645cc95e8196274a4a19442aa3286ac611b98069c194 - languageName: node - linkType: hard - -"muggle-string@npm:^0.4.0": - version: 0.4.1 - resolution: "muggle-string@npm:0.4.1" - checksum: 85fe1766d18d43cf22b6da7d047203a65b2e2b1ccfac505b699c2a459644f95ebb3c854a96db5be559eea0e213f6ee32b986b8c2f73c48e6c89e1fd829616532 - languageName: node - linkType: hard - -"murmurhash-js@npm:1.0.0": - version: 1.0.0 - resolution: "murmurhash-js@npm:1.0.0" - checksum: 083cea92a11bc9eb25be1446fc92eded3f49731bc1ad34fa8023afd68c234d1dd59458d70eb20e667b1383bedeeb8dfb1a16c89913b6ffe3584fd22fb598739d - languageName: node - linkType: hard - -"naive-ui@npm:2.38.1": - version: 2.38.1 - resolution: "naive-ui@npm:2.38.1" - dependencies: - "@css-render/plugin-bem": ^0.15.12 - "@css-render/vue3-ssr": ^0.15.12 - "@types/katex": ^0.16.2 - "@types/lodash": ^4.14.198 - "@types/lodash-es": ^4.17.9 - async-validator: ^4.2.5 - css-render: ^0.15.12 - csstype: ^3.1.3 - date-fns: ^2.30.0 - date-fns-tz: ^2.0.0 - evtd: ^0.2.4 - highlight.js: ^11.8.0 - lodash: ^4.17.21 - lodash-es: ^4.17.21 - seemly: ^0.3.8 - treemate: ^0.3.11 - vdirs: ^0.1.8 - vooks: ^0.2.12 - vueuc: ^0.4.58 - peerDependencies: - vue: ^3.0.0 - checksum: 88a8f981dec2ebcdfe0f06d9123d46069e22f881e3286441d6396ea80ee56079d7f93e731321d2320156196e442df77a9ae45f8599b98b144af458d12b29d88c - languageName: node - linkType: hard - -"nanoid@npm:^3.3.7": - version: 3.3.7 - resolution: "nanoid@npm:3.3.7" - bin: - nanoid: bin/nanoid.cjs - checksum: d36c427e530713e4ac6567d488b489a36582ef89da1d6d4e3b87eded11eb10d7042a877958c6f104929809b2ab0bafa17652b076cdf84324aa75b30b722204f2 - languageName: node - linkType: hard - -"natural-compare@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare@npm:1.4.0" - checksum: 23ad088b08f898fc9b53011d7bb78ec48e79de7627e01ab5518e806033861bef68d5b0cd0e2205c2f36690ac9571ff6bcb05eb777ced2eeda8d4ac5b44592c3d - languageName: node - linkType: hard - -"negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 - languageName: node - linkType: hard - -"node-addon-api@npm:^3.2.1": - version: 3.2.1 - resolution: "node-addon-api@npm:3.2.1" - dependencies: - node-gyp: latest - checksum: 2369986bb0881ccd9ef6bacdf39550e07e089a9c8ede1cbc5fc7712d8e2faa4d50da0e487e333d4125f8c7a616c730131d1091676c9d499af1d74560756b4a18 - languageName: node - linkType: hard - -"node-addon-api@npm:^4.3.0": - version: 4.3.0 - resolution: "node-addon-api@npm:4.3.0" - dependencies: - node-gyp: latest - checksum: 3de396e23cc209f539c704583e8e99c148850226f6e389a641b92e8967953713228109f919765abc1f4355e801e8f41842f96210b8d61c7dcc10a477002dcf00 - languageName: node - linkType: hard - -"node-addon-api@npm:^6.1.0": - version: 6.1.0 - resolution: "node-addon-api@npm:6.1.0" - dependencies: - node-gyp: latest - checksum: 3a539510e677cfa3a833aca5397300e36141aca064cdc487554f2017110709a03a95da937e98c2a14ec3c626af7b2d1b6dabe629a481f9883143d0d5bff07bf2 - languageName: node - linkType: hard - -"node-gyp-build-optional-packages@npm:5.0.2": - version: 5.0.2 - resolution: "node-gyp-build-optional-packages@npm:5.0.2" - bin: - node-gyp-build-optional: optional.js - node-gyp-build-optional-packages: bin.js - node-gyp-build-test: build-test.js - checksum: 6fca33cd1e297a446dead8a9bc7a48988be30098c219e75e8466d0218dea6b03bf5da092fe20301cb8b72218356c656422f1a64520c37ebc30eb596b012d1ad9 - languageName: node - linkType: hard - -"node-gyp-build-optional-packages@npm:5.0.3": - version: 5.0.3 - resolution: "node-gyp-build-optional-packages@npm:5.0.3" - bin: - node-gyp-build-optional-packages: bin.js - node-gyp-build-optional-packages-optional: optional.js - node-gyp-build-optional-packages-test: build-test.js - checksum: be3f0235925c8361e5bc1a03848f5e24815b0df8aa90bd13f1eac91cd86264bbb8b7689ca6cd083b02c8099c7b54f9fb83066c7bb77c2389dc4eceab921f084f - languageName: node - linkType: hard - -"node-gyp-build-optional-packages@npm:5.0.7": - version: 5.0.7 - resolution: "node-gyp-build-optional-packages@npm:5.0.7" - bin: - node-gyp-build-optional-packages: bin.js - node-gyp-build-optional-packages-optional: optional.js - node-gyp-build-optional-packages-test: build-test.js - checksum: bcb4537af15bcb3811914ea0db8f69284ca10db1cc7543a167a4c41ae4b9b5044b133f789fdadad0b7adc6931f6ae7def3c75b0bc7b05836881aae52400163e6 - languageName: node - linkType: hard - -"node-gyp-build-optional-packages@npm:5.1.1": - version: 5.1.1 - resolution: "node-gyp-build-optional-packages@npm:5.1.1" - dependencies: - detect-libc: ^2.0.1 - bin: - node-gyp-build-optional-packages: bin.js - node-gyp-build-optional-packages-optional: optional.js - node-gyp-build-optional-packages-test: build-test.js - checksum: f3cb197862516e6879377adaa58142ae9013ab69c86cf2645f8b008db339354145d8ebd9140a13ec7ece5ce28a372ca7e14660379d3a3dd7b908a6f2743606e9 - languageName: node - linkType: hard - -"node-gyp-build@npm:^4.3.0": - version: 4.4.0 - resolution: "node-gyp-build@npm:4.4.0" - bin: - node-gyp-build: bin.js - node-gyp-build-optional: optional.js - node-gyp-build-test: build-test.js - checksum: 972a059f960253d254e0b23ce10f54c8982236fc0edcab85166d0b7f87443b2ce98391c877cfb2f6eeafcf03c538c5f4dd3e0bfff03828eb48634f58f4c64343 - languageName: node - linkType: hard - -"node-gyp@npm:latest": - version: 9.0.0 - resolution: "node-gyp@npm:9.0.0" - dependencies: - env-paths: ^2.2.0 - glob: ^7.1.4 - graceful-fs: ^4.2.6 - make-fetch-happen: ^10.0.3 - nopt: ^5.0.0 - npmlog: ^6.0.0 - rimraf: ^3.0.2 - semver: ^7.3.5 - tar: ^6.1.2 - which: ^2.0.2 - bin: - node-gyp: bin/node-gyp.js - checksum: 4d8ef8860f7e4f4d86c91db3f519d26ed5cc23b48fe54543e2afd86162b4acbd14f21de42a5db344525efb69a991e021b96a68c70c6e2d5f4a5cb770793da6d3 - languageName: node - linkType: hard - -"node-releases@npm:^2.0.3": - version: 2.0.4 - resolution: "node-releases@npm:2.0.4" - checksum: b32d6c2032c7b169ae3938b416fc50f123f5bd577d54a79b2ae201febf27b22846b01c803dd35ac8689afe840f8ba4e5f7154723db629b80f359836b6707b92f - languageName: node - linkType: hard - -"nopt@npm:^5.0.0": - version: 5.0.0 - resolution: "nopt@npm:5.0.0" - dependencies: - abbrev: 1 - bin: - nopt: bin/nopt.js - checksum: d35fdec187269503843924e0114c0c6533fb54bbf1620d0f28b4b60ba01712d6687f62565c55cc20a504eff0fbe5c63e22340c3fad549ad40469ffb611b04f2f - languageName: node - linkType: hard - -"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": - version: 3.0.0 - resolution: "normalize-path@npm:3.0.0" - checksum: 88eeb4da891e10b1318c4b2476b6e2ecbeb5ff97d946815ffea7794c31a89017c70d7f34b3c2ebf23ef4e9fc9fb99f7dffe36da22011b5b5c6ffa34f4873ec20 - languageName: node - linkType: hard - -"npmlog@npm:^6.0.0": - version: 6.0.2 - resolution: "npmlog@npm:6.0.2" - dependencies: - are-we-there-yet: ^3.0.0 - console-control-strings: ^1.1.0 - gauge: ^4.0.3 - set-blocking: ^2.0.0 - checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a - languageName: node - linkType: hard - -"nth-check@npm:^2.0.1, nth-check@npm:^2.1.1": - version: 2.1.1 - resolution: "nth-check@npm:2.1.1" - dependencies: - boolbase: ^1.0.0 - checksum: 5afc3dafcd1573b08877ca8e6148c52abd565f1d06b1eb08caf982e3fa289a82f2cae697ffb55b5021e146d60443f1590a5d6b944844e944714a5b549675bcd3 - languageName: node - linkType: hard - -"nullthrows@npm:^1.1.1": - version: 1.1.1 - resolution: "nullthrows@npm:1.1.1" - checksum: 10806b92121253eb1b08ecf707d92480f5331ba8ae5b23fa3eb0548ad24196eb797ed47606153006568a5733ea9e528a3579f21421f7828e09e7756f4bdd386f - languageName: node - linkType: hard - -"object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f - languageName: node - linkType: hard - -"object-inspect@npm:^1.13.1": - version: 1.13.1 - resolution: "object-inspect@npm:1.13.1" - checksum: 7d9fa9221de3311dcb5c7c307ee5dc011cdd31dc43624b7c184b3840514e118e05ef0002be5388304c416c0eb592feb46e983db12577fc47e47d5752fbbfb61f - languageName: node - linkType: hard - -"object-inspect@npm:^1.9.0": - version: 1.12.0 - resolution: "object-inspect@npm:1.12.0" - checksum: 2b36d4001a9c921c6b342e2965734519c9c58c355822243c3207fbf0aac271f8d44d30d2d570d450b2cc6f0f00b72bcdba515c37827d2560e5f22b1899a31cf4 - languageName: node - linkType: hard - -"object-keys@npm:^1.1.1": - version: 1.1.1 - resolution: "object-keys@npm:1.1.1" - checksum: b363c5e7644b1e1b04aa507e88dcb8e3a2f52b6ffd0ea801e4c7a62d5aa559affe21c55a07fd4b1fd55fc03a33c610d73426664b20032405d7b92a1414c34d6a - languageName: node - linkType: hard - -"object.assign@npm:^4.1.4": - version: 4.1.4 - resolution: "object.assign@npm:4.1.4" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - has-symbols: ^1.0.3 - object-keys: ^1.1.1 - checksum: 76cab513a5999acbfe0ff355f15a6a125e71805fcf53de4e9d4e082e1989bdb81d1e329291e1e4e0ae7719f0e4ef80e88fb2d367ae60500d79d25a6224ac8864 - languageName: node - linkType: hard - -"object.fromentries@npm:^2.0.7": - version: 2.0.7 - resolution: "object.fromentries@npm:2.0.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - checksum: 7341ce246e248b39a431b87a9ddd331ff52a454deb79afebc95609f94b1f8238966cf21f52188f2a353f0fdf83294f32f1ebf1f7826aae915ebad21fd0678065 - languageName: node - linkType: hard - -"object.groupby@npm:^1.0.1": - version: 1.0.1 - resolution: "object.groupby@npm:1.0.1" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - get-intrinsic: ^1.2.1 - checksum: d7959d6eaaba358b1608066fc67ac97f23ce6f573dc8fc661f68c52be165266fcb02937076aedb0e42722fdda0bdc0bbf74778196ac04868178888e9fd3b78b5 - languageName: node - linkType: hard - -"object.values@npm:^1.1.7": - version: 1.1.7 - resolution: "object.values@npm:1.1.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - checksum: f3e4ae4f21eb1cc7cebb6ce036d4c67b36e1c750428d7b7623c56a0db90edced63d08af8a316d81dfb7c41a3a5fa81b05b7cc9426e98d7da986b1682460f0777 - languageName: node - linkType: hard - -"on-finished@npm:2.4.1": - version: 2.4.1 - resolution: "on-finished@npm:2.4.1" - dependencies: - ee-first: 1.1.1 - checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 - languageName: node - linkType: hard - -"once@npm:^1.3.0": - version: 1.4.0 - resolution: "once@npm:1.4.0" - dependencies: - wrappy: 1 - checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 - languageName: node - linkType: hard - -"optionator@npm:^0.9.3": - version: 0.9.3 - resolution: "optionator@npm:0.9.3" - dependencies: - "@aashutoshrathi/word-wrap": ^1.2.3 - deep-is: ^0.1.3 - fast-levenshtein: ^2.0.6 - levn: ^0.4.1 - prelude-ls: ^1.2.1 - type-check: ^0.4.0 - checksum: 09281999441f2fe9c33a5eeab76700795365a061563d66b098923eb719251a42bdbe432790d35064d0816ead9296dbeb1ad51a733edf4167c96bd5d0882e428a - languageName: node - linkType: hard - -"ordered-binary@npm:^1.2.4": - version: 1.2.5 - resolution: "ordered-binary@npm:1.2.5" - checksum: fd0f1322a67064fa7e35bada142b05c50442976907e834a0c4d19b64aa621cd6941fc3d0f87eede91359ace9a932119f3c2248eb43fd52e6103ba1210aa3c506 - languageName: node - linkType: hard - -"ordered-binary@npm:^1.4.1": - version: 1.4.1 - resolution: "ordered-binary@npm:1.4.1" - checksum: 274940b4ef983562e11371c84415c265432a4e1337ab85f8e7669eeab6afee8f655c6c12ecee1cd121aaf399c32f5c781b0d50e460bd42da004eba16dcc66574 - languageName: node - linkType: hard - -"p-limit@npm:^3.0.2": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: ^0.1.0 - checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 - languageName: node - linkType: hard - -"p-locate@npm:^5.0.0": - version: 5.0.0 - resolution: "p-locate@npm:5.0.0" - dependencies: - p-limit: ^3.0.2 - checksum: 1623088f36cf1cbca58e9b61c4e62bf0c60a07af5ae1ca99a720837356b5b6c5ba3eb1b2127e47a06865fee59dd0453cad7cc844cda9d5a62ac1a5a51b7c86d3 - languageName: node - linkType: hard - -"p-map@npm:^4.0.0": - version: 4.0.0 - resolution: "p-map@npm:4.0.0" - dependencies: - aggregate-error: ^3.0.0 - checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c - languageName: node - linkType: hard - -"parcel@npm:2.12.0": - version: 2.12.0 - resolution: "parcel@npm:2.12.0" - dependencies: - "@parcel/config-default": 2.12.0 - "@parcel/core": 2.12.0 - "@parcel/diagnostic": 2.12.0 - "@parcel/events": 2.12.0 - "@parcel/fs": 2.12.0 - "@parcel/logger": 2.12.0 - "@parcel/package-manager": 2.12.0 - "@parcel/reporter-cli": 2.12.0 - "@parcel/reporter-dev-server": 2.12.0 - "@parcel/reporter-tracer": 2.12.0 - "@parcel/utils": 2.12.0 - chalk: ^4.1.0 - commander: ^7.0.0 - get-port: ^4.2.0 - bin: - parcel: lib/bin.js - checksum: d8e6cb690a26999e4b9be0f433d5b72060fdfbb22a9aae26b4705f7eaf3983906ba719e41a5ed102ca617135823931a6559d08a11fb48cdfea7ac333e9aebaef - languageName: node - linkType: hard - -"parent-module@npm:^1.0.0": - version: 1.0.1 - resolution: "parent-module@npm:1.0.1" - dependencies: - callsites: ^3.0.0 - checksum: 6ba8b255145cae9470cf5551eb74be2d22281587af787a2626683a6c20fbb464978784661478dd2a3f1dad74d1e802d403e1b03c1a31fab310259eec8ac560ff - languageName: node - linkType: hard - -"parse-json@npm:^5.0.0": - version: 5.2.0 - resolution: "parse-json@npm:5.2.0" - 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 - checksum: 62085b17d64da57f40f6afc2ac1f4d95def18c4323577e1eced571db75d9ab59b297d1d10582920f84b15985cbfc6b6d450ccbf317644cfa176f3ed982ad87e2 - languageName: node - linkType: hard - -"path-exists@npm:^4.0.0": - version: 4.0.0 - resolution: "path-exists@npm:4.0.0" - checksum: 505807199dfb7c50737b057dd8d351b82c033029ab94cb10a657609e00c1bc53b951cfdbccab8de04c5584d5eff31128ce6afd3db79281874a5ef2adbba55ed1 - languageName: node - linkType: hard - -"path-is-absolute@npm:^1.0.0": - version: 1.0.1 - resolution: "path-is-absolute@npm:1.0.1" - checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 - languageName: node - linkType: hard - -"path-key@npm:^3.1.0": - version: 3.1.1 - resolution: "path-key@npm:3.1.1" - checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 - languageName: node - linkType: hard - -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a - languageName: node - linkType: hard - -"path-scurry@npm:^1.7.0": - version: 1.9.1 - resolution: "path-scurry@npm:1.9.1" - dependencies: - lru-cache: ^9.1.1 - minipass: ^5.0.0 || ^6.0.0 - checksum: 28caa788f17cc48e1a16b552bc08ba4ec57345bd18df7b9d58589bd83271e5bf932929467353f53ff66eb3bf056eb28d8f9b379525ee37e3f603169257542694 - languageName: node - linkType: hard - -"path-type@npm:^4.0.0": - version: 4.0.0 - resolution: "path-type@npm:4.0.0" - checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 - languageName: node - linkType: hard - -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 - languageName: node - linkType: hard - -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1": - version: 2.3.1 - resolution: "picomatch@npm:2.3.1" - checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf - languageName: node - linkType: hard - -"pinia-plugin-persist@npm:1.0.0": - version: 1.0.0 - resolution: "pinia-plugin-persist@npm:1.0.0" - dependencies: - vue-demi: ^0.12.1 - peerDependencies: - "@vue/composition-api": ^1.0.0 - pinia: ^2.0.0 - vue: ^2.0.0 || >=3.0.0 - peerDependenciesMeta: - "@vue/composition-api": - optional: true - checksum: 49335d720751d00e990bdb4e0a8a90a67c617b4402a55c7427bfdb2f2b60bdb5a75745d94cc7aa227eb41248fb8ca5c607816d2d482878e3a0113b8cd32fdc2e - languageName: node - linkType: hard - -"pinia@npm:2.1.7": - version: 2.1.7 - resolution: "pinia@npm:2.1.7" - dependencies: - "@vue/devtools-api": ^6.5.0 - vue-demi: ">=0.14.5" - peerDependencies: - "@vue/composition-api": ^1.4.0 - typescript: ">=4.4.4" - vue: ^2.6.14 || ^3.3.0 - peerDependenciesMeta: - "@vue/composition-api": - optional: true - typescript: - optional: true - checksum: 1b7882aab2828ad209d3e76e06918c8811d04699c9308d372094cde6df485d7e7785f25a3bb5c6a3724aeaee3fb0082fae03c41a6657acd3486c7965a0a09d34 - languageName: node - linkType: hard - -"postcss-selector-parser@npm:^6.0.15": - version: 6.0.15 - resolution: "postcss-selector-parser@npm:6.0.15" - dependencies: - cssesc: ^3.0.0 - util-deprecate: ^1.0.2 - checksum: 57decb94152111004f15e27b9c61131eb50ee10a3288e7fcf424cebbb4aba82c2817517ae718f8b5d704ee9e02a638d4a2acff8f47685c295a33ecee4fd31055 - languageName: node - linkType: hard - -"postcss-value-parser@npm:^4.2.0": - version: 4.2.0 - resolution: "postcss-value-parser@npm:4.2.0" - checksum: 819ffab0c9d51cf0acbabf8996dffbfafbafa57afc0e4c98db88b67f2094cb44488758f06e5da95d7036f19556a4a732525e84289a425f4f6fd8e412a9d7442f - languageName: node - linkType: hard - -"postcss@npm:^8.4.27": - version: 8.4.33 - resolution: "postcss@npm:8.4.33" - dependencies: - nanoid: ^3.3.7 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: 6f98b2af4b76632a3de20c4f47bf0e984a1ce1a531cf11adcb0b1d63a6cbda0aae4165e578b66c32ca4879038e3eaad386a6be725a8fb4429c78e3c1ab858fe9 - languageName: node - linkType: hard - -"postcss@npm:^8.4.35": - version: 8.4.35 - resolution: "postcss@npm:8.4.35" - dependencies: - nanoid: ^3.3.7 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: cf3c3124d3912a507603f6d9a49b3783f741075e9aa73eb592a6dd9194f9edab9d20a8875d16d137d4f779fe7b6fbd1f5727e39bfd1c3003724980ee4995e1da - languageName: node - linkType: hard - -"posthtml-parser@npm:^0.10.1": - version: 0.10.2 - resolution: "posthtml-parser@npm:0.10.2" - dependencies: - htmlparser2: ^7.1.1 - checksum: 63ec8e8631031f7879cada68ad165436ad6142eedd6ed9cb19b28c87848985819d50104d73a182a5205e7083e93131b68196c13c32cea12c0e225c7400591432 - languageName: node - linkType: hard - -"posthtml-parser@npm:^0.11.0": - version: 0.11.0 - resolution: "posthtml-parser@npm:0.11.0" - dependencies: - htmlparser2: ^7.1.1 - checksum: 37dca546a04dc2ddc936a629596edccc9e439a7f6ad503dae5165ea197ddc53f102e69259719a49ecd491e01b093b95c96287c38101f985b78a846c05a206b3c - languageName: node - linkType: hard - -"posthtml-render@npm:^3.0.0": - version: 3.0.0 - resolution: "posthtml-render@npm:3.0.0" - dependencies: - is-json: ^2.0.1 - checksum: 5ed2d6e8813af63c4e5a2d9d026f611fd178c9052a16b302a6e0e81d1badb64dab36e3fc1531b5bdd376465f39d19a6488299b3c6dfe13beae3dd525ff856573 - languageName: node - linkType: hard - -"posthtml@npm:^0.16.4, posthtml@npm:^0.16.5": - version: 0.16.6 - resolution: "posthtml@npm:0.16.6" - dependencies: - posthtml-parser: ^0.11.0 - posthtml-render: ^3.0.0 - checksum: 8b9b9d27bd2417d6b5b7d408000b23316c3c4d2a2d0ea62080a8fbec5654cc7376ea9d6317b290c030d616142144a8ca0a96ffe1e919493e3eac17442d362596 - languageName: node - linkType: hard - -"preact@npm:~10.12.1": - version: 10.12.1 - resolution: "preact@npm:10.12.1" - checksum: 0de99f477563ab7f94a0f964952ad216375973c0dcd9eb49881f8eb5effc5ed6948da062548c87d5bb0d82f1a1e516b649020e760eab3a0503dfdd8e64d34a26 - languageName: node - linkType: hard - -"prelude-ls@npm:^1.2.1": - version: 1.2.1 - resolution: "prelude-ls@npm:1.2.1" - checksum: cd192ec0d0a8e4c6da3bb80e4f62afe336df3f76271ac6deb0e6a36187133b6073a19e9727a1ff108cd8b9982e4768850d413baa71214dd80c7979617dca827a - languageName: node - linkType: hard - -"promise-inflight@npm:^1.0.1": - version: 1.0.1 - resolution: "promise-inflight@npm:1.0.1" - checksum: 22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981 - languageName: node - linkType: hard - -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: ^2.0.2 - retry: ^0.12.0 - checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 - languageName: node - linkType: hard - -"promise@npm:^7.0.1": - version: 7.3.1 - resolution: "promise@npm:7.3.1" - dependencies: - asap: ~2.0.3 - checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 - languageName: node - linkType: hard - -"prompts@npm:^2.0.0": - version: 2.4.2 - resolution: "prompts@npm:2.4.2" - dependencies: - kleur: ^3.0.3 - sisteransi: ^1.0.5 - checksum: d8fd1fe63820be2412c13bfc5d0a01909acc1f0367e32396962e737cb2fc52d004f3302475d5ce7d18a1e8a79985f93ff04ee03007d091029c3f9104bffc007d - languageName: node - linkType: hard - -"pug-attrs@npm:^3.0.0": - version: 3.0.0 - resolution: "pug-attrs@npm:3.0.0" - dependencies: - constantinople: ^4.0.1 - js-stringify: ^1.0.2 - pug-runtime: ^3.0.0 - checksum: 2ca2d34de3065239f01f0fc3c0e104c17f7a7105684d088bb71df623005a45f40a2301e65f49ec4581bb31794c74e691862643d4e34062d1509e92fa56a15aa5 - languageName: node - linkType: hard - -"pug-code-gen@npm:^3.0.2": - version: 3.0.2 - resolution: "pug-code-gen@npm:3.0.2" - dependencies: - constantinople: ^4.0.1 - doctypes: ^1.1.0 - js-stringify: ^1.0.2 - pug-attrs: ^3.0.0 - pug-error: ^2.0.0 - pug-runtime: ^3.0.0 - void-elements: ^3.1.0 - with: ^7.0.0 - checksum: 1644d3a4d673392794248749eb146299704639a8197746454b7d03b240b83ee102f25b76d203381501e283be3927ab01eb3f4563ff51c45a478de1f3435a400d - languageName: node - linkType: hard - -"pug-error@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-error@npm:2.0.0" - checksum: c5372d018c897c1d6a141dd803c50957feecfda1f3d84a6adc6149801315d6c7f8c28b05f3e186d98d774fc9718699d1e1caa675630dd3c4453f8c5ec4e4a986 - languageName: node - linkType: hard - -"pug-filters@npm:^4.0.0": - version: 4.0.0 - resolution: "pug-filters@npm:4.0.0" - dependencies: - constantinople: ^4.0.1 - jstransformer: 1.0.0 - pug-error: ^2.0.0 - pug-walk: ^2.0.0 - resolve: ^1.15.1 - checksum: 44eb3273195e3f42f034ad81109452236377780557eaf5a28db6e478f297675e19b8598cca9de65a0ba9c1d57e2ca2a93e332f0ab4be79dc5dd042375228cdff - languageName: node - linkType: hard - -"pug-lexer@npm:^5.0.1": - version: 5.0.1 - resolution: "pug-lexer@npm:5.0.1" - dependencies: - character-parser: ^2.2.0 - is-expression: ^4.0.0 - pug-error: ^2.0.0 - checksum: afdd2f43f2c3ba96001a7b734c0c3bc745eb5d7dd68c787c2690c606d34573ca46ba807e4b4c7e70db9b4556fb938625dbb9c25b79cdb8857868e6deb2574d3e - languageName: node - linkType: hard - -"pug-linker@npm:^4.0.0": - version: 4.0.0 - resolution: "pug-linker@npm:4.0.0" - dependencies: - pug-error: ^2.0.0 - pug-walk: ^2.0.0 - checksum: 7433aa65181cd5b7bc631ab5f14baae7496fd8da98608cbd55bbea9bc72fe69a863e72026781a9fe76ab429d7037465b942145455420ee1178e2875ec87a1e12 - languageName: node - linkType: hard - -"pug-load@npm:^3.0.0": - version: 3.0.0 - resolution: "pug-load@npm:3.0.0" - dependencies: - object-assign: ^4.1.1 - pug-walk: ^2.0.0 - checksum: 1800ec51994c92338401bcf79bbfa0d5ef9aa312bc415c2618263d6c04d1d7c5be5ac4a333c47a0eaa823f6231b4ade1a1c40f5784b99eb576d25853597bff2f - languageName: node - linkType: hard - -"pug-parser@npm:^6.0.0": - version: 6.0.0 - resolution: "pug-parser@npm:6.0.0" - dependencies: - pug-error: ^2.0.0 - token-stream: 1.0.0 - checksum: a6954d1383601233ec9d58e8fb22339f4809cf938272db16c551d8574566f388af3bf5560ec95ad5e23902bc358e6fa857409e840de4ed1ff5120a1dd6892cca - languageName: node - linkType: hard - -"pug-runtime@npm:^3.0.0, pug-runtime@npm:^3.0.1": - version: 3.0.1 - resolution: "pug-runtime@npm:3.0.1" - checksum: 48a71b587caa08a5bccf9c1164206a34067edc1d13c2164bebad2dc562b529317578f889a0c41f0e16ddab3853c599696ff29a085f2d4554b783228f0002c41b - languageName: node - linkType: hard - -"pug-strip-comments@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-strip-comments@npm:2.0.0" - dependencies: - pug-error: ^2.0.0 - checksum: 2cfcbf506c14bb3e64204a1d93f12ca61658d2540475b0f0911c35531ad28421e8d1e73a646d841d58cfa2c20f8593c52e492dfe5b6bec968e20b614e4dea1e4 - languageName: node - linkType: hard - -"pug-walk@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-walk@npm:2.0.0" - checksum: bee64e133b711e1ed58022c0869b59e62f9f3ebb7084293857f074120b3cb588e7b8f74c4566426bf2b26dc1ec176ca6b64a2d1e53782f3fbbe039c5d4816638 - languageName: node - linkType: hard - -"pug@npm:3.0.2": - version: 3.0.2 - resolution: "pug@npm:3.0.2" - dependencies: - pug-code-gen: ^3.0.2 - pug-filters: ^4.0.0 - pug-lexer: ^5.0.1 - pug-linker: ^4.0.0 - pug-load: ^3.0.0 - pug-parser: ^6.0.0 - pug-runtime: ^3.0.1 - pug-strip-comments: ^2.0.0 - checksum: 3e1a3d48897c0c7dedd4f959ce8afaf6417a63756b149e1b5382bef16de5792ec7c7ae6a7d41641059cb149520f20b0d1ecf57014c0661526e96f0bad88541e5 - languageName: node - linkType: hard - -"punycode@npm:^2.1.0": - version: 2.1.1 - resolution: "punycode@npm:2.1.1" - checksum: 823bf443c6dd14f669984dea25757b37993f67e8d94698996064035edd43bed8a5a17a9f12e439c2b35df1078c6bec05a6c86e336209eb1061e8025c481168e8 - languageName: node - linkType: hard - -"queue-microtask@npm:^1.2.2": - version: 1.2.3 - resolution: "queue-microtask@npm:1.2.3" - checksum: b676f8c040cdc5b12723ad2f91414d267605b26419d5c821ff03befa817ddd10e238d22b25d604920340fd73efd8ba795465a0377c4adf45a4a41e4234e42dc4 - languageName: node - linkType: hard - -"range-parser@npm:~1.2.1": - version: 1.2.1 - resolution: "range-parser@npm:1.2.1" - checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9 - languageName: node - linkType: hard - -"react-error-overlay@npm:6.0.9": - version: 6.0.9 - resolution: "react-error-overlay@npm:6.0.9" - checksum: 695853bc885e798008a00c10d8d94e5ac91626e8130802fea37345f9c037f41b80104345db2ee87f225feb4a4ef71b0df572b17c378a6d397b6815f6d4a84293 - languageName: node - linkType: hard - -"react-refresh@npm:^0.9.0": - version: 0.9.0 - resolution: "react-refresh@npm:0.9.0" - checksum: 6440146176f19402ffb7d66f317e40b1c42c88579b4d439b49021e38be6307c642da3e8732a72e6997b6bb1127db0da92f4aa433da4313ce8ebad0c1efa2ed4a - languageName: node - linkType: hard - -"readable-stream@npm:^3.6.0": - version: 3.6.0 - resolution: "readable-stream@npm:3.6.0" - dependencies: - inherits: ^2.0.3 - string_decoder: ^1.1.1 - util-deprecate: ^1.0.1 - checksum: d4ea81502d3799439bb955a3a5d1d808592cf3133350ed352aeaa499647858b27b1c4013984900238b0873ec8d0d8defce72469fb7a83e61d53f5ad61cb80dc8 - languageName: node - linkType: hard - -"readdirp@npm:~3.6.0": - version: 3.6.0 - resolution: "readdirp@npm:3.6.0" - dependencies: - picomatch: ^2.2.1 - checksum: 1ced032e6e45670b6d7352d71d21ce7edf7b9b928494dcaba6f11fba63180d9da6cd7061ebc34175ffda6ff529f481818c962952004d273178acd70f7059b320 - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.13.7": - version: 0.13.9 - resolution: "regenerator-runtime@npm:0.13.9" - checksum: 65ed455fe5afd799e2897baf691ca21c2772e1a969d19bb0c4695757c2d96249eb74ee3553ea34a91062b2a676beedf630b4c1551cc6299afb937be1426ec55e - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.14.0": - version: 0.14.0 - resolution: "regenerator-runtime@npm:0.14.0" - checksum: 1c977ad82a82a4412e4f639d65d22be376d3ebdd30da2c003eeafdaaacd03fc00c2320f18120007ee700900979284fc78a9f00da7fb593f6e6eeebc673fba9a3 - languageName: node - linkType: hard - -"regexp.prototype.flags@npm:^1.5.1": - version: 1.5.1 - resolution: "regexp.prototype.flags@npm:1.5.1" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - set-function-name: ^2.0.0 - checksum: 869edff00288442f8d7fa4c9327f91d85f3b3acf8cbbef9ea7a220345cf23e9241b6def9263d2c1ebcf3a316b0aa52ad26a43a84aa02baca3381717b3e307f47 - languageName: node - linkType: hard - -"regexpp@npm:^3.0.0": - version: 3.2.0 - resolution: "regexpp@npm:3.2.0" - checksum: a78dc5c7158ad9ddcfe01aa9144f46e192ddbfa7b263895a70a5c6c73edd9ce85faf7c0430e59ac38839e1734e275b9c3de5c57ee3ab6edc0e0b1bdebefccef8 - languageName: node - linkType: hard - -"require-directory@npm:^2.1.1": - version: 2.1.1 - resolution: "require-directory@npm:2.1.1" - checksum: fb47e70bf0001fdeabdc0429d431863e9475e7e43ea5f94ad86503d918423c1543361cc5166d713eaa7029dd7a3d34775af04764bebff99ef413111a5af18c80 - languageName: node - linkType: hard - -"require-from-string@npm:^2.0.2": - version: 2.0.2 - resolution: "require-from-string@npm:2.0.2" - checksum: a03ef6895445f33a4015300c426699bc66b2b044ba7b670aa238610381b56d3f07c686251740d575e22f4c87531ba662d06937508f0f3c0f1ddc04db3130560b - languageName: node - linkType: hard - -"resolve-from@npm:^4.0.0": - version: 4.0.0 - resolution: "resolve-from@npm:4.0.0" - checksum: f4ba0b8494846a5066328ad33ef8ac173801a51739eb4d63408c847da9a2e1c1de1e6cbbf72699211f3d13f8fc1325648b169bd15eb7da35688e30a5fb0e4a7f - languageName: node - linkType: hard - -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 1012afc566b3fdb190a6309cc37ef3b2dcc35dff5fa6683a9d00cd25c3247edfbc4691b91078c97adc82a29b77a2660c30d791d65dab4fc78bfc473f60289977 - languageName: node - linkType: hard - -"resolve@npm:^1.10.1, resolve@npm:^1.15.1": - version: 1.22.0 - resolution: "resolve@npm:1.22.0" - dependencies: - is-core-module: ^2.8.1 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: a2d14cc437b3a23996f8c7367eee5c7cf8149c586b07ca2ae00e96581ce59455555a1190be9aa92154785cf9f2042646c200d0e00e0bbd2b8a995a93a0ed3e4e - languageName: node - linkType: hard - -"resolve@npm:^1.22.2": - version: 1.22.3 - resolution: "resolve@npm:1.22.3" - dependencies: - is-core-module: ^2.12.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: fb834b81348428cb545ff1b828a72ea28feb5a97c026a1cf40aa1008352c72811ff4d4e71f2035273dc536dcfcae20c13604ba6283c612d70fa0b6e44519c374 - languageName: node - linkType: hard - -"resolve@npm:^1.22.4": - version: 1.22.8 - resolution: "resolve@npm:1.22.8" - dependencies: - is-core-module: ^2.13.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: f8a26958aa572c9b064562750b52131a37c29d072478ea32e129063e2da7f83e31f7f11e7087a18225a8561cfe8d2f0df9dbea7c9d331a897571c0a2527dbb4c - languageName: node - linkType: hard - -"resolve@patch:resolve@^1.10.1#~builtin, resolve@patch:resolve@^1.15.1#~builtin": - version: 1.22.0 - resolution: "resolve@patch:resolve@npm%3A1.22.0#~builtin::version=1.22.0&hash=07638b" - dependencies: - is-core-module: ^2.8.1 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: c79ecaea36c872ee4a79e3db0d3d4160b593f2ca16e031d8283735acd01715a203607e9ded3f91f68899c2937fa0d49390cddbe0fb2852629212f3cda283f4a7 - languageName: node - linkType: hard - -"resolve@patch:resolve@^1.22.2#~builtin": - version: 1.22.3 - resolution: "resolve@patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b" - dependencies: - is-core-module: ^2.12.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: ad59734723b596d0891321c951592ed9015a77ce84907f89c9d9307dd0c06e11a67906a3e628c4cae143d3e44898603478af0ddeb2bba3f229a9373efe342665 - languageName: node - linkType: hard - -"resolve@patch:resolve@^1.22.4#~builtin": - version: 1.22.8 - resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b" - dependencies: - is-core-module: ^2.13.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: 5479b7d431cacd5185f8db64bfcb7286ae5e31eb299f4c4f404ad8aa6098b77599563ac4257cb2c37a42f59dfc06a1bec2bcf283bb448f319e37f0feb9a09847 - languageName: node - linkType: hard - -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c - languageName: node - linkType: hard - -"reusify@npm:^1.0.4": - version: 1.0.4 - resolution: "reusify@npm:1.0.4" - checksum: c3076ebcc22a6bc252cb0b9c77561795256c22b757f40c0d8110b1300723f15ec0fc8685e8d4ea6d7666f36c79ccc793b1939c748bf36f18f542744a4e379fcc - languageName: node - linkType: hard - -"rimraf@npm:^3.0.2": - version: 3.0.2 - resolution: "rimraf@npm:3.0.2" - dependencies: - glob: ^7.1.3 - bin: - rimraf: bin.js - checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 - languageName: node - linkType: hard - -"robust-predicates@npm:^3.0.0": - version: 3.0.1 - resolution: "robust-predicates@npm:3.0.1" - checksum: 45e9de2df4380da84a2a561d4fd54ea92194e878b93ed19d5e4bc90f4e834a13755e846c8516bab8360190309696f0564a0150386c52ef01f70f2b388449dac5 - languageName: node - linkType: hard - -"rollup@npm:^3.27.1": - version: 3.29.4 - resolution: "rollup@npm:3.29.4" - dependencies: - fsevents: ~2.3.2 - dependenciesMeta: - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: 8bb20a39c8d91130825159c3823eccf4dc2295c9a0a5c4ed851a5bf2167dbf24d9a29f23461a54c955e5506395e6cc188eafc8ab0e20399d7489fb33793b184e - languageName: node - linkType: hard - -"root-workspace-0b6124@workspace:.": - version: 0.0.0-use.local - resolution: "root-workspace-0b6124@workspace:." - dependencies: - "@fullcalendar/bootstrap5": 6.1.11 - "@fullcalendar/core": 6.1.11 - "@fullcalendar/daygrid": 6.1.11 - "@fullcalendar/icalendar": 6.1.11 - "@fullcalendar/interaction": 6.1.11 - "@fullcalendar/list": 6.1.11 - "@fullcalendar/luxon3": 6.1.11 - "@fullcalendar/timegrid": 6.1.11 - "@fullcalendar/vue3": 6.1.11 - "@kurkle/color": 0.3.1 - "@parcel/optimizer-data-url": 2.12.0 - "@parcel/transformer-inline-string": 2.12.0 - "@parcel/transformer-sass": 2.12.0 - "@popperjs/core": 2.11.8 - "@rollup/pluginutils": 5.1.0 - "@twuni/emojify": 1.0.2 - "@vitejs/plugin-vue": 4.6.2 - "@vue/language-plugin-pug": 2.0.7 - bootstrap: 5.3.3 - bootstrap-icons: 1.11.3 - browser-fs-access: 0.35.0 - browserlist: latest - c8: 9.1.0 - caniuse-lite: 1.0.30001603 - chart.js: ^4.5.1 - chartjs-plugin-zoom: 2.2.0 - d3: 7.9.0 - eslint: 8.57.0 - eslint-config-standard: 17.1.0 - eslint-plugin-cypress: 2.15.1 - eslint-plugin-import: 2.29.1 - eslint-plugin-n: 16.6.2 - eslint-plugin-node: 11.1.0 - eslint-plugin-promise: 6.1.1 - eslint-plugin-vue: 9.24.0 - file-saver: 2.0.5 - highcharts: 11.4.0 - html-validate: 8.18.1 - ical.js: 1.5.0 - jquery: 3.7.1 - jquery-migrate: 3.4.1 - js-cookie: 3.0.5 - list.js: 2.3.1 - lodash: 4.17.21 - lodash-es: 4.17.21 - luxon: 3.4.4 - moment: 2.30.1 - moment-timezone: 0.5.45 - ms: 2.1.3 - murmurhash-js: 1.0.0 - naive-ui: 2.38.1 - parcel: 2.12.0 - pinia: 2.1.7 - pinia-plugin-persist: 1.0.0 - pug: 3.0.2 - sass: 1.72.0 - seedrandom: 3.0.5 - select2: 4.1.0-rc.0 - select2-bootstrap-5-theme: 1.3.0 - send: 0.18.0 - shepherd.js: 11.2.0 - slugify: 1.6.6 - sortablejs: 1.15.2 - vanillajs-datepicker: 1.3.4 - vite: 4.5.3 - vue: 3.4.21 - vue-router: 4.3.0 - zxcvbn: 4.4.2 - languageName: unknown - linkType: soft - -"run-parallel@npm:^1.1.9": - version: 1.2.0 - resolution: "run-parallel@npm:1.2.0" - dependencies: - queue-microtask: ^1.2.2 - checksum: cb4f97ad25a75ebc11a8ef4e33bb962f8af8516bb2001082ceabd8902e15b98f4b84b4f8a9b222e5d57fc3bd1379c483886ed4619367a7680dad65316993021d - languageName: node - linkType: hard - -"rw@npm:1": - version: 1.3.3 - resolution: "rw@npm:1.3.3" - checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 - languageName: node - linkType: hard - -"safe-array-concat@npm:^1.0.1": - version: 1.0.1 - resolution: "safe-array-concat@npm:1.0.1" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.2.1 - has-symbols: ^1.0.3 - isarray: ^2.0.5 - checksum: 001ecf1d8af398251cbfabaf30ed66e3855127fbceee178179524b24160b49d15442f94ed6c0db0b2e796da76bb05b73bf3cc241490ec9c2b741b41d33058581 - languageName: node - linkType: hard - -"safe-buffer@npm:^5.0.1, safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 - languageName: node - linkType: hard - -"safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - -"safe-regex-test@npm:^1.0.0": - version: 1.0.0 - resolution: "safe-regex-test@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.1.3 - is-regex: ^1.1.4 - checksum: bc566d8beb8b43c01b94e67de3f070fd2781685e835959bbbaaec91cc53381145ca91f69bd837ce6ec244817afa0a5e974fc4e40a2957f0aca68ac3add1ddd34 - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3.0.0": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 - languageName: node - linkType: hard - -"sass@npm:1.72.0": - version: 1.72.0 - resolution: "sass@npm:1.72.0" - dependencies: - chokidar: ">=3.0.0 <4.0.0" - immutable: ^4.0.0 - source-map-js: ">=0.6.2 <2.0.0" - bin: - sass: sass.js - checksum: f420079c7d51660b7256ee52463c1499ede36f7fd5c8ef50c687451777ad641509001454dea45244073cedd7c00e7a3bc1c362e55206ac6686171b994edb41e4 - languageName: node - linkType: hard - -"sass@npm:^1.38.0": - version: 1.52.1 - resolution: "sass@npm:1.52.1" - dependencies: - chokidar: ">=3.0.0 <4.0.0" - immutable: ^4.0.0 - source-map-js: ">=0.6.2 <2.0.0" - bin: - sass: sass.js - checksum: a0508c88b149641202e8fb589f731e0cb09a15650128dfee6d0d1ee4a868cb57f1e71575535ccd72f54c5313b684a8beb208d293402ca8d32084ee1709d9f26d - languageName: node - linkType: hard - -"seedrandom@npm:3.0.5": - version: 3.0.5 - resolution: "seedrandom@npm:3.0.5" - checksum: 728b56bc3bc1b9ddeabd381e449b51cb31bdc0aa86e27fcd0190cea8c44613d5bcb2f6bb63ed79f78180cbe791c20b8ec31a9627f7b7fc7f476fd2bdb7e2da9f - languageName: node - linkType: hard - -"seemly@npm:^0.3.6": - version: 0.3.6 - resolution: "seemly@npm:0.3.6" - checksum: 56d0472d992ff0e679d191941bffd80c1782ebba53cb4435f942431de6e083c50db4784b4d98771c45b704b79ebe17ea34f8cf6b20eda767f363513e1e5c3f08 - languageName: node - linkType: hard - -"seemly@npm:^0.3.8": - version: 0.3.8 - resolution: "seemly@npm:0.3.8" - checksum: 98171fd4d9e3a03f49f695885499883c85cc00b8d88bc4a12576d5069b46ebe269d2dfc58a7e6cec8887bf2b2511d074376eb837c14b476918f9a8706ed5977a - languageName: node - linkType: hard - -"select2-bootstrap-5-theme@npm:1.3.0": - version: 1.3.0 - resolution: "select2-bootstrap-5-theme@npm:1.3.0" - dependencies: - bootstrap: ^5.1.3 - checksum: 248a8698352109c33c462d4f08d1f6afd31d633a36c854a89b37719b6927d07b14f0909214db780ad779ae461bb6e48587fdb74f71f0ee6731981fb9aa668364 - languageName: node - linkType: hard - -"select2@npm:4.1.0-rc.0": - version: 4.1.0-rc.0 - resolution: "select2@npm:4.1.0-rc.0" - checksum: c27cefc3967d2082b2887869e8379f6e8e0ec2e02a268b7abbaec87fbda20abe4d62ac008b87a14f17bfa46dd27aa0b33ee793ed30142e3bc30ba408e208ad20 - languageName: node - linkType: hard - -"semver@npm:^5.7.1": - version: 5.7.1 - resolution: "semver@npm:5.7.1" - bin: - semver: ./bin/semver - checksum: 57fd0acfd0bac382ee87cd52cd0aaa5af086a7dc8d60379dfe65fea491fb2489b6016400813930ecd61fd0952dae75c115287a1b16c234b1550887117744dfaf - languageName: node - linkType: hard - -"semver@npm:^6.0.0, semver@npm:^6.1.0, semver@npm:^6.3.0": - version: 6.3.0 - resolution: "semver@npm:6.3.0" - bin: - semver: ./bin/semver.js - checksum: 1b26ecf6db9e8292dd90df4e781d91875c0dcc1b1909e70f5d12959a23c7eebb8f01ea581c00783bbee72ceeaad9505797c381756326073850dc36ed284b21b9 - languageName: node - linkType: hard - -"semver@npm:^6.3.1": - version: 6.3.1 - resolution: "semver@npm:6.3.1" - bin: - semver: bin/semver.js - checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 - languageName: node - linkType: hard - -"semver@npm:^7.0.0, semver@npm:^7.3.5, semver@npm:^7.3.6": - version: 7.3.7 - resolution: "semver@npm:7.3.7" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 2fa3e877568cd6ce769c75c211beaed1f9fce80b28338cadd9d0b6c40f2e2862bafd62c19a6cff42f3d54292b7c623277bcab8816a2b5521cf15210d43e75232 - languageName: node - linkType: hard - -"semver@npm:^7.5.2": - version: 7.5.4 - resolution: "semver@npm:7.5.4" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 - languageName: node - linkType: hard - -"semver@npm:^7.5.3": - version: 7.5.3 - resolution: "semver@npm:7.5.3" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 9d58db16525e9f749ad0a696a1f27deabaa51f66e91d2fa2b0db3de3e9644e8677de3b7d7a03f4c15bc81521e0c3916d7369e0572dbde250d9bedf5194e2a8a7 - languageName: node - linkType: hard - -"semver@npm:^7.6.0": - version: 7.6.0 - resolution: "semver@npm:7.6.0" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 7427f05b70786c696640edc29fdd4bc33b2acf3bbe1740b955029044f80575fc664e1a512e4113c3af21e767154a94b4aa214bf6cd6e42a1f6dba5914e0b208c - languageName: node - linkType: hard - -"send@npm:0.18.0": - version: 0.18.0 - resolution: "send@npm:0.18.0" - 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 - checksum: 74fc07ebb58566b87b078ec63e5a3e41ecd987e4272ba67b7467e86c6ad51bc6b0b0154133b6d8b08a2ddda360464f71382f7ef864700f34844a76c8027817a8 - languageName: node - linkType: hard - -"set-blocking@npm:^2.0.0": - version: 2.0.0 - resolution: "set-blocking@npm:2.0.0" - checksum: 6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02 - languageName: node - linkType: hard - -"set-function-length@npm:^1.1.1": - version: 1.1.1 - resolution: "set-function-length@npm:1.1.1" - dependencies: - define-data-property: ^1.1.1 - get-intrinsic: ^1.2.1 - gopd: ^1.0.1 - has-property-descriptors: ^1.0.0 - checksum: c131d7569cd7e110cafdfbfbb0557249b538477624dfac4fc18c376d879672fa52563b74029ca01f8f4583a8acb35bb1e873d573a24edb80d978a7ee607c6e06 - languageName: node - linkType: hard - -"set-function-name@npm:^2.0.0": - version: 2.0.1 - resolution: "set-function-name@npm:2.0.1" - dependencies: - define-data-property: ^1.0.1 - functions-have-names: ^1.2.3 - has-property-descriptors: ^1.0.0 - checksum: 4975d17d90c40168eee2c7c9c59d023429f0a1690a89d75656306481ece0c3c1fb1ebcc0150ea546d1913e35fbd037bace91372c69e543e51fc5d1f31a9fa126 - languageName: node - linkType: hard - -"setprototypeof@npm:1.2.0": - version: 1.2.0 - resolution: "setprototypeof@npm:1.2.0" - checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89 - languageName: node - linkType: hard - -"shebang-command@npm:^2.0.0": - version: 2.0.0 - resolution: "shebang-command@npm:2.0.0" - dependencies: - shebang-regex: ^3.0.0 - checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa - languageName: node - linkType: hard - -"shebang-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "shebang-regex@npm:3.0.0" - checksum: 1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222 - languageName: node - linkType: hard - -"shepherd.js@npm:11.2.0": - version: 11.2.0 - resolution: "shepherd.js@npm:11.2.0" - dependencies: - "@floating-ui/dom": ^1.5.1 - deepmerge: ^4.3.1 - checksum: 0e71e63e51b25aaec83c835ecbe33227e6e583a204b347357ce70092e0024b6eb546f3d0cfd9ee4ac704f2baa81a37ab1a3c449312f495c73f2eadc1310f6f42 - languageName: node - linkType: hard - -"side-channel@npm:^1.0.4": - version: 1.0.4 - resolution: "side-channel@npm:1.0.4" - dependencies: - call-bind: ^1.0.0 - get-intrinsic: ^1.0.2 - object-inspect: ^1.9.0 - checksum: 351e41b947079c10bd0858364f32bb3a7379514c399edb64ab3dce683933483fc63fb5e4efe0a15a2e8a7e3c436b6a91736ddb8d8c6591b0460a24bb4a1ee245 - languageName: node - linkType: hard - -"signal-exit@npm:^3.0.7": - version: 3.0.7 - resolution: "signal-exit@npm:3.0.7" - checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 - languageName: node - linkType: hard - -"signal-exit@npm:^4.0.1": - version: 4.0.2 - resolution: "signal-exit@npm:4.0.2" - checksum: 41f5928431cc6e91087bf0343db786a6313dd7c6fd7e551dbc141c95bb5fb26663444fd9df8ea47c5d7fc202f60aa7468c3162a9365cbb0615fc5e1b1328fe31 - languageName: node - linkType: hard - -"sisteransi@npm:^1.0.5": - version: 1.0.5 - resolution: "sisteransi@npm:1.0.5" - checksum: aba6438f46d2bfcef94cf112c835ab395172c75f67453fe05c340c770d3c402363018ae1ab4172a1026a90c47eaccf3af7b6ff6fa749a680c2929bd7fa2b37a4 - languageName: node - linkType: hard - -"slugify@npm:1.6.6": - version: 1.6.6 - resolution: "slugify@npm:1.6.6" - checksum: 04773c2d3b7aea8d2a61fa47cc7e5d29ce04e1a96cbaec409da57139df906acb3a449fac30b167d203212c806e73690abd4ff94fbad0a9a7b7ea109a2a638ae9 - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^6.1.1": - version: 6.2.0 - resolution: "socks-proxy-agent@npm:6.2.0" - dependencies: - agent-base: ^6.0.2 - debug: ^4.3.3 - socks: ^2.6.2 - checksum: 6723fd64fb50334e2b340fd0a80fd8488ffc5bc43d85b7cf1d25612044f814dd7d6ea417fd47602159941236f7f4bd15669fa5d7e1f852598a31288e1a43967b - languageName: node - linkType: hard - -"socks@npm:^2.6.2": - version: 2.6.2 - resolution: "socks@npm:2.6.2" - dependencies: - ip: ^1.1.5 - smart-buffer: ^4.2.0 - checksum: dd9194293059d737759d5c69273850ad4149f448426249325c4bea0e340d1cf3d266c3b022694b0dcf5d31f759de23657244c481fc1e8322add80b7985c36b5e - languageName: node - linkType: hard - -"sortablejs@npm:1.15.2": - version: 1.15.2 - resolution: "sortablejs@npm:1.15.2" - checksum: 36b20b144ff5fd2d078aed0eba3349aaef5691e4830ba9a28d69ca023d4583ca15e5eacb3c09c1d9924675388400d1219def1121e514badfb0f41463cc844da7 - languageName: node - linkType: hard - -"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.2": - version: 1.0.2 - resolution: "source-map-js@npm:1.0.2" - checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c - languageName: node - linkType: hard - -"source-map@npm:^0.6.1": - version: 0.6.1 - resolution: "source-map@npm:0.6.1" - checksum: 59ce8640cf3f3124f64ac289012c2b8bd377c238e316fb323ea22fbfe83da07d81e000071d7242cad7a23cd91c7de98e4df8830ec3f133cb6133a5f6e9f67bc2 - languageName: node - linkType: hard - -"srcset@npm:4": - version: 4.0.0 - resolution: "srcset@npm:4.0.0" - checksum: aceb898c9281101ef43bfbf96bf04dfae828e1bf942a45df6fad74ae9f8f0a425f4bca1480e0d22879beb40dd2bc6947e0e1e5f4d307a714666196164bc5769d - languageName: node - linkType: hard - -"ssri@npm:^9.0.0": - version: 9.0.1 - resolution: "ssri@npm:9.0.1" - dependencies: - minipass: ^3.1.1 - checksum: fb58f5e46b6923ae67b87ad5ef1c5ab6d427a17db0bead84570c2df3cd50b4ceb880ebdba2d60726588272890bae842a744e1ecce5bd2a2a582fccd5068309eb - languageName: node - linkType: hard - -"stable@npm:^0.1.8": - version: 0.1.8 - resolution: "stable@npm:0.1.8" - checksum: 2ff482bb100285d16dd75cd8f7c60ab652570e8952c0bfa91828a2b5f646a0ff533f14596ea4eabd48bb7f4aeea408dce8f8515812b975d958a4cc4fa6b9dfeb - languageName: node - linkType: hard - -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb - languageName: node - linkType: hard - -"string-natural-compare@npm:^2.0.2": - version: 2.0.3 - resolution: "string-natural-compare@npm:2.0.3" - checksum: e0f22bb0de432f60e2e33f2b10d2fa9dce557cf982337a1475a136cf250535135912ad066c25341fb56d7047ba175bfa76a2351ddabd79089dc9528ca247ff19 - languageName: node - linkType: hard - -"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: ^8.0.0 - is-fullwidth-code-point: ^3.0.0 - strip-ansi: ^6.0.1 - checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb - languageName: node - linkType: hard - -"string-width@npm:^5.0.1, string-width@npm:^5.1.2": - version: 5.1.2 - resolution: "string-width@npm:5.1.2" - dependencies: - eastasianwidth: ^0.2.0 - emoji-regex: ^9.2.2 - strip-ansi: ^7.0.1 - checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 - languageName: node - linkType: hard - -"string.prototype.trim@npm:^1.2.8": - version: 1.2.8 - resolution: "string.prototype.trim@npm:1.2.8" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - checksum: 49eb1a862a53aba73c3fb6c2a53f5463173cb1f4512374b623bcd6b43ad49dd559a06fb5789bdec771a40fc4d2a564411c0a75d35fb27e76bbe738c211ecff07 - languageName: node - linkType: hard - -"string.prototype.trimend@npm:^1.0.7": - version: 1.0.7 - resolution: "string.prototype.trimend@npm:1.0.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - checksum: 2375516272fd1ba75992f4c4aa88a7b5f3c7a9ca308d963bcd5645adf689eba6f8a04ebab80c33e30ec0aefc6554181a3a8416015c38da0aa118e60ec896310c - languageName: node - linkType: hard - -"string.prototype.trimstart@npm:^1.0.7": - version: 1.0.7 - resolution: "string.prototype.trimstart@npm:1.0.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - es-abstract: ^1.22.1 - checksum: 13d0c2cb0d5ff9e926fa0bec559158b062eed2b68cd5be777ffba782c96b2b492944e47057274e064549b94dd27cf81f48b27a31fee8af5b574cff253e7eb613 - languageName: node - linkType: hard - -"string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: ~5.2.0 - checksum: 8417646695a66e73aefc4420eb3b84cc9ffd89572861fe004e6aeb13c7bc00e2f616247505d2dbbef24247c372f70268f594af7126f43548565c68c117bdeb56 - languageName: node - linkType: hard - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: ^5.0.1 - checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c - languageName: node - linkType: hard - -"strip-ansi@npm:^7.0.1": - version: 7.0.1 - resolution: "strip-ansi@npm:7.0.1" - dependencies: - ansi-regex: ^6.0.1 - checksum: 257f78fa433520e7f9897722731d78599cb3fce29ff26a20a5e12ba4957463b50a01136f37c43707f4951817a75e90820174853d6ccc240997adc5df8f966039 - languageName: node - linkType: hard - -"strip-bom@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-bom@npm:3.0.0" - checksum: 8d50ff27b7ebe5ecc78f1fe1e00fcdff7af014e73cf724b46fb81ef889eeb1015fc5184b64e81a2efe002180f3ba431bdd77e300da5c6685d702780fbf0c8d5b - languageName: node - linkType: hard - -"strip-json-comments@npm:^3.1.1": - version: 3.1.1 - resolution: "strip-json-comments@npm:3.1.1" - checksum: 492f73e27268f9b1c122733f28ecb0e7e8d8a531a6662efbd08e22cccb3f9475e90a1b82cab06a392f6afae6d2de636f977e231296400d0ec5304ba70f166443 - languageName: node - linkType: hard - -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: ^3.0.0 - checksum: 95f6f4ba5afdf92f495b5a912d4abee8dcba766ae719b975c56c084f5004845f6f5a5f7769f52d53f40e21952a6d87411bafe34af4a01e65f9926002e38e1dac - languageName: node - linkType: hard - -"supports-color@npm:^7.1.0": - version: 7.2.0 - resolution: "supports-color@npm:7.2.0" - dependencies: - has-flag: ^4.0.0 - checksum: 3dda818de06ebbe5b9653e07842d9479f3555ebc77e9a0280caf5a14fb877ffee9ed57007c3b78f5a6324b8dbeec648d9e97a24e2ed9fdb81ddc69ea07100f4a - languageName: node - linkType: hard - -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 53b1e247e68e05db7b3808b99b892bd36fb096e6fba213a06da7fab22045e97597db425c724f2bbd6c99a3c295e1e73f3e4de78592289f38431049e1277ca0ae - languageName: node - linkType: hard - -"svgo@npm:^2.4.0": - version: 2.8.0 - resolution: "svgo@npm:2.8.0" - 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 - checksum: b92f71a8541468ffd0b81b8cdb36b1e242eea320bf3c1a9b2c8809945853e9d8c80c19744267eb91cabf06ae9d5fff3592d677df85a31be4ed59ff78534fa420 - languageName: node - linkType: hard - -"tar@npm:^6.1.11, tar@npm:^6.1.2": - version: 6.1.11 - resolution: "tar@npm:6.1.11" - dependencies: - chownr: ^2.0.0 - fs-minipass: ^2.0.0 - minipass: ^3.0.0 - minizlib: ^2.1.1 - mkdirp: ^1.0.3 - yallist: ^4.0.0 - checksum: a04c07bb9e2d8f46776517d4618f2406fb977a74d914ad98b264fc3db0fe8224da5bec11e5f8902c5b9bcb8ace22d95fbe3c7b36b8593b7dfc8391a25898f32f - languageName: node - linkType: hard - -"term-size@npm:^2.2.1": - version: 2.2.1 - resolution: "term-size@npm:2.2.1" - checksum: 1ed981335483babc1e8206f843e06bd2bf89b85f0bf5a9a9d928033a0fcacdba183c03ba7d91814643015543ba002f1339f7112402a21da8f24b6c56b062a5a9 - languageName: node - linkType: hard - -"test-exclude@npm:^6.0.0": - version: 6.0.0 - resolution: "test-exclude@npm:6.0.0" - dependencies: - "@istanbuljs/schema": ^0.1.2 - glob: ^7.1.4 - minimatch: ^3.0.4 - checksum: 3b34a3d77165a2cb82b34014b3aba93b1c4637a5011807557dc2f3da826c59975a5ccad765721c4648b39817e3472789f9b0fa98fc854c5c1c7a1e632aacdc28 - languageName: node - linkType: hard - -"text-table@npm:^0.2.0": - version: 0.2.0 - resolution: "text-table@npm:0.2.0" - checksum: b6937a38c80c7f84d9c11dd75e49d5c44f71d95e810a3250bd1f1797fc7117c57698204adf676b71497acc205d769d65c16ae8fa10afad832ae1322630aef10a - languageName: node - linkType: hard - -"timsort@npm:^0.3.0": - version: 0.3.0 - resolution: "timsort@npm:0.3.0" - checksum: 1a66cb897dacabd7dd7c91b7e2301498ca9e224de2edb9e42d19f5b17c4b6dc62a8d4cbc64f28be82aaf1541cb5a78ab49aa818f42a2989ebe049a64af731e2a - languageName: node - linkType: hard - -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168 - languageName: node - linkType: hard - -"to-regex-range@npm:^5.0.1": - version: 5.0.1 - resolution: "to-regex-range@npm:5.0.1" - dependencies: - is-number: ^7.0.0 - checksum: f76fa01b3d5be85db6a2a143e24df9f60dd047d151062d0ba3df62953f2f697b16fe5dad9b0ac6191c7efc7b1d9dcaa4b768174b7b29da89d4428e64bc0a20ed - languageName: node - linkType: hard - -"toidentifier@npm:1.0.1": - version: 1.0.1 - resolution: "toidentifier@npm:1.0.1" - checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 - languageName: node - linkType: hard - -"token-stream@npm:1.0.0": - version: 1.0.0 - resolution: "token-stream@npm:1.0.0" - checksum: e8adb56f31b813b6157130e7fc2fe14eb60e7cbf7b746e70e8293c7e55664d8e7ad5d93d7ae3aa4cad7fcb2b0aaf59dad6f2fd4ee0269204e55af5b05bc369e2 - languageName: node - linkType: hard - -"treemate@npm:^0.3.11": - version: 0.3.11 - resolution: "treemate@npm:0.3.11" - checksum: 0c6ccbc6c5ce7faf27f5f48669c4734aa93ba4064a77f1324af02779aab6333986f6b32748aafe8de1ba99da8f8d9a027fe9c7c1d5389b4768edb5fc6a77fca2 - languageName: node - linkType: hard - -"tsconfig-paths@npm:^3.15.0": - version: 3.15.0 - resolution: "tsconfig-paths@npm:3.15.0" - dependencies: - "@types/json5": ^0.0.29 - json5: ^1.0.2 - minimist: ^1.2.6 - strip-bom: ^3.0.0 - checksum: 59f35407a390d9482b320451f52a411a256a130ff0e7543d18c6f20afab29ac19fbe55c360a93d6476213cc335a4d76ce90f67df54c4e9037f7d240920832201 - languageName: node - linkType: hard - -"tslib@npm:^2.4.0": - version: 2.4.0 - resolution: "tslib@npm:2.4.0" - checksum: 8c4aa6a3c5a754bf76aefc38026134180c053b7bd2f81338cb5e5ebf96fefa0f417bff221592bf801077f5bf990562f6264fecbc42cd3309b33872cb6fc3b113 - languageName: node - linkType: hard - -"type-check@npm:^0.4.0, type-check@npm:~0.4.0": - version: 0.4.0 - resolution: "type-check@npm:0.4.0" - dependencies: - prelude-ls: ^1.2.1 - checksum: ec688ebfc9c45d0c30412e41ca9c0cdbd704580eb3a9ccf07b9b576094d7b86a012baebc95681999dd38f4f444afd28504cb3a89f2ef16b31d4ab61a0739025a - languageName: node - linkType: hard - -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 4fb3272df21ad1c552486f8a2f8e115c09a521ad7a8db3d56d53718d0c907b62c6e9141ba5f584af3f6830d0872c521357e512381f24f7c44acae583ad517d73 - languageName: node - linkType: hard - -"typed-array-buffer@npm:^1.0.0": - version: 1.0.0 - resolution: "typed-array-buffer@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.2.1 - is-typed-array: ^1.1.10 - checksum: 3e0281c79b2a40cd97fe715db803884301993f4e8c18e8d79d75fd18f796e8cd203310fec8c7fdb5e6c09bedf0af4f6ab8b75eb3d3a85da69328f28a80456bd3 - languageName: node - linkType: hard - -"typed-array-byte-length@npm:^1.0.0": - version: 1.0.0 - resolution: "typed-array-byte-length@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - for-each: ^0.3.3 - has-proto: ^1.0.1 - is-typed-array: ^1.1.10 - checksum: b03db16458322b263d87a702ff25388293f1356326c8a678d7515767ef563ef80e1e67ce648b821ec13178dd628eb2afdc19f97001ceae7a31acf674c849af94 - languageName: node - linkType: hard - -"typed-array-byte-offset@npm:^1.0.0": - version: 1.0.0 - resolution: "typed-array-byte-offset@npm:1.0.0" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - for-each: ^0.3.3 - has-proto: ^1.0.1 - is-typed-array: ^1.1.10 - checksum: 04f6f02d0e9a948a95fbfe0d5a70b002191fae0b8fe0fe3130a9b2336f043daf7a3dda56a31333c35a067a97e13f539949ab261ca0f3692c41603a46a94e960b - languageName: node - linkType: hard - -"typed-array-length@npm:^1.0.4": - version: 1.0.4 - resolution: "typed-array-length@npm:1.0.4" - dependencies: - call-bind: ^1.0.2 - for-each: ^0.3.3 - is-typed-array: ^1.1.9 - checksum: 2228febc93c7feff142b8c96a58d4a0d7623ecde6c7a24b2b98eb3170e99f7c7eff8c114f9b283085cd59dcd2bd43aadf20e25bba4b034a53c5bb292f71f8956 - languageName: node - linkType: hard - -"unbox-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "unbox-primitive@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - has-bigints: ^1.0.2 - has-symbols: ^1.0.3 - which-boxed-primitive: ^1.0.2 - checksum: b7a1cf5862b5e4b5deb091672ffa579aa274f648410009c81cca63fed3b62b610c4f3b773f912ce545bb4e31edc3138975b5bc777fc6e4817dca51affb6380e9 - languageName: node - linkType: hard - -"unique-filename@npm:^1.1.1": - version: 1.1.1 - resolution: "unique-filename@npm:1.1.1" - dependencies: - unique-slug: ^2.0.0 - checksum: cf4998c9228cc7647ba7814e255dec51be43673903897b1786eff2ac2d670f54d4d733357eb08dea969aa5e6875d0e1bd391d668fbdb5a179744e7c7551a6f80 - languageName: node - linkType: hard - -"unique-slug@npm:^2.0.0": - version: 2.0.2 - resolution: "unique-slug@npm:2.0.2" - dependencies: - imurmurhash: ^0.1.4 - checksum: 5b6876a645da08d505dedb970d1571f6cebdf87044cb6b740c8dbb24f0d6e1dc8bdbf46825fd09f994d7cf50760e6f6e063cfa197d51c5902c00a861702eb75a - languageName: node - linkType: hard - -"uri-js@npm:^4.2.2": - version: 4.4.1 - resolution: "uri-js@npm:4.4.1" - dependencies: - punycode: ^2.1.0 - checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 - languageName: node - linkType: hard - -"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 - languageName: node - linkType: hard - -"utility-types@npm:^3.10.0": - version: 3.10.0 - resolution: "utility-types@npm:3.10.0" - checksum: 8f274415c6196ab62883b8bd98c9d2f8829b58016e4269aaa1ebd84184ac5dda7dc2ca45800c0d5e0e0650966ba063bf9a412aaeaea6850ca4440a391283d5c8 - languageName: node - linkType: hard - -"v8-to-istanbul@npm:^9.0.0": - version: 9.0.1 - resolution: "v8-to-istanbul@npm:9.0.1" - dependencies: - "@jridgewell/trace-mapping": ^0.3.12 - "@types/istanbul-lib-coverage": ^2.0.1 - convert-source-map: ^1.6.0 - checksum: a49c34bf0a3af0c11041a3952a2600913904a983bd1bc87148b5c033bc5c1d02d5a13620fcdbfa2c60bc582a2e2970185780f0c844b4c3a220abf405f8af6311 - languageName: node - linkType: hard - -"vanillajs-datepicker@npm:1.3.4": - version: 1.3.4 - resolution: "vanillajs-datepicker@npm:1.3.4" - checksum: 830958f8af5c586ee81ba2b75a76771db425d4eddb68ec08d1b49ac898674376ef3517a0d40eefaf4926a815c23179c54e1637d7327df090f22cdb98056074cf - languageName: node - linkType: hard - -"vdirs@npm:^0.1.4, vdirs@npm:^0.1.8": - version: 0.1.8 - resolution: "vdirs@npm:0.1.8" - dependencies: - evtd: ^0.2.2 - peerDependencies: - vue: ^3.0.11 - checksum: a7be8ccad3e72f2891150d53085b8f924cc9d9a9e474cd58827e81417e8feef7f5a8ecbb00efa7631592bf5b3be0a0fa40da41789fcf18dab2cec2bddd01ea47 - languageName: node - linkType: hard - -"vite@npm:4.5.3": - version: 4.5.3 - resolution: "vite@npm:4.5.3" - dependencies: - esbuild: ^0.18.10 - fsevents: ~2.3.2 - postcss: ^8.4.27 - rollup: ^3.27.1 - peerDependencies: - "@types/node": ">= 14" - less: "*" - lightningcss: ^1.21.0 - sass: "*" - stylus: "*" - sugarss: "*" - terser: ^5.4.0 - dependenciesMeta: - fsevents: - optional: true - peerDependenciesMeta: - "@types/node": - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - bin: - vite: bin/vite.js - checksum: fd3f512ce48ca2a1fe60ad0376283b832de9272725fdbc65064ae9248f792de87b0f27a89573115e23e26784800daca329f8a9234d298ba6f60e808a9c63883c - languageName: node - linkType: hard - -"void-elements@npm:^3.1.0": - version: 3.1.0 - resolution: "void-elements@npm:3.1.0" - checksum: 0390f818107fa8fce55bb0a5c3f661056001c1d5a2a48c28d582d4d847347c2ab5b7f8272314cac58acf62345126b6b09bea623a185935f6b1c3bbce0dfd7f7f - languageName: node - linkType: hard - -"volar-service-html@npm:0.0.34": - version: 0.0.34 - resolution: "volar-service-html@npm:0.0.34" - dependencies: - vscode-html-languageservice: ^5.1.0 - vscode-languageserver-textdocument: ^1.0.11 - vscode-uri: ^3.0.8 - peerDependencies: - "@volar/language-service": ~2.1.0 - peerDependenciesMeta: - "@volar/language-service": - optional: true - checksum: 83b50cd805680c77b5632e9534b23cddb85bf7e0cd425624d474981d173ddf07a66fcce6348f675c9d5c2551df9ae1e58206c2ed1c32052f8a70940fb7f5fe50 - languageName: node - linkType: hard - -"volar-service-pug@npm:0.0.34": - version: 0.0.34 - resolution: "volar-service-pug@npm:0.0.34" - dependencies: - "@volar/language-service": ~2.1.0 - pug-lexer: ^5.0.1 - pug-parser: ^6.0.0 - volar-service-html: 0.0.34 - vscode-html-languageservice: ^5.1.0 - vscode-languageserver-textdocument: ^1.0.11 - checksum: 4691aa1c8ea9039e1b5ce4218445309575c2cb4bc08ad5341a8af6f0db1a60711f26cc905e124c3485cc780eb58b895332fbb6a2ccf427a9d0e08012f2c5ad4a - languageName: node - linkType: hard - -"vooks@npm:^0.2.12, vooks@npm:^0.2.4": - version: 0.2.12 - resolution: "vooks@npm:0.2.12" - dependencies: - evtd: ^0.2.2 - peerDependencies: - vue: ^3.0.0 - checksum: e6841ec5b6cb3938ce3ba0822a209fc4fd9cbb18af7e5034a979f3a80a6f6cfcdadc402bf8992ddffe09a5796c746731b7f6c3366c4a2e8309278f657ae8ea18 - languageName: node - linkType: hard - -"vscode-html-languageservice@npm:^5.1.0": - version: 5.1.2 - resolution: "vscode-html-languageservice@npm:5.1.2" - dependencies: - "@vscode/l10n": ^0.0.18 - vscode-languageserver-textdocument: ^1.0.11 - vscode-languageserver-types: ^3.17.5 - vscode-uri: ^3.0.8 - checksum: 3a2a5ee5ad4ea429e85f4fb8f45da5b47d50541784d703fc9ccd009f68426034a48be6c04f8c420dc7236de07df93ccc28873da3395db5f5626fe169f18f1ac6 - languageName: node - linkType: hard - -"vscode-jsonrpc@npm:8.2.0": - version: 8.2.0 - resolution: "vscode-jsonrpc@npm:8.2.0" - checksum: f302a01e59272adc1ae6494581fa31c15499f9278df76366e3b97b2236c7c53ebfc71efbace9041cfd2caa7f91675b9e56f2407871a1b3c7f760a2e2ee61484a - languageName: node - linkType: hard - -"vscode-languageserver-protocol@npm:^3.17.5": - version: 3.17.5 - resolution: "vscode-languageserver-protocol@npm:3.17.5" - dependencies: - vscode-jsonrpc: 8.2.0 - vscode-languageserver-types: 3.17.5 - checksum: dfb42d276df5dfea728267885b99872ecff62f6c20448b8539fae71bb196b420f5351c5aca7c1047bf8fb1f89fa94a961dce2bc5bf7e726198f4be0bb86a1e71 - languageName: node - linkType: hard - -"vscode-languageserver-textdocument@npm:^1.0.11": - version: 1.0.11 - resolution: "vscode-languageserver-textdocument@npm:1.0.11" - checksum: ea7cdc9d4ffaae5952071fa11d17d714215a76444e6936c9359f94b9ba3222a52a55edb5bd5928bd3e9712b900a9f175bb3565ec1c8923234fe3bd327584bafb - languageName: node - linkType: hard - -"vscode-languageserver-types@npm:3.17.5, vscode-languageserver-types@npm:^3.17.5": - version: 3.17.5 - resolution: "vscode-languageserver-types@npm:3.17.5" - checksum: 79b420e7576398d396579ca3a461c9ed70e78db4403cd28bbdf4d3ed2b66a2b4114031172e51fad49f0baa60a2180132d7cb2ea35aa3157d7af3c325528210ac - languageName: node - linkType: hard - -"vscode-uri@npm:^3.0.8": - version: 3.0.8 - resolution: "vscode-uri@npm:3.0.8" - checksum: 514249126850c0a41a7d8c3c2836cab35983b9dc1938b903cfa253b9e33974c1416d62a00111385adcfa2b98df456437ab704f709a2ecca76a90134ef5eb4832 - languageName: node - linkType: hard - -"vue-demi@npm:>=0.14.5": - version: 0.14.5 - resolution: "vue-demi@npm:0.14.5" - peerDependencies: - "@vue/composition-api": ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - "@vue/composition-api": - optional: true - bin: - vue-demi-fix: bin/vue-demi-fix.js - vue-demi-switch: bin/vue-demi-switch.js - checksum: ff44b9372b8224590514252a2f73363cced6062205f9628a6b130dccb80e2023d55cd9d1da94aeb68d5539b7ea9eedcecf88ab281a3a9ff48b8db4c5366b9643 - languageName: node - linkType: hard - -"vue-demi@npm:^0.12.1": - version: 0.12.5 - resolution: "vue-demi@npm:0.12.5" - peerDependencies: - "@vue/composition-api": ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - "@vue/composition-api": - optional: true - bin: - vue-demi-fix: bin/vue-demi-fix.js - vue-demi-switch: bin/vue-demi-switch.js - checksum: 40a0470caea8312e0d4df2541f141c36c768dfc7f2f7d41f0f28ba29df11d3119e2f09b94c815f13b7c7f3f45dbc247b0e9e0c02a1800e2823e241c1d771e39b - languageName: node - linkType: hard - -"vue-eslint-parser@npm:^9.4.2": - version: 9.4.2 - resolution: "vue-eslint-parser@npm:9.4.2" - dependencies: - debug: ^4.3.4 - eslint-scope: ^7.1.1 - eslint-visitor-keys: ^3.3.0 - espree: ^9.3.1 - esquery: ^1.4.0 - lodash: ^4.17.21 - semver: ^7.3.6 - peerDependencies: - eslint: ">=6.0.0" - checksum: 67f14c8ea19b578077a878864a5ec438ab4c597381923c9814fac39b3772da8654ac2a543467b5880607f694131f8ff34b87bd24c10bbc5f99fa2fcac49ff2e6 - languageName: node - linkType: hard - -"vue-router@npm:4.3.0": - version: 4.3.0 - resolution: "vue-router@npm:4.3.0" - dependencies: - "@vue/devtools-api": ^6.5.1 - peerDependencies: - vue: ^3.2.0 - checksum: 0059261d39c8a6f61d3cdf4b74cfcd6a109062e0562f2db5a387cdf4d1b186dfdd2dddcacbf83ce2842d7c3ec9a63d8a6d427c4cec1db61372f4a06048496354 - languageName: node - linkType: hard - -"vue@npm:3.4.21": - version: 3.4.21 - resolution: "vue@npm:3.4.21" - dependencies: - "@vue/compiler-dom": 3.4.21 - "@vue/compiler-sfc": 3.4.21 - "@vue/runtime-dom": 3.4.21 - "@vue/server-renderer": 3.4.21 - "@vue/shared": 3.4.21 - peerDependencies: - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - checksum: 3c477982a0a9aadfa512eb625b67f35809f123e98a268ace52e3ee738b23a9b8d9461cfc1f2b314fb098047ab3aab50f8beea657a2d3ebe5aae0e02aa4f903d2 - languageName: node - linkType: hard - -"vueuc@npm:^0.4.58": - version: 0.4.58 - resolution: "vueuc@npm:0.4.58" - dependencies: - "@css-render/vue3-ssr": ^0.15.10 - "@juggle/resize-observer": ^3.3.1 - css-render: ^0.15.10 - evtd: ^0.2.4 - seemly: ^0.3.6 - vdirs: ^0.1.4 - vooks: ^0.2.4 - peerDependencies: - vue: ^3.0.11 - checksum: fb0b9a69be553ccbdc314eec22433d99022ef065d6e6add4b1177ebada6de6d05b4ece36af4ee37a750687215ec966880c17d6b6dd2d0ea38a7958f584da74b9 - languageName: node - linkType: hard - -"weak-lru-cache@npm:^1.2.2": - version: 1.2.2 - resolution: "weak-lru-cache@npm:1.2.2" - checksum: 0fbe16839d193ed82ddb4fe331ca8cfaee2ecbd42596aa02366c708956cf41f7258f2d5411c3bc9aa099c26058dc47afbd2593d449718a18e4ef4d870c5ace18 - languageName: node - linkType: hard - -"which-boxed-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "which-boxed-primitive@npm:1.0.2" - dependencies: - is-bigint: ^1.0.1 - is-boolean-object: ^1.1.0 - is-number-object: ^1.0.4 - is-string: ^1.0.5 - is-symbol: ^1.0.3 - checksum: 53ce774c7379071729533922adcca47220228405e1895f26673bbd71bdf7fb09bee38c1d6399395927c6289476b5ae0629863427fd151491b71c4b6cb04f3a5e - languageName: node - linkType: hard - -"which-typed-array@npm:^1.1.11, which-typed-array@npm:^1.1.13": - version: 1.1.13 - resolution: "which-typed-array@npm:1.1.13" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.4 - for-each: ^0.3.3 - gopd: ^1.0.1 - has-tostringtag: ^1.0.0 - checksum: 3828a0d5d72c800e369d447e54c7620742a4cc0c9baf1b5e8c17e9b6ff90d8d861a3a6dd4800f1953dbf80e5e5cec954a289e5b4a223e3bee4aeb1f8c5f33309 - languageName: node - linkType: hard - -"which@npm:^2.0.1, which@npm:^2.0.2": - version: 2.0.2 - resolution: "which@npm:2.0.2" - dependencies: - isexe: ^2.0.0 - bin: - node-which: ./bin/node-which - checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 - languageName: node - linkType: hard - -"wide-align@npm:^1.1.5": - version: 1.1.5 - resolution: "wide-align@npm:1.1.5" - dependencies: - string-width: ^1.0.2 || 2 || 3 || 4 - checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 - languageName: node - linkType: hard - -"with@npm:^7.0.0": - version: 7.0.2 - resolution: "with@npm:7.0.2" - dependencies: - "@babel/parser": ^7.9.6 - "@babel/types": ^7.9.6 - assert-never: ^1.2.1 - babel-walk: 3.0.0-canary-5 - checksum: a00fe87b736e434bd8b9d3e62ddcd664bde7d3990a011a0f1bdeb499db0d6c28e6d2ef921dcc47650b8d436eee55459bcae8fab4ce1ed89f4926ddda407ab755 - languageName: node - linkType: hard - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: ^4.0.0 - string-width: ^4.1.0 - strip-ansi: ^6.0.0 - checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b - languageName: node - linkType: hard - -"wrap-ansi@npm:^8.1.0": - version: 8.1.0 - resolution: "wrap-ansi@npm:8.1.0" - dependencies: - ansi-styles: ^6.1.0 - string-width: ^5.0.1 - strip-ansi: ^7.0.1 - checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 - languageName: node - linkType: hard - -"wrappy@npm:1": - version: 1.0.2 - resolution: "wrappy@npm:1.0.2" - checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 - languageName: node - linkType: hard - -"xml-name-validator@npm:^4.0.0": - version: 4.0.0 - resolution: "xml-name-validator@npm:4.0.0" - checksum: af100b79c29804f05fa35aa3683e29a321db9b9685d5e5febda3fa1e40f13f85abc40f45a6b2bf7bee33f68a1dc5e8eaef4cec100a304a9db565e6061d4cb5ad - languageName: node - linkType: hard - -"xxhash-wasm@npm:^0.4.2": - version: 0.4.2 - resolution: "xxhash-wasm@npm:0.4.2" - checksum: 747b32fcfed1dc9a1e7592b134e4e65794bc10fd5d32515792e486bf4d0b65f9dec790cfc49ce2f9c01dd02e3593c3a6cd51df1ef37adf003c5bbd386c43c64d - languageName: node - linkType: hard - -"y18n@npm:^5.0.5": - version: 5.0.8 - resolution: "y18n@npm:5.0.8" - checksum: 54f0fb95621ee60898a38c572c515659e51cc9d9f787fb109cef6fde4befbe1c4602dc999d30110feee37456ad0f1660fa2edcfde6a9a740f86a290999550d30 - languageName: node - linkType: hard - -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 - languageName: node - linkType: hard - -"yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f - languageName: node - linkType: hard - -"yargs-parser@npm:^21.1.1": - version: 21.1.1 - resolution: "yargs-parser@npm:21.1.1" - checksum: ed2d96a616a9e3e1cc7d204c62ecc61f7aaab633dcbfab2c6df50f7f87b393993fe6640d017759fe112d0cb1e0119f2b4150a87305cc873fd90831c6a58ccf1c - languageName: node - linkType: hard - -"yargs@npm:^17.7.2": - version: 17.7.2 - resolution: "yargs@npm:17.7.2" - dependencies: - cliui: ^8.0.1 - escalade: ^3.1.1 - get-caller-file: ^2.0.5 - require-directory: ^2.1.1 - string-width: ^4.2.3 - y18n: ^5.0.5 - yargs-parser: ^21.1.1 - checksum: 73b572e863aa4a8cbef323dd911d79d193b772defd5a51aab0aca2d446655216f5002c42c5306033968193bdbf892a7a4c110b0d77954a7fdf563e653967b56a - languageName: node - linkType: hard - -"yocto-queue@npm:^0.1.0": - version: 0.1.0 - resolution: "yocto-queue@npm:0.1.0" - checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 - languageName: node - linkType: hard - -"zxcvbn@npm:4.4.2": - version: 4.4.2 - resolution: "zxcvbn@npm:4.4.2" - checksum: 76ab32c066082ac73491b7cd7f93ad0595c59b6d45ae80a0745e9e1661237388beb2f0c2ba0ae3dc330ca3ecdb87edcb7a21e0c09137ab81d5b32e584cda1e5d - languageName: node - linkType: hard From fe03f7b8ab2ce4d9b8ccd0dcd51a6318267065f7 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 15:49:21 +0000 Subject: [PATCH 146/181] Strict JS correctness --- ietf/static/js/stats_document_total.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/static/js/stats_document_total.js b/ietf/static/js/stats_document_total.js index 551d37165a5..cb4562ea9f0 100644 --- a/ietf/static/js/stats_document_total.js +++ b/ietf/static/js/stats_document_total.js @@ -41,7 +41,7 @@ document.addEventListener('DOMContentLoaded', () => { function displayChart (id, data) { const ctx = document.getElementById(id).getContext('2d') ; - chart = new Chart(ctx, { + let chart = new Chart(ctx, { type: 'bar', data: data, options: { @@ -113,5 +113,5 @@ document.addEventListener('DOMContentLoaded', () => { return chart; } - const documentsChart = displayChart('documentsChart', chartData) ; + displayChart('documentsChart', chartData) ; }) From 5266af933d42aba77b8bad87cdd2d80b1f8f53af Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 21 Aug 2026 20:58:57 +0000 Subject: [PATCH 147/181] Do not import unused module --- ietf/stats/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/views.py b/ietf/stats/views.py index 3e179b832c6..a3cf7f4405b 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -3,7 +3,6 @@ import csv import datetime -from encodings.aliases import aliases from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render From bc198fd200889cbba61a3377da1cd436fc07af3c Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 05:53:45 +0000 Subject: [PATCH 148/181] Add test coverage for used affiliations --- ietf/stats/tests.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 0a5bd4a0b6a..15003ca6e4b 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -377,6 +377,19 @@ def test_document_stats(self): # Let's check whether USA has indeed 1 self.assertTrue(chart_data["datasets"][0]["data"][individual_index] == 1) + # Test#10 Check the used affiliations list view + r = self.client.get(urlreverse(ietf.stats.views.used_affiliations_list)) + self.assertEqual(r.status_code, 200) + self.assertContains(r, "Used Affiliations in IETF Drafts") + self.assertTrue( + any( + [cell.text for cell in row.findall("td")] + == ["CISCO corp.", "1", "Cisco"] + for row in PyQuery(r.content)("tr") + ) + ) + + def test_meeting_stats(self): meeting124 = MeetingFactory(type_id="ietf", number="124", date=timezone.now()) meeting125 = MeetingFactory( From edc1a3bb89174ae7f82a63a4447a77e453ab43b9 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 06:00:18 +0000 Subject: [PATCH 149/181] Add list of affiliations/countries in the main menu for LLC staff --- ietf/templates/base/menu.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index c27ea4a7be9..1cc2891400d 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -465,12 +465,25 @@

    • {% endif %} {% if user|has_role:"LLC Staff" %} + {% if flavor == 'top' %}
    • {% endif %}
    • Annual report inputs
    • +
    • + + Known countries + +
    • +
    • + + Used affiliations + +
    • {% endif %}

  • From c3c8aeba33e38f1d1ccce5979ba8c38f6a232786 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 06:28:38 +0000 Subject: [PATCH 150/181] Address the "correctness" items from RjS's Claude review --- ietf/stats/migrations/0003_update_aliases.py | 2 +- ietf/stats/resources.py | 10 ++----- ietf/stats/utils.py | 2 +- ietf/stats/views_authors.py | 29 ++++++++++++------- ietf/stats/views_documents.py | 30 +++++--------------- ietf/stats/views_meetings.py | 8 +++--- 6 files changed, 35 insertions(+), 46 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 10fd48a9fc8..ce5b89d43dd 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -115,7 +115,7 @@ def backward(apps, schema_editor): AffiliationIgnoredEnding.objects.filter(ending=ending).delete() CountryAlias = apps.get_model('stats', 'CountryAlias') - aliases_to_remove = [alias for alias, _ in NEW_COUNTRY_ALIASES] + aliases_to_remove = [entry['alias'] for entry in NEW_COUNTRY_ALIASES] CountryAlias.objects.filter(alias__in=aliases_to_remove).delete() class Migration(migrations.Migration): diff --git a/ietf/stats/resources.py b/ietf/stats/resources.py index 8863749b354..3ccd39a6b6c 100644 --- a/ietf/stats/resources.py +++ b/ietf/stats/resources.py @@ -21,7 +21,6 @@ class Meta: queryset = CountryAlias.objects.all() serializer = api.Serializer() cache = SimpleCache() - #resource_name = 'countryalias' ordering = ['id', ] filtering = { "id": ALL, @@ -35,7 +34,6 @@ class Meta: queryset = AffiliationIgnoredEnding.objects.all() serializer = api.Serializer() cache = SimpleCache() - #resource_name = 'affiliationignoredending' ordering = ['id', ] filtering = { "id": ALL, @@ -48,11 +46,11 @@ class Meta: queryset = AffiliationAlias.objects.all() serializer = api.Serializer() cache = SimpleCache() - #resource_name = 'affiliationalias' ordering = ['id', ] filtering = { "id": ALL, - "main_name": ALL, + "alias": ALL, + "name": ALL, } api.stats.register(AffiliationAliasResource()) @@ -61,12 +59,10 @@ class Meta: queryset = AffiliationMainName.objects.all() serializer = api.Serializer() cache = SimpleCache() - #resource_name = 'affiliationalias' ordering = ['id', ] filtering = { "id": ALL, - "alias": ALL, - "name": ALL, + "main_name": ALL, } api.stats.register(AffiliationMainNameResource()) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 32a9051a184..181db821430 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -28,7 +28,7 @@ def color_from_hash(s): if s == 'Unspecified': - return "#B0B0B0 " + return "#B0B0B0" if s == 'Other': return "#E0E0E0" full_hash = hashlib.md5(s.encode('utf-8')).digest() diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 92fd746ff4a..0d885870662 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -1,6 +1,6 @@ # Copyright The IETF Trust 2016-2026, All Rights Reserved -from collections import defaultdict +from collections import Counter, defaultdict from django.conf import settings from django.core.cache import cache @@ -50,30 +50,39 @@ def get_authors_total_data_for_documents(doc_type: str = "all", .values(group_by) .annotate(author_count=Count("person", distinct=True)) ) + group_count_set = [ + (row.get(group_by), row.get("author_count", 0)) + for row in queryset + ] elif doc_type == "rfc": queryset = ( RfcAuthor.objects .values(group_by) .annotate(author_count=Count("person", distinct=True)) ) + group_count_set = [ + (row.get(group_by), row.get("author_count", 0)) + for row in queryset + ] else: + # Cannot using COUNT() and then UNION else a draft/rfc author will be double counted. draft_queryset = ( DocumentAuthor.objects .filter(document__type_id="draft") - .values(group_by) - .annotate(author_count=Count("person", distinct=True)) + .values_list("person_id", group_by) + .distinct() ) rfc_queryset = ( RfcAuthor.objects - .values(group_by) - .annotate(author_count=Count("person", distinct=True)) + .values_list("person_id", group_by) + .distinct() ) - queryset = draft_queryset.union(rfc_queryset, all=True) - group_count_set = [ - (row.get(group_by), row.get("author_count", 0)) - for row in queryset - ] + author_groups = set(draft_queryset) | set(rfc_queryset) + group_count_set = list(Counter( + group for _, group in author_groups + ).items()) + if group_by == "affiliation": alias_map = get_aliased_affiliations(group for group, _ in group_count_set) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index da766d5e4de..0e1f5c2805c 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -22,7 +22,7 @@ def get_total_data_for_documents( """Get aggregated document statistics grouped by the specified field. Args: - doc_type: Document type filter ('rfc', 'draft', 'all', 'wg-draft'). + doc_type: Document type filter ('rfc', 'draft'). group_by: Field to group by (e.g., 'stream__name', 'group__name'). top_n: Number of top groups to display. @@ -30,18 +30,9 @@ def get_total_data_for_documents( Chart.js compatible data dictionary with labels and datasets. """ - # Build a dynamic query set filter - filters = Q() - if doc_type == "all": - filters &= Q(type_id__in=["draft", "rfc"]) - elif doc_type == "wg-draft": - filters &= Q(type_id="draft") - filters &= Q(document__group__type_id="wg") - else: - filters &= Q(type_id=doc_type) queryset = ( Document.objects - .filter(filters) + .filter(type_id=doc_type) .values(group_by) .annotate(document_count=Count("id", distinct=True)) .order_by("-document_count") @@ -88,10 +79,7 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve """ # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "10")), 100)) - except (ValueError, TypeError): - top_n = 10 + top_n = int(request.GET.get("top", "10")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -171,10 +159,7 @@ def get_timeline_data_for_documents( if result is not None: years_set, documents_totals, data_map = result else: - if doc_type != "all": # Filter by specific document type - queryset = Document.objects.filter(type_id=doc_type) - else: # doc_type == 'all', include both drafts and RFCs (and this option is no more used in urls.py though) - queryset = Document.objects.filter(type_id__in=["draft", "rfc"]) + queryset = Document.objects.filter(type_id=doc_type) # ── Step 1: Collect all years and document totals ── years_set_temp: set[int] = set() @@ -266,10 +251,7 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l """ # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "10")), 100)) - except (ValueError, TypeError): - top_n = 10 + top_n = int(request.GET.get("top", "10")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -318,6 +300,8 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l "objects": "documents", "possible_docs_types": possible_docs_types, "possible_stats_types": possible_stats_types, + "timeline_url": urlreverse(documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": stats_type}), "total_url": urlreverse(documents_total, kwargs={"doc_type": doc_type, "stats_type": stats_type}), "doc_type": doc_type, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 7afdda9f4fc..b972a2163e2 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -164,7 +164,7 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + sorted_meetings = sorted(meetings_set, key=lambda x: int(x)) # ── Step 3: Get top N countries ── top_orgs = sorted( @@ -238,10 +238,10 @@ def get_country_data_for_meetings(attendance_type: str | None = None, meetings_set.add(meeting) country_totals[country] += count - data_map[country][meeting] = count + data_map[country][meeting] = data_map[country].get(meeting, 0) + count # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + sorted_meetings = sorted(meetings_set, key=lambda x: int(x)) # ── Step 3: Get top N countries ── top_countries = sorted( @@ -311,7 +311,7 @@ def get_data_for_meetings(top_n: int = 20) -> tuple[list[str], list[dict[str, An data_map[ticket][meeting] = count # ── Step 2: Sort meetings numerically rather than alphabetically ── - sorted_meetings = sorted(meetings_set, key=lambda x: int(x) if x.isdigit() else x) + sorted_meetings = sorted(meetings_set, key=lambda x: int(x)) ticket_types = tickets_totals.keys() # ── Step 4: Build Chart.js datasets ── From 70dc628df24650ca52843ac6937d8dd431d36926 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 07:11:43 +0000 Subject: [PATCH 151/181] Removed unused import --- ietf/stats/views_documents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 0e1f5c2805c..f3d1f8dfbfa 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -5,7 +5,7 @@ from django.conf import settings from django.core.cache import cache -from django.db.models import Count, Q +from django.db.models import Count from django.http import HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse From 71709c1996b28d0b9a1d2eb5761faa1121abb8a3 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 13:51:58 +0000 Subject: [PATCH 152/181] Improve queries and caching performances --- ietf/stats/views_meetings.py | 80 +++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index b972a2163e2..8c93b01ef4f 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -130,21 +130,23 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, Tuple of (sorted_meetings, datasets) for Chart.js. """ - cache_key = f"stats:get_affiliation_data_for_meetings:{attendance_type}-{top_n}" - sorted_meetings, datasets = cache.get(cache_key, (None, None)) - if (sorted_meetings, datasets) == (None, None): + cache_key = f"stats:get_affiliation_data_for_meetings:{attendance_type}" + sorted_meetings, sorted_orgs = cache.get(cache_key, (None, None)) + if (sorted_meetings, sorted_orgs) == (None, None): # Get registration status details if attendance_type: base_registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) else: base_registrations = Registration.objects.all() - registrations = base_registrations.values("affiliation", "meeting__number") + registrations = list( + base_registrations.values("affiliation", "meeting__number") + ) # Prepare affiliation data, applying canonicalization and aliasing - alias_map = get_aliased_affiliations(affiliation - for affiliation - in registrations.values_list("affiliation", flat=True)) + alias_map = get_aliased_affiliations( + registration["affiliation"] for registration in registrations + ) # Count per canonicalized affiliation organization: dict[str, int] = {} @@ -167,25 +169,26 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, sorted_meetings = sorted(meetings_set, key=lambda x: int(x)) # ── Step 3: Get top N countries ── - top_orgs = sorted( + sorted_orgs = sorted( org_totals.keys(), key=lambda c: org_totals[c], reverse=True, - )[:top_n] - non_top_orgs = set(org_totals.keys()) - set(top_orgs) - other_totals: dict[str, int] = defaultdict(int) - for m in sorted_meetings: - other_totals[m] = 0 - for c in non_top_orgs: - other_totals[m] += int(data_map[c].get(m, 0)) - - # ── Step 4: Build Chart.js datasets ── - datasets = _build_timeline_datasets(top_orgs, data_map, sorted_meetings, other_totals) + ) cache.set( cache_key, - (sorted_meetings, datasets), + (sorted_meetings, sorted_orgs), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) + top_orgs = sorted_orgs[:top_n] + non_top_orgs = set(org_totals.keys()) - set(top_orgs) + other_totals: dict[str, int] = defaultdict(int) + for m in sorted_meetings: + other_totals[m] = 0 + for c in non_top_orgs: + other_totals[m] += int(data_map[c].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + datasets = _build_timeline_datasets(top_orgs, data_map, sorted_meetings, other_totals) return sorted_meetings, datasets @@ -201,9 +204,9 @@ def get_country_data_for_meetings(attendance_type: str | None = None, Tuple of (sorted_meetings, datasets) for Chart.js. """ - cache_key = f"stats:get_country_data_for_meetings:{attendance_type}-{top_n}" - sorted_meetings, datasets = cache.get(cache_key, (None, None)) - if (sorted_meetings, datasets) == (None, None): + cache_key = f"stats:get_country_data_for_meetings:{attendance_type}" + sorted_meetings, sorted_countries = cache.get(cache_key, (None, None)) + if (sorted_meetings, sorted_countries) == (None, None): # Get registration status counts, aggregated by country_code if attendance_type: base_registrations = Registration.objects.filter(tickets__attendance_type=attendance_type) @@ -219,9 +222,8 @@ def get_country_data_for_meetings(attendance_type: str | None = None, .order_by("meeting__number") # chronological order ) - # Prepare country affiliation data, applying canonicalization and aliasing + # Prepare country data, applying canonicalization and aliasing # Mainly used to conver 2-letter country code into a full name - # Could possible use Country directly alias_map = get_aliased_countries(country_code for country_code in queryset.values_list("country_code", flat=True)) @@ -244,27 +246,29 @@ def get_country_data_for_meetings(attendance_type: str | None = None, sorted_meetings = sorted(meetings_set, key=lambda x: int(x)) # ── Step 3: Get top N countries ── - top_countries = sorted( + sorted_countries = sorted( country_totals.keys(), key=lambda c: country_totals[c], reverse=True, - )[:top_n] - - # -- Step 3.bis do the 'other' category -- - non_top_countries = set(country_totals.keys()) - set(top_countries) - other_totals: dict[str, int] = defaultdict(int) - for m in sorted_meetings: - other_totals[m] = 0 - for c in non_top_countries: - other_totals[m] += int(data_map[c].get(m, 0)) - - # ── Step 4: Build Chart.js datasets ── - datasets = _build_timeline_datasets(top_countries, data_map, sorted_meetings, other_totals) + ) cache.set( cache_key, - (sorted_meetings, datasets), + (sorted_meetings, sorted_countries), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) + + top_countries = sorted_countries[:top_n] + + # -- Step 3.bis do the 'other' category -- + non_top_countries = set(country_totals.keys()) - set(top_countries) + other_totals: dict[str, int] = defaultdict(int) + for m in sorted_meetings: + other_totals[m] = 0 + for c in non_top_countries: + other_totals[m] += int(data_map[c].get(m, 0)) + + # ── Step 4: Build Chart.js datasets ── + datasets = _build_timeline_datasets(top_countries, data_map, sorted_meetings, other_totals) return sorted_meetings, datasets From 90f762ba0932d551d5beb90ef5bd7f6078558819 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 16:00:41 +0000 Subject: [PATCH 153/181] Consistent top_n checks --- ietf/stats/views_meetings.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 8c93b01ef4f..d61ed299fe1 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -256,7 +256,7 @@ def get_country_data_for_meetings(attendance_type: str | None = None, (sorted_meetings, sorted_countries), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) - + top_countries = sorted_countries[:top_n] # -- Step 3.bis do the 'other' category -- @@ -339,10 +339,7 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: """ # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "20")), 100)) - except ValueError: - top_n = 20 + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -527,10 +524,7 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s ) # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "20")), 100)) - except ValueError: - top_n = 20 + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) From 5ae85eed481468f9afc3af9fe7ea48556bccd35a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 16:01:23 +0000 Subject: [PATCH 154/181] performance improvement per RjS' review --- ietf/stats/views_authors.py | 53 ++++++++++++++++++++++------------- ietf/stats/views_documents.py | 31 ++++++++++++++------ 2 files changed, 57 insertions(+), 27 deletions(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 0d885870662..49542a17d13 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -4,12 +4,12 @@ from django.conf import settings from django.core.cache import cache -from django.db.models import Count, Q +from django.db.models import Count, DateTimeField, OuterRef, Q, Subquery from django.http import HttpRequest, HttpResponse, HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse -from ietf.doc.models import DocumentAuthor, RfcAuthor +from ietf.doc.models import DocEvent, DocumentAuthor, RfcAuthor from ietf.stats.utils import ( check_top_n_choice, color_from_hash, @@ -17,6 +17,7 @@ get_aliased_countries, get_top_n_choices, ) +from ietf.utils.timezone import RPC_TZINFO def get_authors_total_data_for_documents(doc_type: str = "all", @@ -135,10 +136,7 @@ def authors_total(request: HttpRequest, doc_type: str = "all", """ # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "10")), 100)) - except ValueError: - top_n = 10 + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -200,10 +198,30 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str if result is not None: years_list, documents_totals, data_map = result else: + # Fetch each document's publication event time in the same query rather + # than triggering a separate query per row via Document.pub_date(). + new_revision_time = None + published_rfc_time = None + if (doc_type in ("draft", "wg-draft")) or (doc_type == "all"): + new_revision_time = Subquery( + DocEvent.objects + .filter(doc=OuterRef("document_id"), type="new_revision") + .order_by("-time", "-id") + .values("time")[:1], + output_field=DateTimeField(), + ) + if (doc_type == "rfc") or (doc_type == "all"): + published_rfc_time = Subquery( + DocEvent.objects + .filter(doc=OuterRef("document_id"), type="published_rfc") + .order_by("-time", "-id") + .values("time")[:1], + output_field=DateTimeField(), + ) + # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. # RfcAuthor for RFC # DocumentAuthor for other documents (i.e., drafts) - # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database draft_queryset = None rfc_queryset = None @@ -214,22 +232,22 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str draft_queryset = ( DocumentAuthor.objects .filter(filters) - .select_related("document") + .annotate(pub_datetime=new_revision_time) ) elif doc_type == "rfc": rfc_queryset = ( RfcAuthor.objects - .select_related("document") + .annotate(pub_datetime=published_rfc_time) ) else: draft_queryset = ( DocumentAuthor.objects .filter(document__type_id="draft") - .select_related("document") + .annotate(pub_datetime=new_revision_time) ) rfc_queryset = ( RfcAuthor.objects - .select_related("document") + .annotate(pub_datetime=published_rfc_time) ) # ── Step 1: Collect all authors publication dates ── @@ -239,15 +257,15 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str year_group_list = [] if draft_queryset is not None: year_group_list += [ - (row.document.pub_date().year, getattr(row, group_by)) + (row.pub_datetime.astimezone(RPC_TZINFO).year, getattr(row, group_by)) for row in draft_queryset - if row.document.pub_date() is not None + if row.pub_datetime is not None ] if rfc_queryset is not None: year_group_list += [ - (row.document.pub_date().year, getattr(row, group_by)) + (row.pub_datetime.astimezone(RPC_TZINFO).year, getattr(row, group_by)) for row in rfc_queryset - if row.document.pub_date() is not None + if row.pub_datetime is not None ] if group_by == "affiliation": @@ -337,10 +355,7 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st """ # Query parameters (from ?key=value) - try: - top_n = max(1, min(int(request.GET.get("top", "20")), 100)) - except ValueError: - top_n = 20 + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index f3d1f8dfbfa..0bd741b6f2f 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -5,13 +5,14 @@ from django.conf import settings from django.core.cache import cache -from django.db.models import Count +from django.db.models import Count, DateTimeField, OuterRef, Subquery from django.http import HttpResponseRedirect from django.shortcuts import render from django.urls import reverse as urlreverse -from ietf.doc.models import Document +from ietf.doc.models import DocEvent, Document from ietf.stats.utils import check_top_n_choice, color_from_hash, get_top_n_choices +from ietf.utils.timezone import RPC_TZINFO def get_total_data_for_documents( @@ -79,7 +80,7 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "10")) + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -140,7 +141,7 @@ def get_timeline_data_for_documents( """Get timeline data for documents grouped by field over years. Args: - doc_type: Document type filter ('rfc', 'draft', 'all'). + doc_type: Document type filter ('rfc', 'draft'). group_by: Field to group by (e.g., 'stream__name', 'group__name'). top_n: Number of top groups to display. @@ -159,7 +160,21 @@ def get_timeline_data_for_documents( if result is not None: years_set, documents_totals, data_map = result else: - queryset = Document.objects.filter(type_id=doc_type) + # Fetch each document's publication event time in the same query rather + # than triggering a separate query per row via Document.pub_date(). + event_type = "published_rfc" if doc_type == "rfc" else "new_revision" + pub_datetime_subquery = Subquery( + DocEvent.objects + .filter(doc=OuterRef("pk"), type=event_type) + .order_by("-time", "-id") + .values("time")[:1], + output_field=DateTimeField(), + ) + queryset = ( + Document.objects + .filter(type_id=doc_type) + .annotate(pub_datetime=pub_datetime_subquery) + ) # ── Step 1: Collect all years and document totals ── years_set_temp: set[int] = set() @@ -167,9 +182,9 @@ def get_timeline_data_for_documents( data_map = defaultdict(dict) # {year: {group: count}} for row in queryset: - if not row.pub_date(): + if row.pub_datetime is None: continue - year = row.pub_date().year + year = row.pub_datetime.astimezone(RPC_TZINFO).year if group_by == "stream__name": group = row.stream.name if row.stream else "Unspecified" elif group_by == "group__name": @@ -251,7 +266,7 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "10")) + top_n = int(request.GET.get("top", "20")) # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, From 83f5822e68685c53627e917da51609f9c8a21041 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 16:10:41 +0000 Subject: [PATCH 155/181] Display 'other' line only if there is date --- ietf/stats/tests.py | 6 ------ ietf/stats/views_authors.py | 31 ++++++++++++++++++------------- ietf/stats/views_meetings.py | 30 ++++++++++++++++-------------- 3 files changed, 34 insertions(+), 33 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 15003ca6e4b..16911817de8 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -303,12 +303,6 @@ def test_document_stats(self): for ds in chart_data["datasets"] ), ) - self.assertTrue( - any( - ds["label"] == "Other" and ds["data"] == [0, 0] - for ds in chart_data["datasets"] - ), - ) # Test#6 the authors specific statistics: for all WG drafts about the country r = self.client.get( diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 49542a17d13..2b0b654a45a 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -302,9 +302,13 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str )[:top_n] non_top_groups = documents_totals.keys() - set(top_groups) other_totals: dict[int, int] = defaultdict(int) + other_bin_is_empty = True for y in years_list: for g in non_top_groups: - other_totals[y] += int(data_map[y].get(g, 0)) + count = int(data_map[y].get(g, 0)) + other_totals[y] += count + if count > 0: + other_bin_is_empty = False # ── Step 4: Build Chart.js datasets ── @@ -326,18 +330,19 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str }) # -- Step 4.bis handle the other -- - datasets.append({ - "label": "Other", - "data": [other_totals.get(year, 0) for year in years_list], - "borderColor": "black", - "fill": False, - "tension": 0.0, - "pointColor": "black", - "pointBackgroundColor": "black", - "pointRadius": 4, - "pointHoverRadius": 6, - "borderWidth": 2, - }) + if not other_bin_is_empty: + datasets.append({ + "label": "Other", + "data": [other_totals.get(year, 0) for year in years_list], + "borderColor": "black", + "fill": False, + "tension": 0.0, + "pointColor": "black", + "pointBackgroundColor": "black", + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, + }) return years_list, datasets diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index d61ed299fe1..fee824601da 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -64,21 +64,23 @@ def _build_timeline_datasets( dataset["backgroundColor"] = color + "99" datasets.append(dataset) - # Add "Other" category - datasets.append({ - "label": "Other", - "data": [other_totals.get(m, 0) for m in sorted_meetings], - "borderColor": "black", - "fill": bool(include_background_color), - "tension": 0.0 if include_background_color else 0.3, - "pointColor": "black", - "pointBackgroundColor": "black", - "pointRadius": 4, - "pointHoverRadius": 6, - "borderWidth": 2, - }) + # Add "Other" category, only if it has any non-zero value + if any(other_totals.get(m, 0) for m in sorted_meetings): + datasets.append({ + "label": "Other", + "data": [other_totals.get(m, 0) for m in sorted_meetings], + "borderColor": "black", + "fill": bool(include_background_color), + "tension": 0.0 if include_background_color else 0.3, + "pointColor": "black", + "pointBackgroundColor": "black", + "pointRadius": 4, + "pointHoverRadius": 6, + "borderWidth": 2, + }) + if include_background_color: - datasets[-1]["backgroundColor"] = "#00000099" + datasets[-1]["backgroundColor"] = "#00000099" return datasets From da61f4427ba6eebc1c2ac0a28ba00e602b33811d Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 16:27:29 +0000 Subject: [PATCH 156/181] Redirect some old stats/meeting URL for consistency --- ietf/stats/urls.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 8e778477f31..63ce0aea177 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -3,11 +3,24 @@ from django.conf import settings +from django.shortcuts import redirect +from django.views.generic import RedirectView from ietf.stats import views from ietf.utils.urls import url from ietf.stats import views_authors, views_documents, views_meetings, views_reviews +# "total" was renamed to "reg_type" when meetings_timeline moved to views_meetings.py +_OLD_MEETING_STATS_TYPE_MAP = {"total": "reg_type"} + +def _redirect_old_meetings_timeline(request, stats_type=None): + if stats_type is not None: + stats_type = _OLD_MEETING_STATS_TYPE_MAP.get(stats_type, stats_type) + return redirect(f"/stats/meetings/{stats_type}/", permanent=True) + return redirect("/stats/meetings/", permanent=True) + +# Some URLs have changed during the development, so we need to redirect the old ones to the new ones. + urlpatterns = [ url(r"^$", views.stats_index), url(r"^annual_report_inputs/(?:(?P\d{4})/)?$", views.annual_report_inputs), @@ -15,8 +28,10 @@ url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_timeline), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/total/$", views_documents.documents_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), - url(r"^usedaffiliations/$", views.used_affiliations_list), url(r"^knowncountries/$", views.known_countries_list), + url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", + RedirectView.as_view(url="/stats/meetings/%(meeting_number)s/%(stats_type)s/", permanent=True)), + url(r"^meeting/(?:(?Paffiliation|country|total)/)?$", _redirect_old_meetings_timeline), url(r"^meetings/(?:(?Paffiliation|country|reg_type)/)?$", views_meetings.meetings_timeline), url(r"^meetings/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), url(r"^review/(?:(?Pcompletion|results|states|time)/)?(?:%(acronym)s/)?$" % settings.URL_REGEXPS, views_reviews.review_stats), From e6506cfdb093aab77aedc6a2ca339615a1fccf1b Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sat, 22 Aug 2026 16:44:05 +0000 Subject: [PATCH 157/181] Fixing RjS' review of the test --- ietf/stats/migrations/0003_update_aliases.py | 2 +- ietf/stats/tests.py | 8 +++++++- ietf/stats/views_authors.py | 10 ++++++++-- ietf/stats/views_documents.py | 10 ++++++++-- ietf/stats/views_meetings.py | 12 ++++++++---- 5 files changed, 32 insertions(+), 10 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index ce5b89d43dd..bbf0579044b 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -2,7 +2,7 @@ from django.db import migrations, models -INITIAL_MAIN_NAMES = ['Adibe', 'Agilent', 'Akamai', 'Alcatel', 'Alcatel-Lucent', 'Alibaba', 'Amazon', 'Apple', 'Arista', 'Aruba', 'AT&T', 'Avaya', +INITIAL_MAIN_NAMES = ['Adobe', 'Agilent', 'Akamai', 'Alcatel', 'Alcatel-Lucent', 'Alibaba', 'Amazon', 'Apple', 'Arista', 'Aruba', 'AT&T', 'Avaya', 'BBN', 'Bell Labs', 'Boeing', 'Broadcom', 'Brocade', 'BT', 'Bunyip', 'Cabletron', 'CERNET', 'Check Point', 'Ciena', 'Cisco', 'Comcast', 'DEC', 'Dell', 'Ericsson', 'EMC', 'F5', 'Fastmail', 'France Telecom', 'Fraunhofer', 'Fujitsu', diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 16911817de8..e10ae8fb8ee 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -14,6 +14,9 @@ from pyquery import PyQuery import ietf.stats.views +import ietf.stats.views_authors +import ietf.stats.views_documents +import ietf.stats.views_meetings from ietf.doc.factories import ( DocEventFactory, DocumentAuthorFactory, @@ -61,6 +64,9 @@ def test_invalid_top_n(self): self.assertEqual(r.status_code, 200) self.assertContains(r, "There was an error in your request") self.assertContains(r, "Invalid top_n choice: 3") + r = self.client.get(url + "?top=eric") + self.assertEqual(r.status_code, 200) + self.assertContains(r, "There was an error in your request") def test_document_stats(self): timeNow = timezone.now() @@ -496,7 +502,7 @@ def test_meeting_stats(self): ietf.stats.views_meetings.meeting_stats, kwargs={"meeting_number": "125", "stats_type": "affiliation"}, ) - + "?download=total&top_n=5" + + "?download=total&top=5" ) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 2b0b654a45a..bd5ff947b21 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -136,7 +136,10 @@ def authors_total(request: HttpRequest, doc_type: str = "all", """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -360,7 +363,10 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 0bd741b6f2f..43515c1604e 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -80,7 +80,10 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -266,7 +269,10 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index fee824601da..48caf44cbe6 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -151,7 +151,6 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, ) # Count per canonicalized affiliation - organization: dict[str, int] = {} meetings_set: set[str] = set() org_totals: dict[str, int] = defaultdict(int) data_map: dict[str, dict[str, int]] = defaultdict(dict) # {org: {meeting: count}} @@ -163,7 +162,6 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, affiliation = "Unspecified" else: affiliation = alias_map.get(reg["affiliation"], reg["affiliation"]) - organization[affiliation] = organization.get(affiliation, 0) + 1 org_totals[affiliation] = org_totals.get(affiliation, 0) + 1 data_map[affiliation][meeting] = data_map[affiliation].get(meeting, 0) + 1 @@ -341,7 +339,10 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: """ # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, @@ -526,7 +527,10 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s ) # Query parameters (from ?key=value) - top_n = int(request.GET.get("top", "20")) + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 # Check the top-n value against the allowed choices if not check_top_n_choice(top_n): return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) From 8295d1bc65e32601df517e0b871da3323d3abbcf Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 06:31:11 +0000 Subject: [PATCH 158/181] Fixing the nits from RjS' review --- ietf/static/js/stats_document_timeline.js | 1 - ietf/stats/factories.py | 2 +- ietf/stats/models.py | 13 ++++--------- ietf/stats/utils.py | 2 +- ietf/stats/views_documents.py | 2 +- ietf/templates/base/menu.html | 3 ++- ietf/templates/stats/documents_timeline.html | 2 +- ietf/templates/stats/documents_total.html | 2 +- ietf/templates/stats/error.html | 2 +- ietf/templates/stats/index.html | 2 +- ietf/templates/stats/meeting_stats.html | 2 +- ietf/templates/stats/meetings_timeline.html | 6 +++--- 12 files changed, 17 insertions(+), 22 deletions(-) diff --git a/ietf/static/js/stats_document_timeline.js b/ietf/static/js/stats_document_timeline.js index 6683ab1b22a..6a8002a28eb 100644 --- a/ietf/static/js/stats_document_timeline.js +++ b/ietf/static/js/stats_document_timeline.js @@ -57,7 +57,6 @@ document.addEventListener('DOMContentLoaded', () => { }, // scroll to zoom pinch: { enabled: true - }, // pinch on mobile drag: { // drag to select range enabled: true, diff --git a/ietf/stats/factories.py b/ietf/stats/factories.py index 97ec69d842a..325c78e209d 100644 --- a/ietf/stats/factories.py +++ b/ietf/stats/factories.py @@ -10,7 +10,7 @@ class AffiliationIgnoredEndingFactory(factory.django.DjangoModelFactory): class Meta: model = AffiliationIgnoredEnding - ending = '' + ending = 'Inc\\.?' class AffiliationMainNameFactory(factory.django.DjangoModelFactory): diff --git a/ietf/stats/models.py b/ietf/stats/models.py index 317f0b964c0..2242e82ecea 100644 --- a/ietf/stats/models.py +++ b/ietf/stats/models.py @@ -26,11 +26,6 @@ class AffiliationAlias(models.Model): def __str__(self): return "{} -> {}".format(self.alias, self.name) - def save(self, *args, **kwargs): - self.alias = self.alias.lower() - update_fields = {"alias"}.union(kwargs.pop("update_fields", set())) - super(AffiliationAlias, self).save(update_fields=update_fields, *args, **kwargs) - class Meta: verbose_name_plural = "affiliation aliases" @@ -39,24 +34,24 @@ class Meta: class AffiliationIgnoredEnding(models.Model): """Records that ending should be stripped from the affiliation for statistical purposes.""" - ending = models.CharField(max_length=255, help_text="Regexp with ending, e.g. 'Inc\\.?' - remember to escape .!") + ending = models.CharField(max_length=255, help_text="Records that ending will be matched case-insensitive and should be stripped from the affiliation for statistical purposes.") def __str__(self): - return self.ending + return str(self.ending) class AffiliationMainName(models.Model): """Records that this start of an affiliation is what matters (for statistical purposes).""" main_name = models.CharField( max_length=255, unique=True, - help_text="Main leading part of an affiliation, the remaining part can be ignored.") + help_text="Main leading part of an affiliation will be matched case-insensitive, the remaining part can be ignored for statistical purposes.") class Meta: verbose_name_plural = 'affiliation main names' def __str__(self): - return self.main_name + return str(self.main_name) class CountryAlias(models.Model): diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 181db821430..c31dbf9de19 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -31,7 +31,7 @@ def color_from_hash(s): return "#B0B0B0" if s == 'Other': return "#E0E0E0" - full_hash = hashlib.md5(s.encode('utf-8')).digest() + full_hash = hashlib.md5(s.encode('utf-8'), usedforsecurity=False).digest() hash = int.from_bytes(full_hash[:2]) return colors[hash % len(colors)] diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 43515c1604e..25e1d7a32d7 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -42,7 +42,7 @@ def get_total_data_for_documents( # Convert queryset to dictionary, aggregating by group group_count_dict: dict[str, int] = {} for group, count in queryset.values_list(group_by, "document_count"): - if not group or group == "": + if not group: group = "Unspecified" group_count_dict[group] = group_count_dict.get(group, 0) + count diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 1cc2891400d..b70788fbbdc 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -444,7 +444,8 @@ href="{% url 'ietf.stats.views_authors.authors_total' doc_type='rfc' stats_type='affiliation' %}"> Authors -
  • +
  • +
  • Documents diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 31c0687f955..6aeaa5bca86 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -75,4 +75,4 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    or click to reset panning/zooming.

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 0e0d0b17687..cfeb79cc818 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -73,4 +73,4 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    Click on a bar to hide it and rescale the graph.

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/stats/error.html b/ietf/templates/stats/error.html index 47d85ad4c64..d9738a32220 100644 --- a/ietf/templates/stats/error.html +++ b/ietf/templates/stats/error.html @@ -9,4 +9,4 @@

    There was an error in your request: {{ message }}.

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/stats/index.html b/ietf/templates/stats/index.html index b425fefd2cc..c77bd3334ba 100644 --- a/ietf/templates/stats/index.html +++ b/ietf/templates/stats/index.html @@ -30,4 +30,4 @@

    Per country/affiliation registration timeline for last meetings

  • -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index 69508c3b82f..e5767a094f0 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -84,4 +84,4 @@

    Click on to download the data as a CSV file.

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/stats/meetings_timeline.html b/ietf/templates/stats/meetings_timeline.html index 45ecc928ab4..f20efa74949 100644 --- a/ietf/templates/stats/meetings_timeline.html +++ b/ietf/templates/stats/meetings_timeline.html @@ -58,7 +58,7 @@

    Total Registrations by {{ stats_type|title }} - @@ -70,7 +70,7 @@

    Total Registrations by {{ stats_type|title }} {% if stats_type != 'reg_type' %}

    In Person Registrations by {{ stats_type|title }} - @@ -91,4 +91,4 @@

    In Person Registrations by {{ stats_type|title }} Click on to download the data as a CSV file.

    -{% endblock %} \ No newline at end of file +{% endblock %} From d23beae53bc4cc56e50954a87da69c9ed0e18a90 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 06:38:27 +0000 Subject: [PATCH 159/181] Reflect models.py changes --- ietf/stats/migrations/0003_update_aliases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index bbf0579044b..a52c30fee97 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -129,7 +129,7 @@ class Migration(migrations.Migration): name='AffiliationMainName', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('main_name', models.CharField(max_length=255, unique=True, help_text="Main leading part of an affiliation, the remaining part can be ignored.")), + ('main_name', models.CharField(max_length=255, unique=True, help_text="Main leading part of an affiliation will be matched case-insensitive, the remaining part can be ignored for statistical purposes.")), ], options={ 'verbose_name_plural': 'affiliation main names', From 29a15679bde1328064e1309ba5c952797a012757 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 06:47:26 +0000 Subject: [PATCH 160/181] More update after models.py --- ietf/stats/migrations/0003_update_aliases.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index a52c30fee97..60398b00f54 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -135,5 +135,10 @@ class Migration(migrations.Migration): 'verbose_name_plural': 'affiliation main names', }, ), + migrations.AlterField( + model_name='affiliationignoredending', + name='ending', + field=models.CharField(help_text='Records that ending will be matched case-insensitive and should be stripped from the affiliation for statistical purposes.', max_length=255), + ), migrations.RunPython(forward, backward), ] From 4bb14b62f36ac826701f6ae8f84ce04b1e43d062 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 09:27:16 +0200 Subject: [PATCH 161/181] Fix secr/telechat intermittent failure --- ietf/secr/telechat/tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/secr/telechat/tests.py b/ietf/secr/telechat/tests.py index 91ccde21879..bada65707d5 100644 --- a/ietf/secr/telechat/tests.py +++ b/ietf/secr/telechat/tests.py @@ -159,6 +159,7 @@ def test_doc_detail_charter(self): def test_bash(self): today = date_today() + TelechatDate.objects.filter(date=today).delete() # Clean up first TelechatDate.objects.create(date=today) url = reverse('ietf.secr.telechat.views.bash',kwargs={'date':today.strftime('%Y-%m-%d')}) self.client.login(username="secretary", password="secretary+password") From b75d437033cc0889ac168825fbb2cfb7d3a368f3 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 10:42:13 +0200 Subject: [PATCH 162/181] Fix secr/telechat intermittent failure using SPC rather than TAB --- ietf/secr/telechat/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/secr/telechat/tests.py b/ietf/secr/telechat/tests.py index bada65707d5..b173c1f785d 100644 --- a/ietf/secr/telechat/tests.py +++ b/ietf/secr/telechat/tests.py @@ -159,7 +159,7 @@ def test_doc_detail_charter(self): def test_bash(self): today = date_today() - TelechatDate.objects.filter(date=today).delete() # Clean up first + TelechatDate.objects.filter(date=today).delete() # Clean up first TelechatDate.objects.create(date=today) url = reverse('ietf.secr.telechat.views.bash',kwargs={'date':today.strftime('%Y-%m-%d')}) self.client.login(username="secretary", password="secretary+password") From 46132041a7610bc541899a576ee0a1f39ac161d3 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 14:22:31 +0000 Subject: [PATCH 163/181] Use helper functions to avoid code duplication --- ietf/stats/utils.py | 19 +++++- ietf/stats/views_authors.py | 111 +++++++++++++++++---------------- ietf/stats/views_documents.py | 97 +++++++++++------------------ ietf/stats/views_meetings.py | 113 ++++++++++++++++------------------ 4 files changed, 163 insertions(+), 177 deletions(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index c31dbf9de19..6bc5fb8d790 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -40,8 +40,23 @@ def color_from_hash(s): def get_top_n_choices(): return top_n_choices -def check_top_n_choice(n): - return n in top_n_choices +def get_valid_top_n(request): + """Return a valid top-N value or the corresponding error response.""" + from django.shortcuts import render + + try: + top_n = int(request.GET.get("top", "20")) + except ValueError: + top_n = 20 + + if top_n not in top_n_choices: + return 0, render( + request, + "stats/error.html", + {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}, + ) + + return top_n, None def compile_affiliation_ending_stripping_regexp(): parts = [] diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index bd5ff947b21..13585d99895 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -11,15 +11,55 @@ from ietf.doc.models import DocEvent, DocumentAuthor, RfcAuthor from ietf.stats.utils import ( - check_top_n_choice, color_from_hash, get_aliased_affiliations, get_aliased_countries, get_top_n_choices, + get_valid_top_n, ) from ietf.utils.timezone import RPC_TZINFO +def _country_not_available_error(request: HttpRequest, doc_type: str) -> HttpResponse | None: + """Return the country-stat error response when the selected doc set cannot provide it.""" + if doc_type in ["all", "rfc"]: + return render( + request, + "stats/error.html", + { + "message": f"Country information not (yet) available for {doc_type} documents from the RFC Editor.", + }, + ) + return None + + +def _get_document_type_choices(view, doc_type: str, stats_type: str) -> list[tuple[str, str, str]]: + """Build the document-type navigation choices for each stats view.""" + possible_docs_types = [ + ("draft", "Drafts", urlreverse(view, kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("wg-draft", "WG Drafts", urlreverse(view, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), + ] + if stats_type != "country": + possible_docs_types = [ + ("all", "All documents", urlreverse(view, kwargs={"doc_type": "all", "stats_type": stats_type})), + ] + possible_docs_types + [ + ("rfc", "RFCs", urlreverse(view, kwargs={"doc_type": "rfc", "stats_type": stats_type})), + ] + return possible_docs_types + + +def _get_stats_type_choices(view, doc_type: str, stats_type: str) -> list[tuple[str, str, str]]: + """Build the stats-type navigation choices for each stats view.""" + possible_stats_types = [ + ("affiliation", "Affiliation", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "affiliation"})), + ] + if doc_type not in ["all", "rfc"]: + possible_stats_types.append( + ("country", "Country", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "country"})), + ) + return possible_stats_types + + def get_authors_total_data_for_documents(doc_type: str = "all", group_by: str = "country", top_n: int = 20) -> dict[str, object]: @@ -135,40 +175,22 @@ def authors_total(request: HttpRequest, doc_type: str = "all", Rendered response for the total statistics page. """ - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, - "stats/error.html", - {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "affiliation": chart_data = get_authors_total_data_for_documents(doc_type, "affiliation", top_n) elif stats_type == "country": - if doc_type in ["all", "rfc"]: - return render(request, - "stats/error.html", - {"message": f"Country information not (yet) available for {doc_type} documents from the RFC Editor."}) + error_response = _country_not_available_error(request, doc_type) + if error_response is not None: + return error_response chart_data = get_authors_total_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - # Prepare the list of choice buttons for the template - # A little tricky/ugly has in Juy 2026 there is no more country information for RFCs, - # so we don't want to show that option for RFCs or all documents - possible_docs_types = [ - ("draft", "Drafts", urlreverse(authors_total, kwargs={"doc_type": "draft", "stats_type": stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_total, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), - ] - if stats_type != "country": - possible_docs_types = [("all", "All documents", urlreverse(authors_total, kwargs={"doc_type": "all", "stats_type": stats_type}))] + possible_docs_types + [("rfc", "RFCs", urlreverse(authors_total, kwargs={"doc_type": "rfc", "stats_type": stats_type})) ] - possible_stats_types = [("affiliation", "Affiliation", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "affiliation"}))] - if doc_type not in ["all", "rfc"]: - possible_stats_types.append(("country", "Country", urlreverse(authors_total, kwargs={"doc_type": doc_type, "stats_type": "country"}))) + possible_docs_types = _get_document_type_choices(authors_total, doc_type, stats_type) + possible_stats_types = _get_stats_type_choices(authors_total, doc_type, stats_type) return render(request, "stats/documents_total.html", { "top_n": top_n, @@ -362,24 +384,16 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st Rendered response for the timeline statistics page. """ - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, - "stats/error.html", - {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "affiliation": total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "affiliation", top_n) elif stats_type == "country": - if doc_type in ["all", "rfc"]: - return render(request, - "stats/error.html", - {"message": f"Country information not (yet) available for {doc_type} documents from the RFC Editor."}) + error_response = _country_not_available_error(request, doc_type) + if error_response is not None: + return error_response total_labels, total_data_sets = get_authors_timeline_data_for_documents(doc_type, "country", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) @@ -389,19 +403,8 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st "datasets": total_data_sets, } - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("draft", "Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "draft", "stats_type": stats_type})), - ("wg-draft", "WG Drafts", urlreverse(authors_timeline, kwargs={"doc_type": "wg-draft", "stats_type": stats_type})), - ] - if stats_type != "country": - possible_docs_types = [("all", "All documents", urlreverse(authors_timeline, kwargs={"doc_type": "all", "stats_type": stats_type})), - ] + possible_docs_types + [ - ("rfc", "RFCs", urlreverse(authors_timeline, kwargs={"doc_type": "rfc", "stats_type": stats_type}))] - possible_stats_types = [ - ("affiliation", "Affiliation", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "affiliation"}))] - if doc_type not in ["all", "rfc"]: - possible_stats_types.append(("country", "Country", urlreverse(authors_timeline, kwargs={"doc_type": doc_type, "stats_type": "country"}))) + possible_docs_types = _get_document_type_choices(authors_timeline, doc_type, stats_type) + possible_stats_types = _get_stats_type_choices(authors_timeline, doc_type, stats_type) return render(request, "stats/documents_timeline.html", { "top_n": top_n, diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 25e1d7a32d7..371bbdec7ba 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -11,10 +11,35 @@ from django.urls import reverse as urlreverse from ietf.doc.models import DocEvent, Document -from ietf.stats.utils import check_top_n_choice, color_from_hash, get_top_n_choices +from ietf.stats.utils import color_from_hash, get_top_n_choices, get_valid_top_n from ietf.utils.timezone import RPC_TZINFO +def _get_document_type_choices(view, doc_type: str, stats_type: str) -> list[tuple[str, str, str]]: + """Build the document-type navigation choices for a stats view.""" + return [ + ("draft", "Drafts", urlreverse(view, kwargs={"doc_type": "draft", "stats_type": stats_type})), + ("rfc", "RFCs", urlreverse(view, kwargs={"doc_type": "rfc", "stats_type": stats_type})), + ] + + +def _get_stats_type_choices(view, doc_type: str, stats_type: str) -> list[tuple[str, str, str]]: + """Build the stats-type navigation choices for a stats view.""" + possible_stats_types = [ + ("stream", "Streams", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "stream"})), + ("wg", "Working Groups", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "wg"})), + ] + if doc_type == "draft": + possible_stats_types.append( + ("level", "Intended Status", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "level"})), + ) + elif doc_type == "rfc": + possible_stats_types.append( + ("level", "Category", urlreverse(view, kwargs={"doc_type": doc_type, "stats_type": "level"})), + ) + return possible_stats_types + + def get_total_data_for_documents( doc_type: str = "rfc", group_by: str = "level", @@ -79,17 +104,9 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve Rendered response for the documents_total template. """ - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, - "stats/error.html", - {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) - + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "stream": chart_data = get_total_data_for_documents(doc_type, "stream__name", top_n) @@ -102,26 +119,8 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_total, - kwargs={"doc_type": "draft", "stats_type": stats_type})), - ("rfc", "RFCs", urlreverse(documents_total, - kwargs={"doc_type": "rfc", "stats_type": stats_type})), - ] - - possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_total, - kwargs={"doc_type": doc_type, "stats_type": "stream"})), - ("wg", "Working Groups", urlreverse(documents_total, - kwargs={"doc_type": doc_type, "stats_type": "wg"})), - ] - if doc_type == "draft": - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_total, - kwargs={"doc_type": doc_type, "stats_type": "level"}))) - elif doc_type == "rfc": - possible_stats_types.append(("level", "Category", urlreverse(documents_total, - kwargs={"doc_type": doc_type, "stats_type": "level"}))) + possible_docs_types = _get_document_type_choices(documents_total, doc_type, stats_type) + possible_stats_types = _get_stats_type_choices(documents_total, doc_type, stats_type) return render(request, "stats/documents_total.html", { "top_n": top_n, @@ -268,16 +267,9 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l Rendered response for the documents timeline template. """ - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, - "stats/error.html", - {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "stream": total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "stream__name", top_n) @@ -295,25 +287,8 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l "datasets": total_data_sets, } - # Prepare the list of choice buttons for the template - possible_docs_types = [ - ("draft", "Drafts", urlreverse(documents_timeline, - kwargs={"doc_type": "draft", "stats_type": stats_type})), - ("rfc", "RFC", urlreverse(documents_timeline, - kwargs={"doc_type": "rfc", "stats_type": stats_type})), - ] - possible_stats_types = [ - ("stream", "Streams", urlreverse(documents_timeline, - kwargs={"doc_type": doc_type, "stats_type": "stream"})), - ("wg", "Working Groups", urlreverse(documents_timeline, - kwargs={"doc_type": doc_type, "stats_type": "wg"})), - ] - if doc_type == "draft": - possible_stats_types.append(("level", "Intended Status", urlreverse(documents_timeline, - kwargs={"doc_type": doc_type, "stats_type": "level"}))) - elif doc_type == "rfc": - possible_stats_types.append(("level", "Category", urlreverse(documents_timeline, - kwargs={"doc_type": doc_type, "stats_type": "level"}))) + possible_docs_types = _get_document_type_choices(documents_timeline, doc_type, stats_type) + possible_stats_types = _get_stats_type_choices(documents_timeline, doc_type, stats_type) return render(request, "stats/documents_timeline.html", { "top_n": top_n, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 48caf44cbe6..8d327bfc148 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -14,17 +14,58 @@ from ietf.meeting.helpers import get_current_ietf_meeting_num from ietf.meeting.models import Meeting, Registration from ietf.stats.utils import ( - check_top_n_choice, color_from_hash, get_aliased_affiliations, get_aliased_countries, get_top_n_choices, + get_valid_top_n, ) # Constants FIRST_MEETING_WITH_REGISTRATION_DATA = 72 +def get_meeting_stats_type_choices(view, stats_type: str, meeting_number: str | None = None) -> list[tuple[str, str, str]]: + """Build the stats-type navigation choices for meeting views.""" + kwargs = {"stats_type": stats_type} + if meeting_number is not None: + kwargs["meeting_number"] = meeting_number + + choices = [ + ("affiliation", "Per affiliation", urlreverse(view, kwargs={**kwargs, "stats_type": "affiliation"})), + ("country", "Per country", urlreverse(view, kwargs={**kwargs, "stats_type": "country"})), + ] + if view is meetings_timeline: + choices.append( + ("reg_type", "Registration type", urlreverse(view, kwargs={"stats_type": "reg_type"})), + ) + return choices + + +def get_meeting_number_choices(stats_type: str, meeting_number: str | int, current_meeting: int) -> list[tuple[str | int, str]]: + """Build the meeting navigation choices for timeline and detail pages.""" + is_timeline = isinstance(meeting_number, str) and meeting_number == "All" + base = [("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type}))] + if is_timeline: + return base + [ + (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)-1, "stats_type": stats_type})), + (int(current_meeting), urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting), "stats_type": stats_type})), + (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)+1, "stats_type": stats_type})), + ] + + choices = [ + ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), + ] + if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: + choices.append( + (int(meeting_number)-1, urlreverse(meeting_stats, kwargs={"meeting_number": int(meeting_number)-1, "stats_type": stats_type})), + ) + choices.append((meeting_number, urlreverse(meeting_stats, kwargs={"meeting_number": meeting_number, "stats_type": stats_type}))) + if int(meeting_number) <= int(current_meeting): + choices.append((int(meeting_number)+1, urlreverse(meeting_stats, kwargs={"meeting_number": int(meeting_number)+1, "stats_type": stats_type}))) + return choices + + def _build_timeline_datasets( top_items: list[str], data_map: dict[str, dict[str, int]], @@ -338,16 +379,9 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: Rendered response for the meetings timeline template. """ - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, - "stats/error.html", - {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "reg_type": total_labels, total_data_sets = get_data_for_meetings(top_n=top_n) @@ -399,30 +433,11 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: "datasets": in_person_data_sets, } - # Prepare the list of choice buttons for the template - possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meetings_timeline, - kwargs={"stats_type": "affiliation"})), - ("country", "Per country", urlreverse(meetings_timeline, - kwargs={"stats_type": "country"})), - ("reg_type", "Registration type", urlreverse(meetings_timeline, - kwargs={"stats_type": "reg_type"})), - ] + possible_stats_types = get_meeting_stats_type_choices(meetings_timeline, stats_type) current_meeting = get_current_ietf_meeting_num() - if stats_type == "reg_type": - possible_stats_type = "country" - else: - possible_stats_type = stats_type - - possible_meeting_numbers: list[tuple[str | int, str]] = [ - ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), - (int(current_meeting)-1, urlreverse(meeting_stats, - kwargs={"meeting_number": int(current_meeting)-1, "stats_type": possible_stats_type})), - (int(current_meeting), urlreverse(meeting_stats, - kwargs={"meeting_number": int(current_meeting), "stats_type": possible_stats_type})), - (int(current_meeting)+1, urlreverse(meeting_stats, - kwargs={"meeting_number": int(current_meeting)+1, "stats_type": possible_stats_type}))] + possible_stats_type = "country" if stats_type == "reg_type" else stats_type + possible_meeting_numbers = get_meeting_number_choices(possible_stats_type, "All", current_meeting) return render(request, "stats/meetings_timeline.html", { "top_n": top_n, @@ -526,14 +541,9 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s Meeting.objects.filter(type_id="ietf"), number=meeting_number, ) - # Query parameters (from ?key=value) - try: - top_n = int(request.GET.get("top", "20")) - except ValueError: - top_n = 20 - # Check the top-n value against the allowed choices - if not check_top_n_choice(top_n): - return render(request, "stats/error.html", {"message": f"Invalid top_n choice: {top_n}. Valid choices are: {get_top_n_choices()}"}) + top_n, error_response = get_valid_top_n(request) + if error_response is not None: + return error_response if stats_type == "affiliation": total_labels, total_data, total_total = get_affiliation_data_for_meeting(meeting_number, top_n=top_n) @@ -587,25 +597,8 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s }], } - # Prepare the list of choice buttons for the template - possible_stats_types = [ - ("affiliation", "Per affiliation", urlreverse(meeting_stats, - kwargs={"meeting_number": meeting_number, "stats_type": "affiliation"})), - ("country", "Per country", urlreverse(meeting_stats, - kwargs={"meeting_number": meeting_number, "stats_type": "country"})), - ] - - # Prepare the list of meeting number buttons for the template - possible_meeting_numbers: list[tuple[str | int, str]] = [("All", urlreverse(meetings_timeline, - kwargs={"stats_type": stats_type}))] - if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: - possible_meeting_numbers.append((int(meeting_number)-1, urlreverse(meeting_stats, - kwargs={"meeting_number": int(meeting_number)-1, "stats_type": stats_type}))) - possible_meeting_numbers.append((meeting_number, urlreverse(meeting_stats, - kwargs={"meeting_number": meeting_number, "stats_type": stats_type}))) - if int(meeting_number) <= int(current_meeting_number): # Allow current meeting +1 - possible_meeting_numbers.append((int(meeting_number)+1, urlreverse(meeting_stats, - kwargs={"meeting_number": int(meeting_number)+1, "stats_type": stats_type}))) + possible_stats_types = get_meeting_stats_type_choices(meeting_stats, stats_type, meeting_number) + possible_meeting_numbers = get_meeting_number_choices(stats_type, meeting_number, int(current_meeting_number)) return render(request, "stats/meeting_stats.html", { "meeting_number": meeting_number, From f9fd7bef79b3ee09cf2729a1abb55c10b0e6a372 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Sun, 23 Aug 2026 15:24:39 +0000 Subject: [PATCH 164/181] Add types to same function calls --- ietf/stats/views_meetings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 8d327bfc148..3f8b59192eb 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -45,7 +45,9 @@ def get_meeting_stats_type_choices(view, stats_type: str, meeting_number: str | def get_meeting_number_choices(stats_type: str, meeting_number: str | int, current_meeting: int) -> list[tuple[str | int, str]]: """Build the meeting navigation choices for timeline and detail pages.""" is_timeline = isinstance(meeting_number, str) and meeting_number == "All" - base = [("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type}))] + base: list[tuple[str | int, str]] = [ + ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), + ] if is_timeline: return base + [ (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)-1, "stats_type": stats_type})), @@ -53,7 +55,7 @@ def get_meeting_number_choices(stats_type: str, meeting_number: str | int, curre (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)+1, "stats_type": stats_type})), ] - choices = [ + choices: list[tuple[str | int, str]] = [ ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), ] if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: From b09b53ac684d64fc81aed849aba54cceeaec79e2 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 05:18:36 +0000 Subject: [PATCH 165/181] Display only valid meeting numbers in the choice --- ietf/stats/views_meetings.py | 38 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 3f8b59192eb..f2b822aea47 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -6,7 +6,8 @@ from django.conf import settings from django.core.cache import cache -from django.db.models import Count +from django.db.models import Count, IntegerField +from django.db.models.functions import Cast from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import get_object_or_404, render from django.urls import reverse as urlreverse @@ -42,29 +43,26 @@ def get_meeting_stats_type_choices(view, stats_type: str, meeting_number: str | return choices -def get_meeting_number_choices(stats_type: str, meeting_number: str | int, current_meeting: int) -> list[tuple[str | int, str]]: +def get_meeting_number_choices(stats_type: str, displayed_meeting: str | int, current_meeting: int) -> list[tuple[str | int, str]]: """Build the meeting navigation choices for timeline and detail pages.""" - is_timeline = isinstance(meeting_number, str) and meeting_number == "All" - base: list[tuple[str | int, str]] = [ - ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), - ] - if is_timeline: - return base + [ - (int(current_meeting)-1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)-1, "stats_type": stats_type})), - (int(current_meeting), urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting), "stats_type": stats_type})), - (int(current_meeting)+1, urlreverse(meeting_stats, kwargs={"meeting_number": int(current_meeting)+1, "stats_type": stats_type})), - ] + if isinstance(displayed_meeting, str) and displayed_meeting == "All": + middle_meeting = int(current_meeting) + else: + middle_meeting = int(displayed_meeting) choices: list[tuple[str | int, str]] = [ ("All", urlreverse(meetings_timeline, kwargs={"stats_type": stats_type})), ] - if int(meeting_number) > FIRST_MEETING_WITH_REGISTRATION_DATA: - choices.append( - (int(meeting_number)-1, urlreverse(meeting_stats, kwargs={"meeting_number": int(meeting_number)-1, "stats_type": stats_type})), - ) - choices.append((meeting_number, urlreverse(meeting_stats, kwargs={"meeting_number": meeting_number, "stats_type": stats_type}))) - if int(meeting_number) <= int(current_meeting): - choices.append((int(meeting_number)+1, urlreverse(meeting_stats, kwargs={"meeting_number": int(meeting_number)+1, "stats_type": stats_type}))) + meetings = Meeting.objects.filter(type_id="ietf").annotate( + number_as_int=Cast("number", IntegerField()), + ).filter( + number_as_int__range=(middle_meeting - 1, middle_meeting + 1), + ).order_by("number_as_int") + for meeting in meetings: + if meeting.number_as_int >= FIRST_MEETING_WITH_REGISTRATION_DATA: + choices.append( + (int(meeting.number), urlreverse(meeting_stats, kwargs={"meeting_number": meeting.number, "stats_type": stats_type})), + ) return choices @@ -382,6 +380,7 @@ def meetings_timeline(request: Any, stats_type: str = "country") -> Any: """ top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response @@ -544,6 +543,7 @@ def meeting_stats(request: Any, meeting_number: str | None = None, stats_type: s ) top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response From ed1b4b1847f332b9892c527af00ca6358991cd9a Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 05:19:21 +0000 Subject: [PATCH 166/181] Error message rather than top_n clamping --- ietf/stats/tests.py | 2 +- ietf/stats/utils.py | 6 +++++- ietf/stats/views_authors.py | 2 ++ ietf/stats/views_documents.py | 2 ++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index e10ae8fb8ee..bb601b5a8ba 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -58,7 +58,7 @@ def test_stats_index(self): def test_invalid_top_n(self): url = urlreverse( ietf.stats.views_authors.authors_timeline, - kwargs={"doc_type": "rfc", "stats_type": "country"}, + kwargs={"doc_type": "draft", "stats_type": "country"}, ) r = self.client.get(url + "?top=3") self.assertEqual(r.status_code, 200) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 6bc5fb8d790..c9800439a05 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -47,7 +47,11 @@ def get_valid_top_n(request): try: top_n = int(request.GET.get("top", "20")) except ValueError: - top_n = 20 + return 0, render( + request, + "stats/error.html", + {"message": f"Invalid top_n choice: {request.GET.get('top')}. Valid choices are: {get_top_n_choices()}"}, + ) if top_n not in top_n_choices: return 0, render( diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 13585d99895..1a042efc642 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -176,6 +176,7 @@ def authors_total(request: HttpRequest, doc_type: str = "all", """ top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response @@ -385,6 +386,7 @@ def authors_timeline(request: HttpRequest, doc_type: str = "all", stats_type: st """ top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 371bbdec7ba..1307240272b 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -105,6 +105,7 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve """ top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response @@ -268,6 +269,7 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l """ top_n, error_response = get_valid_top_n(request) + if error_response is not None: return error_response From 8b53bbb26346fa9f8f38351d21336455dab0d08e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 05:23:24 +0000 Subject: [PATCH 167/181] Add more data in the cache --- ietf/stats/views_meetings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index f2b822aea47..deba6223ec0 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -174,8 +174,8 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, """ cache_key = f"stats:get_affiliation_data_for_meetings:{attendance_type}" - sorted_meetings, sorted_orgs = cache.get(cache_key, (None, None)) - if (sorted_meetings, sorted_orgs) == (None, None): + sorted_meetings, sorted_orgs, org_totals, data_map = cache.get(cache_key, (None, None, None, None)) + if (sorted_meetings, sorted_orgs, org_totals, data_map) == (None, None, None, None): # Get registration status details if attendance_type: @@ -217,7 +217,7 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, ) cache.set( cache_key, - (sorted_meetings, sorted_orgs), + (sorted_meetings, sorted_orgs, org_totals, data_map), settings.STATS_TIMELINE_CACHE_TIMEOUT, ) top_orgs = sorted_orgs[:top_n] From d5cf8638c175858815f86692c40ee942a5b9c865 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 05:54:31 +0000 Subject: [PATCH 168/181] Only LLC staff can view used affiliations and known countries --- ietf/stats/tests.py | 48 ++++++++++++++++++++++++++++++++++++++++----- ietf/stats/views.py | 2 ++ 2 files changed, 45 insertions(+), 5 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index bb601b5a8ba..118b5cacce2 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -44,6 +44,18 @@ class StatisticsTests(TestCase): + def setUp(self): + super().setUp() + llc_staff = GroupFactory(acronym="llc-staff", type_id="team") + self.member = PersonFactory() + RoleFactory(group=llc_staff, name_id="member", person=self.member) + + def _member_login(self): + self.client.login( + username=self.member.user.username, + password=f"{self.member.user.username}+password", + ) + def test_stats_index(self): # Create a meeting as the index page needs to know the current meeting MeetingFactory(type_id="ietf", number="124", date=timezone.now()) @@ -281,6 +293,7 @@ def test_document_stats(self): ds["label"] == country and ds["data"] == [1, 1] for ds in chart_data["datasets"] ), + msg=f"Country '{country}' not found in chart data labels: {chart_data['datasets']}", ) # Test#5 the authors specific statistics: for all all rfcs about the affiliation @@ -377,10 +390,15 @@ def test_document_stats(self): # Let's check whether USA has indeed 1 self.assertTrue(chart_data["datasets"][0]["data"][individual_index] == 1) - # Test#10 Check the used affiliations list view + # Test#10 Check the used affiliations list view w/o being logged in, which should redirect to the login page + r = self.client.get(urlreverse(ietf.stats.views.used_affiliations_list)) + self.assertEqual(r.status_code, 302) + self.assertIn("/accounts/login", r["Location"]) + + # Test#10-bis, check the used affiliations list view while being logged in as a non-LLC staff member, which should return 403 + self._member_login() r = self.client.get(urlreverse(ietf.stats.views.used_affiliations_list)) self.assertEqual(r.status_code, 200) - self.assertContains(r, "Used Affiliations in IETF Drafts") self.assertTrue( any( [cell.text for cell in row.findall("td")] @@ -388,7 +406,6 @@ def test_document_stats(self): for row in PyQuery(r.content)("tr") ) ) - def test_meeting_stats(self): meeting124 = MeetingFactory(type_id="ietf", number="124", date=timezone.now()) @@ -562,14 +579,35 @@ def test_meeting_stats_for_bad_meeting(self): stats_type=stats_type, ) - def test_known_country_list(self): - # check redirect +class KnownCountriesTests(TestCase): + def setUp(self): + super().setUp() + llc_staff = GroupFactory(acronym="llc-staff", type_id="team") + self.member = PersonFactory() + RoleFactory(group=llc_staff, name_id="member", person=self.member) + self.non_member = PersonFactory() + + def _member_login(self): + self.client.login( + username=self.member.user.username, + password=f"{self.member.user.username}+password", + ) + + def test_access_unauthenticated(self): url = urlreverse(ietf.stats.views.known_countries_list) + r = self.client.get(url) + self.assertEqual(r.status_code, 302) + self.assertIn("/accounts/login", r["Location"]) + + def test_known_countries_list(self): + url = urlreverse(ietf.stats.views.known_countries_list) + self._member_login() r = self.client.get(url) self.assertEqual(r.status_code, 200) self.assertContains(r, "United States") +class ReviewStatsTests(TestCase): def test_review_stats(self): reviewer = PersonFactory() review_req = ReviewRequestFactory(state_id="assigned") diff --git a/ietf/stats/views.py b/ietf/stats/views.py index a3cf7f4405b..19e818fd57e 100644 --- a/ietf/stats/views.py +++ b/ietf/stats/views.py @@ -23,6 +23,7 @@ def stats_index(request): "current_meeting": current_meeting, }) +@role_required("LLC Staff") def used_affiliations_list(request): """Render a list of used affiliations in the DocAuthor model with their aliases.""" qs = ( @@ -54,6 +55,7 @@ def used_affiliations_list(request): "affiliations": affiliations, }) +@role_required("LLC Staff") def known_countries_list(request): """Render a list of known countries with their aliases.""" countries = CountryName.objects.prefetch_related("countryalias_set") From 373bb44394f815854e5c41d6478c78eb5736b545 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 06:35:00 +0000 Subject: [PATCH 169/181] Minor fixes --- ietf/static/js/stats_document_total.js | 12 ++++++------ ietf/stats/views_meetings.py | 3 +-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/ietf/static/js/stats_document_total.js b/ietf/static/js/stats_document_total.js index cb4562ea9f0..7e8f0832595 100644 --- a/ietf/static/js/stats_document_total.js +++ b/ietf/static/js/stats_document_total.js @@ -10,7 +10,7 @@ document.addEventListener('DOMContentLoaded', () => { const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; const objects = JSON.parse(document.getElementById('objects').textContent) ; - function refreshChart() { + function refreshChart(chart) { // On first call, snapshot the original data onto the chart instance itself if (!chart._originalData) { chart._originalData = { @@ -51,7 +51,7 @@ document.addEventListener('DOMContentLoaded', () => { const idx = elements[0].index; const label = chart.data.labels[idx]; hidden.add(label); - refreshChart(); + refreshChart(chart); } }, responsive: true, @@ -87,15 +87,15 @@ document.addEventListener('DOMContentLoaded', () => { }, zoom: { zoom: { - wheel: { + wheel: { enabled: true, modifierKey: 'alt' // Alt + scroll wheel to zoom }, // scroll to zoom - pinch: { - enabled: true + pinch: { + enabled: true }, // pinch on mobile - drag: { // drag to select range + drag: { // drag to select range enabled: true, modifierKey: 'alt' }, diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index deba6223ec0..51ca96b0276 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -119,8 +119,7 @@ def _build_timeline_datasets( "pointHoverRadius": 6, "borderWidth": 2, }) - - if include_background_color: + if include_background_color: datasets[-1]["backgroundColor"] = "#00000099" return datasets From 6b57878dcb9e4f5310a359db8d2508734a19f2f9 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 06:55:13 +0000 Subject: [PATCH 170/181] Query performance improvment --- ietf/stats/views_documents.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index 1307240272b..a77ca700422 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -138,28 +138,28 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve def get_timeline_data_for_documents( doc_type: str = "rfc", - group_by: str = "stream__name", + group_by: str = "stream", top_n: int = 10, ) -> tuple[list[int], list[dict[str, Any]]]: """Get timeline data for documents grouped by field over years. Args: doc_type: Document type filter ('rfc', 'draft'). - group_by: Field to group by (e.g., 'stream__name', 'group__name'). + group_by: Field to group by (e.g., 'stream', 'group', 'intended_std_level_id'). top_n: Number of top groups to display. Returns: Tuple of (sorted_years, datasets) for Chart.js timeline chart. """ - cache_key = f"stats:get_timeline_data_for_documents:{doc_type}-{group_by}" - result = cache.get(cache_key, None) # Initialize variables with proper types years_set: list[int] documents_totals: dict[str, int] data_map: dict[int, dict[str, int]] + cache_key = f"stats:get_timeline_data_for_documents:{doc_type}-{group_by}" + result = cache.get(cache_key, None) if result is not None: years_set, documents_totals, data_map = result else: @@ -176,6 +176,7 @@ def get_timeline_data_for_documents( queryset = ( Document.objects .filter(type_id=doc_type) + .select_related("stream", "group") .annotate(pub_datetime=pub_datetime_subquery) ) @@ -188,9 +189,9 @@ def get_timeline_data_for_documents( if row.pub_datetime is None: continue year = row.pub_datetime.astimezone(RPC_TZINFO).year - if group_by == "stream__name": + if group_by == "stream": group = row.stream.name if row.stream else "Unspecified" - elif group_by == "group__name": + elif group_by == "group": group = row.group.name if row.group else "Unspecified" else: group = getattr(row, group_by, None) @@ -274,13 +275,13 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l return error_response if stats_type == "stream": - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "stream__name", top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "stream", top_n) elif stats_type == "level" and doc_type == "draft": total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "intended_std_level_id", top_n) elif stats_type == "level" and doc_type == "rfc": total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "std_level_id", top_n) elif stats_type == "wg": - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "group__name", top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "group", top_n) else: return HttpResponseRedirect(urlreverse("ietf.stats.views.stats_index")) From 404f460d3c4bf7f0eca9698b9acb4bbd91ce50ee Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 06:59:28 +0000 Subject: [PATCH 171/181] Fix typos in aliases --- ietf/stats/migrations/0003_update_aliases.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 60398b00f54..545567c3a3a 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -36,7 +36,7 @@ {'alias': 'Individual', 'name': 'Independent'}, {'alias': 'Individual Contributor', 'name': 'Independent'}, {'alias': 'Internet Systems Consortium', 'name': 'ISC'}, - {'alias': 'Johns Hopkins University ', 'name': 'JHU'}, + {'alias': 'Johns Hopkins University', 'name': 'JHU'}, {'alias': 'National Institute of Standards and Technology', 'name': 'US-NIST'}, {'alias': 'NIST', 'name': 'US-NIST'}, {'alias': 'Person', 'name': 'Independent'}, @@ -48,7 +48,7 @@ ADDITIONAL_IGNORE_ENDINGS = [ 'ab\\.?', 'ag\\.?', 'corp\\.?', 'corporation\\.?', 'corportation\\.?', 'international pte ltd\\.?', 'limited\\.?', - 'l.l.c\\.?', + 'l\\.l\\.c\\.?', 'private limited\\.?', 'pty ltd\\.?', 'pvt ltd\\.?', 's\\.a\\.s\\.?', 's\\.a\\.r\\.l\\.?', 's\\.p\\.a\\.?' ] From 7a3a026ed0dd1c5c1d10a51dfde5e2196ece80aa Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 08:59:33 +0000 Subject: [PATCH 172/181] Fix MyPy very strict test for no-redef --- ietf/stats/views_meetings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/stats/views_meetings.py b/ietf/stats/views_meetings.py index 51ca96b0276..5faef020fef 100644 --- a/ietf/stats/views_meetings.py +++ b/ietf/stats/views_meetings.py @@ -192,8 +192,8 @@ def get_affiliation_data_for_meetings(attendance_type: str | None = None, # Count per canonicalized affiliation meetings_set: set[str] = set() - org_totals: dict[str, int] = defaultdict(int) - data_map: dict[str, dict[str, int]] = defaultdict(dict) # {org: {meeting: count}} + org_totals = defaultdict(int) + data_map = defaultdict(dict) # {org: {meeting: count}} for reg in registrations: meeting = reg["meeting__number"] From 2f6f12566e99d75b2e7e64a4a746257a9759f3cd Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Tue, 25 Aug 2026 10:07:19 +0000 Subject: [PATCH 173/181] fix get_aliased_affiliations() issue with white spaces, add new aliases, pre-sort used affiliation table --- ietf/stats/migrations/0003_update_aliases.py | 7 +++++++ ietf/stats/utils.py | 8 ++++---- ietf/templates/stats/used_affiliations_list.html | 4 ++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ietf/stats/migrations/0003_update_aliases.py b/ietf/stats/migrations/0003_update_aliases.py index 545567c3a3a..fa3497c129a 100644 --- a/ietf/stats/migrations/0003_update_aliases.py +++ b/ietf/stats/migrations/0003_update_aliases.py @@ -36,12 +36,19 @@ {'alias': 'Individual', 'name': 'Independent'}, {'alias': 'Individual Contributor', 'name': 'Independent'}, {'alias': 'Internet Systems Consortium', 'name': 'ISC'}, + {'alias': 'ISOC', 'name': 'Internet Society'}, {'alias': 'Johns Hopkins University', 'name': 'JHU'}, {'alias': 'National Institute of Standards and Technology', 'name': 'US-NIST'}, {'alias': 'NIST', 'name': 'US-NIST'}, {'alias': 'Person', 'name': 'Independent'}, {'alias': 'The Boeing Company', 'name': 'Boeing'}, + {'alias': 'The MITRE Corporation', 'name': 'MITRE'}, + {'alias': 'UCL', 'name': 'University College London'}, {'alias': 'Unaffiliated', 'name': 'Independent'}, + {'alias': 'Universite catholique de Louvain', 'name': 'UCLouvain'}, + {'alias': 'Université catholique de Louvain', 'name': 'UCLouvain'}, + {'alias': 'University of California, Berkeley', 'name': 'UC Berkeley'}, + {'alias': 'University of California, Los Angeles', 'name': 'UCLA'}, {'alias': 'US NIST', 'name': 'US-NIST'}, {'alias': 'USA NIST', 'name': 'US-NIST'}, ] diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index c9800439a05..1113101892f 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -97,14 +97,13 @@ def get_aliased_affiliations(affiliations): known_aliases = { alias.lower(): name for alias, name in AffiliationAlias.objects.values_list("alias", "name") } # Let's prepare a dict for things like "Google Inc." or "Google Analytics"-> "Google" - # by adding a space to the end of the main name + # by adding a single space to the end of the main name # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" will match "Google" # but neither "My Google Analytics" nor "GoogleIsGreat" will match "Google" - affiliation_main_names = [(main_name.lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] + affiliation_main_names = [(main_name.strip(" ").lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] for affiliation in affiliations: original_affiliation = affiliation - affiliation_plus_space = affiliation + " " # to match main names with a space added to the end of them # check aliases from Aliases DB name = known_aliases.get(affiliation.lower()) @@ -118,13 +117,14 @@ def get_aliased_affiliations(affiliations): affiliation = name res[original_affiliation] = affiliation - # check again aliases from Aliases DB ??? + # check again aliases from Aliases DB after stripping the ending name = known_aliases.get(affiliation.lower()) if name is not None: affiliation = name res[original_affiliation] = affiliation # check aliases from Main Names DB + affiliation_plus_space = affiliation.strip(" ") + " " # to match main names with a single space added to the end of them name = next((original for lower, original in affiliation_main_names if affiliation.lower().startswith(lower) or affiliation_plus_space.lower().startswith(lower)), None) if name is not None: affiliation = name diff --git a/ietf/templates/stats/used_affiliations_list.html b/ietf/templates/stats/used_affiliations_list.html index c468824baf3..3a2a8750066 100644 --- a/ietf/templates/stats/used_affiliations_list.html +++ b/ietf/templates/stats/used_affiliations_list.html @@ -12,12 +12,12 @@

    In case you think an affiliation mapping is wrong from the list, you can file a ticket. -

    +

    - + From a1888e7e28dbe64f05314d83b3deb47db338b862 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 26 Aug 2026 05:50:59 +0000 Subject: [PATCH 174/181] Longuest-prefix first in affiliation main names --- ietf/stats/utils.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ietf/stats/utils.py b/ietf/stats/utils.py index 1113101892f..962b450f413 100644 --- a/ietf/stats/utils.py +++ b/ietf/stats/utils.py @@ -100,7 +100,12 @@ def get_aliased_affiliations(affiliations): # by adding a single space to the end of the main name # so we only match it at the beginning of the affiliation and not in the middle of it, e.g. "Google Analytics" will match "Google" # but neither "My Google Analytics" nor "GoogleIsGreat" will match "Google" - affiliation_main_names = [(main_name.strip(" ").lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)] + # sort longest-first so that when one main name is a prefix of another, the more specific (longer) one wins + affiliation_main_names = sorted( + ((main_name.strip(" ").lower() + ' ', main_name) for main_name in AffiliationMainName.objects.values_list("main_name", flat=True)), + key=lambda pair: len(pair[0]), + reverse=True, + ) for affiliation in affiliations: original_affiliation = affiliation From 314242672d023c9d171785913b7d96b177481850 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 26 Aug 2026 06:13:01 +0000 Subject: [PATCH 175/181] Nits in templates --- ietf/static/js/stats_document_timeline.js | 11 ++++++----- ietf/templates/stats/documents_timeline.html | 9 +++++---- ietf/templates/stats/documents_total.html | 6 +++--- ietf/templates/stats/known_countries_list.html | 2 +- ietf/templates/stats/meeting_stats.html | 8 ++++---- ietf/templates/stats/review_stats.html | 2 +- ietf/templates/stats/used_affiliations_list.html | 2 +- 7 files changed, 21 insertions(+), 19 deletions(-) diff --git a/ietf/static/js/stats_document_timeline.js b/ietf/static/js/stats_document_timeline.js index 6a8002a28eb..29c7aeccc75 100644 --- a/ietf/static/js/stats_document_timeline.js +++ b/ietf/static/js/stats_document_timeline.js @@ -7,6 +7,7 @@ document.addEventListener('DOMContentLoaded', () => { // ── Safely parse JSON data injected from Django view ── const chartData = JSON.parse(document.getElementById('chart_data').textContent) ; + const objects = JSON.parse(document.getElementById('objects').textContent) ; const stackedLines = false ; function displayChart (id, data) { @@ -45,20 +46,20 @@ document.addEventListener('DOMContentLoaded', () => { return `${items[0].label}`; }, label: function(context) { - return ` ${context.dataset.label}: ${context.parsed.y} documents`; + return ` ${context.dataset.label}: ${context.parsed.y} ${objects}`; } } }, zoom: { zoom: { - wheel: { + wheel: { enabled: true, modifierKey: 'alt' // Alt + scroll wheel to zoom }, // scroll to zoom - pinch: { - enabled: true + pinch: { + enabled: true }, // pinch on mobile - drag: { // drag to select range + drag: { // drag to select range enabled: true, modifierKey: 'alt' }, diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index 6aeaa5bca86..f93c4e2e146 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -4,6 +4,7 @@ {% load ietf_filters static django_bootstrap5 %} {% block js %} {{ chart_data|json_script:"chart_data" }} + {{ objects|json_script:"objects" }} {% endblock %} {% block content %} @@ -68,10 +69,10 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    Specific lines can be removed by clicking on their legend at the bottom of the graphic. - Hold Alt (or on Mac) and scroll/drag to zoom & pan. - Panning can be done via the mouse or with a finger. - Zooming is done via the mouse wheel or via a pinch gesture. - Press ESC + Hold Alt (or on Mac) and scroll/drag to zoom & pan. + Panning can be done via the mouse or with a finger. + Zooming is done via the mouse wheel or via a pinch gesture. + Press ESC or click to reset panning/zooming.

    diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index cfeb79cc818..69694830d95 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -54,7 +54,7 @@

    - This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} {{ objects}}. + This page provides the top-{{ top_n }} {{ stats_type }} for IETF {{ doc_type|upper }} {{ objects}}. Only the top-{{ top_n }} categories are listed, the remaining ones are aggregated into 'Other'. {% if objects == 'authors' %} Note: authors are counted only once no matter how many documents they have authored. @@ -64,13 +64,13 @@

    {{ doc_type|title }} {{ objects|title }} by {{ stats_type|title }}

    - +

    - Click on a bar to hide it and rescale the graph. + Click on a bar to hide it and rescale the graph.

    {% endblock %} diff --git a/ietf/templates/stats/known_countries_list.html b/ietf/templates/stats/known_countries_list.html index 0cdac6b6dfa..8c5157eeded 100644 --- a/ietf/templates/stats/known_countries_list.html +++ b/ietf/templates/stats/known_countries_list.html @@ -47,4 +47,4 @@

    {% endblock %} {% block js %} - {% endblock %} \ No newline at end of file + {% endblock %} diff --git a/ietf/templates/stats/meeting_stats.html b/ietf/templates/stats/meeting_stats.html index e5767a094f0..5150785708c 100644 --- a/ietf/templates/stats/meeting_stats.html +++ b/ietf/templates/stats/meeting_stats.html @@ -47,7 +47,7 @@

    - This page provides a visual representation of the total registrations for IETF-{{ meeting_number }} by {{ stats_type }}. + This page provides a visual representation of the total registrations for IETF-{{ meeting_number }} by {{ stats_type }}. Only the top-{{ top_n }} {{ stats_type }} registrations are displayed separately, else they are grouped under "Other".

    @@ -55,7 +55,7 @@

    Total Registrations by {{ stats_type|title }} ({{ total_total}} in total) - @@ -67,7 +67,7 @@

    In Person Registrations by {{ stats_type|title }} ({{ in_person_total}} in total) - @@ -80,7 +80,7 @@

    Hover over a slice to see the count and percentage of total registrations. - Click on a legend at the bottom to hide it and rescale the graph; click again to show it. + Click on a legend at the bottom to hide it and rescale the graph; click again to show it. Click on to download the data as a CSV file.

    diff --git a/ietf/templates/stats/review_stats.html b/ietf/templates/stats/review_stats.html index 2741f165182..3c6505c2dac 100644 --- a/ietf/templates/stats/review_stats.html +++ b/ietf/templates/stats/review_stats.html @@ -365,4 +365,4 @@

    }); {% endif %} - {% endblock %} \ No newline at end of file + {% endblock %} diff --git a/ietf/templates/stats/used_affiliations_list.html b/ietf/templates/stats/used_affiliations_list.html index 3a2a8750066..e5a382c4d04 100644 --- a/ietf/templates/stats/used_affiliations_list.html +++ b/ietf/templates/stats/used_affiliations_list.html @@ -34,4 +34,4 @@

    {% endblock %} {% block js %} - {% endblock %} \ No newline at end of file + {% endblock %} From 6da988a738a5ca9d09f29785ae052b47e78b214e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 26 Aug 2026 07:09:45 +0000 Subject: [PATCH 176/181] Use names rather than slugs for publication status --- ietf/stats/views_documents.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/ietf/stats/views_documents.py b/ietf/stats/views_documents.py index a77ca700422..10a9ab4858f 100644 --- a/ietf/stats/views_documents.py +++ b/ietf/stats/views_documents.py @@ -112,9 +112,9 @@ def documents_total(request: Any, doc_type: str = "rfc", stats_type: str = "leve if stats_type == "stream": chart_data = get_total_data_for_documents(doc_type, "stream__name", top_n) elif stats_type == "level" and doc_type == "draft": - chart_data = get_total_data_for_documents(doc_type, "intended_std_level_id", top_n) + chart_data = get_total_data_for_documents(doc_type, "intended_std_level__name", top_n) elif stats_type == "level" and doc_type == "rfc": - chart_data = get_total_data_for_documents(doc_type, "std_level_id", top_n) + chart_data = get_total_data_for_documents(doc_type, "std_level__name", top_n) elif stats_type == "wg": chart_data = get_total_data_for_documents(doc_type, "group__name", top_n) else: @@ -145,7 +145,7 @@ def get_timeline_data_for_documents( Args: doc_type: Document type filter ('rfc', 'draft'). - group_by: Field to group by (e.g., 'stream', 'group', 'intended_std_level_id'). + group_by: Field to group by (e.g., 'stream', 'group', 'intended_std_level'). top_n: Number of top groups to display. Returns: @@ -176,7 +176,7 @@ def get_timeline_data_for_documents( queryset = ( Document.objects .filter(type_id=doc_type) - .select_related("stream", "group") + .select_related(group_by) .annotate(pub_datetime=pub_datetime_subquery) ) @@ -193,6 +193,10 @@ def get_timeline_data_for_documents( group = row.stream.name if row.stream else "Unspecified" elif group_by == "group": group = row.group.name if row.group else "Unspecified" + elif group_by == "intended_std_level": + group = row.intended_std_level.name if row.intended_std_level else "Unspecified" + elif group_by == "std_level": + group = row.std_level.name if row.std_level else "Unspecified" else: group = getattr(row, group_by, None) if not group: @@ -277,9 +281,9 @@ def documents_timeline(request: Any, doc_type: str = "rfc", stats_type: str = "l if stats_type == "stream": total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "stream", top_n) elif stats_type == "level" and doc_type == "draft": - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "intended_std_level_id", top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "intended_std_level", top_n) elif stats_type == "level" and doc_type == "rfc": - total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "std_level_id", top_n) + total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "std_level", top_n) elif stats_type == "wg": total_labels, total_data_sets = get_timeline_data_for_documents(doc_type, "group", top_n) else: From 5ff4e5f80c56ad5d2dbe4686827f583fa939a174 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Wed, 26 Aug 2026 07:52:13 +0000 Subject: [PATCH 177/181] Fix tests by using names rather than slug in publication status --- ietf/stats/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 118b5cacce2..e0515be1aeb 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -190,13 +190,13 @@ def test_document_stats(self): self.assertTrue(chart_data["labels"] == [year1960, yearNow]) self.assertTrue( any( - ds["label"] == "inf" and ds["data"] == [0, 1] + ds["label"] == "Informational" and ds["data"] == [0, 1] for ds in chart_data["datasets"] ), ) self.assertTrue( any( - ds["label"] == "bcp" and ds["data"] == [2, 0] + ds["label"] == "Best Current Practice" and ds["data"] == [2, 0] for ds in chart_data["datasets"] ), ) From cc610a16398ceaf4d641ee3e5e2848dfae28a961 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 27 Aug 2026 05:58:02 +0000 Subject: [PATCH 178/181] Add URL redirects to 'legacy' stats URLs --- ietf/stats/tests.py | 61 ++++++++++++++++++++++++++++++++++++++++++++- ietf/stats/urls.py | 24 +++++++++++++----- 2 files changed, 78 insertions(+), 7 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index e0515be1aeb..947c0633b86 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -546,7 +546,7 @@ def test_meeting_stats(self): ietf.stats.views_meetings.meetings_timeline, kwargs={"stats_type": "affiliation"}, ) - + "?download=total&top_n=5" + + "?download=total&top=5" ) self.assertEqual(r.status_code, 200) self.assertEqual(r["Content-Type"], "text/csv") @@ -579,6 +579,65 @@ def test_meeting_stats_for_bad_meeting(self): stats_type=stats_type, ) + +class LegacyUrlRedirectTests(TestCase): + """The old /stats/document/... and /stats/meeting/... URLs should permanently + redirect to their new /stats/documents/... and /stats/meetings/... equivalents.""" + + def test_document_timeline_redirect(self): + for doc_type in ["draft", "rfc"]: + for stats_type in ["level", "stream", "wg"]: + old_url = f"/stats/document/{doc_type}/{stats_type}/" + new_url = urlreverse( + ietf.stats.views_documents.documents_timeline, + kwargs={"doc_type": doc_type, "stats_type": stats_type}, + ) + r = self.client.get(old_url) + self.assertRedirects( + r, new_url, status_code=301, fetch_redirect_response=False + ) + + def test_meeting_timeline_redirect(self): + new_url = urlreverse(ietf.stats.views_meetings.meetings_timeline) + r = self.client.get("/stats/meeting/") + self.assertRedirects( + r, new_url, status_code=301, fetch_redirect_response=False + ) + + for stats_type in ["affiliation", "country"]: + new_url = urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": stats_type}, + ) + r = self.client.get(f"/stats/meeting/{stats_type}/") + self.assertRedirects( + r, new_url, status_code=301, fetch_redirect_response=False + ) + + # "total" was renamed to "reg_type" + new_url = urlreverse( + ietf.stats.views_meetings.meetings_timeline, + kwargs={"stats_type": "reg_type"}, + ) + r = self.client.get("/stats/meeting/total/") + self.assertRedirects( + r, new_url, status_code=301, fetch_redirect_response=False + ) + + def test_meeting_stats_redirect(self): + meeting = MeetingFactory(type_id="ietf") + for stats_type in ["affiliation", "country"]: + old_url = f"/stats/meeting/{meeting.number}/{stats_type}/" + new_url = urlreverse( + ietf.stats.views_meetings.meeting_stats, + kwargs={"meeting_number": meeting.number, "stats_type": stats_type}, + ) + r = self.client.get(old_url) + self.assertRedirects( + r, new_url, status_code=301, fetch_redirect_response=False + ) + + class KnownCountriesTests(TestCase): def setUp(self): super().setUp() diff --git a/ietf/stats/urls.py b/ietf/stats/urls.py index 63ce0aea177..2bc5dd2da03 100644 --- a/ietf/stats/urls.py +++ b/ietf/stats/urls.py @@ -4,7 +4,7 @@ from django.conf import settings from django.shortcuts import redirect -from django.views.generic import RedirectView +from django.urls import reverse as urlreverse from ietf.stats import views from ietf.utils.urls import url @@ -14,10 +14,22 @@ _OLD_MEETING_STATS_TYPE_MAP = {"total": "reg_type"} def _redirect_old_meetings_timeline(request, stats_type=None): + kwargs = {} if stats_type is not None: - stats_type = _OLD_MEETING_STATS_TYPE_MAP.get(stats_type, stats_type) - return redirect(f"/stats/meetings/{stats_type}/", permanent=True) - return redirect("/stats/meetings/", permanent=True) + kwargs["stats_type"] = _OLD_MEETING_STATS_TYPE_MAP.get(stats_type, stats_type) + return redirect(urlreverse(views_meetings.meetings_timeline, kwargs=kwargs), permanent=True) + +def _redirect_old_documents_timeline(request, doc_type, stats_type): + return redirect( + urlreverse(views_documents.documents_timeline, kwargs={"doc_type": doc_type, "stats_type": stats_type}), + permanent=True, + ) + +def _redirect_old_meeting_stats(request, meeting_number, stats_type): + return redirect( + urlreverse(views_meetings.meeting_stats, kwargs={"meeting_number": meeting_number, "stats_type": stats_type}), + permanent=True, + ) # Some URLs have changed during the development, so we need to redirect the old ones to the new ones. @@ -26,11 +38,11 @@ def _redirect_old_meetings_timeline(request, stats_type=None): url(r"^annual_report_inputs/(?:(?P\d{4})/)?$", views.annual_report_inputs), url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/total/$", views_authors.authors_total), url(r"^authors/(?Pall|draft|wg-draft|rfc)/(?Paffiliation|country)/$", views_authors.authors_timeline), + url(r"^document/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", _redirect_old_documents_timeline), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/total/$", views_documents.documents_total), url(r"^documents/(?Pdraft|rfc)/(?Plevel|stream|wg)/$", views_documents.documents_timeline), url(r"^knowncountries/$", views.known_countries_list), - url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", - RedirectView.as_view(url="/stats/meetings/%(meeting_number)s/%(stats_type)s/", permanent=True)), + url(r"^meeting/(?P\d+)/(?Paffiliation|country)/$", _redirect_old_meeting_stats), url(r"^meeting/(?:(?Paffiliation|country|total)/)?$", _redirect_old_meetings_timeline), url(r"^meetings/(?:(?Paffiliation|country|reg_type)/)?$", views_meetings.meetings_timeline), url(r"^meetings/(?P\d+)/(?Paffiliation|country)/$", views_meetings.meeting_stats), From 4798bb8b44c593adadd8fa15f9a1248b6eb8e882 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 27 Aug 2026 06:02:49 +0000 Subject: [PATCH 179/181] Minor tests improvements by using assertEqual rather than assertTrue(...==...) --- ietf/stats/tests.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ietf/stats/tests.py b/ietf/stats/tests.py index 947c0633b86..698aa08d72f 100644 --- a/ietf/stats/tests.py +++ b/ietf/stats/tests.py @@ -187,7 +187,7 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertEqual(chart_data["labels"], [year1960, yearNow]) self.assertTrue( any( ds["label"] == "Informational" and ds["data"] == [0, 1] @@ -213,7 +213,7 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertEqual(chart_data["labels"], [year1960, yearNow]) self.assertTrue( any( ds["label"] == group1.name and ds["data"] == [2, 0] @@ -233,8 +233,8 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue( - chart_data["labels"] == [year1960, yearNow], + self.assertEqual( + chart_data["labels"], [year1960, yearNow], msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]", ) self.assertTrue( @@ -272,8 +272,8 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue( - chart_data["labels"] == [year1960, yearNow], + self.assertEqual( + chart_data["labels"], [year1960, yearNow], msg=f"Labels ({chart_data['labels']}) for years do not match expected values=[{year1960}, {yearNow}]", ) self.assertTrue( @@ -308,7 +308,7 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertEqual(chart_data["labels"], [year1960, yearNow]) self.assertTrue( any( ds["label"].casefold() == affiliation.casefold() @@ -335,7 +335,7 @@ def test_document_stats(self): # Extract the JSON embedded in the response pq = PyQuery(r.content) chart_data = json.loads(pq.find("script#chart_data").text()) - self.assertTrue(chart_data["labels"] == [year1960, yearNow]) + self.assertEqual(chart_data["labels"], [year1960, yearNow]) # Test sometimes failing below with the factory country name being different from the country name in the chart data, # even though they should be the same country. # Using casefold to make the comparison more robust, as the country names in the chart data are title-cased @@ -371,7 +371,7 @@ def test_document_stats(self): self.assertTrue(country in chart_data["labels"]) USA_index = chart_data["labels"].index("United States of America") # Let's check whether USA has indeed 1 - self.assertTrue(chart_data["datasets"][0]["data"][USA_index] == 1) + self.assertEqual(chart_data["datasets"][0]["data"][USA_index], 1) # Test#8 the documents specific statistics global r = self.client.get( @@ -388,7 +388,7 @@ def test_document_stats(self): self.assertTrue(group1.name in chart_data["labels"]) individual_index = chart_data["labels"].index("Individual submissions") # Let's check whether USA has indeed 1 - self.assertTrue(chart_data["datasets"][0]["data"][individual_index] == 1) + self.assertEqual(chart_data["datasets"][0]["data"][individual_index], 1) # Test#10 Check the used affiliations list view w/o being logged in, which should redirect to the login page r = self.client.get(urlreverse(ietf.stats.views.used_affiliations_list)) From 7b9b41ef7bec28bcf06ef0a7fe82373e3146439e Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Thu, 27 Aug 2026 06:07:19 +0000 Subject: [PATCH 180/181] Remove duplicates of {% origin %} --- ietf/templates/stats/documents_timeline.html | 1 - ietf/templates/stats/documents_total.html | 1 - 2 files changed, 2 deletions(-) diff --git a/ietf/templates/stats/documents_timeline.html b/ietf/templates/stats/documents_timeline.html index f93c4e2e146..5f60e881efd 100644 --- a/ietf/templates/stats/documents_timeline.html +++ b/ietf/templates/stats/documents_timeline.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load origin %} -{% origin %} {% load ietf_filters static django_bootstrap5 %} {% block js %} {{ chart_data|json_script:"chart_data" }} diff --git a/ietf/templates/stats/documents_total.html b/ietf/templates/stats/documents_total.html index 69694830d95..10361190488 100644 --- a/ietf/templates/stats/documents_total.html +++ b/ietf/templates/stats/documents_total.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load origin %} -{% origin %} {% load ietf_filters static django_bootstrap5 %} {% block js %} {{ chart_data|json_script:"chart_data" }} From 21687a75fe47dec4114089347d1f726dabb5d2a8 Mon Sep 17 00:00:00 2001 From: Eric Vyncke Date: Fri, 28 Aug 2026 11:07:07 +0000 Subject: [PATCH 181/181] Nit: fixing a comment --- ietf/stats/views_authors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ietf/stats/views_authors.py b/ietf/stats/views_authors.py index 1a042efc642..c0a3cbfe08c 100644 --- a/ietf/stats/views_authors.py +++ b/ietf/stats/views_authors.py @@ -248,7 +248,6 @@ def get_authors_timeline_data_for_documents(doc_type: str = "all", group_by: str # Build a dynamic query set filter to get country/affiliation using the appropriate model based on doc_type. # RfcAuthor for RFC # DocumentAuthor for other documents (i.e., drafts) - # Using distinct=True in Count to avoid double counting authors who may have multiple entries in the database draft_queryset = None rfc_queryset = None if doc_type in ("draft", "wg-draft"):

    Affiliation in IETF DraftsNumber of OccurrencesNumber of Occurrences Canonicalised Affiliation