nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge master into haskell-updates

authored by

github-actions[bot] and committed by
GitHub
9fd1366f 67e47c11

+4490 -4194
+6
CONTRIBUTING.md
··· 97 97 98 98 Follow these steps to backport a change into a release branch in compliance with the [commit policy](https://nixos.org/nixpkgs/manual/#submitting-changes-stable-release-branches). 99 99 100 + You can add a label such as `backport release-22.05` to a PR, so that merging it will 101 + automatically create a backport (via [a GitHub Action](.github/workflows/backport.yml)). 102 + This also works for PR's that have already been merged, and might take a couple of minutes to trigger. 103 + 104 + You can also create the backport manually: 105 + 100 106 1. Take note of the commits in which the change was introduced into `master` branch. 101 107 2. Check out the target _release branch_, e.g. `release-21.11`. Do not use a _channel branch_ like `nixos-21.11` or `nixpkgs-21.11-darwin`. 102 108 3. Create a branch for your change, e.g. `git checkout -b backport`.
+4 -2
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 92 92 <itemizedlist spacing="compact"> 93 93 <listitem> 94 94 <para> 95 - Please remove this line when you add the first item since 96 - docbook requires the section to be non-empty 95 + A new module was added for the Saleae Logic device family, 96 + providing the options 97 + <literal>hardware.saleae-logic.enable</literal> and 98 + <literal>hardware.saleae-logic.package</literal>. 97 99 </para> 98 100 </listitem> 99 101 </itemizedlist>
+2 -1
nixos/doc/manual/release-notes/rl-2211.section.md
··· 44 44 45 45 ## Other Notable Changes {#sec-release-22.11-notable-changes} 46 46 47 - - Please remove this line when you add the first item since docbook requires the section to be non-empty 47 + * A new module was added for the Saleae Logic device family, providing the options `hardware.saleae-logic.enable` and `hardware.saleae-logic.package`. 48 + 48 49 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+25
nixos/modules/hardware/saleae-logic.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + let 4 + cfg = config.hardware.saleae-logic; 5 + in 6 + { 7 + options.hardware.saleae-logic = { 8 + enable = lib.mkEnableOption "udev rules for Saleae Logic devices"; 9 + 10 + package = lib.mkOption { 11 + type = lib.types.package; 12 + default = pkgs.saleae-logic-2; 13 + defaultText = lib.literalExpression "pkgs.saleae-logic-2"; 14 + description = '' 15 + Saleae Logic package to use. 16 + ''; 17 + }; 18 + }; 19 + 20 + config = lib.mkIf cfg.enable { 21 + services.udev.packages = [ cfg.package ]; 22 + }; 23 + 24 + meta.maintainers = with lib.maintainers; [ chivay ]; 25 + }
+1
nixos/modules/module-list.nix
··· 73 73 ./hardware/printers.nix 74 74 ./hardware/raid/hpsa.nix 75 75 ./hardware/rtl-sdr.nix 76 + ./hardware/saleae-logic.nix 76 77 ./hardware/steam-hardware.nix 77 78 ./hardware/system-76.nix 78 79 ./hardware/tuxedo-keyboard.nix
+1 -1
nixos/modules/services/web-apps/nextcloud.nix
··· 733 733 'trusted_domains' => ${writePhpArrary ([ cfg.hostName ] ++ c.extraTrustedDomains)}, 734 734 'trusted_proxies' => ${writePhpArrary (c.trustedProxies)}, 735 735 ${optionalString (c.defaultPhoneRegion != null) "'default_phone_region' => '${c.defaultPhoneRegion}',"} 736 - ${optionalString (nextcloudGreaterOrEqualThan "23") "'profile.enabled' => ${boolToString cfg.globalProfiles}"} 736 + ${optionalString (nextcloudGreaterOrEqualThan "23") "'profile.enabled' => ${boolToString cfg.globalProfiles},"} 737 737 ${objectstoreConfig} 738 738 ]; 739 739 '';
+31 -15
nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py
··· 204 204 else: 205 205 return [] 206 206 207 + def should_update(v_from: str, v_to: str) -> bool: 208 + # see https://github.com/systemd/systemd/blob/main/src/boot/bootctl.c compare_product function 209 + 210 + len_from = len(v_from) 211 + len_to = len(v_to) 212 + 213 + if len_from < len_to: 214 + return False 215 + 216 + if len_from > len_to: 217 + return True 218 + 219 + return v_from < v_to 220 + 207 221 208 222 def main() -> None: 209 223 parser = argparse.ArgumentParser(description='Update NixOS-related systemd-boot files') ··· 258 244 subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@"] + flags + ["install"]) 259 245 else: 260 246 # Update bootloader to latest if needed 261 - systemd_version = subprocess.check_output(["@systemd@/bin/bootctl", "--version"], universal_newlines=True).split()[2] 262 - sdboot_status = subprocess.check_output(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "status"], universal_newlines=True) 247 + available_out = subprocess.check_output(["@systemd@/bin/bootctl", "--version"], universal_newlines=True).split()[2] 248 + installed_out = subprocess.check_output(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "status"], universal_newlines=True) 263 249 264 250 # See status_binaries() in systemd bootctl.c for code which generates this 265 - m = re.search("^\W+File:.*/EFI/(BOOT|systemd)/.*\.efi \(systemd-boot ([\d.]+[^)]*)\)$", 266 - sdboot_status, re.IGNORECASE | re.MULTILINE) 251 + installed_match = re.search(r"^\W+File:.*/EFI/(?:BOOT|systemd)/.*\.efi \(systemd-boot ([\d.]+[^)]*)\)$", 252 + installed_out, re.IGNORECASE | re.MULTILINE) 267 253 268 - needs_install = False 254 + available_match = re.search(r"^\((.*)\)$", available_out) 269 255 270 - if m is None: 271 - print("could not find any previously installed systemd-boot, installing.") 272 - # Let systemd-boot attempt an installation if a previous one wasn't found 273 - needs_install = True 274 - else: 275 - sdboot_version = f'({m.group(2)})' 276 - if systemd_version != sdboot_version: 277 - print("updating systemd-boot from %s to %s" % (sdboot_version, systemd_version)) 278 - needs_install = True 256 + if installed_match is None: 257 + raise Exception("could not find any previously installed systemd-boot") 279 258 280 - if needs_install: 259 + if available_match is None: 260 + raise Exception("could not determine systemd-boot version") 261 + 262 + installed_version = installed_match.group(1) 263 + available_version = available_match.group(1) 264 + 265 + if should_update(installed_version, available_version): 266 + print("updating systemd-boot from %s to %s" % (installed_version, available_version)) 281 267 subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "update"]) 268 + else: 269 + print("leaving systemd-boot %s in place (%s is not newer)" % (installed_version, available_version)) 282 270 283 271 mkdir_p("@efiSysMountPoint@/efi/nixos") 284 272 mkdir_p("@efiSysMountPoint@/loader/entries")
+2 -2
nixos/modules/virtualisation/nixos-containers.nix
··· 284 284 DeviceAllow = map (d: "${d.node} ${d.modifier}") cfg.allowedDevices; 285 285 }; 286 286 287 - system = config.nixpkgs.localSystem.system; 287 + inherit (config.nixpkgs) localSystem; 288 288 kernelVersion = config.boot.kernelPackages.kernel.version; 289 289 290 290 bindMountOpts = { name, ... }: { ··· 478 478 type = lib.mkOptionType { 479 479 name = "Toplevel NixOS config"; 480 480 merge = loc: defs: (import "${toString config.nixpkgs}/nixos/lib/eval-config.nix" { 481 - inherit system; 482 481 modules = 483 482 let 484 483 extraConfig = { 485 484 _file = "module at ${__curPos.file}:${toString __curPos.line}"; 486 485 config = { 486 + nixpkgs = { inherit localSystem; }; 487 487 boot.isContainer = true; 488 488 networking.hostName = mkDefault name; 489 489 networking.useDHCP = false;
+2 -1
nixos/tests/containers-imperative.nix
··· 18 18 # container available within the VM, because we don't have network access. 19 19 virtualisation.additionalPaths = let 20 20 emptyContainer = import ../lib/eval-config.nix { 21 - inherit (config.nixpkgs.localSystem) system; 22 21 modules = lib.singleton { 22 + nixpkgs = { inherit (config.nixpkgs) localSystem; }; 23 + 23 24 containers.foo.config = { 24 25 system.stateVersion = "18.03"; 25 26 };
+20 -11
nixos/tests/os-prober.nix
··· 75 75 # The test cannot access the network, so any packages 76 76 # nixos-rebuild needs must be included in the VM. 77 77 system.extraDependencies = with pkgs; 78 - [ sudo 79 - libxml2.bin 80 - libxslt.bin 78 + [ 79 + brotli 80 + brotli.dev 81 + brotli.lib 81 82 desktop-file-utils 82 83 docbook5 83 84 docbook_xsl_ns 84 - unionfs-fuse 85 - ntp 86 - nixos-artwork.wallpapers.simple-dark-gray-bottom 87 - perlPackages.XMLLibXML 88 - perlPackages.ListCompare 89 - shared-mime-info 90 - texinfo 91 - xorg.lndir 92 85 grub2 86 + kmod.dev 87 + libarchive 88 + libarchive.dev 89 + libxml2.bin 90 + libxslt.bin 91 + nixos-artwork.wallpapers.simple-dark-gray-bottom 92 + ntp 93 + perlPackages.ListCompare 94 + perlPackages.XMLLibXML 95 + python3Minimal 96 + shared-mime-info 97 + stdenv 98 + sudo 99 + texinfo 100 + unionfs-fuse 101 + xorg.lndir 93 102 94 103 # add curl so that rather than seeing the test attempt to download 95 104 # curl's tarball, we see what it's trying to download
+2 -2
pkgs/applications/blockchains/sparrow/default.nix
··· 20 20 21 21 let 22 22 pname = "sparrow"; 23 - version = "1.6.4"; 23 + version = "1.6.5"; 24 24 25 25 src = fetchurl { 26 26 url = "https://github.com/sparrowwallet/${pname}/releases/download/${version}/${pname}-${version}.tar.gz"; 27 - sha256 = "1wdibpbhv3g6qk42ddfc5vyqkkwprczy45w5wi115qg3g1rf1in7"; 27 + sha256 = "0zk33w664fky3ir6cqm6walc80fjhg9s0hnrllrc2hrxrqnrn88p"; 28 28 }; 29 29 30 30 launcher = writeScript "sparrow" ''
+2 -2
pkgs/applications/editors/cudatext/default.nix
··· 38 38 in 39 39 stdenv.mkDerivation rec { 40 40 pname = "cudatext"; 41 - version = "1.164.0"; 41 + version = "1.165.0"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "Alexey-T"; 45 45 repo = "CudaText"; 46 46 rev = version; 47 - sha256 = "sha256-LKLWZiA3Ya8xI2QvNW2f+5akndBloj5pQ7QNaVMoYSI="; 47 + sha256 = "sha256-Ri/3rDZu+r0++yEO9K9V25z0PiJxc+EOz0RZUz4yGVE="; 48 48 }; 49 49 50 50 postPatch = ''
+6 -6
pkgs/applications/editors/cudatext/deps.json
··· 16 16 }, 17 17 "ATSynEdit": { 18 18 "owner": "Alexey-T", 19 - "rev": "2022.05.09", 20 - "sha256": "sha256-bzBO9Uf8Zkt/kFouQuiPagL7e+86ezH/mOpDCuInJlE=" 19 + "rev": "2022.05.16", 20 + "sha256": "sha256-cEHGEMVcOjuq0mIIhrMqrBDaskWvLQoGrFLagOqkdwU=" 21 21 }, 22 22 "ATSynEdit_Cmp": { 23 23 "owner": "Alexey-T", 24 - "rev": "2022.01.21", 25 - "sha256": "sha256-el5YtzewnHV0fRPgVhApZUVP7huSQseqrO2ibvm6Ctg=" 24 + "rev": "2022.05.04", 25 + "sha256": "sha256-6O4RijSejPogokLSBuC6pKrOpihMi/ykS06YyV64Sak=" 26 26 }, 27 27 "EControl": { 28 28 "owner": "Alexey-T", ··· 31 31 }, 32 32 "ATSynEdit_Ex": { 33 33 "owner": "Alexey-T", 34 - "rev": "2022.05.08", 35 - "sha256": "sha256-mAxqJ3PO1BCOYNctKfw/4fKbJsI7Ckb5PVcKdALZu0Q=" 34 + "rev": "2022.05.15", 35 + "sha256": "sha256-iqadjpIr+Kn1r7MDQtHQsgtr97IZ8+HQ+q5DiUWASAQ=" 36 36 }, 37 37 "Python-for-Lazarus": { 38 38 "owner": "Alexey-T",
+6 -4
pkgs/applications/editors/textadept/11/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchurl, gtk2, glib, pkg-config, unzip, ncurses, zip }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "11.1"; 4 + version = "11.3"; 5 5 pname = "textadept11"; 6 6 7 7 nativeBuildInputs = [ pkg-config unzip zip ]; ··· 9 9 gtk2 ncurses glib 10 10 ]; 11 11 12 + enableParallelBuilding = true; 13 + 12 14 src = fetchFromGitHub { 13 15 name = "textadept11"; 14 16 owner = "orbitalquark"; 15 17 repo = "textadept"; 16 - rev = "1df99d561dd2055a01efa9183bb9e1b2ad43babc"; 17 - sha256 = "0g4bh5dp391vi32aa796vszpbxyl2dm5231v9dwc8l9v0b2786qn"; 18 + rev = "textadept_${version}"; 19 + sha256 = "sha256-C7J/Qr/58hLbyw39R+GU4wot1gbAXf51Cv6KGk3kg30="; 18 20 }; 19 21 20 22 preConfigure = ··· 48 46 ]; 49 47 50 48 meta = with lib; { 51 - description = "An extensible text editor based on Scintilla with Lua scripting. Version 11_beta"; 49 + description = "An extensible text editor based on Scintilla with Lua scripting."; 52 50 homepage = "http://foicica.com/textadept"; 53 51 license = licenses.mit; 54 52 maintainers = with maintainers; [ raskin mirrexagon ];
+42 -48
pkgs/applications/editors/textadept/11/deps.nix
··· 1 1 { 2 - "scintilla445.tgz" = { 3 - url = "https://www.scintilla.org/scintilla445.tgz"; 4 - sha256 = "1v1kyxj7rv5rxadbg8gl8wh1jafpy7zj0wr6dcyxq9209dl6h8ag"; 5 - }; 6 - "6a774158d8a3c7bc7ea120bc01cdb016fa351a7e.zip" = { 7 - url = "https://github.com/orbitalquark/scinterm/archive/6a774158d8a3c7bc7ea120bc01cdb016fa351a7e.zip"; 8 - sha256 = "083xvpw14dxbyrv4i48q76bmr44hs637qv363n6ibfs8xv1kq7iv"; 9 - }; 10 - "scintillua_4.4.5-2.zip" = { 11 - url = "https://github.com/orbitalquark/scintillua/archive/scintillua_4.4.5-2.zip"; 12 - sha256 = "1061y2gg78zb2mml8msyarxgdwbf7g8g2v08fr1qqsqi2pbb7mfc"; 13 - }; 14 - "lua-5.3.5.tar.gz" = { 15 - url = "http://www.lua.org/ftp/lua-5.3.5.tar.gz"; 16 - sha256 = "1b2qn2rv96nmbm6zab4l877bd4zq7wpwm8drwjiy2ih4jqzysbhc"; 17 - }; 18 - "lpeg-1.0.2.tar.gz" = { 19 - url = "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz"; 20 - sha256 = "1zjzl7acvcdavmcg5l7wi12jd4rh95q9pl5aiww7hv0v0mv6bmj8"; 21 - }; 22 - "v1_8_0.zip" = { 23 - url = "https://github.com/keplerproject/luafilesystem/archive/v1_8_0.zip"; 24 - sha256 = "12p1p5qpdql44y3cc035h8rs8rgdqp6nrnrixlp5544agb5bx9p3"; 25 - }; 26 - "64587546482a1a6324706d75c80b77d2f87118a4.zip" = { 27 - url = "https://github.com/orbitalquark/gtdialog/archive/64587546482a1a6324706d75c80b77d2f87118a4.zip"; 28 - sha256 = "10mglbnn8r1cakqn9h285pwfnh7kfa98v7j8qh83c24n66blyfh9"; 29 - }; 30 - "cdk-5.0-20200923.tgz" = { 31 - url = "http://invisible-mirror.net/archives/cdk/cdk-5.0-20200923.tgz"; 32 - sha256 = "1vdakz119a13d7p7w53hk56fdmbkhv6y9xvdapcfnbnbh3l5szq0"; 33 - }; 34 - "libtermkey-0.20.tar.gz" = { 35 - url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"; 36 - sha256 = "1xfj6lchhfljmbcl6dz8dpakppyy13nbl4ykxiv5x4dr9b4qf3bc"; 37 - }; 38 - "pdcurs39.zip" = { 39 - url = "https://github.com/wmcbrine/PDCurses/archive/3.9.zip"; 40 - sha256 = "0ydsa15d6fgk15zcavbxsi4vj3knlr2495dc5v4f5xzvv2qwlb2w"; 41 - }; 42 - "bombay.zip" = { 43 - url = "http://foicica.com/hg/bombay/archive/b25520cc76bb.zip"; 44 - sha256 = "07spq7jmkfyq20gv67yffara3ln3ns2xi0k02m2mxdms3xm1q36h"; 45 - }; 46 - "cloc-1.60.pl" = { 47 - url = "http://prdownloads.sourceforge.net/cloc/cloc-1.60.pl"; 48 - sha256 = "0p504bi19va3dh274v7lb7giqrydwa5yyry60f7jpz84y6z71a2a"; 49 - }; 2 + "scintilla514.tgz" = { 3 + url = "https://www.scintilla.org/scintilla514.tgz"; 4 + sha256 = "sha256-3IJcVUmJBWsmMURsfKKLFHyUw2XZI90Kkoq3oR3To2U="; 5 + }; 6 + "lexilla510.tgz" = { 7 + url = "https://www.scintilla.org/lexilla510.tgz"; 8 + sha256 = "sha256-azWVJ0AFSYZxuFTPV73uwiVJZvNxcS/POnFtl6p/P9g="; 9 + }; 10 + "475d8d43f3418590c28bd2fb07ee9229d1fa2d07.zip" = { 11 + url = 12 + "https://github.com/orbitalquark/scinterm/archive/475d8d43f3418590c28bd2fb07ee9229d1fa2d07.zip"; 13 + sha256 = "sha256-lNMK0RFcOLg9RRE5a6VelhSzUYVl5TiAiXcje2JOedE="; 14 + }; 15 + "4cb1464ef738a098f008d6530b776fe780b19c34.zip" = { 16 + url = 17 + "https://github.com/orbitalquark/scintillua/archive/4cb1464ef738a098f008d6530b776fe780b19c34.zip"; 18 + sha256 = "sha256-OgmZ5iWnjG1cI6wprHOyeLY86DcLpU/4omGJ6stEe0c="; 19 + }; 20 + "lua-5.4.2.tar.gz" = { 21 + url = "http://www.lua.org/ftp/lua-5.4.2.tar.gz"; 22 + sha256 = "sha256-EVcNl+nXMDwKWVZ+0ax8ZINAzQ2xDV/VlMCSI+8vUk8="; 23 + }; 24 + "lpeg-1.0.2.tar.gz" = { 25 + url = "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz"; 26 + sha256 = "sha256-SNZldgUbbHg4j6rQm3BJMJMmRYj80PJY3aqxzdShX/4="; 27 + }; 28 + "v1_8_0.zip" = { 29 + url = "https://github.com/keplerproject/luafilesystem/archive/v1_8_0.zip"; 30 + sha256 = "sha256-46a+ynqKkFIu7THbbM3F7WWkM4JlAMaGJ4TidnG54Yo="; 31 + }; 32 + "gtdialog_1.5.zip" = { 33 + url = "https://github.com/orbitalquark/gtdialog/archive/gtdialog_1.5.zip"; 34 + sha256 = "sha256-kk85ajgMG0okUwPAyL0TYq6BfS5cuyFmsk6i8pn7pbw="; 35 + }; 36 + "cdk-5.0-20200923.tgz" = { 37 + url = "http://invisible-mirror.net/archives/cdk/cdk-5.0-20200923.tgz"; 38 + sha256 = "sha256-AH9d6IDLLuvYVW335M2Gc9XmTJlwFH7uaSOoFMKfqu0="; 39 + }; 40 + "libtermkey-0.20.tar.gz" = { 41 + url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"; 42 + sha256 = "sha256-bA2HyUq5kV527NMTuuwI3t871W3oN0PZqpI6CBk10vU="; 43 + }; 50 44 }
+3 -3
pkgs/applications/emulators/dolphin-emu/master.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "dolphin-emu"; 13 - version = "5.0-16101"; 13 + version = "5.0-16380"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "dolphin-emu"; 17 17 repo = "dolphin"; 18 - rev = "8ecfa537a242de74d2e372e30d9d79b14584b2fb"; 19 - sha256 = "3jLGVzTDzEtHWvIb9DFTbJiA9dE9Pm14vYER998Zln0="; 18 + rev = "8335ec70e5fe253eb21509408ca6b5736ed57dfc"; 19 + sha256 = "sha256-WRQ3WfMTlIPoYrEFWLHL9KSfhzQl24AlkbWjh3a4fPE="; 20 20 fetchSubmodules = true; 21 21 }; 22 22
+2 -2
pkgs/applications/finance/irpf/default.nix
··· 11 11 12 12 stdenvNoCC.mkDerivation rec { 13 13 pname = "irpf"; 14 - version = "2022-1.5"; 14 + version = "2022-1.6"; 15 15 16 16 src = let 17 17 year = lib.head (lib.splitVersion version); 18 18 in fetchzip { 19 19 url = "https://downloadirpf.receita.fazenda.gov.br/irpf/${year}/irpf/arquivos/IRPF${version}.zip"; 20 - sha256 = "sha256-FJqLjERTVQC6KvLSrCzR9RTIiJEfHvOwX7CRdUmHf/U="; 20 + sha256 = "sha256-/4dND4CMl4xnGGIb+FWqgL0wbt7fqUE78m737U0kAdw="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ unzip makeWrapper copyDesktopItems ];
+2 -2
pkgs/applications/graphics/hydrus/default.nix
··· 10 10 11 11 python3Packages.buildPythonPackage rec { 12 12 pname = "hydrus"; 13 - version = "483"; 13 + version = "484"; 14 14 format = "other"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "hydrusnetwork"; 18 18 repo = "hydrus"; 19 19 rev = "refs/tags/v${version}"; 20 - sha256 = "sha256-UU3XQ0NC/apJ0S/uDDNG+8DOD+sRyX98yMcjtL2Htig="; 20 + sha256 = "sha256-W0oWETj0xnuS2XAORRb5sb39gbpvyE+cHqgIU+grolQ="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+6 -15
pkgs/applications/graphics/monado/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitLab 4 - , fetchpatch 5 4 , writeText 6 5 , cmake 7 6 , doxygen ··· 45 46 46 47 stdenv.mkDerivation rec { 47 48 pname = "monado"; 48 - version = "21.0.0"; 49 + version = "unstable-2022-05-28"; 49 50 50 51 src = fetchFromGitLab { 51 52 domain = "gitlab.freedesktop.org"; 52 - owner = pname; 53 - repo = pname; 54 - rev = "v${version}"; 55 - sha256 = "07zxs96i3prjqww1f68496cl2xxqaidx32lpfyy0pn5am4c297zc"; 53 + owner = "monado"; 54 + repo = "monado"; 55 + rev = "011bcbdcff227e25507e5f2d81a83a2bbe478856"; 56 + sha256 = "sha256-8velNKSCZJtKO8ATwXDl1nU8RbxZ8TeyGiUQFOXifuI="; 56 57 }; 57 - 58 - patches = [ 59 - # https://github.com/NixOS/nixpkgs/issues/137245 60 - # Fix warning after Vulkan 1.2.174 VK_NULL_HANDLE change 61 - (fetchpatch { 62 - url = "https://gitlab.freedesktop.org/monado/monado/-/commit/c47775a95d8e139a2f234063793eb6726f830510.patch"; 63 - sha256 = "093ymvi9ifpk4vyjcwhhci9cnscxwbv5f80xdbppcqa0j92nmkmp"; 64 - }) 65 - ]; 66 58 67 59 nativeBuildInputs = [ 68 60 cmake ··· 120 130 license = licenses.boost; 121 131 maintainers = with maintainers; [ expipiplus1 prusnak ]; 122 132 platforms = platforms.linux; 133 + mainProgram = "monado-cli"; 123 134 }; 124 135 }
+3 -3
pkgs/applications/misc/1password/default.nix
··· 14 14 pname = "1password-cli"; 15 15 version = "2.3.1"; 16 16 sources = rec { 17 - aarch64-linux = fetch "linux_arm64" "sha256-fKW2qSQkkC4GcnHcLLszX1pcqK67SaofVX017/cIkD0=" "zip"; 18 - i686-linux = fetch "linux_386" "sha256-TmQ3nWG12DTpAJaxbK+hnJak0RrFhhw6rJWfV7q8wb4=" "zip"; 17 + aarch64-linux = fetch "linux_arm64" "sha256-MikzcVqlhVSKzr1ttOCAg4p57sjsalSuwcqBhVUr5Ng=" "zip"; 18 + i686-linux = fetch "linux_386" "sha256-ElOhd3n38xAPtVePjQb8qMUCCAWqEfBKlX9Vuz5/Zns=" "zip"; 19 19 x86_64-linux = fetch "linux_amd64" "sha256-r8yl9dDiiIQBooePrq/dGw2RU9tJXmeblx+qk3qq5Ys=" "zip"; 20 - aarch64-darwin = fetch "apple_universal" "sha256-DD1j093SjnaPtkQ4XuU1zkRi6XPXtwnBxiqC6wZbV+w=" "pkg"; 20 + aarch64-darwin = fetch "apple_universal" "sha256-sXdYInNBOEW/zIEPjhKbFOMxZdrMlE8pOwhmXLUJgsk=" "pkg"; 21 21 x86_64-darwin = aarch64-darwin; 22 22 }; 23 23 platforms = builtins.attrNames sources;
+3 -3
pkgs/applications/misc/avrdudess/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "avrdudess"; 5 - version = "2.13"; 5 + version = "2.14"; 6 6 7 7 src = fetchurl { 8 - url = "https://github.com/ZakKemble/AVRDUDESS/releases/download/v2.13/AVRDUDESS-2.13-portable.zip"; 9 - sha256 = "0fpvc19fb14ppqfb2yg821szmhyanxcp5chfldf8yh51f64zihv9"; 8 + url = "https://github.com/ZakKemble/AVRDUDESS/releases/download/v2.14/AVRDUDESS-2.14-portable.zip"; 9 + sha256 = "sha256-x3xcsJLBJVO8XdV4OUveZ4KLqN5z/z0FsNLbGHSNoHs="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip ];
+3 -3
pkgs/applications/misc/sigi/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "sigi"; 5 - version = "3.3.0"; 5 + version = "3.4.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-dcfzCac4dT2X1hgTSh30G7h2XtvVj1jMUmrUzqZ11y8="; 9 + sha256 = "sha256-wqdgrFeB3YuMo/r4ndqRZCz+M1WuUvX2pHHkyNMdnvo="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-CQofC9Y0y8XASLpjk9B6mMlSQqiXnoGZ8kJh16txiPA="; 12 + cargoSha256 = "sha256-103zhlskzhEj6oUam7YDRWiSPTaV2PPJhzP7QeMBtDQ="; 13 13 nativeBuildInputs = [ installShellFiles ]; 14 14 15 15 # In case anything goes wrong.
+17 -4
pkgs/applications/networking/3proxy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, coreutils, nixosTests }: 1 + { lib, stdenv, fetchFromGitHub, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "3proxy"; 5 5 version = "0.9.4"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "z3APA3A"; 8 + owner = "3proxy"; 9 9 repo = pname; 10 10 rev = version; 11 11 sha256 = "sha256-4bLlQ/ULvpjs6fr19yBBln5mRRc+yj+zVLiTs1e/Ypc="; 12 12 }; 13 13 14 + # They use 'install -s', that calls the native strip instead of the cross. 15 + # Don't strip binary on install, we strip it on fixup phase anyway. 16 + postPatch = '' 17 + substituteInPlace Makefile.Linux \ 18 + --replace "(INSTALL_BIN) -s" "(INSTALL_BIN)" \ 19 + --replace "/usr" "" 20 + ''; 21 + 14 22 makeFlags = [ 15 23 "-f Makefile.Linux" 16 - "INSTALL=${coreutils}/bin/install" 24 + "INSTALL=install" 17 25 "DESTDIR=${placeholder "out"}" 26 + "CC:=$(CC)" 18 27 ]; 28 + 29 + postInstall = '' 30 + rm -fr $out/var 31 + ''; 19 32 20 33 passthru.tests = { 21 34 smoke-test = nixosTests._3proxy; ··· 36 23 37 24 meta = with lib; { 38 25 description = "Tiny free proxy server"; 39 - homepage = "https://github.com/z3APA3A/3proxy"; 26 + homepage = "https://github.com/3proxy/3proxy"; 40 27 license = licenses.bsd2; 41 28 platforms = platforms.linux; 42 29 maintainers = with maintainers; [ misuzu ];
+2 -2
pkgs/applications/networking/cluster/argo-rollouts/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argo-rollouts"; 5 - version = "1.2.0"; 5 + version = "1.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-rollouts"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-RgjoRvLsd+WHTpFy1WbJtrVaMnRp6/7A921+abCMGu0="; 11 + sha256 = "sha256-1oF93+pN9wyCq5R5bTeMN/uzg9DHpc/AkX/d1lB5r1g="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-URuIeF1ejKdMGxziJbujLctYheiIr/Jfo+gTzppZG9E=";
+2 -2
pkgs/applications/networking/cluster/arkade/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "arkade"; 9 - version = "0.8.24"; 9 + version = "0.8.25"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "alexellis"; 13 13 repo = "arkade"; 14 14 rev = version; 15 - sha256 = "sha256-TK81Cqhddbqh6cizyOoLuBTE2KxFQzy07EdkQ9bYNs0="; 15 + sha256 = "sha256-m4vgQ4K73qmUMwPtviUQuRC2jNIDlE516WEZkFr3Upw="; 16 16 }; 17 17 18 18 CGO_ENABLED = 0;
+2 -2
pkgs/applications/networking/cluster/cilium/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cilium-cli"; 5 - version = "0.11.1"; 5 + version = "0.11.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cilium"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-8twqA8aUuk5+LzjxMRbRA3m6qiEbk60A0q3nw9uzCvU="; 11 + sha256 = "sha256-4+4E7v/b74DDekqymH8PR7/GfH3GGzSQFQk24VJisQ0="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+3 -3
pkgs/applications/networking/cluster/fluxctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fluxctl"; 5 - version = "1.25.0"; 5 + version = "1.25.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = "flux"; 10 10 rev = version; 11 - sha256 = "sha256-EFB8iAs7e4FigYnTvkh+dpZq6ymX7Qfy0cUDtUaPdmM="; 11 + sha256 = "sha256-l/BPnqa0j0yAdrl9BxFUKt94JwiNyPq1gKYuhGj/c8w="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-9RyTeGjp7mEpmWnQeK2uG1krO6+1sK6fsID6JVrejHw="; 14 + vendorSha256 = "sha256-PZriaKbgRKm7ssHOBmbzbma5LrRt0TsQiphSrtcT83k="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
-2
pkgs/applications/networking/cluster/kube-router/default.nix
··· 22 22 "-X github.com/cloudnativelabs/kube-router/pkg/version.BuildDate=Nix" 23 23 ]; 24 24 25 - checkFlags = [ "-short" ]; 26 - 27 25 passthru.tests.version = testers.testVersion { 28 26 package = kube-router; 29 27 };
+2 -1
pkgs/applications/networking/cluster/temporal/default.nix
··· 17 17 18 18 ldflags = [ "-s" "-w" ]; 19 19 20 - checkFlags = [ "-short" ]; 20 + # There too many integration tests. 21 + doCheck = false; 21 22 22 23 installPhase = '' 23 24 runHook preInstall
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "3.16.0"; 5 + version = "3.16.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-cxx18dfXWm/0/9sGuc+LxfEHVc9VVfMEYbC9L4HKIm0="; 11 + sha256 = "sha256-WnUOHUGIALHd0Ne+WzturRxomznpgVjVLBM1wvVAA4M="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-ReQsNy4hfhB6+Megm1KywX2UkQMHkv3/RtNWdhwb4Zw="; 14 + vendorSha256 = "sha256-fjmKBRkXZQkN6fofy+H7DS76H+J0x6tRgv0fV/2rCwY="; 15 15 16 16 subPackages = [ "." ]; 17 17
+3 -3
pkgs/applications/networking/p2p/rqbit/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rqbit"; 5 - version = "2.1.3"; 5 + version = "2.1.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ikatson"; 9 9 repo = "rqbit"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ovg+oMlt3XzOxG9w/5Li3awMyRdIt1/JnIFfZktftkw="; 11 + sha256 = "sha256-PkU3QJvAK2b1KQC1o5md35iucjq+SYoKAGxqiojf4rw="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-0CA0HwFI86VfSyBNn0nlC1n4BVgOc9BLh1it7ReT8+Y="; 14 + cargoSha256 = "sha256-Jj2CK3nwktv2MU+EHXzQ/lKDUlC+4HkaItMTtoGF1Pw="; 15 15 16 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 17 17
+11 -1
pkgs/applications/science/biology/kssd/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, zlib, automake, autoconf, libtool }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, zlib, automake, autoconf, libtool }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "kssd"; ··· 10 10 rev = "v${version}"; 11 11 sha256 = "sha256-8jzYqo9LXF66pQ1EIusm+gba2VbTYpJz2K3NVlA3QxY="; 12 12 }; 13 + 14 + patches = [ 15 + # Pull upstream patch for -fno-common toolchain support: 16 + # https://github.com/yhg926/public_kssd/pull/9 17 + (fetchpatch { 18 + name = "fno-common.patch"; 19 + url = "https://github.com/yhg926/public_kssd/commit/cdd1e8aae256146f5913a3b4c723b638d53bdf27.patch"; 20 + sha256 = "sha256-HhaTRqPfKR+ouh0PwEH6u22pbuqbX2OypRzw8BXm0W4="; 21 + }) 22 + ]; 13 23 14 24 nativeBuildInputs = [ autoconf automake ]; 15 25 buildInputs = [ zlib libtool ];
+39 -39
pkgs/applications/science/electronics/picoscope/sources.json
··· 1 1 { 2 2 "x86_64-linux": { 3 3 "libpicocv": { 4 - "sha256": "c2e74c2b0679df0226993d063b38d0eda5b05ff59f29bbfa12ded5226df37024", 5 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libpicocv/libpicocv_1.1.27-1r153_amd64.deb", 6 - "version": "1.1.27-1r153" 4 + "sha256": "feddc1cb9082005e80c4e2c2732ee4c537915c463ea327aa53a642aab95b8691", 5 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libpicocv/libpicocv_1.1.33-beta2r167_amd64.deb", 6 + "version": "1.1.33-beta2r167" 7 7 }, 8 8 "libpicoipp": { 9 - "sha256": "0e414ad547f506a39ff11a64772baec923e54f8ca98b81fc9b9cbd19ed573b22", 10 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libpicoipp/libpicoipp_1.3.0-4r130_amd64.deb", 11 - "version": "1.3.0-4r130" 9 + "sha256": "2d749b8fd5dbd811c270e4aa78c5ee9cd33832b90d089ae386b0f85aed2d0204", 10 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libpicoipp/libpicoipp_1.4.0-4r136_amd64.deb", 11 + "version": "1.4.0-4r136" 12 12 }, 13 13 "libps2000": { 14 - "sha256": "d1e94148719a03b70f233cea9a686ed48be03224f2931c9cd282571819a780c7", 15 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps2000/libps2000_3.0.76-3r2981_amd64.deb", 16 - "version": "3.0.76-3r2981" 14 + "sha256": "d306890d1e87651ae83ef00143c8e62b82fae2be39886b6884408751cb910fa4", 15 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps2000/libps2000_3.0.89-3r3163_amd64.deb", 16 + "version": "3.0.89-3r3163" 17 17 }, 18 18 "libps2000a": { 19 - "sha256": "c665b70c04203c98bb1b509830ec522f58906b2f393f35c1b4f9c27217ac3572", 20 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps2000a/libps2000a_2.1.76-5r2981_amd64.deb", 21 - "version": "2.1.76-5r2981" 19 + "sha256": "38391dfbe6c6c04ba5b5c99bd53404d5342e40c9eca703e3d95cbc6302114270", 20 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps2000a/libps2000a_2.1.89-5r3163_amd64.deb", 21 + "version": "2.1.89-5r3163" 22 22 }, 23 23 "libps3000": { 24 - "sha256": "dbb9f9afdc694c4451e652f22a4c4c67ef609407f45229d26330ce7cfbb02b1c", 25 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps3000/libps3000_4.0.76-3r2981_amd64.deb", 26 - "version": "4.0.76-3r2981" 24 + "sha256": "39b4b56a839eb5d7abcf1de2bab472c2de2d8aa5ffc3ba445e99d5aa8178ba07", 25 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps3000/libps3000_4.0.89-3r3163_amd64.deb", 26 + "version": "4.0.89-3r3163" 27 27 }, 28 28 "libps3000a": { 29 - "sha256": "5ab3daadc5d804b224215d138ca94abecc3c311bb91624638e2758ac2a490d25", 30 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps3000a/libps3000a_2.1.76-6r2981_amd64.deb", 31 - "version": "2.1.76-6r2981" 29 + "sha256": "ea96735b90d02c72c9c7b517413fed0d366ac634100e22467a39c780985669e4", 30 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps3000a/libps3000a_2.1.89-6r3163_amd64.deb", 31 + "version": "2.1.89-6r3163" 32 32 }, 33 33 "libps4000": { 34 - "sha256": "13504936207f1a7410f726c93358bb21c0c0cd1bd8b473332308a345ff6692c7", 35 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps4000/libps4000_2.1.76-2r2981_amd64.deb", 36 - "version": "2.1.76-2r2981" 34 + "sha256": "7177cd4debf811fa7d7105703a4fc546fe1a79fc3275e3f36326b014c1334f55", 35 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps4000/libps4000_2.1.89-2r3163_amd64.deb", 36 + "version": "2.1.89-2r3163" 37 37 }, 38 38 "libps4000a": { 39 - "sha256": "196ccce96e8cf29f5168cda83748857172ae43dc2b990adbacb3327511784492", 40 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps4000a/libps4000a_2.1.76-2r2981_amd64.deb", 41 - "version": "2.1.76-2r2981" 39 + "sha256": "ebe94d6d9f349e5082dcbed55d059ac77c0129b967467786d1cef3f662ebac99", 40 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps4000a/libps4000a_2.1.89-2r3163_amd64.deb", 41 + "version": "2.1.89-2r3163" 42 42 }, 43 43 "libps5000": { 44 - "sha256": "1793180d4067df12080ba7b01cbdf38397c2931a7f4915f13dbdb9295cc77cb3", 45 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps5000/libps5000_2.1.76-3r2981_amd64.deb", 46 - "version": "2.1.76-3r2981" 44 + "sha256": "732164658acb4bdfdbf3fc785419ea6a4944ed2892be9dde134b345a976c3318", 45 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps5000/libps5000_2.1.89-3r3163_amd64.deb", 46 + "version": "2.1.89-3r3163" 47 47 }, 48 48 "libps5000a": { 49 - "sha256": "b08a73f43bdcfa2bc02d01f398147da9b8cf2599477144b5a2b2af924d0bf0e9", 50 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps5000a/libps5000a_2.1.76-5r2981_amd64.deb", 51 - "version": "2.1.76-5r2981" 49 + "sha256": "3438f51c8646e3ac5a479c88aa7a89b3dfcce2090720317b4efb8db538372cdb", 50 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps5000a/libps5000a_2.1.89-5r3163_amd64.deb", 51 + "version": "2.1.89-5r3163" 52 52 }, 53 53 "libps6000": { 54 - "sha256": "dda0fcb8b346f77a715053b52ad9e26b323991f8336001de7ff1bb6d04c716b4", 55 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps6000/libps6000_2.1.76-6r2981_amd64.deb", 56 - "version": "2.1.76-6r2981" 54 + "sha256": "fe4165ab0d323728b473347b61439b074486809d673e47f169d0062cf917191c", 55 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps6000/libps6000_2.1.89-6r3163_amd64.deb", 56 + "version": "2.1.89-6r3163" 57 57 }, 58 58 "libps6000a": { 59 - "sha256": "786e5772055500e2e445ddfd5402fed359a9afa54177bd731912d24522729004", 60 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps6000a/libps6000a_1.0.76-0r2981_amd64.deb", 61 - "version": "1.0.76-0r2981" 59 + "sha256": "0552811f92a015ef47b09947631f5f5d8c30b122425de083bea79df88957a9c7", 60 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/libp/libps6000a/libps6000a_1.0.89-0r3163_amd64.deb", 61 + "version": "1.0.89-0r3163" 62 62 }, 63 63 "picoscope": { 64 - "sha256": "12afae7992b9d60c93e5e39c7fe3f93955be3bdff554b52894064d5f320347f4", 65 - "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/p/picoscope/picoscope_7.0.86-1r9656_amd64.deb", 66 - "version": "7.0.86-1r9656" 64 + "sha256": "b060edb02bc2de5d10a45d31d4b7f9c767d18511e2f65a1ebdd70cc3e8780262", 65 + "url": "https://labs.picotech.com/rc/picoscope7/debian/pool/main/p/picoscope/picoscope_7.0.100-1r11387_amd64.deb", 66 + "version": "7.0.100-1r11387" 67 67 } 68 68 } 69 69 }
+4
pkgs/applications/science/logic/potassco/clingcon.nix
··· 16 16 sha256 = "1g2xkz9nsgqnrw3fdf5jchl16f0skj5mm32va61scc2yrchll166"; 17 17 }; 18 18 19 + patches = [ 20 + ./clingcon_limits.patch 21 + ]; 22 + 19 23 postPatch = '' 20 24 cp ${catch2}/include/catch2/catch.hpp libclingcon/tests/catch.hpp 21 25 '';
+24
pkgs/applications/science/logic/potassco/clingcon_limits.patch
··· 1 + diff --git i/libclingcon/clingcon/base.hh w/libclingcon/clingcon/base.hh 2 + index 2d449fe..0b5fa17 100644 3 + --- i/libclingcon/clingcon/base.hh 4 + +++ w/libclingcon/clingcon/base.hh 5 + @@ -28,6 +28,7 @@ 6 + #include <clingo.hh> 7 + #include <optional> 8 + #include <forward_list> 9 + +#include <limits> 10 + 11 + //! @file clingcon/base.hh 12 + //! Basic data types. 13 + diff --git i/libclingcon/clingcon/util.hh w/libclingcon/clingcon/util.hh 14 + index df4cddd..308259e 100644 15 + --- i/libclingcon/clingcon/util.hh 16 + +++ w/libclingcon/clingcon/util.hh 17 + @@ -30,6 +30,7 @@ 18 + #include <map> 19 + #include <cstdlib> 20 + #include <stdexcept> 21 + +#include <limits> 22 + 23 + //! @file clingcon/util.hh 24 + //! Very general utility functions.
+2 -2
pkgs/applications/science/logic/potassco/clingo.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clingo"; 5 - version = "5.5.1"; 5 + version = "5.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "potassco"; 9 9 repo = "clingo"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-KBCwGNkz5HqbgXbDxPVcqxMXC8B2+wRI8eZVVXMVpLI="; 11 + sha256 = "sha256-fBf7MRFkd5SfHDQ5OvWx4lP/N716SrF9uY4JF7SiWRk="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/science/math/gmsh/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "gmsh"; 8 - version = "4.9.5"; 8 + version = "4.10.2"; 9 9 10 10 src = fetchurl { 11 11 url = "https://gmsh.info/src/gmsh-${version}-source.tgz"; 12 - sha256 = "sha256-/9ZJAIRCCHGciNkaZsKBiJAjEyt6nigsUVSMufbzrUQ="; 12 + sha256 = "sha256-2SEQnmxBn2jVUH2WEu6BXUC1I5pdsXXygoXgzQ2/JRc="; 13 13 }; 14 14 15 15 buildInputs = [
+10 -3
pkgs/applications/science/math/nauty/default.nix
··· 4 4 }: 5 5 stdenv.mkDerivation rec { 6 6 pname = "nauty"; 7 - version = "27r1"; 7 + version = "2.7r3"; 8 + 8 9 src = fetchurl { 9 - url = "https://pallini.di.uniroma1.it/nauty${version}.tar.gz"; 10 - sha256 = "0xsfqfcknbd6g6wzpa5l7crmmk3bf3zjh37rhylq6b20dqcmvjkn"; 10 + url = "https://pallini.di.uniroma1.it/nauty${builtins.replaceStrings ["."] [""] version}.tar.gz"; 11 + sha256 = "sha256-TwZltxalP3oU6irjAFnyPQZM4/5MEsATQE724e4LiMI="; 11 12 }; 13 + 12 14 outputs = [ "out" "dev" ]; 15 + 13 16 configureFlags = [ 14 17 # Prevent nauty from sniffing some cpu features. While those are very 15 18 # widely available, it can lead to nasty bugs when they are not available: 16 19 # https://groups.google.com/forum/#!topic/sage-packaging/Pe4SRDNYlhA 20 + "--enable-generic" # don't use -march=native 17 21 "--${if stdenv.hostPlatform.sse4_2Support then "enable" else "disable"}-popcnt" 18 22 "--${if stdenv.hostPlatform.sse4_aSupport then "enable" else "disable"}-clz" 19 23 ]; 24 + 20 25 installPhase = '' 21 26 mkdir -p "$out"/{bin,share/doc/nauty} "$dev"/{lib,include/nauty} 22 27 ··· 33 28 cp "$i" "$dev/lib/lib$i"; 34 29 done 35 30 ''; 31 + 36 32 checkTarget = "checks"; 33 + 37 34 meta = with lib; { 38 35 description = "Programs for computing automorphism groups of graphs and digraphs"; 39 36 license = licenses.asl20;
+3 -2
pkgs/applications/science/math/pari/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "pari"; 16 - version = "2.13.3"; 16 + version = "2.13.4"; 17 17 18 18 src = fetchurl { 19 19 urls = [ ··· 21 21 # old versions are at the url below 22 22 "https://pari.math.u-bordeaux.fr/pub/pari/OLD/${lib.versions.majorMinor version}/${pname}-${version}.tar.gz" 23 23 ]; 24 - hash = "sha256-zLp/FgbGhU8UQ2N7tXrQlY1Bx/R1P4roRZ8dZMJnoco="; 24 + hash = "sha256-vN6ezq4VkoFDgcFpfNtwY1Z7ZQQgGxvke7WJIPO84YU="; 25 25 }; 26 26 27 27 buildInputs = [ ··· 82 82 license = licenses.gpl2Plus; 83 83 maintainers = with maintainers; [ ertes AndersonTorres ] ++ teams.sage.members; 84 84 platforms = platforms.linux ++ platforms.darwin; 85 + mainProgram = "gp"; 85 86 }; 86 87 }
+2 -2
pkgs/applications/science/medicine/dcmtk/default.nix
··· 3 3 with lib; 4 4 stdenv.mkDerivation rec { 5 5 pname = "dcmtk"; 6 - version = "3.6.6"; 6 + version = "3.6.7"; 7 7 src = fetchFromGitHub { 8 8 owner = "DCMTK"; 9 9 repo = pname; 10 10 rev = "DCMTK-${version}"; 11 - sha256 = "sha256-bpvf2JJXikV/CqmXZb3w4Ua3VBEQcQk7PXw9ie0t8xo="; 11 + sha256 = "sha256-Pw99R6oGcLX6Z7s8ZnpbBBqcIvY9Rl/nw2PVGjpD3gY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+35 -15
pkgs/applications/terminal-emulators/kitty/default.nix
··· 28 28 with python3Packages; 29 29 buildPythonApplication rec { 30 30 pname = "kitty"; 31 - version = "0.24.4"; 31 + version = "0.25.0"; 32 32 format = "other"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "kovidgoyal"; 36 36 repo = "kitty"; 37 37 rev = "v${version}"; 38 - sha256 = "sha256-c6XM/xeGZ68srf8xQJA1iYCUR3kXNceTMxsZAnbFmug="; 38 + sha256 = "sha256-RYQVcbyKIv/FlrtROoQywWR+iF+4KYiYrrzErUrOCWM="; 39 39 }; 40 40 41 41 buildInputs = [ ··· 78 78 outputs = [ "out" "terminfo" "shell_integration" ]; 79 79 80 80 patches = [ 81 + # Required to get `test_ssh_env_vars` to pass. 81 82 (fetchpatch { 82 - name = "fix-zsh-completion-test-1.patch"; 83 - url = "https://github.com/kovidgoyal/kitty/commit/297592242c290a81ca4ba08802841f4c33a4de25.patch"; 84 - sha256 = "sha256-/V6y/4AaJsZvx1KS5UFZ+0zyAoZuLgbgFORZ1dX/1qE="; 83 + name = "increase-pty-lines.patch"; 84 + url = "https://github.com/kovidgoyal/kitty/commit/eb84990f5a8edc458e04d24cc1cda05316d74ceb.patch"; 85 + sha256 = "sha256-eOANfhGPMoN4FqxtIGDBu5X0O3RPLABDnL+LKqSLROI="; 85 86 }) 86 - (fetchpatch { 87 - name = "fix-zsh-completion-test-2.patch"; 88 - url = "https://github.com/kovidgoyal/kitty/commit/d8ed42ae8e014d9abf9550a65ae203468f8bfa43.patch"; 89 - sha256 = "sha256-Azgzqf5atW999FVn9rSGKMyZLsI692dYXhJPx07GBO0="; 90 - }) 91 - (fetchpatch { 92 - name = "fix-build-with-non-framework-python-on-darwin.patch"; 93 - url = "https://github.com/kovidgoyal/kitty/commit/57cffc71b78244e6a9d49f4c9af24d1a88dbf537.patch"; 94 - sha256 = "sha256-1IGONSVCVo5SmLKw90eqxaI5Mwc764O1ur+aMsc7h94="; 95 - }) 87 + # Fix to ensure that files in tar files used by SSH kitten have write permissions. 88 + ./tarball-restore-write-permissions.patch 89 + 90 + # Needed on darwin 91 + 92 + # Gets `test_ssh_shell_integration` to pass for `zsh` when `compinit` complains about 93 + # permissions. 94 + ./zsh-compinit.patch 95 + # Skip `test_ssh_login_shell_detection` in some cases, build users have their shell set to 96 + # `/sbin/nologin` which causes issues. 97 + ./disable-test_ssh_login_shell_detection.patch 98 + # Skip `test_ssh_bootstrap_with_different_launchers` when launcher is `zsh` since it causes: 99 + # OSError: master_fd is in error condition 100 + ./disable-test_ssh_bootstrap_with_different_launchers.patch 96 101 ]; 97 102 98 103 # Causes build failure due to warning ··· 146 141 # Fontconfig error: Cannot load default config file: No such file: (null) 147 142 export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf 148 143 144 + # Required for `test_ssh_shell_integration` to pass. 145 + export TERM=kitty 146 + 149 147 env PATH="${buildBinPath}:$PATH" ${python.interpreter} test.py 150 148 ''; 151 149 ··· 187 179 188 180 runHook postInstall 189 181 ''; 182 + 183 + # Patch shebangs that Nix can't automatically patch 184 + preFixup = 185 + let 186 + pathComponent = if stdenv.isDarwin then "Applications/kitty.app/Contents/Resources" else "lib"; 187 + in 188 + '' 189 + substituteInPlace $out/${pathComponent}/kitty/shell-integration/ssh/askpass.py \ 190 + --replace '/usr/bin/env -S ' $out/bin/ 191 + substituteInPlace $shell_integration/ssh/askpass.py \ 192 + --replace '/usr/bin/env -S ' $out/bin/ 193 + ''; 190 194 191 195 passthru.tests.test = nixosTests.terminal-emulators.kitty; 192 196
+13
pkgs/applications/terminal-emulators/kitty/disable-test_ssh_bootstrap_with_different_launchers.patch
··· 1 + diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py 2 + index 1f424146..d3cc191b 100644 3 + --- a/kitty_tests/ssh.py 4 + +++ b/kitty_tests/ssh.py 5 + @@ -166,7 +166,7 @@ def test_ssh_bootstrap_with_different_launchers(self): 6 + for sh in self.all_possible_sh: 7 + if sh == 'sh' or 'python' in sh: 8 + q = shutil.which(launcher) 9 + - if q: 10 + + if q and not 'zsh' in q: 11 + with self.subTest(sh=sh, launcher=q), tempfile.TemporaryDirectory() as tdir: 12 + self.check_bootstrap(sh, tdir, test_script='env; exit 0', SHELL_INTEGRATION_VALUE='', launcher=q) 13 +
+13
pkgs/applications/terminal-emulators/kitty/disable-test_ssh_login_shell_detection.patch
··· 1 + diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py 2 + index 1f424146..57620334 100644 3 + --- a/kitty_tests/ssh.py 4 + +++ b/kitty_tests/ssh.py 5 + @@ -197,7 +197,7 @@ def test_ssh_login_shell_detection(self): 6 + expected_login_shell = pwd.getpwuid(os.geteuid()).pw_shell 7 + for m in methods: 8 + for sh in self.all_possible_sh: 9 + - if 'python' in sh: 10 + + if 'python' in sh or '/sbin/nologin' in expected_login_shell: 11 + continue 12 + with self.subTest(sh=sh, method=m), tempfile.TemporaryDirectory() as tdir: 13 + pty = self.check_bootstrap(sh, tdir, test_script=f'{m}; echo "$login_shell"; exit 0', SHELL_INTEGRATION_VALUE='')
+27
pkgs/applications/terminal-emulators/kitty/tarball-restore-write-permissions.patch
··· 1 + From 59f6876187da2c01b35e696e169ca98239c08a41 Mon Sep 17 00:00:00 2001 2 + From: Jason Felice <jason.m.felice@gmail.com> 3 + Date: Tue, 24 May 2022 07:54:25 -0400 4 + Subject: [PATCH] Restore write permissions in tarball 5 + 6 + In Nix, the source files are stored in an immutable store and 7 + therefore have been stripped of write permissions. When the SSH 8 + kitten makes the tarfile, the files contained in it are also missing 9 + the write permissions, causing commands on the remote side to fail. 10 + --- 11 + kittens/ssh/main.py | 1 + 12 + 1 file changed, 1 insertion(+) 13 + 14 + diff --git a/kittens/ssh/main.py b/kittens/ssh/main.py 15 + index 0b50d5ff..f80ac13d 100644 16 + --- a/kittens/ssh/main.py 17 + +++ b/kittens/ssh/main.py 18 + @@ -123,6 +123,7 @@ def make_tarfile(ssh_opts: SSHOptions, base_env: Dict[str, str], compression: st 19 + def normalize_tarinfo(tarinfo: tarfile.TarInfo) -> tarfile.TarInfo: 20 + tarinfo.uname = tarinfo.gname = '' 21 + tarinfo.uid = tarinfo.gid = 0 22 + + tarinfo.mode |= 0o200 23 + return tarinfo 24 + 25 + def add_data_as_file(tf: tarfile.TarFile, arcname: str, data: Union[str, bytes]) -> tarfile.TarInfo: 26 + -- 27 + 2.36.0
+13
pkgs/applications/terminal-emulators/kitty/zsh-compinit.patch
··· 1 + diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py 2 + index 1f424146..d9a65d25 100644 3 + --- a/kitty_tests/ssh.py 4 + +++ b/kitty_tests/ssh.py 5 + @@ -268,6 +268,8 @@ def check_untar_or_fail(): 6 + return 'UNTAR_DONE' in q 7 + pty.wait_till(check_untar_or_fail) 8 + self.assertTrue(os.path.exists(os.path.join(home_dir, '.terminfo/kitty.terminfo'))) 9 + + if login_shell == 'zsh': 10 + + pty.send_cmd_to_child('y') 11 + if SHELL_INTEGRATION_VALUE != 'enabled': 12 + pty.wait_till(lambda: len(pty.screen_contents().splitlines()) > 1) 13 + self.assertEqual(pty.screen.cursor.shape, 0)
+14 -25
pkgs/applications/version-management/dvc/default.nix
··· 10 10 11 11 python3.pkgs.buildPythonApplication rec { 12 12 pname = "dvc"; 13 - version = "2.9.5"; 13 + version = "2.10.2"; 14 14 format = "setuptools"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "iterative"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-MviiA0ja1IaxMPlqu2dhIGBcdEXiEvBYnK9731dihMg="; 20 + hash = "sha256-boaQSg0jajWQZKB5wvcP2musVR2/pifT4pU64Y5hiQ0="; 21 21 }; 22 - 23 - # make the patch apply 24 - prePatch = '' 25 - substituteInPlace setup.cfg \ 26 - --replace "scmrepo==0.0.7" "scmrepo==0.0.10" 27 - ''; 28 - 29 - patches = [ 30 - ./dvc-daemon.patch 31 - (fetchpatch { 32 - url = "https://github.com/iterative/dvc/commit/ab54b5bdfcef3576b455a17670b8df27beb504ce.patch"; 33 - sha256 = "sha256-wzMK6Br7/+d3EEGpfPuQ6Trj8IPfehdUvOvX3HZlS+o="; 34 - }) 35 - ]; 36 - 37 - postPatch = '' 38 - substituteInPlace setup.cfg \ 39 - --replace "grandalf==0.6" "grandalf>=0.6" \ 40 - --replace "scmrepo==0.0.13" "scmrepo" 41 - substituteInPlace dvc/daemon.py \ 42 - --subst-var-by dvc "$out/bin/dcv" 43 - ''; 44 22 45 23 nativeBuildInputs = with python3.pkgs; [ 46 24 setuptools-scm ··· 26 48 ]; 27 49 28 50 propagatedBuildInputs = with python3.pkgs; [ 29 - appdirs 30 51 aiohttp-retry 52 + appdirs 31 53 colorama 32 54 configobj 33 55 configobj ··· 35 57 diskcache 36 58 distro 37 59 dpath 60 + dvclive 61 + dvc-render 38 62 flatten-dict 39 63 flufl_lock 40 64 funcy 41 65 grandalf 42 66 nanotime 43 67 networkx 68 + packaging 44 69 pathspec 45 70 ply 46 71 psutil ··· 76 95 ] ++ lib.optionals (pythonOlder "3.9") [ 77 96 importlib-resources 78 97 ]; 98 + 99 + postPatch = '' 100 + substituteInPlace setup.cfg \ 101 + --replace "grandalf==0.6" "grandalf>=0.6" \ 102 + --replace "scmrepo==0.0.19" "scmrepo" 103 + substituteInPlace dvc/daemon.py \ 104 + --subst-var-by dvc "$out/bin/dcv" 105 + ''; 79 106 80 107 # Tests require access to real cloud services 81 108 doCheck = false;
+13 -1
pkgs/applications/virtualization/colima/default.nix
··· 14 14 owner = "abiosoft"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-g7q2DmtyArtW7Ii2XF5umXQ0+BlCSa1Q7VNNuIuX65k="; 17 + sha256 = "sha256-KYW3gxf21aWnuRHkysOjArzMSNH3m3XDoi6Sic3N+Po="; 18 + 19 + # We need the git revision 20 + leaveDotGit = true; 21 + postFetch = '' 22 + git -C $out rev-parse HEAD > $out/.git-revision 23 + rm -rf $out/.git 24 + ''; 18 25 }; 19 26 20 27 nativeBuildInputs = [ installShellFiles makeWrapper ]; 21 28 22 29 vendorSha256 = "sha256-Z4+qwoX04VnLsUIYRfOowFLgcaA9w8oGRl77jzFigIc="; 30 + 31 + preConfigure = '' 32 + ldflags="-X github.com/abiosoft/colima/config.appVersion=${version} 33 + -X github.com/abiosoft/colima/config.revision=$(cat .git-revision)" 34 + ''; 23 35 24 36 postInstall = '' 25 37 wrapProgram $out/bin/colima \
+32 -1
pkgs/data/fonts/openmoji/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , scfbuild 6 + , fontforge 7 + , libuninameslist 5 8 , nodejs 6 9 , nodePackages 7 10 , python3Packages ··· 16 13 [ "color" "black" ] 17 14 [ "OpenMoji-Color.ttf" "OpenMoji-Black.ttf" ] 18 15 variant; 16 + 17 + # With newer fontforge the build hangs, see 18 + # https://github.com/NixOS/nixpkgs/issues/167869 19 + # Patches etc taken from 20 + # https://github.com/NixOS/nixpkgs/commit/69da642a5a9bb433138ba1b13c8d56fb5bb6ec05 21 + fontforge-20201107 = fontforge.overrideAttrs (old: rec { 22 + version = "20201107"; 23 + src = fetchFromGitHub { 24 + owner = "fontforge"; 25 + repo = "fontforge"; 26 + rev = version; 27 + sha256 = "sha256-Rl/5lbXaPgIndANaD0IakaDus6T53FjiBb45FIuGrvc="; 28 + }; 29 + patches = [ 30 + (fetchpatch { 31 + url = "https://salsa.debian.org/fonts-team/fontforge/raw/76bffe6ccf8ab20a0c81476a80a87ad245e2fd1c/debian/patches/0001-add-extra-cmake-install-rules.patch"; 32 + sha256 = "u3D9od2xLECNEHhZ+8dkuv9818tPkdP6y/Tvd9CADJg="; 33 + }) 34 + (fetchpatch { 35 + url = "https://github.com/fontforge/fontforge/commit/69e263b2aff29ad22f97f13935cfa97a1eabf207.patch"; 36 + sha256 = "06yyf90605aq6ppfiz83mqkdmnaq5418axp9jgsjyjq78b00xb29"; 37 + }) 38 + ]; 39 + buildInputs = old.buildInputs ++ [ libuninameslist ]; 40 + }); 41 + scfbuild-with-fontforge-20201107 = scfbuild.override (old: { 42 + fontforge = fontforge-20201107; 43 + }); 19 44 20 45 in stdenv.mkDerivation rec { 21 46 pname = "openmoji"; ··· 57 26 }; 58 27 59 28 nativeBuildInputs = [ 60 - scfbuild 29 + scfbuild-with-fontforge-20201107 61 30 nodejs 62 31 nodePackages.glob 63 32 nodePackages.lodash
+2 -2
pkgs/data/misc/elliptic_curves/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "elliptic_curves"; 8 - version = "0.8"; 8 + version = "0.8.1"; 9 9 10 10 src = fetchurl { 11 11 url = "mirror://sageupstream/${pname}/${pname}-${version}.tar.bz2"; 12 - sha256 = "0pzaym44x88dn8rydiwqgm73yghzlgf7gqvd7qqsrsdl2vyp091w"; 12 + sha256 = "0l7xh4abw5sb4d37r0ylr3vwb88fpx2zrvfm5ql0c7yrv5q59fjz"; 13 13 }; 14 14 15 15
+2 -2
pkgs/desktops/gnome/core/evolution-data-server/default.nix
··· 45 45 46 46 stdenv.mkDerivation rec { 47 47 pname = "evolution-data-server"; 48 - version = "3.44.1"; 48 + version = "3.44.2"; 49 49 50 50 outputs = [ "out" "dev" ]; 51 51 52 52 src = fetchurl { 53 53 url = "mirror://gnome/sources/evolution-data-server/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 54 - sha256 = "bgWpAgSidvmdkyCX8QMswX3R2OJlx8VnJ8YyQP1MDM8="; 54 + sha256 = "Ltcq/k1rsXD4co+uoJB/7hAhLf3nqfq4L7zIPQ8i8Cg="; 55 55 }; 56 56 57 57 patches = [
+2 -2
pkgs/desktops/gnome/core/gnome-calculator/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "gnome-calculator"; 28 - version = "42.0"; 28 + version = "42.1"; 29 29 30 30 src = fetchurl { 31 31 url = "mirror://gnome/sources/gnome-calculator/${lib.versions.major version}/${pname}-${version}.tar.xz"; 32 - sha256 = "pTWhTr6ljmkaS1oIUlau0GCiw/BzhKw6PQGDIzKifko="; 32 + sha256 = "700k5Cpl3IYOYgbztHC30jPCripNSWXYhZqp6oo5Ws0="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome/core/gnome-control-center/default.nix
··· 63 63 64 64 stdenv.mkDerivation rec { 65 65 pname = "gnome-control-center"; 66 - version = "42.1"; 66 + version = "42.2"; 67 67 68 68 src = fetchurl { 69 69 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 70 - sha256 = "sha256-+zCv+Q++HSrVYQfW6fX4pKOq82NbvYiSDXW1aLt3Z4U="; 70 + sha256 = "sha256-eLolewn73cBYh5F00Tg3p5zVnpWoSQEX5Myi5SLJ6wA="; 71 71 }; 72 72 73 73 patches = [
+2 -2
pkgs/desktops/gnome/core/nautilus/default.nix
··· 34 34 35 35 stdenv.mkDerivation rec { 36 36 pname = "nautilus"; 37 - version = "42.1.1"; 37 + version = "42.2"; 38 38 39 39 outputs = [ "out" "dev" ]; 40 40 41 41 src = fetchurl { 42 42 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 43 - sha256 = "hRnUVl6EKqPTHQ/jmyHUisVO3A8GWP4djqLaTnBMG2Y="; 43 + sha256 = "mSEtLrdZlvGBcorQSi4thvJXewZOaKNMi4GnA330zLI="; 44 44 }; 45 45 46 46 patches = [
+2 -20
pkgs/desktops/pantheon/apps/appcenter/default.nix
··· 2 2 , stdenv 3 3 , nix-update-script 4 4 , appstream 5 - , appstream-glib 6 5 , dbus 7 - , desktop-file-utils 8 6 , fetchFromGitHub 9 - , fetchpatch 10 7 , flatpak 11 - , gettext 12 8 , glib 13 9 , granite 14 10 , gtk3 ··· 25 29 26 30 stdenv.mkDerivation rec { 27 31 pname = "appcenter"; 28 - version = "3.9.1"; 32 + version = "3.10.0"; 29 33 30 34 src = fetchFromGitHub { 31 35 owner = "elementary"; 32 36 repo = pname; 33 37 rev = version; 34 - sha256 = "sha256-xktIHQHmz5gh72NEz9UQ9fMvBlj1BihWxHgxsHmTIB0="; 38 + sha256 = "sha256-Y3ueicw6Hn6lw24hdPeJohGol6l7UlQFIefYsBVY6Hg="; 35 39 }; 36 40 37 - patches = [ 38 - # Fix AppStream.PoolFlags being renamed 39 - # Though the API break has been fixed in latest appstream, 40 - # let's use the non-deprecated version anyway. 41 - # https://github.com/elementary/appcenter/pull/1794 42 - (fetchpatch { 43 - url = "https://github.com/elementary/appcenter/commit/84bc6400713484aa9365f0ba73f59c495da3f08b.patch"; 44 - sha256 = "sha256-HNRCJ/5mRbEVjCq9nrXtdQOOk1Jj5jalApkghD8ecpk="; 45 - }) 46 - ]; 47 - 48 41 nativeBuildInputs = [ 49 - appstream-glib 50 42 dbus # for pkg-config 51 - desktop-file-utils 52 - gettext 53 43 meson 54 44 ninja 55 45 pkg-config
+3 -5
pkgs/desktops/pantheon/apps/elementary-dock/default.nix
··· 12 12 , libXfixes 13 13 , libXi 14 14 , pango 15 - , gettext 16 15 , pkg-config 17 16 , libxml2 18 17 , bamf ··· 27 28 28 29 stdenv.mkDerivation rec { 29 30 pname = "elementary-dock"; 30 - version = "unstable-2021-12-08"; 31 + version = "unstable-2021-05-07"; 31 32 32 33 outputs = [ "out" "dev" ]; 33 34 34 35 src = fetchFromGitHub { 35 36 owner = "elementary"; 36 37 repo = "dock"; 37 - rev = "5e4b5ba2eec3b522e107ad834a59c0f1271d4699"; 38 - sha256 = "sha256-/Ul21t9VFxhmlQbfx4eY86UKU33hiRfXF9OPHBzPe5o="; 38 + rev = "113c3b0bc7744501d2101dd7afc1ef21ba66b326"; 39 + sha256 = "sha256-YlvdB02/hUGaDyHIHy21bgloHyVy3vHcanyNKnp3YbM="; 39 40 }; 40 41 41 42 nativeBuildInputs = [ 42 - gettext 43 43 meson 44 44 ninja 45 45 libxml2 # xmllint
+7 -11
pkgs/desktops/pantheon/apps/elementary-feedback/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , nix-update-script 6 5 , pkg-config 7 6 , meson ··· 12 13 , granite 13 14 , libgee 14 15 , libhandy 15 - , gettext 16 16 , wrapGAppsHook 17 17 , appstream 18 18 }: 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "elementary-feedback"; 22 - version = "6.1.0"; 22 + version = "6.1.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "elementary"; 26 26 repo = "feedback"; 27 27 rev = version; 28 - sha256 = "02wydbpa5qaa4xmmh4m7rbj4djbrn2i44zjakj5i6mzwjlj6sv5n"; 28 + sha256 = "sha256-YLYHaFQAAeSt25xHF7xDJWhw+rbH9SpzoRoXaYP42jg="; 29 29 }; 30 30 31 31 patches = [ 32 - # Upstream code not respecting our localedir 33 - # https://github.com/elementary/feedback/pull/48 34 - (fetchpatch { 35 - url = "https://github.com/elementary/feedback/commit/080005153977a86d10099eff6a5b3e68f7b12847.patch"; 36 - sha256 = "01710i90qsaqsrjs92ahwwj198bdrrif6mnw29l9har2rncfkfk2"; 37 - }) 32 + # The standard location to the metadata pool where metadata 33 + # will be read from is likely hardcoded as /usr/share/metainfo 34 + # https://github.com/ximion/appstream/blob/v0.15.2/src/as-pool.c#L117 35 + # https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location 36 + ./fix-metadata-path.patch 38 37 ]; 39 38 40 39 nativeBuildInputs = [ 41 - gettext 42 40 meson 43 41 ninja 44 42 pkg-config
+17
pkgs/desktops/pantheon/apps/elementary-feedback/fix-metadata-path.patch
··· 1 + diff --git a/src/MainWindow.vala b/src/MainWindow.vala 2 + index 6fee9d3..b0eb28c 100644 3 + --- a/src/MainWindow.vala 4 + +++ b/src/MainWindow.vala 5 + @@ -89,6 +89,12 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow { 6 + #endif 7 + } 8 + 9 + +#if HAS_APPSTREAM_0_15 10 + + appstream_pool.add_extra_data_location ("/run/current-system/sw/share/metainfo/", AppStream.FormatStyle.METAINFO); 11 + +#else 12 + + appstream_pool.add_metadata_location ("/run/current-system/sw/share/metainfo/"); 13 + +#endif 14 + + 15 + // flatpak's appstream files exists only inside they sandbox 16 + unowned var appdata_dir = "/var/lib/flatpak/app/%s/current/active/files/share/appdata"; 17 + foreach (var app in app_entries) {
+16 -32
pkgs/desktops/pantheon/desktop/elementary-onboarding/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , nix-update-script 6 - , substituteAll 7 - , pkg-config 8 5 , meson 9 6 , ninja 10 - , vala 7 + , pkg-config 11 8 , python3 12 - , gtk3 13 - , glib 14 - , granite 15 - , libgee 16 - , elementary-settings-daemon 17 - , gettext 18 - , libhandy 19 - , wrapGAppsHook 9 + , vala 10 + , wrapGAppsHook4 20 11 , appcenter 12 + , elementary-settings-daemon 13 + , glib 14 + , granite7 15 + , gtk4 16 + , libadwaita 17 + , libgee 21 18 }: 22 19 23 20 stdenv.mkDerivation rec { 24 21 pname = "elementary-onboarding"; 25 - version = "6.1.0"; 22 + version = "7.0.0"; 26 23 27 24 src = fetchFromGitHub { 28 25 owner = "elementary"; 29 26 repo = "onboarding"; 30 27 rev = version; 31 - sha256 = "sha256-9voy9eje3VlV4IMM664EyjKWTfSVogX5JoRCqhsUXTE="; 28 + sha256 = "sha256-bxOy9VivpgL4xXJhDF7K/gpq9zcCFIJFfRpG7QC8svE="; 32 29 }; 33 30 34 - patches = [ 35 - (substituteAll { 36 - src = ./fix-paths.patch; 37 - appcenter = appcenter; 38 - }) 39 - # Provides the directory where the locales are actually installed 40 - # https://github.com/elementary/onboarding/pull/147 41 - (fetchpatch { 42 - url = "https://github.com/elementary/onboarding/commit/af19c3dbefd1c0e0ec18eddacc1f21cb991f5513.patch"; 43 - sha256 = "sha256-fSFfjSd33W7rXXEUHY8b3rv9B9c31XfCjxjRxBBrqjs="; 44 - }) 45 - ]; 46 - 47 31 nativeBuildInputs = [ 48 - gettext 49 32 meson 50 33 ninja 51 34 pkg-config 52 35 python3 53 36 vala 54 - wrapGAppsHook 37 + wrapGAppsHook4 55 38 ]; 56 39 57 40 buildInputs = [ 41 + appcenter # settings schema 58 42 elementary-settings-daemon # settings schema 59 43 glib 60 - granite 61 - gtk3 44 + granite7 45 + gtk4 46 + libadwaita 62 47 libgee 63 - libhandy 64 48 ]; 65 49 66 50 postPatch = ''
-13
pkgs/desktops/pantheon/desktop/elementary-onboarding/fix-paths.patch
··· 1 - diff --git a/src/Views/AppCenterView.vala b/src/Views/AppCenterView.vala 2 - index 16cd18b..5895897 100644 3 - --- a/src/Views/AppCenterView.vala 4 - +++ b/src/Views/AppCenterView.vala 5 - @@ -55,7 +55,7 @@ public class Onboarding.AppCenterView : AbstractOnboardingView { 6 - appcenter_button.clicked.connect (() => { 7 - try { 8 - var appcenter = AppInfo.create_from_commandline ( 9 - - "io.elementary.appcenter", 10 - + "@appcenter@/bin/io.elementary.appcenter", 11 - "AppCenter", 12 - AppInfoCreateFlags.SUPPORTS_STARTUP_NOTIFICATION 13 - );
+2 -2
pkgs/desktops/xfce/applications/xfce4-terminal/default.nix
··· 3 3 mkXfceDerivation { 4 4 category = "apps"; 5 5 pname = "xfce4-terminal"; 6 - version = "1.0.3"; 6 + version = "1.0.4"; 7 7 8 - sha256 = "sha256-oZOnPAfvSXCreFHTIZYpJhOdtlDOHrAUMvGIjYU+TRU="; 8 + sha256 = "sha256-eCb6KB9fFPuYzNLUm/yYrh+0D60ISzasnv/myStImEI="; 9 9 10 10 nativeBuildInputs = [ libxslt docbook_xml_dtd_45 docbook_xsl ]; 11 11
+39
pkgs/development/embedded/nmrpflash/default.nix
··· 1 + { fetchFromGitHub 2 + , gcc 3 + , lib 4 + , libnl 5 + , libpcap 6 + , pkg-config 7 + , stdenv 8 + , writeShellScriptBin 9 + }: 10 + stdenv.mkDerivation rec { 11 + pname = "nmrpflash"; 12 + version = "0.9.16"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "jclehner"; 16 + repo = "nmrpflash"; 17 + rev = "v${version}"; 18 + sha256 = "sha256-0nqdbXf1syUe7o5hoNIKLruKxkNaUsGolfZzoQY15j4=="; 19 + }; 20 + 21 + nativeBuildInputs = [ pkg-config ]; 22 + 23 + buildInputs = [ libnl libpcap ]; 24 + 25 + PREFIX = "${placeholder "out"}"; 26 + STANDALONE_VERSION = "${version}"; 27 + 28 + preInstall = '' 29 + mkdir -p $out/bin 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Netgear Unbrick Utility"; 34 + homepage = "https://github.com/jclehner/nmrpflash"; 35 + license = licenses.gpl3; 36 + maintainers = with maintainers; [ dadada ]; 37 + platforms = platforms.unix; 38 + }; 39 + }
+2 -2
pkgs/development/libraries/armadillo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "armadillo"; 5 - version = "11.0.1"; 5 + version = "11.1.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 - sha256 = "sha256-5D1ESTdsH8i1YglUMbuCz5xP+Yp5GiKiXQ+W5eeTfCI="; 9 + sha256 = "sha256-v6YVSl/v2DLSjVMKWCIf5KLP8qO729guEJveU/sp3Ns="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ];
+2 -6
pkgs/development/libraries/cln/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchgit, gmp }: 1 + { lib, stdenv, fetchurl, gmp }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cln"; 5 5 version = "1.3.6"; 6 6 7 - src = if stdenv.isDarwin then fetchgit { 8 - url = "git://www.ginac.de/cln.git"; 9 - rev = "cln_${builtins.replaceStrings [ "." ] [ "-" ] version}"; 10 - sha256 = "sha256-P32F4TIDhE2Dwzydq8iFK6ch3kICJcXeeXHs5PBQG88="; 11 - } else fetchurl { 7 + src = fetchurl { 12 8 url = "${meta.homepage}${pname}-${version}.tar.bz2"; 13 9 sha256 = "0jlq9l4hphk7qqlgqj9ihjp4m3rwjbhk6q4v00lsbgbri07574pl"; 14 10 };
+2 -2
pkgs/development/libraries/folly/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "folly"; 24 - version = "2022.05.16.00"; 24 + version = "2022.05.23.00"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "facebook"; 28 28 repo = "folly"; 29 29 rev = "v${version}"; 30 - sha256 = "sha256-JCA6NhsL2mVmpXVV5wmZhtjaYrvp39mvy1r8/nMYcuI="; 30 + sha256 = "sha256-ti/aqVg6b3ZPEI72AZNo/4NrtlI/mKQb39tlTw+3VG4="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+4 -21
pkgs/development/libraries/libdwarf/0.4.nix
··· 1 - { lib, stdenv, fetchurl, zlib }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "libdwarf"; 1 + { callPackage, zlib }: 2 + callPackage ./common.nix rec { 5 3 version = "0.4.0"; 6 - 7 - src = fetchurl { 8 - url = "https://www.prevanders.net/libdwarf-${version}.tar.xz"; 9 - sha512 = "30e5c6c1fc95aa28a014007a45199160e1d9ba870b196d6f98e6dd21a349e9bb31bba1bd6817f8ef9a89303bed0562182a7d46fcbb36aedded76c2f1e0052e1e"; 10 - }; 11 - 12 - configureFlags = [ "--enable-shared" "--disable-nonshared" ]; 13 - 4 + url = "https://www.prevanders.net/libdwarf-${version}.tar.xz"; 5 + sha512 = "30e5c6c1fc95aa28a014007a45199160e1d9ba870b196d6f98e6dd21a349e9bb31bba1bd6817f8ef9a89303bed0562182a7d46fcbb36aedded76c2f1e0052e1e"; 14 6 buildInputs = [ zlib ]; 15 - 16 - outputs = [ "bin" "lib" "dev" "out" ]; 17 - 18 - meta = { 19 - homepage = "https://github.com/davea42/libdwarf-code"; 20 - platforms = lib.platforms.unix; 21 - license = lib.licenses.lgpl21Plus; 22 - maintainers = [ lib.maintainers.atry ]; 23 - }; 24 7 }
+23
pkgs/development/libraries/libdwarf/common.nix
··· 1 + { lib, stdenv, fetchurl, buildInputs, sha512, version, libelf, url }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libdwarf"; 5 + inherit version; 6 + 7 + src = fetchurl { 8 + inherit url sha512; 9 + }; 10 + 11 + configureFlags = [ "--enable-shared" "--disable-nonshared" ]; 12 + 13 + inherit buildInputs; 14 + 15 + outputs = [ "bin" "lib" "dev" "out" ]; 16 + 17 + meta = { 18 + homepage = "https://github.com/davea42/libdwarf-code"; 19 + platforms = lib.platforms.unix; 20 + license = lib.licenses.lgpl21Plus; 21 + maintainers = [ lib.maintainers.atry ]; 22 + }; 23 + }
+6 -55
pkgs/development/libraries/libdwarf/default.nix
··· 1 - { lib, stdenv, fetchurl, libelf, zlib }: 2 - 3 - let 4 - version = "20181024"; 5 - src = fetchurl { 6 - url = "https://www.prevanders.net/libdwarf-${version}.tar.gz"; 7 - # Upstream displays this hash broken into three parts: 8 - sha512 = "02f8024bb9959c91a1fe322459f7587a589d096595" 9 - + "6d643921a173e6f9e0a184db7aef66f0fd2548d669" 10 - + "5be7f9ee368f1cc8940cea4ddda01ff99d28bbf1fe58"; 11 - }; 12 - meta = { 13 - homepage = "https://www.prevanders.net/dwarf.html"; 14 - platforms = lib.platforms.linux; 15 - license = lib.licenses.lgpl21Plus; 16 - }; 17 - 18 - in rec { 19 - libdwarf = stdenv.mkDerivation { 20 - pname = "libdwarf"; 21 - inherit version; 22 - 23 - configureFlags = [ "--enable-shared" "--disable-nonshared" ]; 24 - 25 - preConfigure = '' 26 - cd libdwarf 27 - ''; 28 - buildInputs = [ libelf zlib ]; 29 - 30 - installPhase = '' 31 - mkdir -p $out/lib $out/include 32 - cp libdwarf.so.1 $out/lib 33 - ln -s libdwarf.so.1 $out/lib/libdwarf.so 34 - cp libdwarf.h dwarf.h $out/include 35 - ''; 36 - 37 - inherit meta src; 38 - }; 39 - 40 - dwarfdump = stdenv.mkDerivation { 41 - pname = "dwarfdump"; 42 - inherit version; 43 - 44 - preConfigure = '' 45 - cd dwarfdump 46 - ''; 47 - 48 - buildInputs = [ libelf libdwarf ]; 49 - 50 - installPhase = '' 51 - install -m755 -D dwarfdump $out/bin/dwarfdump 52 - ''; 53 - 54 - inherit meta src; 55 - }; 1 + { callPackage, zlib, libelf }: 2 + callPackage ./common.nix rec { 3 + version = "20210528"; 4 + url = "https://www.prevanders.net/libdwarf-${version}.tar.gz"; 5 + sha512 = "e0f9c88554053ee6c1b1333960891189e7820c4a4ddc302b7e63754a4cdcfc2acb1b4b6083a722d1204a75e994fff3401ecc251b8c3b24090f8cb4046d90f870"; 6 + buildInputs = [ zlib libelf ]; 56 7 }
+2 -2
pkgs/development/libraries/nlohmann_json/default.nix
··· 12 12 }; 13 13 in stdenv.mkDerivation rec { 14 14 pname = "nlohmann_json"; 15 - version = "3.10.2"; 15 + version = "3.10.5"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "nlohmann"; 19 19 repo = "json"; 20 20 rev = "v${version}"; 21 - sha256 = "/OFNfukrIyfJmD0ko174aud9T6ZOesHANJjyfk4q/Vs="; 21 + sha256 = "DTsZrdB9GcaNkx7ZKxcgCA3A9ShM5icSF0xyGguJNbk="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ cmake ];
+2 -11
pkgs/development/libraries/science/math/planarity/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , autoreconfHook 5 4 }: 6 5 7 6 stdenv.mkDerivation rec { 8 7 pname = "planarity"; 9 - version = "3.0.0.5"; 8 + version = "3.0.2.0"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "graph-algorithms"; 13 12 repo = "edge-addition-planarity-suite"; 14 13 rev = "Version_${version}"; 15 - sha256 = "01cm7ay1njkfsdnmnvh5zwc7wg7x189hq1vbfhh9p3ihrbnmqzh8"; 14 + sha256 = "sha256-cUAh2MXCSmtxFtV6iTHgSRgsq/26DjWwxhWJH1+367A="; 16 15 }; 17 16 18 17 nativeBuildInputs = [ ··· 19 20 ]; 20 21 21 22 doCheck = true; 22 - 23 - patches = [ 24 - # declare variables declared in headers as extern, not yet merged upstream 25 - (fetchpatch { 26 - url = "https://github.com/graph-algorithms/edge-addition-planarity-suite/pull/3.patch"; 27 - sha256 = "1nqjc4clr326imz4jxqxcxv2hgh1sjgzll27k5cwkdin8lnmmil8"; 28 - }) 29 - ]; 30 23 31 24 meta = with lib; { 32 25 homepage = "https://github.com/graph-algorithms/edge-addition-planarity-suite";
+4 -2
pkgs/development/ocaml-modules/tar/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , buildDunePackage 4 + , camlp-streams 4 5 , ppx_cstruct 5 6 , cstruct 6 7 , re ··· 10 9 11 10 buildDunePackage rec { 12 11 pname = "tar"; 13 - version = "1.1.0"; 12 + version = "2.0.1"; 14 13 src = fetchFromGitHub { 15 14 owner = "mirage"; 16 15 repo = "ocaml-tar"; 17 16 rev = "v${version}"; 18 - sha256 = "14k24vn3q5jl0iyrynb5vwg80670qsv12fsmc6cdgh4zwdpjh7zs"; 17 + sha256 = "1zr1ak164k1jm15xwqjf1iv77kdrrahak33wrxg7lifz9nnl0dms"; 19 18 }; 20 19 21 20 useDune2 = true; 22 21 23 22 propagatedBuildInputs = [ 23 + camlp-streams 24 24 ppx_cstruct 25 25 cstruct 26 26 re
+6
pkgs/development/python-modules/aioftp/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , async-timeout 3 4 , buildPythonPackage 4 5 , fetchPypi ··· 31 30 pytest-asyncio 32 31 pytestCheckHook 33 32 trustme 33 + ]; 34 + 35 + disabledTests = lib.optionals stdenv.isDarwin [ 36 + # uses 127.0.0.2, which macos doesn't like 37 + "test_pasv_connection_pasv_forced_response_address" 34 38 ]; 35 39 36 40 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/bc-python-hcl2/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "bc-python-hcl2"; 11 - version = "0.3.41"; 11 + version = "0.3.42"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-TrQtG2MWc4prr8grEE1XifjjLq7GPe6JPRMgpNNGfPY="; 18 + hash = "sha256-s4O2xoNafYHFBToxkKzgJ5NjQH4M5D7PcpsmiAZqR/8="; 19 19 }; 20 20 21 21 # Nose is required during build process, so can not use `checkInputs`.
+4 -4
pkgs/development/python-modules/brother/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "brother"; 13 - version = "1.2.0"; 13 + version = "1.2.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchFromGitHub { 19 19 owner = "bieniu"; 20 20 repo = pname; 21 - rev = version; 22 - hash = "sha256-hKOZ5pTDwhM0lOXoatXXVvEVxiTfxIpBRe3fFcUfzwE="; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-9SC4q2iZN0/fEYS4Ii7Ndcx5UpLryGCe9ytIVDdjg0M="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ ··· 38 38 substituteInPlace setup.py \ 39 39 --replace '"pytest-runner"' "" 40 40 substituteInPlace requirements.txt \ 41 - --replace "pysnmplib==5.0.10" "pysnmplib>=5.0.10" 41 + --replace "pysnmplib==" "pysnmplib>=" 42 42 ''; 43 43 44 44 pythonImportsCheck = [
+6 -5
pkgs/development/python-modules/cbor2/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "cbor2"; 12 - version = "5.4.2.post1"; 12 + version = "5.4.3"; 13 + format = "setuptools"; 13 14 14 - disabled = pythonOlder "3.6"; 15 + disabled = pythonOlder "3.7"; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - sha256 = "sha256-nPIdWWBLlSnXh3yOA0Ki66rhoH/o/1aD3HX+wVhHx5c="; 19 + hash = "sha256-Yrhjxe5s7UAyr+lI88FITzdVUJldO4SYFFI3/ijlRsI="; 19 20 }; 20 21 21 22 nativeBuildInputs = [ ··· 28 27 ]; 29 28 30 29 postPatch = '' 31 - substituteInPlace setup.cfg \ 32 - --replace "--cov" "" 30 + substituteInPlace pyproject.toml \ 31 + --replace " --cov" "" 33 32 ''; 34 33 35 34 # https://github.com/agronholm/cbor2/issues/99
+3 -3
pkgs/development/python-modules/chess/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "chess"; 10 - version = "1.9.0"; 10 + version = "1.9.1"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "niklasf"; 16 16 repo = "python-${pname}"; 17 - rev = "v${version}"; 18 - sha256 = "sha256-2/6pHU4gJnnVdO2KyXBe/RAbnEIuc2AY+h4TO70qiRk="; 17 + rev = "refs/tags/v${version}"; 18 + sha256 = "sha256-sJ5mw9sQQn2IP7iDjYUGf6P3FqAbHJC1R4phnwVcNIM="; 19 19 }; 20 20 21 21 pythonImportsCheck = [ "chess" ];
+2 -2
pkgs/development/python-modules/ckcc-protocol/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "ckcc-protocol"; 13 - version = "1.3.1"; 13 + version = "1.3.2"; 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-5wsVg7GX/9UygzpGI6DwrkAvexgcOmJyuv8GXiPPWvk="; 18 + sha256 = "sha256-4y5pe0CFD3C1+N0kP/2j9Wser2zkn8Uf4203ci45Rq0="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ click ecdsa hidapi pyaes ];
+15 -15
pkgs/development/python-modules/dask-ml/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 4 - , pythonOlder 5 3 , dask 6 - , numpy, toolz # dask[array] 4 + , dask-glm 5 + , distributed 6 + , fetchPypi 7 + , multipledispatch 7 8 , numba 9 + , numpy 10 + , packaging 8 11 , pandas 12 + , pythonOlder 9 13 , scikit-learn 10 14 , scipy 11 - , dask-glm 12 - , six 13 - , multipledispatch 14 - , packaging 15 - , distributed 16 15 , setuptools-scm 16 + , toolz 17 17 }: 18 18 19 19 buildPythonPackage rec { 20 - version = "2022.1.22"; 21 20 pname = "dask-ml"; 22 - disabled = pythonOlder "3.6"; # >= 3.6 21 + version = "2022.5.27"; 22 + format = "setuptools"; 23 + 24 + disabled = pythonOlder "3.6"; 23 25 24 26 src = fetchPypi { 25 27 inherit pname version; 26 - sha256 = "21a128e9f4f10e3b39cf82b36266eae28b17d16f2f6aa351bd73eb361e49326a"; 28 + hash = "sha256-Y2nTk0GSvMGSP87oTD+4+8zsoQITeQEHC6Px2eOGzOQ="; 27 29 }; 28 30 29 31 nativeBuildInputs = [ ··· 43 41 pandas 44 42 scikit-learn 45 43 scipy 46 - six 47 44 toolz 48 45 ]; 49 46 50 47 # has non-standard build from source, and pypi doesn't include tests 51 48 doCheck = false; 52 49 53 - # in lieu of proper tests 54 50 pythonImportsCheck = [ 55 51 "dask_ml" 56 52 "dask_ml.naive_bayes" ··· 57 57 ]; 58 58 59 59 meta = with lib; { 60 - homepage = "https://github.com/dask/dask-ml"; 61 60 description = "Scalable Machine Learn with Dask"; 61 + homepage = "https://github.com/dask/dask-ml"; 62 62 license = licenses.bsd3; 63 - maintainers = [ maintainers.costrouc ]; 63 + maintainers = with maintainers; [ costrouc ]; 64 64 }; 65 65 }
+68
pkgs/development/python-modules/deal-solver/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , flit-core 6 + , z3 7 + , astroid 8 + , pytestCheckHook 9 + , hypothesis 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "deal-solver"; 14 + version = "0.1.0"; 15 + format = "pyproject"; 16 + disabled = pythonOlder "3.6"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "life4"; 20 + repo = pname; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-eSSyLBwPc0rrfew91nLBagYDD6aJRyx0cE9YTTSODI8="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + flit-core 27 + ]; 28 + 29 + postPatch = '' 30 + # Use upstream z3 implementation 31 + substituteInPlace pyproject.toml \ 32 + --replace "\"z3-solver\"," "" \ 33 + --replace "\"--cov=deal_solver\"," "" \ 34 + --replace "\"--cov-report=html\"," "" \ 35 + --replace "\"--cov-report=xml\"," "" \ 36 + --replace "\"--cov-report=term-missing:skip-covered\"," "" \ 37 + --replace "\"--cov-fail-under=100\"," "" 38 + ''; 39 + 40 + propagatedBuildInputs = [ 41 + z3 42 + astroid 43 + ]; 44 + 45 + checkInputs = [ 46 + pytestCheckHook 47 + hypothesis 48 + ]; 49 + 50 + disabledTests = [ 51 + # z3 assertion error 52 + "test_expr_asserts_ok" 53 + ]; 54 + 55 + disabledTestPaths = [ 56 + # regex matching seems flaky on tests 57 + "tests/test_stdlib/test_re.py" 58 + ]; 59 + 60 + pythonImportsCheck = [ "deal_solver" ]; 61 + 62 + meta = with lib; { 63 + description = "Z3-powered solver (theorem prover) for deal"; 64 + homepage = "https://github.com/life4/deal-solver"; 65 + license = licenses.mit; 66 + maintainers = with maintainers; [ gador ]; 67 + }; 68 + }
+100
pkgs/development/python-modules/deal/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , flit-core 6 + , astroid 7 + , pytestCheckHook 8 + , docstring-parser 9 + , isort 10 + , marshmallow 11 + , pytest-cov 12 + , sphinx 13 + , hypothesis 14 + , vaa 15 + , deal-solver 16 + , pygments 17 + , typeguard 18 + , coverage 19 + , urllib3 20 + }: 21 + 22 + buildPythonPackage rec { 23 + pname = "deal"; 24 + version = "4.23.3"; 25 + format = "pyproject"; 26 + disabled = pythonOlder "3.7"; 27 + 28 + src = fetchFromGitHub { 29 + owner = "life4"; 30 + repo = pname; 31 + rev = "refs/tags/${version}"; 32 + hash = "sha256-duFxe2KSQQb7HB5KrrE32xzTb6QkQcrQssiuXLKao50="; 33 + }; 34 + 35 + postPatch = '' 36 + # don't do coverage 37 + substituteInPlace pyproject.toml \ 38 + --replace "\"--cov-fail-under=100\"," "" \ 39 + --replace "\"--cov=deal\"," "" \ 40 + --replace "\"--cov-report=html\"," "" \ 41 + --replace "\"--cov-report=term-missing:skip-covered\"," "" 42 + ''; 43 + 44 + nativeBuildInputs = [ 45 + flit-core 46 + ]; 47 + 48 + propagatedBuildInputs = [ 49 + astroid 50 + deal-solver 51 + pygments 52 + typeguard 53 + ]; 54 + 55 + checkInputs = [ 56 + pytestCheckHook 57 + 58 + docstring-parser 59 + marshmallow 60 + sphinx 61 + hypothesis 62 + vaa 63 + urllib3 64 + ]; 65 + 66 + disabledTests = [ 67 + # needs internet access 68 + "test_smoke_has" 69 + "test_pure_offline" 70 + "test_raises_doesnt_override_another_contract" 71 + "test_raises_doesnt_override_another_contract_async" 72 + "test_raises_generator" 73 + # AttributeError: module 'vaa' has no attribute 'Error' 74 + "test_source_vaa_scheme" 75 + "test_vaa_scheme_and_custom_exception" 76 + "test_scheme_string_validation_args_correct" 77 + "test_method_chain_decorator_with_scheme_is_fulfilled" 78 + "test_scheme_contract_is_satisfied_when_setting_arg" 79 + "test_scheme_contract_is_satisfied_within_chain" 80 + "test_scheme_errors_rewrite_message" 81 + ]; 82 + 83 + disabledTestPaths = [ 84 + # needs internet access 85 + "tests/test_runtime/test_offline.py" 86 + ]; 87 + 88 + pythonImportsCheck = [ "deal" ]; 89 + 90 + meta = with lib; { 91 + description = "Library for design by contract (DbC) and checking values, exceptions, and side-effects"; 92 + longDescription = '' 93 + In a nutshell, deal empowers you to write bug-free code. 94 + By adding a few decorators to your code, you get for free tests, static analysis, formal verification, and much more 95 + ''; 96 + homepage = "https://github.com/life4/deal"; 97 + license = licenses.mit; 98 + maintainers = with maintainers; [ gador ]; 99 + }; 100 + }
+2 -2
pkgs/development/python-modules/django-cacheops/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "django-cacheops"; 12 - version = "6.0"; 12 + version = "6.1"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "78e161ebd96a32e28e19ec7da31f2afed9e62a79726b8b5f0ed12dd16c2e5841"; 16 + sha256 = "sha256-toTvOf1DQYnTy7fYVBfNlyr2NSiaAyRHmCRztKifcn0="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+53
pkgs/development/python-modules/django-model-utils/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , django 5 + , freezegun 6 + , psycopg2 7 + , pytest-django 8 + , pytestCheckHook 9 + , pythonOlder 10 + , setuptools-scm 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "django-model-utils"; 15 + version = "4.2.0"; 16 + disabled = pythonOlder "3.6"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "jazzband"; 20 + repo = "django-model-utils"; 21 + rev = version; 22 + sha256 = "sha256-TLqvpP/ZaGGFdqnN+UHbhXv1K1YVYTYBkCiWCjYrFh8="; 23 + }; 24 + 25 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 30 + 31 + propagatedBuildInputs = [ 32 + django 33 + ]; 34 + 35 + # requires postgres database 36 + doCheck = false; 37 + 38 + checkInputs = [ 39 + freezegun 40 + psycopg2 41 + pytest-django 42 + pytestCheckHook 43 + ]; 44 + 45 + pythonImportsCheck = [ "model_utils" ]; 46 + 47 + meta = with lib; { 48 + homepage = "https://github.com/jazzband/django-model-utils"; 49 + description = "Django model mixins and utilities"; 50 + license = licenses.bsd3; 51 + maintainers = with maintainers; [ SuperSandro2000 ]; 52 + }; 53 + }
+47
pkgs/development/python-modules/django-otp/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , django 5 + , freezegun 6 + , pythonOlder 7 + , qrcode 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "django-otp"; 12 + version = "1.1.3"; 13 + disabled = pythonOlder "3"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "django-otp"; 17 + repo = "django-otp"; 18 + rev = "v${version}"; 19 + sha256 = "sha256-Ac9p7q9yaUr3WTTGxCY16Yo/Z8i1RtnD2g0Aj2pqSXY="; 20 + }; 21 + 22 + postPatch = '' 23 + patchShebangs manage.py 24 + ''; 25 + 26 + propagatedBuildInputs = [ 27 + django 28 + qrcode 29 + ]; 30 + 31 + checkInputs = [ 32 + freezegun 33 + ]; 34 + 35 + checkPhase = '' 36 + ./manage.py test django_otp 37 + ''; 38 + 39 + pythonImportsCheck = [ "django_otp" ]; 40 + 41 + meta = with lib; { 42 + homepage = "https://github.com/jazzband/django-model-utils"; 43 + description = "Pluggable framework for adding two-factor authentication to Django using one-time passwords"; 44 + license = licenses.bsd2; 45 + maintainers = with maintainers; [ SuperSandro2000 ]; 46 + }; 47 + }
+41
pkgs/development/python-modules/djangorestframework-guardian/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , django-guardian 5 + , djangorestframework 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "djangorestframework-guardian"; 10 + version = "0.3.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "rpkilby"; 14 + repo = "django-rest-framework-guardian"; 15 + rev = version; 16 + sha256 = "sha256-jl/VEl1pUHU8J1d5ZQSGJweNJayIGw1iVAmwID85fqw="; 17 + }; 18 + 19 + postPatch = '' 20 + chmod +x manage.py 21 + patchShebangs manage.py 22 + ''; 23 + 24 + propagatedBuildInputs = [ 25 + django-guardian 26 + djangorestframework 27 + ]; 28 + 29 + checkPhase = '' 30 + ./manage.py test 31 + ''; 32 + 33 + pythonImportsCheck = [ "rest_framework_guardian" ]; 34 + 35 + meta = with lib; { 36 + description = "Django-guardian support for Django REST Framework"; 37 + homepage = "https://github.com/rpkilby/django-rest-framework-guardian"; 38 + license = licenses.bsd3; 39 + maintainers = with maintainers; [ SuperSandro2000 ]; 40 + }; 41 + }
+31
pkgs/development/python-modules/dpcontracts/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "dpcontracts"; 9 + version = "unstable-2018-11-20"; 10 + format = "setuptools"; 11 + disabled = pythonOlder "3.5"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "deadpixi"; 15 + repo = "contracts"; 16 + rev = "45cb8542272c2ebe095c6efb97aa9407ddc8bf3c"; 17 + hash = "sha256-FygJPXo7lZ9tlfqY6KmPJ3PLIilMGLBr3013uj9hCEs="; 18 + }; 19 + 20 + # package does not have any tests 21 + doCheck = false; 22 + 23 + pythonImportsCheck = [ "dpcontracts" ]; 24 + 25 + meta = with lib; { 26 + description = "Provides a collection of decorators that makes it easy to write software using contracts"; 27 + homepage = "https://github.com/deadpixi/contracts"; 28 + license = licenses.lgpl3Only; 29 + maintainers = with maintainers; [ gador ]; 30 + }; 31 + }
+47
pkgs/development/python-modules/dvc-render/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , funcy 5 + , pytestCheckHook 6 + , pytest-mock 7 + , pytest-test-utils 8 + , pythonOlder 9 + , tabulate 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "dvc-render"; 14 + version = "0.0.5"; 15 + format = "pyproject"; 16 + 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "iterative"; 21 + repo = pname; 22 + rev = "v${version}"; 23 + hash = "sha256-dL+ampYgcC77G89rnh7t6lVp7WoIR85gjP0eg89ci3g="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + funcy 28 + tabulate 29 + ]; 30 + 31 + checkInputs = [ 32 + pytestCheckHook 33 + pytest-mock 34 + pytest-test-utils 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "dvc_render" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Library for rendering DVC plots"; 43 + homepage = "https://github.com/iterative/dvclive"; 44 + license = licenses.asl20; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+40
pkgs/development/python-modules/dvclive/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , dvc-render 4 + , fetchFromGitHub 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "dvclive"; 11 + version = "0.8.2"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.6"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "iterative"; 18 + repo = pname; 19 + rev = version; 20 + hash = "sha256-ditc4WWTEuO4ACqL87BNgjm1B6Aj6PPWrFX+OoF5jOI="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + dvc-render 25 + ]; 26 + 27 + # Circular dependency with dvc 28 + doCheck = false; 29 + 30 + pythonImportsCheck = [ 31 + "dvclive" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "Library for logging machine learning metrics and other metadata in simple file formats"; 36 + homepage = "https://github.com/iterative/dvclive"; 37 + license = licenses.asl20; 38 + maintainers = with maintainers; [ fab ]; 39 + }; 40 + }
+1 -1
pkgs/development/python-modules/flask-silk/default.nix
··· 6 6 7 7 buildPythonPackage { 8 8 pname = "Flask-Silk"; 9 - version = "2018-06-28"; 9 + version = "unstable-2018-06-28"; 10 10 11 11 # master fixes flask import syntax and has no major changes 12 12 # new release requested: https://github.com/sublee/flask-silk/pull/6
+78
pkgs/development/python-modules/icontract/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , asttokens 6 + , typing-extensions 7 + , pytestCheckHook 8 + , yapf 9 + , docutils 10 + , pygments 11 + , dpcontracts 12 + , tabulate 13 + , py-cpuinfo 14 + , typeguard 15 + , astor 16 + , numpy 17 + , asyncstdlib 18 + }: 19 + 20 + buildPythonPackage rec { 21 + pname = "icontract"; 22 + version = "2.6.1"; 23 + format = "setuptools"; 24 + disabled = pythonOlder "3.6"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "Parquery"; 28 + repo = pname; 29 + rev = "refs/tags/v${version}"; 30 + hash = "sha256-QyuegyjVyRLQS0DjBJXpTDNeBM7LigGJ5cztVOO7e3Y="; 31 + }; 32 + 33 + preCheck = '' 34 + # we don't want to use the precommit.py script to build the package. 35 + # For the tests to succeed, "ICONTRACT_SLOW" needs to be set. 36 + # see https://github.com/Parquery/icontract/blob/aaeb1b06780a34b05743377e4cb2458780e808d3/precommit.py#L57 37 + export ICONTRACT_SLOW=1 38 + ''; 39 + 40 + 41 + propagatedBuildInputs = [ 42 + asttokens 43 + typing-extensions 44 + ]; 45 + 46 + checkInputs = [ 47 + pytestCheckHook 48 + yapf 49 + docutils 50 + pygments 51 + dpcontracts 52 + tabulate 53 + py-cpuinfo 54 + typeguard 55 + astor 56 + numpy 57 + asyncstdlib 58 + ]; 59 + 60 + disabledTestPaths = [ 61 + # needs an old version of deal to comply with the tests 62 + # see https://github.com/Parquery/icontract/issues/244 63 + "tests_with_others/test_deal.py" 64 + # mypy decorator checks don't pass. For some reaseon mypy 65 + # doesn't check the python file provided in the test. 66 + "tests/test_mypy_decorators.py" 67 + ]; 68 + 69 + pythonImportsCheck = [ "icontract" ]; 70 + 71 + meta = with lib; { 72 + description = "Provide design-by-contract with informative violation messages"; 73 + homepage = "https://github.com/Parquery/icontract"; 74 + changelog = "https://github.com/Parquery/icontract/blob/master/CHANGELOG.rst"; 75 + license = licenses.mit; 76 + maintainers = with maintainers; [ gador ]; 77 + }; 78 + }
+2 -2
pkgs/development/python-modules/peaqevcore/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "peaqevcore"; 9 - version = "0.1.3"; 9 + version = "0.1.4"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-kvQOSy0PdI9zfo0w3merPdbKybBIQpxv5KZQ2GA/WtM="; 16 + hash = "sha256-+L730I30dN+d6oc5HWq578B0Io5j5CjAy3SuIGGjOR8="; 17 17 }; 18 18 19 19 postPatch = ''
+2 -2
pkgs/development/python-modules/prometheus-client/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "prometheus-client"; 10 - version = "0.13.1"; 10 + version = "0.14.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.6"; ··· 16 16 owner = "prometheus"; 17 17 repo = "client_python"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-1sMnlUOvvdlUuh288UalAdlf0a1mpnM+Y/upwlnL1H8="; 19 + sha256 = "sha256-hvBdWOMDuzF91Hv4u//tF+z6la0JfiTQHlpS4TnWpmk="; 20 20 }; 21 21 22 22 checkInputs = [
+2 -2
pkgs/development/python-modules/pypoolstation/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pypoolstation"; 11 - version = "0.4.1"; 11 + version = "0.4.2"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 16 16 src = fetchPypi { 17 17 pname = "PyPoolstation"; 18 18 inherit version; 19 - sha256 = "sha256-GsEYlaoitHS2cOBHtgwhlREcps4q2ObnWywvCSak0NY="; 19 + sha256 = "sha256-86y/JnTSV+MEr0np3bbwqFMkVrWpMAeyn9WVuNod9xQ="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+34
pkgs/development/python-modules/pyschemes/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonAtLeast 5 + , pytestCheckHook 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pyschemes"; 10 + version = "unstable-2017-11-08"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonAtLeast "3.10"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "spy16"; 17 + repo = pname; 18 + rev = "ca6483d13159ba65ba6fc2f77b90421c40f2bbf2"; 19 + hash = "sha256-PssucudvlE8mztwVme70+h+2hRW/ri9oV9IZayiZhdU="; 20 + }; 21 + 22 + checkInputs = [ 23 + pytestCheckHook 24 + ]; 25 + 26 + pythonImportsCheck = [ "pyschemes" ]; 27 + 28 + meta = with lib; { 29 + description = "A library for validating data structures in Python"; 30 + homepage = "https://github.com/spy16/pyschemes"; 31 + license = licenses.wtfpl; 32 + maintainers = with maintainers; [ gador ]; 33 + }; 34 + }
+29 -8
pkgs/development/python-modules/pysqueezebox/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, pythonOlder, aiohttp }: 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pytest-asyncio 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "pysqueezebox"; 5 - version = "0.5.5"; 12 + version = "0.6.0"; 13 + format = "setuptools"; 14 + 6 15 disabled = pythonOlder "3.6"; 7 16 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "93e6a3824b560d4ea2b2e5f0a67fdf3b309b6194fbf9927e44fc0d12c7fdc6c0"; 17 + src = fetchFromGitHub { 18 + owner = "rajlaud"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + hash = "sha256-0ArKVRy4H0NWShlQMziKvbHp9OjpAkEKp4zrvpVlXOk="; 11 22 }; 12 23 13 24 propagatedBuildInputs = [ 14 25 aiohttp 15 26 ]; 16 27 17 - # No tests in the Pypi distribution 18 - doCheck = false; 19 - pythonImportsCheck = [ "pysqueezebox" ]; 28 + checkInputs = [ 29 + pytest-asyncio 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "pysqueezebox" 35 + ]; 36 + 37 + disabledTestPaths = [ 38 + # Tests require network access 39 + "tests/test_integration.py" 40 + ]; 20 41 21 42 meta = with lib; { 22 43 description = "Asynchronous library to control Logitech Media Server";
+41
pkgs/development/python-modules/pytest-test-utils/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , pytest 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pytest-test-utils"; 11 + version = "0.0.6"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "iterative"; 18 + repo = pname; 19 + rev = version; 20 + hash = "sha256-0lShdMNP2suN+JO0uKWwjsGQxFCRnCZEQp2h9hQNrrA="; 21 + }; 22 + 23 + buildInputs = [ 24 + pytest 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "pytest_test_utils" 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Pytest utilities for tests"; 37 + homepage = "https://github.com/iterative/pytest-test-utils"; 38 + license = licenses.asl20; 39 + maintainers = with maintainers; [ fab ]; 40 + }; 41 + }
+3 -3
pkgs/development/python-modules/qiskit-machine-learning/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "qiskit-machine-learning"; 26 - version = "0.3.1"; 26 + version = "0.4.0"; 27 27 28 28 disabled = pythonOlder "3.6"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "qiskit"; 32 32 repo = pname; 33 - rev = version; 34 - sha256 = "sha256-8tnd6+tqofKuK/sBdqmClBtywHbu3VvwLjO9k4YoChA="; 33 + rev = "refs/tags/${version}"; 34 + sha256 = "sha256-WZSXt+sVeO64wCVbDgBhuGvo5jTn/JKh9oNSO7ZY9wo="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/regenmaschine/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "regenmaschine"; 17 - version = "2022.01.0"; 17 + version = "2022.05.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "bachya"; 24 24 repo = pname; 25 25 rev = version; 26 - sha256 = "sha256-TPiz3d1GbcIWCKRz3Hq4JU9+df/Fw4dUXQkIM6QO1Fs="; 26 + sha256 = "sha256-8tc/7XaHqgnuQgQc1ZlkoiBnl/d+OKKXjKNWwY+vCaU="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+5
pkgs/development/python-modules/spacy-transformers/default.nix
··· 33 33 dataclasses 34 34 ]; 35 35 36 + postPatch = '' 37 + substituteInPlace setup.cfg \ 38 + --replace "transformers>=3.4.0,<4.18.0" "transformers>=3.4.0 # ,<4.18.0" 39 + ''; 40 + 36 41 # Test fails due to missing arguments for trfs2arrays(). 37 42 doCheck = false; 38 43
+13 -5
pkgs/development/python-modules/stumpy/default.nix
··· 8 8 , dask 9 9 , distributed 10 10 , pytestCheckHook 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "stumpy"; 15 - version = "1.10.2"; 16 + version = "1.11.1"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 16 20 17 21 src = fetchFromGitHub { 18 22 owner = "TDAmeritrade"; 19 23 repo = "stumpy"; 20 - rev = "v${version}"; 21 - sha256 = "1v17lxqgvkd3n33c2y1j1zy74xy92vsx2l89yhan89msnnb7aafr"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-ARpXqZpWkbvIEDVkxA1SwlWoxq+3WO6tvv/e7WZ/25c="; 22 26 }; 23 27 24 28 propagatedBuildInputs = [ ··· 38 34 pytestCheckHook 39 35 ]; 40 36 37 + pythonImportsCheck = [ 38 + "stumpy" 39 + ]; 40 + 41 41 pytestFlagsArray = [ 42 42 # whole testsuite is very CPU intensive, only run core tests 43 43 # TODO: move entire test suite to passthru.tests ··· 49 41 ]; 50 42 51 43 meta = with lib; { 52 - description = "A powerful and scalable library that can be used for a variety of time series data mining tasks"; 44 + description = "Library that can be used for a variety of time series data mining tasks"; 53 45 homepage = "https://github.com/TDAmeritrade/stumpy"; 54 46 license = licenses.bsd3; 55 - maintainers = [ maintainers.costrouc ]; 47 + maintainers = with maintainers; [ costrouc ]; 56 48 }; 57 49 }
+58 -15
pkgs/development/python-modules/transformers/default.nix
··· 1 - { buildPythonPackage 2 - , lib 1 + { lib 2 + , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 5 , cookiecutter ··· 10 10 , requests 11 11 , numpy 12 12 , packaging 13 + , tensorflow 14 + , sagemaker 15 + , ftfy 13 16 , protobuf 17 + , scikit-learn 18 + , pillow 14 19 , pyyaml 15 - , sacremoses 20 + , torch 16 21 , tokenizers 17 22 , tqdm 18 23 }: ··· 25 20 buildPythonPackage rec { 26 21 pname = "transformers"; 27 22 version = "4.19.2"; 23 + format = "setuptools"; 24 + 25 + disabled = pythonOlder "3.7"; 28 26 29 27 src = fetchFromGitHub { 30 28 owner = "huggingface"; 31 29 repo = pname; 32 30 rev = "refs/tags/v${version}"; 33 - sha256 = "sha256-9r/1vW7Rhv9+Swxdzu5PTnlQlT8ofJeZamHf5X4ql8w="; 31 + hash = "sha256-9r/1vW7Rhv9+Swxdzu5PTnlQlT8ofJeZamHf5X4ql8w="; 34 32 }; 35 33 36 - nativeBuildInputs = [ packaging ]; 37 - 38 34 propagatedBuildInputs = [ 39 - cookiecutter 40 35 filelock 41 36 huggingface-hub 42 37 numpy 43 38 protobuf 39 + packaging 44 40 pyyaml 45 41 regex 46 42 requests 47 - sacremoses 48 43 tokenizers 49 44 tqdm 50 - ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; 45 + ] ++ lib.optionals (pythonOlder "3.8") [ 46 + importlib-metadata 47 + ]; 48 + 49 + passthru.optional-dependencies = { 50 + ja = [ 51 + # fugashi 52 + # ipadic 53 + # unidic_lite 54 + # unidic 55 + ]; 56 + sklearn = [ 57 + scikit-learn 58 + ]; 59 + tf = [ 60 + tensorflow 61 + # onnxconverter-common 62 + # tf2onnx 63 + ]; 64 + torch = [ 65 + torch 66 + ]; 67 + tokenizers = [ 68 + tokenizers 69 + ]; 70 + modelcreation = [ 71 + cookiecutter 72 + ]; 73 + sagemaker = [ 74 + sagemaker 75 + ]; 76 + ftfy = [ ftfy ]; 77 + onnx = [ 78 + # onnxconverter-common 79 + # tf2onnx 80 + ]; 81 + vision = [ 82 + pillow 83 + ]; 84 + }; 85 + 51 86 52 87 # Many tests require internet access. 53 88 doCheck = false; 54 89 55 - postPatch = '' 56 - sed -ri 's/tokenizers[=>]=[^"]+/tokenizers/g' setup.py src/transformers/dependency_versions_table.py 57 - ''; 58 - 59 - pythonImportsCheck = [ "transformers" ]; 90 + pythonImportsCheck = [ 91 + "transformers" 92 + ]; 60 93 61 94 meta = with lib; { 62 95 homepage = "https://github.com/huggingface/transformers"; 63 - description = "State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch"; 96 + description = "Natural Language Processing for TensorFlow 2.0 and PyTorch"; 64 97 changelog = "https://github.com/huggingface/transformers/releases/tag/v${version}"; 65 98 license = licenses.asl20; 66 99 platforms = platforms.unix;
+3 -3
pkgs/development/python-modules/ttp-templates/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "ttp-templates"; 9 - version = "0.1.3"; 9 + version = "0.1.4"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; ··· 14 14 src = fetchFromGitHub { 15 15 owner = "dmulyalin"; 16 16 repo = "ttp_templates"; 17 - rev = version; 18 - hash = "sha256-Qx+z/srYgD67FjXzYrc8xtA99n8shWK7yWj/r/ETN2U="; 17 + rev = "refs/tags/${version}"; 18 + hash = "sha256-yVDJAJXZU4pwvXSKRKUfSHqU23NcdgedOMmynMAD/Po="; 19 19 }; 20 20 21 21 postPatch = ''
+56
pkgs/development/python-modules/vaa/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , flit-core 5 + , pytestCheckHook 6 + , cerberus 7 + , django 8 + , djangorestframework 9 + , marshmallow 10 + , pyschemes 11 + , wtforms 12 + , email_validator 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "vaa"; 17 + version = "0.2.1"; 18 + format = "pyproject"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "life4"; 22 + repo = pname; 23 + rev = "refs/tags/v.${version}"; 24 + hash = "sha256-24GTTJSZ55ejyHoWP1/S3DLTKvOolAJr9UhWoOm84CU="; 25 + }; 26 + 27 + postPatch = '' 28 + substituteInPlace pyproject.toml \ 29 + --replace "requires = [\"flit\"]" "requires = [\"flit_core\"]" \ 30 + --replace "build-backend = \"flit.buildapi\"" "build-backend = \"flit_core.buildapi\"" 31 + ''; 32 + 33 + nativeBuildInputs = [ 34 + flit-core 35 + ]; 36 + 37 + checkInputs = [ 38 + pytestCheckHook 39 + cerberus 40 + django 41 + djangorestframework 42 + marshmallow 43 + pyschemes 44 + wtforms 45 + email_validator 46 + ]; 47 + 48 + pythonImportsCheck = [ "vaa" ]; 49 + 50 + meta = with lib; { 51 + description = "VAlidators Adapter makes validation by any existing validator with the same interface"; 52 + homepage = "https://github.com/life4/vaa"; 53 + license = licenses.mit; 54 + maintainers = with maintainers; [ gador ]; 55 + }; 56 + }
+12 -6
pkgs/development/python-modules/watermark/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "watermark"; 12 - version = "2.3.0"; 12 + version = "2.3.1"; 13 + format = "setuptools"; 14 + 13 15 disabled = pythonOlder "3.7"; 14 16 15 17 src = fetchFromGitHub { 16 18 owner = "rasbt"; 17 19 repo = pname; 18 - rev = "v${version}"; 19 - sha256 = "1kl9yn1pkl84d3lcz7bvphqkydsgs0p5k0ja0msy3hrxxfzdzd16"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-E3UxdGlxTcvkiKa3RoG9as6LybyW+QrCUZvA9VHwxlk="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ 23 25 ipython 24 - ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; 26 + ] ++ lib.optionals (pythonOlder "3.8") [ 27 + importlib-metadata 28 + ]; 25 29 26 30 checkInputs = [ 27 31 pytestCheckHook 28 32 ]; 29 33 30 - pythonImportsCheck = [ "watermark" ]; 34 + pythonImportsCheck = [ 35 + "watermark" 36 + ]; 31 37 32 38 meta = with lib; { 33 - description = "IPython extension for printing date and time stamps, version numbers, and hardware information."; 39 + description = "IPython extension for printing date and timestamps, version numbers, and hardware information"; 34 40 homepage = "https://github.com/rasbt/watermark"; 35 41 license = licenses.bsd3; 36 42 maintainers = with maintainers; [ nphilou ];
+43
pkgs/development/python-modules/webauthn/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , asn1crypto 5 + , cbor2 6 + , pythonOlder 7 + , pydantic 8 + , pyopenssl 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "webauthn"; 14 + version = "1.5.2"; 15 + disabled = pythonOlder "3"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "duo-labs"; 19 + repo = "py_webauthn"; 20 + rev = "v${version}"; 21 + sha256 = "sha256-sjl65vx1VthVX6ED3lXXAcn2D5WzzGAINKBjCc10rcs="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + asn1crypto 26 + cbor2 27 + pydantic 28 + pyopenssl 29 + ]; 30 + 31 + checkInputs = [ 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ "webauthn" ]; 36 + 37 + meta = with lib; { 38 + homepage = "https://github.com/duo-labs/py_webauthn"; 39 + description = "Implementation of the WebAuthn API"; 40 + license = licenses.bsd3; 41 + maintainers = with maintainers; [ SuperSandro2000 ]; 42 + }; 43 + }
+2 -2
pkgs/development/tools/allure/default.nix
··· 2 2 3 3 let 4 4 pname = "allure"; 5 - version = "2.17.3"; 5 + version = "2.18.1"; 6 6 in 7 7 stdenv.mkDerivation rec { 8 8 inherit pname version; ··· 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz"; 15 - sha256 = "sha256-WGeCzWwyLEb4WmlA6Vs8L2TL3NTL6sky5TLeiwV8iJY="; 15 + sha256 = "sha256-6psHHmU9TN0iugmPErdeLHevm+T2/3IJIp7kMdUSFd8="; 16 16 }; 17 17 dontConfigure = true; 18 18 dontBuild = true;
+3 -3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-tarpaulin"; 5 - version = "0.20.0"; 5 + version = "0.20.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "xd009642"; 9 9 repo = "tarpaulin"; 10 10 rev = version; 11 - sha256 = "sha256-LMHaRGZZqFUCbrChzlLA/gUArlGC5DUI2fc1bkLU2CA="; 11 + sha256 = "sha256-WobKZeO0U54mHj7hlkOH33TcOklWBJRWYSJBEt5sYII="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ ··· 17 17 buildInputs = [ openssl ] 18 18 ++ lib.optionals stdenv.isDarwin [ curl Security ]; 19 19 20 - cargoSha256 = "sha256-ei+ilmrlJYmt08A+aV2Rc5pn5dkuEBgfm9kyLkfFe9A="; 20 + cargoSha256 = "sha256-LR4jU7V44f00ry0VEd3qFryZtnn/t0K/OZGnRproksE="; 21 21 #checkFlags = [ "--test-threads" "1" ]; 22 22 doCheck = false; 23 23
+3 -3
pkgs/development/tools/convco/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "convco"; 14 - version = "0.3.9"; 14 + version = "0.3.10"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "convco"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-ys7fuaD1jj3tWD6U+BRvqFneZEdKV5c1RO2FLEtqIUk="; 20 + sha256 = "sha256-Jr1rNxVguASl6fPfGNx2/MDlMC+KokgQyzhBnvqnwFs="; 21 21 }; 22 22 23 - cargoSha256 = "sha256-5/uF0aPNNNUruRF8euuEnGSJHsRehSZipa0677zc12c="; 23 + cargoSha256 = "sha256-mStoWH/SusAcbAR3MeBWaY21TdJZJcKm1VxmA3zmlTw="; 24 24 25 25 nativeBuildInputs = [ cmake pkg-config ]; 26 26
+2 -2
pkgs/development/tools/dyff/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dyff"; 5 - version = "1.5.2"; 5 + version = "1.5.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "homeport"; 9 9 repo = "dyff"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-OjI1WpkRvDjghJqUlV9iP1qpzqZKRrVZJwAsK5rBy2Q="; 11 + sha256 = "sha256-On3n4qJUcGhJfh0B1ESE5zl1fb/RW12eFPxx5sTqfpw="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-eI3E83bYSMfi7fInBsPflE3zUGHF6diSkXDy04+CeqQ=";
+3 -3
pkgs/development/tools/evans/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "evans"; 5 - version = "0.10.5"; 5 + version = "0.10.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ktr0731"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-3gl4m0zTe8y4KLMAy3I7YD4Q7gLrRf3QsJap2IGX9Tk="; 11 + sha256 = "sha256-rQwoiV87XMz/5GbVOyLDkfIKIgMzBcwY4ln73XCI/so="; 12 12 }; 13 13 14 14 subPackages = [ "." ]; 15 15 16 - vendorSha256 = "sha256-BYOrby7tlQJ0ZjZHCeDWzsCv7jBfwX9RX1weLfEz+cU="; 16 + vendorSha256 = "sha256-3R/HRfr1GjJwkCT6xQ51Y/zRcuvknunYKgVpM6jg+wY="; 17 17 18 18 meta = with lib; { 19 19 description = "More expressive universal gRPC client";
+2 -2
pkgs/development/tools/flyway/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre_headless, makeWrapper }: 2 2 stdenv.mkDerivation rec{ 3 3 pname = "flyway"; 4 - version = "8.5.9"; 4 + version = "8.5.11"; 5 5 src = fetchurl { 6 6 url = "mirror://maven/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 7 - sha256 = "sha256-AOfCYWjn8XyyFdz6BbYOysEE1TADfIk8CyPBHsQJTDE="; 7 + sha256 = "sha256-qmDvubyWWBRTbspVDSACiklC6a8l5n4y88vz3VZFnV0="; 8 8 }; 9 9 nativeBuildInputs = [ makeWrapper ]; 10 10 dontBuild = true;
+3 -3
pkgs/development/tools/go-migrate/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-migrate"; 5 - version = "4.15.1"; 5 + version = "4.15.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golang-migrate"; 9 9 repo = "migrate"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-t4F4jvXexxCqKINaaczeG/B2vLSG87/qZ+VQitfAF4Y="; 11 + sha256 = "sha256-nVR6zMG/a4VbGgR9a/6NqMNYwFTifAZW3F6rckvOEJM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-qgjU8mUdk8S0VHmWiTK/5euwhRQ4y3o4oRxG2EHF+7E="; 14 + vendorSha256 = "sha256-lPNPl6fqBT3XLQie9z93j91FLtrMjKbHnXUQ6b4lDb4="; 15 15 16 16 subPackages = [ "cmd/migrate" ]; 17 17
+3 -1
pkgs/development/tools/goconvey/default.nix
··· 17 17 18 18 ldflags = [ "-s" "-w" ]; 19 19 20 - checkFlags = [ "-short" ]; 20 + preCheck = '' 21 + buildFlagsArray+="-short" 22 + ''; 21 23 22 24 meta = { 23 25 description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
+4 -4
pkgs/development/tools/gopls/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gopls"; 5 - version = "0.8.3"; 5 + version = "0.8.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "golang"; 9 9 repo = "tools"; 10 10 rev = "gopls/v${version}"; 11 - sha256 = "sha256-X5U06TEkf1vfCyV95wkg2qVd7I+8S8UPBgwacG0q85U="; 11 + sha256 = "sha256-3JI6jrWCOgfFefivSDWz3yets4CXnDsvE/iYYms+piU="; 12 12 }; 13 13 14 14 modRoot = "gopls"; 15 - vendorSha256 = "sha256-p6biMwicaG5peIu6dp+Pzun8TeNWmgW2QpLIZWqnalg="; 15 + vendorSha256 = "sha256-7SkCRu4CGvb0TaL9BR2eeNjGNwViFh6TgtUUxiRjDxA="; 16 16 17 17 doCheck = false; 18 18 ··· 23 23 description = "Official language server for the Go language"; 24 24 homepage = "https://github.com/golang/tools/tree/master/gopls"; 25 25 license = licenses.bsd3; 26 - maintainers = with maintainers; [ mic92 SuperSandro2000 zimbatm ]; 26 + maintainers = with maintainers; [ mic92 rski SuperSandro2000 zimbatm ]; 27 27 }; 28 28 }
+3 -3
pkgs/development/tools/packer/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "packer"; 10 - version = "1.8.0"; 10 + version = "1.8.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "hashicorp"; 14 14 repo = "packer"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-rvOfDMALzZx8LfChgB3nC4GCTlSET43SkhW1EkA59zo="; 16 + sha256 = "sha256-NqXmeBQrDnCGruJTZjAryxCmEdm1CZMPhW6JhZB0log="; 17 17 }; 18 18 19 - vendorSha256 = "sha256-ZQ+7F49VnpPtxWlZVBez2mpVCx8gIPEDKBD5qM9NcMo="; 19 + vendorSha256 = "sha256-Wit5DWTjVrxLLWpfOo/6JrSxqeZvC4Vjv+cW19wNHyw="; 20 20 21 21 subPackages = [ "." ]; 22 22
+3 -3
pkgs/development/tools/rust/cargo-bitbake/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-bitbake"; 5 - version = "0.3.15"; 5 + version = "0.3.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "meta-rust"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1ffjkwaqvmyz374azrv6gna19z2fcg82is2k2n2gm50isbxw2aa5"; 11 + sha256 = "sha256-+ovC4nZwHzf9hjfv2LcnTztM2m++tpC3mUSS/I0l6Ck="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ openssl ]; 16 16 17 - cargoSha256 = "0mm6059wjh5p8923dwz55dpwi55gq2bcmpx7kn40pq5ppkiqjiw9"; 17 + cargoSha256 = "sha256-LYdQ0FLfCopY8kPTCmiW0Qyx6sHA4nlb+hK9hXezGLg="; 18 18 19 19 meta = with lib; { 20 20 description = "Cargo extension that can generate BitBake recipes utilizing the classes from meta-rust";
+3 -3
pkgs/development/tools/rust/cargo-fund/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-fund"; 5 - version = "0.2.0"; 5 + version = "0.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "acfoltzer"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "1jim5bgq3fc33391qpa1q1csbzqf4hk1qyfzwxpcs5pb4ixb6vgk"; 11 + sha256 = "sha256-MlAFnwX++OYRzqhEcSjxNzmSyJiVE5t6UuCKy9J+SsQ="; 12 12 }; 13 13 14 - cargoSha256 = "1c2zryxn1bbg3ksp8azk9xmwfgwr6663hlmdv9c358hzqdfp9hli"; 14 + cargoSha256 = "sha256-pI5iz/V7/2jH3t3W3fuLzqd6oJC3PqHIWEJhDLmjLI0="; 15 15 16 16 # The tests need a GitHub API token. 17 17 doCheck = false;
+3 -3
pkgs/development/tools/rust/cargo-geiger/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "cargo-geiger"; 16 - version = "0.11.2"; 16 + version = "0.11.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "rust-secure-code"; 20 20 repo = pname; 21 21 rev = "${pname}-${version}"; 22 - sha256 = "sha256-KkOLDSnLneal3m+CrYKKIoeO61rjXEDq4GK3kPwQxj4="; 22 + sha256 = "sha256-xymDV/FHJABw1s94m8fl8D51PQwkF5dX+1XD96++RX8="; 23 23 }; 24 - cargoSha256 = "sha256-i7xDEzZAN2ubW1Q6MhY+xsb9XiUajNDHLdtDuO5r6jA="; 24 + cargoSha256 = "sha256-2szgR9N3PGjGCIjqgtGNFSnzfSv57sGfslZ/PZyqMjI="; 25 25 26 26 buildInputs = [ openssl ] 27 27 ++ lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv curl ];
+3 -3
pkgs/development/tools/rust/cargo-tally/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-tally"; 5 - version = "1.0.4"; 5 + version = "1.0.5"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-GUH/qWAC1vBLVV3K/qjkABH1agkyJEuhZGds+8UP1kQ="; 9 + sha256 = "sha256-LHkj+RiUF7Zg2egEDgpViAlhZEhrOBMgLaNdhk5BNFI="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-qvWJvkNG7rPHvv2hqJrOyZOqqAhRvgWdrkgr/Tefnps="; 12 + cargoSha256 = "sha256-am5AcgqRpMzCNvrfqreyTHqSxxI9qlqUmGU/SVW7TMY="; 13 13 14 14 buildInputs = lib.optionals stdenv.isDarwin [ 15 15 DiskArbitration
+3 -3
pkgs/development/tools/ytt/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub }: 2 2 buildGoModule rec { 3 3 pname = "ytt"; 4 - version = "0.40.1"; 4 + version = "0.41.1"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "vmware-tanzu"; 8 8 repo = "carvel-ytt"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-DtzdgEHgxoZRSvylq2vLzU1PAk1ETBDpBWFHcIW95r4="; 10 + sha256 = "sha256-JOmDEhisJh4sezxf/Whsf1W7rn4q7C3GqmINQ/A13J0="; 11 11 }; 12 12 13 13 vendorSha256 = null; ··· 18 18 description = "YAML templating tool that allows configuration of complex software via reusable templates with user-provided values"; 19 19 homepage = "https://get-ytt.io"; 20 20 license = licenses.asl20; 21 - maintainers = with maintainers; [ brodes ]; 21 + maintainers = with maintainers; [ brodes techknowlogick ]; 22 22 }; 23 23 }
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.328"; 5 + version = "0.0.330"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hcRdFkYZ3IqrxdGMdLWwHvJgGNkXfxsCQMHgPfy8cOk="; 11 + sha256 = "sha256-lgyr2NgurOZPqJv8ZUD8ut7ELxMZqLZ+rXYTjZauv8Y="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-5mYa41bUOnBQgbaPv7/9BjpaN+/MXIPrieJQL2M58gw="; 14 + vendorSha256 = "sha256-T1E2VJiaGKhk/rDVKYEju3AyDPEUMGFNvj/KrMjLKEc="; 15 15 16 16 subPackages = [ "." ]; 17 17
+40 -11
pkgs/games/lincity/ng.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, jam, pkg-config 2 - , zlib, libxml2, libxslt, xorgproto, libX11, libGLU, libGL, SDL 3 - , SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs 1 + { stdenv 2 + , SDL2 3 + , SDL2_gfx 4 + , SDL2_image 5 + , SDL2_mixer 6 + , SDL2_ttf 7 + , autoreconfHook 8 + , fetchFromGitHub 9 + , jam 10 + , lib 11 + , libGL 12 + , libGLU 13 + , libX11 14 + , libxml2 15 + , libxslt 16 + , physfs 17 + , pkg-config 18 + , xorgproto 19 + , zlib 4 20 }: 5 21 6 22 stdenv.mkDerivation { 7 23 pname = "lincity-ng"; 8 - version = "2.9beta.20170715"; 24 + version = "2.9beta.20211125"; 9 25 10 26 src = fetchFromGitHub { 11 - owner = "lincity-ng"; 12 - repo = "lincity-ng"; 13 - rev = "0c19714b811225238f310633e59f428934185e6b"; 14 - sha256 = "1gaj9fq97zmb0jsdw4rzrw34pimkmkwbfqps0glpqij4w3srz5f3"; 27 + owner = "lincity-ng"; 28 + repo = "lincity-ng"; 29 + rev = "b9062bec252632ca5d26b98d71453b8762c63173"; 30 + sha256 = "0l07cn8rmpmlqdppjc2ikh5c7xmwib27504zpmn3n9pryp394r46"; 15 31 }; 16 32 17 33 hardeningDisable = [ "format" ]; 18 34 19 35 nativeBuildInputs = [ 20 - autoreconfHook jam pkg-config 36 + autoreconfHook 37 + jam 38 + pkg-config 21 39 ]; 22 40 23 41 buildInputs = [ 24 - zlib libxml2 libxslt xorgproto libX11 libGLU libGL SDL SDL_mixer SDL_image 25 - SDL_ttf SDL_gfx physfs 42 + SDL2 43 + SDL2_gfx 44 + SDL2_image 45 + SDL2_mixer 46 + SDL2_ttf 47 + libGL 48 + libGLU 49 + libX11 50 + libxml2 51 + libxslt 52 + physfs 53 + xorgproto 54 + zlib 26 55 ]; 27 56 28 57 autoreconfPhase = ''
+4 -9
pkgs/games/mars/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, libGLU, libGL, sfml, fribidi, taglib }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "mars"; 4 - version = "0.7.5"; 4 + version = "unstable-17.10.2021"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "thelaui"; 8 8 repo = "M.A.R.S."; 9 - rev = "c855d044094a1d92317e38935d81ba938946132e"; 10 - sha256 = "1r4c5gap1z2zsv4yjd34qriqkxaq4lb4rykapyzkkdf4g36lc3nh"; 9 + rev = "84664cda094efe6e49d9b1550e4f4f98c33eefa2"; 10 + sha256 = "sha256-SWLP926SyVTjn+UT1DCaJSo4Ue0RbyzImVnlNJQksS0="; 11 11 }; 12 12 nativeBuildInputs = [ cmake ]; 13 13 buildInputs = [ libGLU libGL sfml fribidi taglib ]; 14 - patches = [ 15 - ./unbind_fix.patch 16 - ./fix-gluortho2d.patch 17 - ]; 18 14 installPhase = '' 19 15 cd .. 20 - find -name '*.svn' -exec rm -rf {} \; 21 16 mkdir -p "$out/share/mars/" 22 17 mkdir -p "$out/bin/" 23 18 cp -rv data resources credits.txt license.txt "$out/share/mars/" 24 - cp -v mars "$out/bin/mars.bin" 19 + cp -v marsshooter "$out/bin/mars.bin" 25 20 cat << EOF > "$out/bin/mars" 26 21 #! ${stdenv.shell} 27 22 cd "$out/share/mars/"
-113
pkgs/games/mars/fix-gluortho2d.patch
··· 1 - From 33d5affabf8ff84f2c028b9303c6a9e83cc824ad Mon Sep 17 00:00:00 2001 2 - From: James Cowgill <james410@cowgill.org.uk> 3 - Date: Sat, 9 May 2015 01:54:14 +0100 4 - Subject: [PATCH] Remove dependency on GLU - fixes build with SFML 2.3 5 - 6 - --- 7 - premake4.lua | 8 ++++---- 8 - src/Shaders/postFX.cpp | 2 +- 9 - src/System/window.cpp | 12 ++++++------ 10 - 3 files changed, 11 insertions(+), 11 deletions(-) 11 - 12 - diff --git a/premake4.lua b/premake4.lua 13 - index 023dddd..5af4495 100755 14 - --- a/premake4.lua 15 - +++ b/premake4.lua 16 - @@ -11,11 +11,11 @@ project "mars" 17 - defines { "NDEBUG" } 18 - flags { "Optimize" } 19 - if os.get() == "windows" then 20 - - links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "glu32", "opengl32", "fribidi-0", "tag" } 21 - + links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "opengl32", "fribidi-0", "tag" } 22 - elseif os.get() == "macosx" then 23 - links { "sfml-graphics.framework", "sfml-audio.framework", "sfml-system.framework", "sfml-window.framework", "opengl.framework", "fribidi", "tag" } 24 - else 25 - - links { "GLU", "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "fribidi", "tag" } 26 - + links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "fribidi", "tag" } 27 - libdirs { "/usr/lib", "/usr/local/lib" } 28 - end 29 - 30 - @@ -23,10 +23,10 @@ project "mars" 31 - defines { "_DEBUG", "DEBUG" } 32 - flags { "Symbols" } 33 - if os.get() == "windows" then 34 - - links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "glu32", "opengl32", "fribidi-0", "tag" } 35 - + links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "opengl32", "fribidi-0", "tag" } 36 - elseif os.get() == "macosx" then 37 - links { "sfml-graphics.framework", "sfml-audio.framework", "sfml-system.framework", "sfml-window.framework", "opengl.framework", "fribidi", "tag" } 38 - else 39 - - links { "GLU", "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "fribidi", "tag" } 40 - + links { "sfml-graphics", "sfml-audio", "sfml-system", "sfml-window", "fribidi", "tag" } 41 - libdirs { "/usr/lib", "/usr/local/lib" } 42 - end 43 - diff --git a/src/Shaders/postFX.cpp b/src/Shaders/postFX.cpp 44 - index 987f411..f767a47 100644 45 - --- a/src/Shaders/postFX.cpp 46 - +++ b/src/Shaders/postFX.cpp 47 - @@ -78,7 +78,7 @@ namespace postFX { 48 - postFX_.loadFromFile(settings::C_dataPath + "shaders/bump.frag", sf::Shader::Fragment); 49 - bumpMap_.create(SPACE_X_RESOLUTION*0.5f, SPACE_Y_RESOLUTION*0.5f); 50 - glViewport(0,0,SPACE_X_RESOLUTION*0.5f,SPACE_Y_RESOLUTION*0.5f); 51 - - gluOrtho2D(0, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0); 52 - + glOrtho(0, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0, -1, 1); 53 - glEnable(GL_BLEND); 54 - glMatrixMode(GL_MODELVIEW); 55 - postFX_.setParameter("BumpMap", bumpMap_.getTexture()); 56 - diff --git a/src/System/window.cpp b/src/System/window.cpp 57 - index e9a099a..8e12dcc 100644 58 - --- a/src/System/window.cpp 59 - +++ b/src/System/window.cpp 60 - @@ -222,7 +222,7 @@ namespace window { 61 - glLoadIdentity(); 62 - 63 - // Setup translation (according to left-upper corner) 64 - - gluOrtho2D(0.f, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0.f); 65 - + glOrtho(0.f, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0.f, -1, 1); 66 - 67 - // probably improves performance... 68 - glDisable(GL_LIGHTING); 69 - @@ -247,7 +247,7 @@ namespace window { 70 - 71 - glMatrixMode(GL_PROJECTION); 72 - glLoadIdentity(); 73 - - gluOrtho2D(0.f, viewPort_.x_, viewPort_.y_, 0.f); 74 - + glOrtho(0.f, viewPort_.x_, viewPort_.y_, 0.f, -1, 1); 75 - glMatrixMode(GL_MODELVIEW); 76 - glLoadIdentity(); 77 - 78 - @@ -255,7 +255,7 @@ namespace window { 79 - 80 - glMatrixMode(GL_PROJECTION); 81 - glLoadIdentity(); 82 - - gluOrtho2D(0.f, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0.f); 83 - + glOrtho(0.f, SPACE_X_RESOLUTION, SPACE_Y_RESOLUTION, 0.f, -1, 1); 84 - glMatrixMode(GL_MODELVIEW); 85 - glLoadIdentity(); 86 - } 87 - @@ -270,7 +270,7 @@ namespace window { 88 - glLoadIdentity(); 89 - setViewPort(); 90 - 91 - - gluOrtho2D(0.f, viewPort_.x_, viewPort_.y_, 0.f); 92 - + glOrtho(0.f, viewPort_.x_, viewPort_.y_, 0.f, -1, 1); 93 - 94 - glMatrixMode(GL_MODELVIEW); 95 - glLoadIdentity(); 96 - @@ -284,7 +284,7 @@ namespace window { 97 - glLoadIdentity(); 98 - setViewPort(); 99 - 100 - - gluOrtho2D(0.f, viewPort_.x_, viewPort_.y_, 0.f); 101 - + glOrtho(0.f, viewPort_.x_, viewPort_.y_, 0.f, -1, 1); 102 - 103 - glMatrixMode(GL_MODELVIEW); 104 - glLoadIdentity(); 105 - @@ -294,7 +294,7 @@ namespace window { 106 - else { 107 - glMatrixMode(GL_PROJECTION); 108 - glLoadIdentity(); 109 - - gluOrtho2D(0.f, viewPort_.x_, viewPort_.y_, 0.f); 110 - + glOrtho(0.f, viewPort_.x_, viewPort_.y_, 0.f, -1, 1); 111 - glMatrixMode(GL_MODELVIEW); 112 - glLoadIdentity(); 113 - }
-19
pkgs/games/mars/unbind_fix.patch
··· 1 - diff --git a/src/System/window.cpp b/src/System/window.cpp 2 - index e9a099a..e3f6de9 100644 3 - --- a/src/System/window.cpp 4 - +++ b/src/System/window.cpp 5 - @@ -308,12 +308,12 @@ namespace window { 6 - glEnable(GL_TEXTURE_2D); 7 - 8 - if (shader) 9 - - shader->bind(); 10 - + sf::Shader::bind(shader); 11 - 12 - window_.draw(toBeDrawn, states); 13 - 14 - if (shader) 15 - - shader->unbind(); 16 - + sf::Shader::bind(NULL); 17 - 18 - window_.popGLStates(); 19 - glPopMatrix();
+9
pkgs/games/oh-my-git/default.nix
··· 19 19 , libXrender 20 20 , libglvnd 21 21 , libpulseaudio 22 + , perl 22 23 , zlib 23 24 , udev # for libudev 24 25 }: ··· 55 54 libXrender 56 55 libglvnd 57 56 libpulseaudio 57 + perl 58 58 zlib 59 59 udev 60 60 ]; ··· 71 69 categories = [ "Game" ]; 72 70 }) 73 71 ]; 72 + 73 + # patch shebangs so that e.g. the fake-editor script works: 74 + # error: /usr/bin/env 'perl': No such file or directory 75 + # error: There was a problem with the editor 76 + postPatch = '' 77 + patchShebangs scripts 78 + ''; 74 79 75 80 buildPhase = '' 76 81 runHook preBuild
+55 -28
pkgs/games/openxray/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, glew, freeimage, liblockfile 2 - , openal, libtheora, SDL2, lzo, libjpeg, libogg, tbb 3 - , pcre, makeWrapper, fetchpatch }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , glew 6 + , freeimage 7 + , liblockfile 8 + , openal 9 + , libtheora 10 + , SDL2 11 + , lzo 12 + , libjpeg 13 + , libogg 14 + , pcre 15 + , makeWrapper 16 + , enableMultiplayer ? false # Requires old, insecure Crypto++ version 17 + }: 4 18 5 19 let 6 - version = "822-december-preview"; 20 + version = "1144-december-2021-rc1"; 7 21 8 22 src = fetchFromGitHub { 9 23 owner = "OpenXRay"; 10 24 repo = "xray-16"; 11 25 rev = version; 12 26 fetchSubmodules = true; 13 - sha256 = "06f3zjnib7hipyl3hnc6mwcj9f50kbwn522wzdjydz8qgdg60h3m"; 27 + sha256 = "07qj1lpp21g4p583gvz5h66y2q71ymbsz4g5nr6dcys0vm7ph88v"; 14 28 }; 15 29 16 30 # https://github.com/OpenXRay/xray-16/issues/518 17 - cryptopp = stdenv.mkDerivation { 31 + ancientCryptopp = stdenv.mkDerivation { 18 32 pname = "cryptopp"; 19 33 version = "5.6.5"; 20 34 ··· 36 22 37 23 sourceRoot = "source/Externals/cryptopp"; 38 24 39 - makeFlags = [ "PREFIX=${placeholder "out"}" ]; 25 + installFlags = [ "PREFIX=${placeholder "out"}" ]; 26 + 40 27 enableParallelBuilding = true; 41 28 42 29 doCheck = true; 30 + 31 + dontStrip = true; 43 32 44 33 meta = with lib; { 45 34 description = "Crypto++, a free C++ class library of cryptographic schemes"; 46 35 homepage = "https://cryptopp.com/"; 47 36 license = with licenses; [ boost publicDomain ]; 48 37 platforms = platforms.all; 38 + knownVulnerabilities = [ 39 + "CVE-2019-14318" 40 + ]; 49 41 }; 50 42 }; 51 - in stdenv.mkDerivation rec { 43 + in 44 + stdenv.mkDerivation rec { 52 45 pname = "openxray"; 46 + 53 47 inherit version src; 54 48 55 - # TODO https://github.com/OpenXRay/GameSpy/pull/6, check if merged in version > 822 56 - # Fixes format hardening 57 - patches = [ 58 - (fetchpatch { 59 - url = "https://github.com/OpenXRay/GameSpy/pull/6/commits/155af876281f5d94f0142886693314d97deb2d4c.patch"; 60 - sha256 = "1l0vcgvzzx8n56shpblpfdhvpr6c12fcqf35r0mflaiql8q7wn88"; 61 - stripLen = 1; 62 - extraPrefix = "Externals/GameSpy/"; 63 - }) 49 + nativeBuildInputs = [ 50 + cmake 51 + makeWrapper 64 52 ]; 65 - 66 - cmakeFlags = [ "-DCMAKE_INCLUDE_PATH=${cryptopp}/include/cryptopp" ]; 67 53 68 54 buildInputs = [ 69 - glew freeimage liblockfile openal cryptopp libtheora SDL2 lzo 70 - libjpeg libogg tbb pcre 55 + glew 56 + freeimage 57 + liblockfile 58 + openal 59 + libtheora 60 + SDL2 61 + lzo 62 + libjpeg 63 + libogg 64 + pcre 65 + ] ++ lib.optionals enableMultiplayer [ 66 + ancientCryptopp 71 67 ]; 72 68 73 - nativeBuildInputs = [ cmake makeWrapper ]; 69 + # Crashes can happen, we'd like them to be reasonably debuggable 70 + cmakeBuildType = "RelWithDebInfo"; 71 + dontStrip = true; 74 72 75 - # https://github.com/OpenXRay/xray-16/issues/786 76 - preConfigure = '' 77 - substituteInPlace src/xrCore/xrCore.cpp \ 78 - --replace /usr/share $out/share 79 - ''; 73 + cmakeFlags = [ 74 + "-DUSE_CRYPTOPP=${if enableMultiplayer then "ON" else "OFF"}" 75 + ] ++ lib.optionals enableMultiplayer [ 76 + "-DCMAKE_INCLUDE_PATH=${ancientCryptopp}/include/cryptopp" 77 + ]; 80 78 81 79 postInstall = '' 82 80 # needed because of SDL_LoadObject library loading code ··· 97 71 ''; 98 72 99 73 meta = with lib; { 74 + mainProgram = "xray-16"; 100 75 description = "Improved version of the X-Ray Engine, the game engine used in the world-famous S.T.A.L.K.E.R. game series by GSC Game World"; 101 - homepage = src.meta.homepage; 76 + homepage = "https://github.com/OpenXRay/xray-16/"; 102 77 license = licenses.unfree // { 103 78 url = "https://github.com/OpenXRay/xray-16/blob/xd_dev/License.txt"; 104 79 };
+1
pkgs/misc/drivers/hplip/default.nix
··· 81 81 usbutils 82 82 sip_4 83 83 dbus-python 84 + distro 84 85 ] ++ lib.optionals withQt5 [ 85 86 pyqt5 86 87 pyqt5_sip
+6 -12
pkgs/os-specific/linux/digimend/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, kernel }: 1 + { lib, stdenv, fetchFromGitHub, kernel }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "digimend"; 5 - version = "unstable-2019-06-18"; 5 + version = "10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "digimend"; 9 9 repo = "digimend-kernel-drivers"; 10 - rev = "8b228a755e44106c11f9baaadb30ce668eede5d4"; 11 - sha256 = "1l54j85540386a8aypqka7p5hy1b63cwmpsscv9rmmf10f78v8mm"; 10 + rev = "v${version}"; 11 + sha256 = "0lifd6cx6aa6hcms4zn4hlla3alra08r0svj5x1l8nlsv0ydnl6i"; 12 12 }; 13 13 14 14 postPatch = '' ··· 16 16 sed 's/depmod /true /' -i Makefile 17 17 ''; 18 18 19 - patches = [ 20 - # Fix build on Linux kernel >= 5.4 21 - # https://github.com/DIGImend/digimend-kernel-drivers/pull/331 22 - (fetchpatch { 23 - url = "https://github.com/DIGImend/digimend-kernel-drivers/commit/fb8a2eb6a9198bb35aaccb81e22dd5ebe36124d1.patch"; 24 - sha256 = "1j7l5hsk59gccydpf7n6xx1ki4rm6aka7k879a7ah5jn8p1ylgw9"; 25 - }) 26 - ]; 19 + # Fix build on Linux kernel >= 5.18 20 + NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ]; 27 21 28 22 nativeBuildInputs = kernel.moduleBuildDependencies; 29 23
+2 -2
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "check_ssl_cert"; 13 - version = "2.25.0"; 13 + version = "2.27.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "matteocorti"; 17 17 repo = "check_ssl_cert"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-WjiUsf8PMlTsldMaxnQbgnC1XLVW6wz50JyX/3MbZ+k="; 19 + sha256 = "sha256-R70disK654wKbrrs5QKy1reNDnjZgkXTlR/dAhikI6s="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -1
pkgs/servers/monitoring/prometheus/mysqld-exporter.nix
··· 24 24 ]; 25 25 26 26 # skips tests with external dependencies, e.g. on mysqld 27 - checkFlags = [ "-short" ]; 27 + preCheck = '' 28 + buildFlagsArray+="-short" 29 + ''; 28 30 29 31 meta = with lib; { 30 32 description = "Prometheus exporter for MySQL server metrics";
+2 -4
pkgs/servers/sql/mysql/8.0.x.nix
··· 6 6 let 7 7 self = stdenv.mkDerivation rec { 8 8 pname = "mysql"; 9 - version = "8.0.28"; 9 + version = "8.0.29"; 10 10 11 11 src = fetchurl { 12 12 url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-2Gk2nrbeTyuy2407Mbe3OWjjVuX/xDVPS5ZlirHkiyI="; 13 + sha256 = "sha256-USFw+m94ppTW8Y0ZfpmdJxbuaNxUHXZE3ZIqNmNAcmY="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ bison cmake pkg-config ] ··· 20 20 postPatch = '' 21 21 substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool 22 22 substituteInPlace cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool 23 - substituteInPlace cmake/fido2.cmake \ 24 - --replace ''$\{MY_PKG_CONFIG_EXECUTABLE\} "${pkg-config}/bin/pkg-config" 25 23 ''; 26 24 27 25 buildInputs = [
+2 -2
pkgs/servers/sql/postgresql/ext/rum.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rum"; 5 - version = "1.3.9"; 5 + version = "1.3.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "postgrespro"; 9 9 repo = "rum"; 10 10 rev = version; 11 - sha256 = "sha256-xdCj9hzBg7VtAIHpIFpeeaK6U4aRrCsoQrPKdABSl+Y="; 11 + sha256 = "sha256-OuVyZ30loPycQkDwlL0289H/4RRPneibqgibgzqhWo4="; 12 12 }; 13 13 14 14 buildInputs = [ postgresql ];
+2 -2
pkgs/servers/web-apps/wiki-js/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wiki-js"; 5 - version = "2.5.282"; 5 + version = "2.5.283"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Requarks/wiki/releases/download/v${version}/${pname}.tar.gz"; 9 - sha256 = "sha256-cXNO8ChZ2FGAmTmcQDqnZrJpFynmdoocqFy59VCy1RE="; 9 + sha256 = "sha256-dQ1FWZ+WysdsRkbNapKm1psZx35biKrRvTfNklC89e8="; 10 10 }; 11 11 12 12 sourceRoot = ".";
+2 -2
pkgs/tools/admin/chamber/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "chamber"; 5 - version = "2.10.9"; 5 + version = "2.10.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "segmentio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-rOOpwLoEiTS41VIPvqoq8yGP4GOOCOJNFfLLxt9mfvM="; 11 + sha256 = "sha256-W/yuCQ1kE300//if/H73ZEJh/r2vttJ0GotZkBZNM+4="; 12 12 }; 13 13 14 14 CGO_ENABLED = 0;
+7 -3
pkgs/tools/admin/clair/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "clair"; 5 - version = "4.3.6"; 5 + version = "4.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "quay"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-yKs/TPSu3WD34Z9fAys7ItWWcSKiUXhVWAqQXMnOrEw="; 11 + sha256 = "sha256-6nlVcuWAp9lWji4ruAZ//D6iEbL+zSjLDX9bYyRfTQ8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-C3xnBANsymSgI7l446CjJzEMY1gURGTxDNBBjNjHmaE="; 14 + vendorSha256 = "sha256-35rUeDi+7xSI2kSk9FvtubxhZq5LePNoXC66dIy6gs8="; 15 15 16 16 nativeBuildInputs = [ makeWrapper ]; 17 + 18 + subPackages = [ "cmd/clair" "cmd/clairctl" ]; 19 + 20 + ldflags = [ "-s" "-w" "-X main.Version=${version}" ]; 17 21 18 22 postInstall = '' 19 23 wrapProgram $out/bin/clair \
+13 -3
pkgs/tools/admin/docker-credential-gcr/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, testers, docker-credential-gcr }: 1 + { lib, buildGoModule, fetchFromGitHub, fetchpatch, testers, docker-credential-gcr }: 2 2 3 3 buildGoModule rec { 4 4 pname = "docker-credential-gcr"; ··· 11 11 sha256 = "sha256-1AUs8Gt2Qw8BJk2zwRcazVl+POkPSy9e1jW9Mk/0rx8="; 12 12 }; 13 13 14 + patches = [ 15 + (fetchpatch { 16 + name = "fix-TestGet_GCRCredentials.patch"; 17 + url = "https://github.com/GoogleCloudPlatform/docker-credential-gcr/commit/a0c080e58bbfdeb0aa24e66551c4e8b0359bf178.patch"; 18 + sha256 = "sha256-aXp/1kNaxqQDPszC7pO+qP7ZBWHjpVljUHiKFnnDWuM="; 19 + }) 20 + ]; 21 + 22 + postPatch = '' 23 + rm -rf ./test 24 + ''; 25 + 14 26 vendorSha256 = "sha256-e7XNTizZYp/tS7KRvB9KxY3Yurphnm6Ehz4dHZNReK8="; 15 27 16 28 CGO_ENABLED = 0; ··· 32 20 "-w" 33 21 "-X github.com/GoogleCloudPlatform/docker-credential-gcr/config.Version=${version}" 34 22 ]; 35 - 36 - checkFlags = [ "-short" ]; 37 23 38 24 passthru.tests.version = testers.testVersion { 39 25 package = docker-credential-gcr;
+3 -3
pkgs/tools/admin/fioctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fioctl"; 5 - version = "0.24"; 5 + version = "0.25"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "foundriesio"; 9 9 repo = "fioctl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-nlSJ6JxC5MTS/ltSB9qnhtoRjDL1A5NlXWM/2A4duGU="; 11 + sha256 = "sha256-wRjSg0jOXDfzF4kZboFawVvujCmAeB9xDOGE0tGYl4g="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-Cr9etq9E16vj2AL9OkIQom/gATjj9QT9+keUR1WQJR0="; 14 + vendorSha256 = "sha256-B3VL2ZHPdx9iWK++ckzz2H8zV7ESQZCw39AEffXNu+w="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w" "-X github.com/foundriesio/fioctl/subcommands/version.Commit=${src.rev}"
+6 -3
pkgs/tools/admin/lxd/default.nix
··· 11 11 12 12 buildGo118Package rec { 13 13 pname = "lxd"; 14 - version = "5.1"; 14 + version = "5.2"; 15 15 16 16 goPackagePath = "github.com/lxc/lxd"; 17 17 18 18 src = fetchurl { 19 - url = "https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"; 20 - sha256 = "sha256-MZ9Ok1BuIUTtqigLAYX7N8Q3TPfXRopeXIwbZ4GJJQo="; 19 + urls = [ 20 + "https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz" 21 + "https://github.com/lxc/lxd/releases/download/lxd-${version}/lxd-${version}.tar.gz" 22 + ]; 23 + sha256 = "sha256-4i0rNKGEjTOyCAsrHII1WvttNv3+SeZ/RLN0ntvALkw="; 21 24 }; 22 25 23 26 postPatch = ''
+3 -3
pkgs/tools/admin/pgadmin/default.nix
··· 11 11 let 12 12 13 13 pname = "pgadmin"; 14 - version = "6.8"; 14 + version = "6.9"; 15 15 16 16 src = fetchurl { 17 17 url = "https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${version}/source/pgadmin4-${version}.tar.gz"; 18 - sha256 = "sha256-kS9GV/j28zkXTJZkRrG2JDgas210rQqXOJrwwxzepbw="; 18 + sha256 = "sha256-C/0UDbPUuKCF9BBrDdlETGl7ALpFOmGaaxHVHxrIPVo="; 19 19 }; 20 20 21 21 yarnDeps = mkYarnModules { ··· 69 69 boto3 70 70 ]; 71 71 72 - # override necessary on pgadmin4 6.8 72 + # override necessary on pgadmin4 6.9 73 73 pythonPackages = python3.pkgs.overrideScope (final: prev: rec { 74 74 flask = prev.flask.overridePythonAttrs (oldAttrs: rec { 75 75 version = "2.0.3";
+6 -6
pkgs/tools/admin/pgadmin/package.json
··· 95 95 "@types/classnames": "^2.2.6", 96 96 "@types/react": "^16.7.18", 97 97 "@types/react-dom": "^16.0.11", 98 - "acitree": "git+https://github.com/imsurinder90/jquery-aciTree.git#rc.7", 99 98 "ajv": "^8.8.2", 100 99 "alertifyjs": "git+https://github.com/EnterpriseDB/AlertifyJS/#72c1d794f5b6d4ec13a68d123c08f19021afe263", 101 100 "aspen-decorations": "^1.0.2", ··· 115 116 "closest": "^0.0.1", 116 117 "codemirror": "^5.59.2", 117 118 "context-menu": "^2.0.0", 118 - "copy-to-clipboard": "^3.3.1", 119 119 "css-loader": "^5.0.1", 120 120 "cssnano": "^5.0.2", 121 121 "dagre": "^0.8.4", ··· 136 138 "leaflet": "^1.5.1", 137 139 "lodash": "4.*", 138 140 "ml-matrix": "^6.5.0", 139 - "moment": "^2.29.1", 140 - "moment-timezone": "^0.5.33", 141 + "moment": "^2.29.3", 142 + "moment-timezone": "^0.5.34", 141 143 "mousetrap": "^1.6.3", 142 144 "notificar": "^1.0.1", 143 145 "notistack": "^1.0.10", 144 146 "path-fx": "^2.0.0", 145 147 "pathfinding": "^0.4.18", 146 148 "paths-js": "^0.4.9", 147 - "pgadmin4-tree": "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#c966febebcdffaa46f1ccf0769fe5308f179d613", 149 + "pgadmin4-tree": "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#2c288ccc0ae0c98b41e56e79abf1204be3861702", 148 150 "postcss": "^8.2.15", 149 151 "raf": "^3.4.1", 150 152 "rc-dock": "^3.2.9", 151 153 "react": "^17.0.1", 152 154 "react-aspen": "^1.1.0", 153 155 "react-checkbox-tree": "^1.7.2", 156 + "react-data-grid": "git+https://github.com/adityatoshniwal/react-data-grid.git/#1dc310dfaf5afea359404e867b7cf54953f47d1e", 154 157 "react-dom": "^17.0.1", 155 158 "react-draggable": "^4.4.4", 159 + "react-leaflet": "^3.2.2", 156 160 "react-rnd": "^10.3.5", 157 161 "react-router-dom": "^6.2.2", 158 162 "react-select": "^4.2.1", ··· 171 171 "styled-components": "^5.2.1", 172 172 "tablesorter": "^2.31.2", 173 173 "tempusdominus-bootstrap-4": "^5.1.2", 174 - "tempusdominus-core": "^5.0.3", 174 + "tempusdominus-core": "^5.19.3", 175 175 "underscore": "^1.13.1", 176 176 "url-loader": "^1.1.2", 177 177 "valid-filename": "^2.0.1",
+1406 -1721
pkgs/tools/admin/pgadmin/yarn.lock
··· 31 31 dependencies: 32 32 "@babel/highlight" "^7.14.5" 33 33 34 + "@babel/code-frame@^7.16.0": 35 + version "7.16.0" 36 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431" 37 + integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA== 38 + dependencies: 39 + "@babel/highlight" "^7.16.0" 40 + 34 41 "@babel/code-frame@^7.16.7": 35 42 version "7.16.7" 36 43 resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" ··· 45 38 dependencies: 46 39 "@babel/highlight" "^7.16.7" 47 40 48 - "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7": 49 - version "7.14.7" 50 - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08" 51 - integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw== 52 - 53 - "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8": 41 + "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.8", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8": 54 42 version "7.17.0" 55 43 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34" 56 44 integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng== ··· 109 107 dependencies: 110 108 eslint-rule-composer "^0.3.0" 111 109 112 - "@babel/generator@^7.13.0", "@babel/generator@^7.14.5": 113 - version "7.14.5" 114 - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" 115 - integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== 116 - dependencies: 117 - "@babel/types" "^7.14.5" 118 - jsesc "^2.5.1" 119 - source-map "^0.5.0" 120 - 121 - "@babel/generator@^7.17.0": 110 + "@babel/generator@^7.13.0", "@babel/generator@^7.14.5", "@babel/generator@^7.17.0": 122 111 version "7.17.0" 123 112 resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.0.tgz#7bd890ba706cd86d3e2f727322346ffdbf98f65e" 124 113 integrity sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw== ··· 118 125 jsesc "^2.5.1" 119 126 source-map "^0.5.0" 120 127 121 - "@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13", "@babel/helper-annotate-as-pure@^7.14.5": 122 - version "7.14.5" 123 - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61" 124 - integrity sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA== 128 + "@babel/generator@^7.16.0": 129 + version "7.16.0" 130 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.0.tgz#d40f3d1d5075e62d3500bccb67f3daa8a95265b2" 131 + integrity sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew== 125 132 dependencies: 126 - "@babel/types" "^7.14.5" 133 + "@babel/types" "^7.16.0" 134 + jsesc "^2.5.1" 135 + source-map "^0.5.0" 136 + 137 + "@babel/helper-annotate-as-pure@^7.15.4", "@babel/helper-annotate-as-pure@^7.16.0": 138 + version "7.16.0" 139 + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d" 140 + integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg== 141 + dependencies: 142 + "@babel/types" "^7.16.0" 127 143 128 144 "@babel/helper-annotate-as-pure@^7.16.7": 129 145 version "7.16.7" ··· 140 138 integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== 141 139 dependencies: 142 140 "@babel/types" "^7.16.7" 143 - 144 - "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": 145 - version "7.12.13" 146 - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" 147 - integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== 148 - dependencies: 149 - "@babel/helper-explode-assignable-expression" "^7.12.13" 150 - "@babel/types" "^7.12.13" 151 141 152 142 "@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7": 153 143 version "7.16.7" ··· 149 155 "@babel/helper-explode-assignable-expression" "^7.16.7" 150 156 "@babel/types" "^7.16.7" 151 157 152 - "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.8", "@babel/helper-compilation-targets@^7.14.5": 158 + "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.8": 153 159 version "7.14.5" 154 160 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" 155 161 integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw== ··· 159 165 browserslist "^4.16.6" 160 166 semver "^6.3.0" 161 167 162 - "@babel/helper-compilation-targets@^7.16.7": 168 + "@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.16.7": 163 169 version "7.16.7" 164 170 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" 165 171 integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== ··· 169 175 browserslist "^4.17.5" 170 176 semver "^6.3.0" 171 177 172 - "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.6": 173 - version "7.14.6" 174 - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" 175 - integrity sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg== 178 + "@babel/helper-create-class-features-plugin@^7.13.0": 179 + version "7.17.1" 180 + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.1.tgz#9699f14a88833a7e055ce57dcd3ffdcd25186b21" 181 + integrity sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ== 176 182 dependencies: 177 - "@babel/helper-annotate-as-pure" "^7.14.5" 178 - "@babel/helper-function-name" "^7.14.5" 179 - "@babel/helper-member-expression-to-functions" "^7.14.5" 180 - "@babel/helper-optimise-call-expression" "^7.14.5" 181 - "@babel/helper-replace-supers" "^7.14.5" 182 - "@babel/helper-split-export-declaration" "^7.14.5" 183 + "@babel/helper-annotate-as-pure" "^7.16.7" 184 + "@babel/helper-environment-visitor" "^7.16.7" 185 + "@babel/helper-function-name" "^7.16.7" 186 + "@babel/helper-member-expression-to-functions" "^7.16.7" 187 + "@babel/helper-optimise-call-expression" "^7.16.7" 188 + "@babel/helper-replace-supers" "^7.16.7" 189 + "@babel/helper-split-export-declaration" "^7.16.7" 190 + 191 + "@babel/helper-create-class-features-plugin@^7.16.0": 192 + version "7.16.0" 193 + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz#090d4d166b342a03a9fec37ef4fd5aeb9c7c6a4b" 194 + integrity sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA== 195 + dependencies: 196 + "@babel/helper-annotate-as-pure" "^7.16.0" 197 + "@babel/helper-function-name" "^7.16.0" 198 + "@babel/helper-member-expression-to-functions" "^7.16.0" 199 + "@babel/helper-optimise-call-expression" "^7.16.0" 200 + "@babel/helper-replace-supers" "^7.16.0" 201 + "@babel/helper-split-export-declaration" "^7.16.0" 183 202 184 203 "@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7": 185 204 version "7.17.0" ··· 207 200 "@babel/helper-replace-supers" "^7.16.7" 208 201 "@babel/helper-split-export-declaration" "^7.16.7" 209 202 210 - "@babel/helper-create-regexp-features-plugin@^7.12.13": 211 - version "7.14.3" 212 - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz#149aa6d78c016e318c43e2409a0ae9c136a86688" 213 - integrity sha512-JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA== 214 - dependencies: 215 - "@babel/helper-annotate-as-pure" "^7.12.13" 216 - regexpu-core "^4.7.1" 217 - 218 - "@babel/helper-create-regexp-features-plugin@^7.16.7": 203 + "@babel/helper-create-regexp-features-plugin@^7.12.13", "@babel/helper-create-regexp-features-plugin@^7.16.7": 219 204 version "7.17.0" 220 205 resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz#1dcc7d40ba0c6b6b25618997c5dbfd310f186fe1" 221 206 integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA== 222 207 dependencies: 223 208 "@babel/helper-annotate-as-pure" "^7.16.7" 224 209 regexpu-core "^5.0.1" 210 + 211 + "@babel/helper-create-regexp-features-plugin@^7.16.0": 212 + version "7.16.0" 213 + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz#06b2348ce37fccc4f5e18dcd8d75053f2a7c44ff" 214 + integrity sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA== 215 + dependencies: 216 + "@babel/helper-annotate-as-pure" "^7.16.0" 217 + regexpu-core "^4.7.1" 225 218 226 219 "@babel/helper-define-polyfill-provider@^0.1.5": 227 220 version "0.1.5" ··· 258 251 dependencies: 259 252 "@babel/types" "^7.16.7" 260 253 261 - "@babel/helper-explode-assignable-expression@^7.12.13": 262 - version "7.13.0" 263 - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" 264 - integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== 265 - dependencies: 266 - "@babel/types" "^7.13.0" 267 - 268 254 "@babel/helper-explode-assignable-expression@^7.16.7": 269 255 version "7.16.7" 270 256 resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a" ··· 265 265 dependencies: 266 266 "@babel/types" "^7.16.7" 267 267 268 - "@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.5": 268 + "@babel/helper-function-name@^7.14.5": 269 269 version "7.14.5" 270 270 resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4" 271 271 integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ== ··· 273 273 "@babel/helper-get-function-arity" "^7.14.5" 274 274 "@babel/template" "^7.14.5" 275 275 "@babel/types" "^7.14.5" 276 + 277 + "@babel/helper-function-name@^7.16.0": 278 + version "7.16.0" 279 + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481" 280 + integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog== 281 + dependencies: 282 + "@babel/helper-get-function-arity" "^7.16.0" 283 + "@babel/template" "^7.16.0" 284 + "@babel/types" "^7.16.0" 276 285 277 286 "@babel/helper-function-name@^7.16.7": 278 287 version "7.16.7" ··· 292 283 "@babel/template" "^7.16.7" 293 284 "@babel/types" "^7.16.7" 294 285 295 - "@babel/helper-get-function-arity@^7.14.5": 296 - version "7.14.5" 297 - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" 298 - integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg== 299 - dependencies: 300 - "@babel/types" "^7.14.5" 301 - 302 - "@babel/helper-get-function-arity@^7.16.7": 286 + "@babel/helper-get-function-arity@^7.14.5", "@babel/helper-get-function-arity@^7.16.7": 303 287 version "7.16.7" 304 288 resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419" 305 289 integrity sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw== 306 290 dependencies: 307 291 "@babel/types" "^7.16.7" 308 292 309 - "@babel/helper-hoist-variables@^7.13.0", "@babel/helper-hoist-variables@^7.14.5": 293 + "@babel/helper-get-function-arity@^7.16.0": 294 + version "7.16.0" 295 + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa" 296 + integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ== 297 + dependencies: 298 + "@babel/types" "^7.16.0" 299 + 300 + "@babel/helper-hoist-variables@^7.14.5": 310 301 version "7.14.5" 311 302 resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" 312 303 integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ== 313 304 dependencies: 314 305 "@babel/types" "^7.14.5" 306 + 307 + "@babel/helper-hoist-variables@^7.16.0": 308 + version "7.16.0" 309 + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a" 310 + integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg== 311 + dependencies: 312 + "@babel/types" "^7.16.0" 315 313 316 314 "@babel/helper-hoist-variables@^7.16.7": 317 315 version "7.16.7" ··· 327 311 dependencies: 328 312 "@babel/types" "^7.16.7" 329 313 330 - "@babel/helper-member-expression-to-functions@^7.14.5": 331 - version "7.14.7" 332 - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970" 333 - integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA== 314 + "@babel/helper-member-expression-to-functions@^7.16.0": 315 + version "7.16.0" 316 + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz#29287040efd197c77636ef75188e81da8bccd5a4" 317 + integrity sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ== 334 318 dependencies: 335 - "@babel/types" "^7.14.5" 319 + "@babel/types" "^7.16.0" 336 320 337 321 "@babel/helper-member-expression-to-functions@^7.16.7": 338 322 version "7.16.7" ··· 341 325 dependencies: 342 326 "@babel/types" "^7.16.7" 343 327 344 - "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12": 328 + "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13": 345 329 version "7.13.12" 346 330 resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977" 347 331 integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA== 348 332 dependencies: 349 333 "@babel/types" "^7.13.12" 334 + 335 + "@babel/helper-module-imports@^7.15.4": 336 + version "7.16.0" 337 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3" 338 + integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg== 339 + dependencies: 340 + "@babel/types" "^7.16.0" 350 341 351 342 "@babel/helper-module-imports@^7.16.7": 352 343 version "7.16.7" ··· 391 368 "@babel/traverse" "^7.16.7" 392 369 "@babel/types" "^7.16.7" 393 370 394 - "@babel/helper-optimise-call-expression@^7.12.13", "@babel/helper-optimise-call-expression@^7.14.5": 395 - version "7.14.5" 396 - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" 397 - integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA== 371 + "@babel/helper-optimise-call-expression@^7.16.0": 372 + version "7.16.0" 373 + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338" 374 + integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw== 398 375 dependencies: 399 - "@babel/types" "^7.14.5" 376 + "@babel/types" "^7.16.0" 400 377 401 378 "@babel/helper-optimise-call-expression@^7.16.7": 402 379 version "7.16.7" ··· 415 392 resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" 416 393 integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== 417 394 418 - "@babel/helper-remap-async-to-generator@^7.13.0": 419 - version "7.13.0" 420 - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" 421 - integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== 422 - dependencies: 423 - "@babel/helper-annotate-as-pure" "^7.12.13" 424 - "@babel/helper-wrap-function" "^7.13.0" 425 - "@babel/types" "^7.13.0" 426 - 427 395 "@babel/helper-remap-async-to-generator@^7.16.8": 428 396 version "7.16.8" 429 397 resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3" ··· 424 410 "@babel/helper-wrap-function" "^7.16.8" 425 411 "@babel/types" "^7.16.8" 426 412 427 - "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.14.5": 428 - version "7.14.5" 429 - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" 430 - integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow== 431 - dependencies: 432 - "@babel/helper-member-expression-to-functions" "^7.14.5" 433 - "@babel/helper-optimise-call-expression" "^7.14.5" 434 - "@babel/traverse" "^7.14.5" 435 - "@babel/types" "^7.14.5" 436 - 437 - "@babel/helper-replace-supers@^7.16.7": 413 + "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.16.7": 438 414 version "7.16.7" 439 415 resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz#e9f5f5f32ac90429c1a4bdec0f231ef0c2838ab1" 440 416 integrity sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw== ··· 435 431 "@babel/traverse" "^7.16.7" 436 432 "@babel/types" "^7.16.7" 437 433 438 - "@babel/helper-simple-access@^7.12.13": 439 - version "7.13.12" 440 - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6" 441 - integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA== 434 + "@babel/helper-replace-supers@^7.16.0": 435 + version "7.16.0" 436 + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz#73055e8d3cf9bcba8ddb55cad93fedc860f68f17" 437 + integrity sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA== 442 438 dependencies: 443 - "@babel/types" "^7.13.12" 439 + "@babel/helper-member-expression-to-functions" "^7.16.0" 440 + "@babel/helper-optimise-call-expression" "^7.16.0" 441 + "@babel/traverse" "^7.16.0" 442 + "@babel/types" "^7.16.0" 444 443 445 - "@babel/helper-simple-access@^7.16.7": 444 + "@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.16.7": 446 445 version "7.16.7" 447 446 resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz#d656654b9ea08dbb9659b69d61063ccd343ff0f7" 448 447 integrity sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g== 449 448 dependencies: 450 449 "@babel/types" "^7.16.7" 451 - 452 - "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": 453 - version "7.12.1" 454 - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" 455 - integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== 456 - dependencies: 457 - "@babel/types" "^7.12.1" 458 450 459 451 "@babel/helper-skip-transparent-expression-wrappers@^7.16.0": 460 452 version "7.16.0" ··· 459 459 dependencies: 460 460 "@babel/types" "^7.16.0" 461 461 462 - "@babel/helper-split-export-declaration@^7.12.13", "@babel/helper-split-export-declaration@^7.14.5": 463 - version "7.14.5" 464 - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" 465 - integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA== 466 - dependencies: 467 - "@babel/types" "^7.14.5" 468 - 469 - "@babel/helper-split-export-declaration@^7.16.7": 462 + "@babel/helper-split-export-declaration@^7.12.13", "@babel/helper-split-export-declaration@^7.16.7": 470 463 version "7.16.7" 471 464 resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 472 465 integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 473 466 dependencies: 474 467 "@babel/types" "^7.16.7" 475 468 476 - "@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9": 477 - version "7.14.9" 478 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" 479 - integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== 469 + "@babel/helper-split-export-declaration@^7.14.5": 470 + version "7.14.5" 471 + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" 472 + integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA== 473 + dependencies: 474 + "@babel/types" "^7.14.5" 480 475 481 - "@babel/helper-validator-identifier@^7.16.7": 476 + "@babel/helper-split-export-declaration@^7.16.0": 477 + version "7.16.0" 478 + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438" 479 + integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw== 480 + dependencies: 481 + "@babel/types" "^7.16.0" 482 + 483 + "@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.16.7": 482 484 version "7.16.7" 483 485 resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 484 486 integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 485 487 486 - "@babel/helper-validator-option@^7.12.17", "@babel/helper-validator-option@^7.14.5": 487 - version "7.14.5" 488 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 489 - integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 488 + "@babel/helper-validator-identifier@^7.15.7": 489 + version "7.15.7" 490 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 491 + integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 490 492 491 - "@babel/helper-validator-option@^7.16.7": 493 + "@babel/helper-validator-option@^7.12.17", "@babel/helper-validator-option@^7.16.7": 492 494 version "7.16.7" 493 495 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 494 496 integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 495 497 496 - "@babel/helper-wrap-function@^7.13.0": 497 - version "7.13.0" 498 - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" 499 - integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== 500 - dependencies: 501 - "@babel/helper-function-name" "^7.12.13" 502 - "@babel/template" "^7.12.13" 503 - "@babel/traverse" "^7.13.0" 504 - "@babel/types" "^7.13.0" 498 + "@babel/helper-validator-option@^7.14.5": 499 + version "7.14.5" 500 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 501 + integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 505 502 506 503 "@babel/helper-wrap-function@^7.16.8": 507 504 version "7.16.8" ··· 537 540 chalk "^2.0.0" 538 541 js-tokens "^4.0.0" 539 542 543 + "@babel/highlight@^7.16.0": 544 + version "7.16.0" 545 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a" 546 + integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g== 547 + dependencies: 548 + "@babel/helper-validator-identifier" "^7.15.7" 549 + chalk "^2.0.0" 550 + js-tokens "^4.0.0" 551 + 540 552 "@babel/highlight@^7.16.7": 541 553 version "7.16.10" 542 554 resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88" ··· 559 553 version "7.14.7" 560 554 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595" 561 555 integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA== 556 + 557 + "@babel/parser@^7.16.0": 558 + version "7.16.2" 559 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.2.tgz#3723cd5c8d8773eef96ce57ea1d9b7faaccd12ac" 560 + integrity sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw== 562 561 563 562 "@babel/parser@^7.16.7", "@babel/parser@^7.17.0": 564 563 version "7.17.0" ··· 586 575 "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 587 576 "@babel/plugin-proposal-optional-chaining" "^7.16.7" 588 577 589 - "@babel/plugin-proposal-async-generator-functions@^7.13.8": 590 - version "7.13.8" 591 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" 592 - integrity sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA== 593 - dependencies: 594 - "@babel/helper-plugin-utils" "^7.13.0" 595 - "@babel/helper-remap-async-to-generator" "^7.13.0" 596 - "@babel/plugin-syntax-async-generators" "^7.8.4" 597 - 598 - "@babel/plugin-proposal-async-generator-functions@^7.16.8": 578 + "@babel/plugin-proposal-async-generator-functions@^7.13.8", "@babel/plugin-proposal-async-generator-functions@^7.16.8": 599 579 version "7.16.8" 600 580 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz#3bdd1ebbe620804ea9416706cd67d60787504bc8" 601 581 integrity sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ== ··· 595 593 "@babel/helper-remap-async-to-generator" "^7.16.8" 596 594 "@babel/plugin-syntax-async-generators" "^7.8.4" 597 595 598 - "@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.13.0": 596 + "@babel/plugin-proposal-class-properties@^7.10.4": 599 597 version "7.13.0" 600 598 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" 601 599 integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== ··· 603 601 "@babel/helper-create-class-features-plugin" "^7.13.0" 604 602 "@babel/helper-plugin-utils" "^7.13.0" 605 603 606 - "@babel/plugin-proposal-class-properties@^7.16.7": 604 + "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.16.7": 607 605 version "7.16.7" 608 606 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz#925cad7b3b1a2fcea7e59ecc8eb5954f961f91b0" 609 607 integrity sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww== ··· 620 618 "@babel/helper-plugin-utils" "^7.16.7" 621 619 "@babel/plugin-syntax-class-static-block" "^7.14.5" 622 620 623 - "@babel/plugin-proposal-dynamic-import@^7.13.8": 624 - version "7.13.8" 625 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" 626 - integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== 627 - dependencies: 628 - "@babel/helper-plugin-utils" "^7.13.0" 629 - "@babel/plugin-syntax-dynamic-import" "^7.8.3" 630 - 631 - "@babel/plugin-proposal-dynamic-import@^7.16.7": 621 + "@babel/plugin-proposal-dynamic-import@^7.13.8", "@babel/plugin-proposal-dynamic-import@^7.16.7": 632 622 version "7.16.7" 633 623 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2" 634 624 integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg== ··· 628 634 "@babel/helper-plugin-utils" "^7.16.7" 629 635 "@babel/plugin-syntax-dynamic-import" "^7.8.3" 630 636 631 - "@babel/plugin-proposal-export-namespace-from@^7.12.13": 632 - version "7.14.2" 633 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791" 634 - integrity sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ== 635 - dependencies: 636 - "@babel/helper-plugin-utils" "^7.13.0" 637 - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 638 - 639 - "@babel/plugin-proposal-export-namespace-from@^7.16.7": 637 + "@babel/plugin-proposal-export-namespace-from@^7.12.13", "@babel/plugin-proposal-export-namespace-from@^7.16.7": 640 638 version "7.16.7" 641 639 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz#09de09df18445a5786a305681423ae63507a6163" 642 640 integrity sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA== ··· 636 650 "@babel/helper-plugin-utils" "^7.16.7" 637 651 "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 638 652 639 - "@babel/plugin-proposal-json-strings@^7.13.8": 640 - version "7.13.8" 641 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" 642 - integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== 643 - dependencies: 644 - "@babel/helper-plugin-utils" "^7.13.0" 645 - "@babel/plugin-syntax-json-strings" "^7.8.3" 646 - 647 - "@babel/plugin-proposal-json-strings@^7.16.7": 653 + "@babel/plugin-proposal-json-strings@^7.13.8", "@babel/plugin-proposal-json-strings@^7.16.7": 648 654 version "7.16.7" 649 655 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz#9732cb1d17d9a2626a08c5be25186c195b6fa6e8" 650 656 integrity sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ== ··· 644 666 "@babel/helper-plugin-utils" "^7.16.7" 645 667 "@babel/plugin-syntax-json-strings" "^7.8.3" 646 668 647 - "@babel/plugin-proposal-logical-assignment-operators@^7.13.8": 648 - version "7.13.8" 649 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" 650 - integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== 651 - dependencies: 652 - "@babel/helper-plugin-utils" "^7.13.0" 653 - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 654 - 655 - "@babel/plugin-proposal-logical-assignment-operators@^7.16.7": 669 + "@babel/plugin-proposal-logical-assignment-operators@^7.13.8", "@babel/plugin-proposal-logical-assignment-operators@^7.16.7": 656 670 version "7.16.7" 657 671 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz#be23c0ba74deec1922e639832904be0bea73cdea" 658 672 integrity sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg== ··· 652 682 "@babel/helper-plugin-utils" "^7.16.7" 653 683 "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 654 684 655 - "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": 656 - version "7.13.8" 657 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" 658 - integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== 659 - dependencies: 660 - "@babel/helper-plugin-utils" "^7.13.0" 661 - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 662 - 663 - "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": 685 + "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.7": 664 686 version "7.16.7" 665 687 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz#141fc20b6857e59459d430c850a0011e36561d99" 666 688 integrity sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ== ··· 660 698 "@babel/helper-plugin-utils" "^7.16.7" 661 699 "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 662 700 663 - "@babel/plugin-proposal-numeric-separator@^7.12.13": 664 - version "7.14.2" 665 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e" 666 - integrity sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg== 667 - dependencies: 668 - "@babel/helper-plugin-utils" "^7.13.0" 669 - "@babel/plugin-syntax-numeric-separator" "^7.10.4" 670 - 671 - "@babel/plugin-proposal-numeric-separator@^7.16.7": 701 + "@babel/plugin-proposal-numeric-separator@^7.12.13", "@babel/plugin-proposal-numeric-separator@^7.16.7": 672 702 version "7.16.7" 673 703 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz#d6b69f4af63fb38b6ca2558442a7fb191236eba9" 674 704 integrity sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw== ··· 668 714 "@babel/helper-plugin-utils" "^7.16.7" 669 715 "@babel/plugin-syntax-numeric-separator" "^7.10.4" 670 716 671 - "@babel/plugin-proposal-object-rest-spread@^7.10.1", "@babel/plugin-proposal-object-rest-spread@^7.13.8": 717 + "@babel/plugin-proposal-object-rest-spread@^7.10.1": 672 718 version "7.14.7" 673 719 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz#5920a2b3df7f7901df0205974c0641b13fd9d363" 674 720 integrity sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g== ··· 679 725 "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 680 726 "@babel/plugin-transform-parameters" "^7.14.5" 681 727 682 - "@babel/plugin-proposal-object-rest-spread@^7.16.7": 728 + "@babel/plugin-proposal-object-rest-spread@^7.13.8", "@babel/plugin-proposal-object-rest-spread@^7.16.7": 683 729 version "7.16.7" 684 730 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz#94593ef1ddf37021a25bdcb5754c4a8d534b01d8" 685 731 integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA== ··· 690 736 "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 691 737 "@babel/plugin-transform-parameters" "^7.16.7" 692 738 693 - "@babel/plugin-proposal-optional-catch-binding@^7.13.8": 694 - version "7.13.8" 695 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" 696 - integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== 697 - dependencies: 698 - "@babel/helper-plugin-utils" "^7.13.0" 699 - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 700 - 701 - "@babel/plugin-proposal-optional-catch-binding@^7.16.7": 739 + "@babel/plugin-proposal-optional-catch-binding@^7.13.8", "@babel/plugin-proposal-optional-catch-binding@^7.16.7": 702 740 version "7.16.7" 703 741 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf" 704 742 integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA== ··· 698 752 "@babel/helper-plugin-utils" "^7.16.7" 699 753 "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 700 754 701 - "@babel/plugin-proposal-optional-chaining@^7.13.8": 702 - version "7.13.8" 703 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz#e39df93efe7e7e621841babc197982e140e90756" 704 - integrity sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== 705 - dependencies: 706 - "@babel/helper-plugin-utils" "^7.13.0" 707 - "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 708 - "@babel/plugin-syntax-optional-chaining" "^7.8.3" 709 - 710 - "@babel/plugin-proposal-optional-chaining@^7.16.7": 755 + "@babel/plugin-proposal-optional-chaining@^7.13.8", "@babel/plugin-proposal-optional-chaining@^7.16.7": 711 756 version "7.16.7" 712 757 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz#7cd629564724816c0e8a969535551f943c64c39a" 713 758 integrity sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA== ··· 707 770 "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 708 771 "@babel/plugin-syntax-optional-chaining" "^7.8.3" 709 772 710 - "@babel/plugin-proposal-private-methods@^7.13.0": 711 - version "7.13.0" 712 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787" 713 - integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q== 714 - dependencies: 715 - "@babel/helper-create-class-features-plugin" "^7.13.0" 716 - "@babel/helper-plugin-utils" "^7.13.0" 717 - 718 - "@babel/plugin-proposal-private-methods@^7.16.11": 773 + "@babel/plugin-proposal-private-methods@^7.13.0", "@babel/plugin-proposal-private-methods@^7.16.11": 719 774 version "7.16.11" 720 775 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz#e8df108288555ff259f4527dbe84813aac3a1c50" 721 776 integrity sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw== ··· 725 796 "@babel/helper-plugin-utils" "^7.16.7" 726 797 "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 727 798 728 - "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 729 - version "7.12.13" 730 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba" 731 - integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg== 732 - dependencies: 733 - "@babel/helper-create-regexp-features-plugin" "^7.12.13" 734 - "@babel/helper-plugin-utils" "^7.12.13" 735 - 736 - "@babel/plugin-proposal-unicode-property-regex@^7.16.7": 799 + "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.16.7": 737 800 version "7.16.7" 738 801 resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz#635d18eb10c6214210ffc5ff4932552de08188a2" 739 802 integrity sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg== 740 803 dependencies: 741 804 "@babel/helper-create-regexp-features-plugin" "^7.16.7" 742 805 "@babel/helper-plugin-utils" "^7.16.7" 806 + 807 + "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 808 + version "7.16.0" 809 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz#890482dfc5ea378e42e19a71e709728cabf18612" 810 + integrity sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g== 811 + dependencies: 812 + "@babel/helper-create-regexp-features-plugin" "^7.16.0" 813 + "@babel/helper-plugin-utils" "^7.14.5" 743 814 744 815 "@babel/plugin-syntax-async-generators@^7.8.4": 745 816 version "7.8.4" ··· 782 853 integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 783 854 dependencies: 784 855 "@babel/helper-plugin-utils" "^7.8.0" 785 - 786 - "@babel/plugin-syntax-jsx@^7.12.13": 787 - version "7.12.13" 788 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15" 789 - integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g== 790 - dependencies: 791 - "@babel/helper-plugin-utils" "^7.12.13" 792 856 793 857 "@babel/plugin-syntax-jsx@^7.16.0", "@babel/plugin-syntax-jsx@^7.16.7": 794 858 version "7.16.7" ··· 839 917 dependencies: 840 918 "@babel/helper-plugin-utils" "^7.14.5" 841 919 842 - "@babel/plugin-syntax-top-level-await@^7.12.13": 843 - version "7.12.13" 844 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178" 845 - integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ== 846 - dependencies: 847 - "@babel/helper-plugin-utils" "^7.12.13" 848 - 849 - "@babel/plugin-syntax-top-level-await@^7.14.5": 920 + "@babel/plugin-syntax-top-level-await@^7.12.13", "@babel/plugin-syntax-top-level-await@^7.14.5": 850 921 version "7.14.5" 851 922 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 852 923 integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 853 924 dependencies: 854 925 "@babel/helper-plugin-utils" "^7.14.5" 855 926 856 - "@babel/plugin-syntax-typescript@^7.14.5": 857 - version "7.14.5" 858 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" 859 - integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== 927 + "@babel/plugin-syntax-typescript@^7.16.0": 928 + version "7.16.0" 929 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz#2feeb13d9334cc582ea9111d3506f773174179bb" 930 + integrity sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ== 860 931 dependencies: 861 932 "@babel/helper-plugin-utils" "^7.14.5" 862 933 863 - "@babel/plugin-transform-arrow-functions@^7.13.0": 864 - version "7.13.0" 865 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" 866 - integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== 867 - dependencies: 868 - "@babel/helper-plugin-utils" "^7.13.0" 869 - 870 - "@babel/plugin-transform-arrow-functions@^7.16.7": 934 + "@babel/plugin-transform-arrow-functions@^7.13.0", "@babel/plugin-transform-arrow-functions@^7.16.7": 871 935 version "7.16.7" 872 936 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz#44125e653d94b98db76369de9c396dc14bef4154" 873 937 integrity sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ== 874 938 dependencies: 875 939 "@babel/helper-plugin-utils" "^7.16.7" 876 940 877 - "@babel/plugin-transform-async-to-generator@^7.13.0": 878 - version "7.13.0" 879 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f" 880 - integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== 881 - dependencies: 882 - "@babel/helper-module-imports" "^7.12.13" 883 - "@babel/helper-plugin-utils" "^7.13.0" 884 - "@babel/helper-remap-async-to-generator" "^7.13.0" 885 - 886 - "@babel/plugin-transform-async-to-generator@^7.16.8": 941 + "@babel/plugin-transform-async-to-generator@^7.13.0", "@babel/plugin-transform-async-to-generator@^7.16.8": 887 942 version "7.16.8" 888 943 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz#b83dff4b970cf41f1b819f8b49cc0cfbaa53a808" 889 944 integrity sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg== ··· 869 970 "@babel/helper-plugin-utils" "^7.16.7" 870 971 "@babel/helper-remap-async-to-generator" "^7.16.8" 871 972 872 - "@babel/plugin-transform-block-scoped-functions@^7.12.13": 873 - version "7.12.13" 874 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4" 875 - integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg== 876 - dependencies: 877 - "@babel/helper-plugin-utils" "^7.12.13" 878 - 879 - "@babel/plugin-transform-block-scoped-functions@^7.16.7": 973 + "@babel/plugin-transform-block-scoped-functions@^7.12.13", "@babel/plugin-transform-block-scoped-functions@^7.16.7": 880 974 version "7.16.7" 881 975 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620" 882 976 integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg== 883 977 dependencies: 884 978 "@babel/helper-plugin-utils" "^7.16.7" 885 979 886 - "@babel/plugin-transform-block-scoping@^7.12.13": 887 - version "7.14.2" 888 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz#761cb12ab5a88d640ad4af4aa81f820e6b5fdf5c" 889 - integrity sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg== 890 - dependencies: 891 - "@babel/helper-plugin-utils" "^7.13.0" 892 - 893 - "@babel/plugin-transform-block-scoping@^7.16.7": 980 + "@babel/plugin-transform-block-scoping@^7.12.13", "@babel/plugin-transform-block-scoping@^7.16.7": 894 981 version "7.16.7" 895 982 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz#f50664ab99ddeaee5bc681b8f3a6ea9d72ab4f87" 896 983 integrity sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ== 897 984 dependencies: 898 985 "@babel/helper-plugin-utils" "^7.16.7" 899 986 900 - "@babel/plugin-transform-classes@^7.13.0": 901 - version "7.13.0" 902 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" 903 - integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== 904 - dependencies: 905 - "@babel/helper-annotate-as-pure" "^7.12.13" 906 - "@babel/helper-function-name" "^7.12.13" 907 - "@babel/helper-optimise-call-expression" "^7.12.13" 908 - "@babel/helper-plugin-utils" "^7.13.0" 909 - "@babel/helper-replace-supers" "^7.13.0" 910 - "@babel/helper-split-export-declaration" "^7.12.13" 911 - globals "^11.1.0" 912 - 913 - "@babel/plugin-transform-classes@^7.16.7": 987 + "@babel/plugin-transform-classes@^7.13.0", "@babel/plugin-transform-classes@^7.16.7": 914 988 version "7.16.7" 915 989 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz#8f4b9562850cd973de3b498f1218796eb181ce00" 916 990 integrity sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ== ··· 897 1025 "@babel/helper-split-export-declaration" "^7.16.7" 898 1026 globals "^11.1.0" 899 1027 900 - "@babel/plugin-transform-computed-properties@^7.13.0": 901 - version "7.13.0" 902 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed" 903 - integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== 904 - dependencies: 905 - "@babel/helper-plugin-utils" "^7.13.0" 906 - 907 - "@babel/plugin-transform-computed-properties@^7.16.7": 1028 + "@babel/plugin-transform-computed-properties@^7.13.0", "@babel/plugin-transform-computed-properties@^7.16.7": 908 1029 version "7.16.7" 909 1030 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz#66dee12e46f61d2aae7a73710f591eb3df616470" 910 1031 integrity sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw== 911 1032 dependencies: 912 1033 "@babel/helper-plugin-utils" "^7.16.7" 913 1034 914 - "@babel/plugin-transform-destructuring@^7.13.0": 915 - version "7.13.0" 916 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" 917 - integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== 918 - dependencies: 919 - "@babel/helper-plugin-utils" "^7.13.0" 920 - 921 - "@babel/plugin-transform-destructuring@^7.16.7": 1035 + "@babel/plugin-transform-destructuring@^7.13.0", "@babel/plugin-transform-destructuring@^7.16.7": 922 1036 version "7.16.7" 923 1037 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz#ca9588ae2d63978a4c29d3f33282d8603f618e23" 924 1038 integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A== 925 1039 dependencies: 926 1040 "@babel/helper-plugin-utils" "^7.16.7" 927 1041 928 - "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": 929 - version "7.12.13" 930 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad" 931 - integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== 932 - dependencies: 933 - "@babel/helper-create-regexp-features-plugin" "^7.12.13" 934 - "@babel/helper-plugin-utils" "^7.12.13" 935 - 936 - "@babel/plugin-transform-dotall-regex@^7.16.7": 1042 + "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.16.7": 937 1043 version "7.16.7" 938 1044 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz#6b2d67686fab15fb6a7fd4bd895d5982cfc81241" 939 1045 integrity sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ== ··· 919 1069 "@babel/helper-create-regexp-features-plugin" "^7.16.7" 920 1070 "@babel/helper-plugin-utils" "^7.16.7" 921 1071 922 - "@babel/plugin-transform-duplicate-keys@^7.12.13": 1072 + "@babel/plugin-transform-dotall-regex@^7.4.4": 923 1073 version "7.12.13" 924 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de" 925 - integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ== 1074 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad" 1075 + integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== 926 1076 dependencies: 1077 + "@babel/helper-create-regexp-features-plugin" "^7.12.13" 927 1078 "@babel/helper-plugin-utils" "^7.12.13" 928 1079 929 - "@babel/plugin-transform-duplicate-keys@^7.16.7": 1080 + "@babel/plugin-transform-duplicate-keys@^7.12.13", "@babel/plugin-transform-duplicate-keys@^7.16.7": 930 1081 version "7.16.7" 931 1082 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz#2207e9ca8f82a0d36a5a67b6536e7ef8b08823c9" 932 1083 integrity sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw== 933 1084 dependencies: 934 1085 "@babel/helper-plugin-utils" "^7.16.7" 935 1086 936 - "@babel/plugin-transform-exponentiation-operator@^7.12.13": 937 - version "7.12.13" 938 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1" 939 - integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== 940 - dependencies: 941 - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" 942 - "@babel/helper-plugin-utils" "^7.12.13" 943 - 944 - "@babel/plugin-transform-exponentiation-operator@^7.16.7": 1087 + "@babel/plugin-transform-exponentiation-operator@^7.12.13", "@babel/plugin-transform-exponentiation-operator@^7.16.7": 945 1088 version "7.16.7" 946 1089 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b" 947 1090 integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA== ··· 942 1099 "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7" 943 1100 "@babel/helper-plugin-utils" "^7.16.7" 944 1101 945 - "@babel/plugin-transform-for-of@^7.13.0": 946 - version "7.13.0" 947 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" 948 - integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== 949 - dependencies: 950 - "@babel/helper-plugin-utils" "^7.13.0" 951 - 952 - "@babel/plugin-transform-for-of@^7.16.7": 1102 + "@babel/plugin-transform-for-of@^7.13.0", "@babel/plugin-transform-for-of@^7.16.7": 953 1103 version "7.16.7" 954 1104 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz#649d639d4617dff502a9a158c479b3b556728d8c" 955 1105 integrity sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg== 956 1106 dependencies: 957 1107 "@babel/helper-plugin-utils" "^7.16.7" 958 1108 959 - "@babel/plugin-transform-function-name@^7.12.13": 960 - version "7.12.13" 961 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051" 962 - integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== 963 - dependencies: 964 - "@babel/helper-function-name" "^7.12.13" 965 - "@babel/helper-plugin-utils" "^7.12.13" 966 - 967 - "@babel/plugin-transform-function-name@^7.16.7": 1109 + "@babel/plugin-transform-function-name@^7.12.13", "@babel/plugin-transform-function-name@^7.16.7": 968 1110 version "7.16.7" 969 1111 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf" 970 1112 integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA== ··· 958 1130 "@babel/helper-function-name" "^7.16.7" 959 1131 "@babel/helper-plugin-utils" "^7.16.7" 960 1132 961 - "@babel/plugin-transform-literals@^7.12.13": 962 - version "7.12.13" 963 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9" 964 - integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== 965 - dependencies: 966 - "@babel/helper-plugin-utils" "^7.12.13" 967 - 968 - "@babel/plugin-transform-literals@^7.16.7": 1133 + "@babel/plugin-transform-literals@^7.12.13", "@babel/plugin-transform-literals@^7.16.7": 969 1134 version "7.16.7" 970 1135 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz#254c9618c5ff749e87cb0c0cef1a0a050c0bdab1" 971 1136 integrity sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ== 972 1137 dependencies: 973 1138 "@babel/helper-plugin-utils" "^7.16.7" 974 1139 975 - "@babel/plugin-transform-member-expression-literals@^7.12.13": 976 - version "7.12.13" 977 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40" 978 - integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg== 979 - dependencies: 980 - "@babel/helper-plugin-utils" "^7.12.13" 981 - 982 - "@babel/plugin-transform-member-expression-literals@^7.16.7": 1140 + "@babel/plugin-transform-member-expression-literals@^7.12.13", "@babel/plugin-transform-member-expression-literals@^7.16.7": 983 1141 version "7.16.7" 984 1142 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384" 985 1143 integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw== 986 1144 dependencies: 987 1145 "@babel/helper-plugin-utils" "^7.16.7" 988 1146 989 - "@babel/plugin-transform-modules-amd@^7.13.0": 990 - version "7.13.0" 991 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3" 992 - integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ== 993 - dependencies: 994 - "@babel/helper-module-transforms" "^7.13.0" 995 - "@babel/helper-plugin-utils" "^7.13.0" 996 - babel-plugin-dynamic-import-node "^2.3.3" 997 - 998 - "@babel/plugin-transform-modules-amd@^7.16.7": 1147 + "@babel/plugin-transform-modules-amd@^7.13.0", "@babel/plugin-transform-modules-amd@^7.16.7": 999 1148 version "7.16.7" 1000 1149 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz#b28d323016a7daaae8609781d1f8c9da42b13186" 1001 1150 integrity sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g== ··· 981 1176 "@babel/helper-plugin-utils" "^7.16.7" 982 1177 babel-plugin-dynamic-import-node "^2.3.3" 983 1178 984 - "@babel/plugin-transform-modules-commonjs@^7.13.8": 985 - version "7.13.8" 986 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" 987 - integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== 988 - dependencies: 989 - "@babel/helper-module-transforms" "^7.13.0" 990 - "@babel/helper-plugin-utils" "^7.13.0" 991 - "@babel/helper-simple-access" "^7.12.13" 992 - babel-plugin-dynamic-import-node "^2.3.3" 993 - 994 - "@babel/plugin-transform-modules-commonjs@^7.16.8": 1179 + "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.16.8": 995 1180 version "7.16.8" 996 1181 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz#cdee19aae887b16b9d331009aa9a219af7c86afe" 997 1182 integrity sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA== ··· 991 1196 "@babel/helper-simple-access" "^7.16.7" 992 1197 babel-plugin-dynamic-import-node "^2.3.3" 993 1198 994 - "@babel/plugin-transform-modules-systemjs@^7.13.8": 995 - version "7.13.8" 996 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3" 997 - integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A== 998 - dependencies: 999 - "@babel/helper-hoist-variables" "^7.13.0" 1000 - "@babel/helper-module-transforms" "^7.13.0" 1001 - "@babel/helper-plugin-utils" "^7.13.0" 1002 - "@babel/helper-validator-identifier" "^7.12.11" 1003 - babel-plugin-dynamic-import-node "^2.3.3" 1004 - 1005 - "@babel/plugin-transform-modules-systemjs@^7.16.7": 1199 + "@babel/plugin-transform-modules-systemjs@^7.13.8", "@babel/plugin-transform-modules-systemjs@^7.16.7": 1006 1200 version "7.16.7" 1007 1201 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz#887cefaef88e684d29558c2b13ee0563e287c2d7" 1008 1202 integrity sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw== ··· 1002 1218 "@babel/helper-validator-identifier" "^7.16.7" 1003 1219 babel-plugin-dynamic-import-node "^2.3.3" 1004 1220 1005 - "@babel/plugin-transform-modules-umd@^7.13.0": 1006 - version "7.13.0" 1007 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b" 1008 - integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw== 1009 - dependencies: 1010 - "@babel/helper-module-transforms" "^7.13.0" 1011 - "@babel/helper-plugin-utils" "^7.13.0" 1012 - 1013 - "@babel/plugin-transform-modules-umd@^7.16.7": 1221 + "@babel/plugin-transform-modules-umd@^7.13.0", "@babel/plugin-transform-modules-umd@^7.16.7": 1014 1222 version "7.16.7" 1015 1223 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz#23dad479fa585283dbd22215bff12719171e7618" 1016 1224 integrity sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ== ··· 1010 1234 "@babel/helper-module-transforms" "^7.16.7" 1011 1235 "@babel/helper-plugin-utils" "^7.16.7" 1012 1236 1013 - "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": 1014 - version "7.12.13" 1015 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9" 1016 - integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA== 1017 - dependencies: 1018 - "@babel/helper-create-regexp-features-plugin" "^7.12.13" 1019 - 1020 - "@babel/plugin-transform-named-capturing-groups-regex@^7.16.8": 1237 + "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13", "@babel/plugin-transform-named-capturing-groups-regex@^7.16.8": 1021 1238 version "7.16.8" 1022 1239 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz#7f860e0e40d844a02c9dcf9d84965e7dfd666252" 1023 1240 integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw== 1024 1241 dependencies: 1025 1242 "@babel/helper-create-regexp-features-plugin" "^7.16.7" 1026 1243 1027 - "@babel/plugin-transform-new-target@^7.12.13": 1028 - version "7.12.13" 1029 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c" 1030 - integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ== 1031 - dependencies: 1032 - "@babel/helper-plugin-utils" "^7.12.13" 1033 - 1034 - "@babel/plugin-transform-new-target@^7.16.7": 1244 + "@babel/plugin-transform-new-target@^7.12.13", "@babel/plugin-transform-new-target@^7.16.7": 1035 1245 version "7.16.7" 1036 1246 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz#9967d89a5c243818e0800fdad89db22c5f514244" 1037 1247 integrity sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg== 1038 1248 dependencies: 1039 1249 "@babel/helper-plugin-utils" "^7.16.7" 1040 1250 1041 - "@babel/plugin-transform-object-super@^7.12.13": 1042 - version "7.12.13" 1043 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7" 1044 - integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ== 1045 - dependencies: 1046 - "@babel/helper-plugin-utils" "^7.12.13" 1047 - "@babel/helper-replace-supers" "^7.12.13" 1048 - 1049 - "@babel/plugin-transform-object-super@^7.16.7": 1251 + "@babel/plugin-transform-object-super@^7.12.13", "@babel/plugin-transform-object-super@^7.16.7": 1050 1252 version "7.16.7" 1051 1253 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94" 1052 1254 integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw== ··· 1032 1278 "@babel/helper-plugin-utils" "^7.16.7" 1033 1279 "@babel/helper-replace-supers" "^7.16.7" 1034 1280 1035 - "@babel/plugin-transform-parameters@^7.13.0", "@babel/plugin-transform-parameters@^7.14.5": 1036 - version "7.14.5" 1037 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3" 1038 - integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA== 1039 - dependencies: 1040 - "@babel/helper-plugin-utils" "^7.14.5" 1041 - 1042 - "@babel/plugin-transform-parameters@^7.16.7": 1281 + "@babel/plugin-transform-parameters@^7.13.0", "@babel/plugin-transform-parameters@^7.14.5", "@babel/plugin-transform-parameters@^7.16.7": 1043 1282 version "7.16.7" 1044 1283 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz#a1721f55b99b736511cb7e0152f61f17688f331f" 1045 1284 integrity sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw== 1046 1285 dependencies: 1047 1286 "@babel/helper-plugin-utils" "^7.16.7" 1048 1287 1049 - "@babel/plugin-transform-property-literals@^7.12.13": 1050 - version "7.12.13" 1051 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81" 1052 - integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A== 1053 - dependencies: 1054 - "@babel/helper-plugin-utils" "^7.12.13" 1055 - 1056 - "@babel/plugin-transform-property-literals@^7.16.7": 1288 + "@babel/plugin-transform-property-literals@^7.12.13", "@babel/plugin-transform-property-literals@^7.16.7": 1057 1289 version "7.16.7" 1058 1290 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55" 1059 1291 integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw== ··· 1053 1313 dependencies: 1054 1314 "@babel/helper-plugin-utils" "^7.16.7" 1055 1315 1056 - "@babel/plugin-transform-react-display-name@^7.12.13": 1057 - version "7.14.2" 1058 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.2.tgz#2e854544d42ab3bb9c21f84e153d62e800fbd593" 1059 - integrity sha512-zCubvP+jjahpnFJvPaHPiGVfuVUjXHhFvJKQdNnsmSsiU9kR/rCZ41jHc++tERD2zV+p7Hr6is+t5b6iWTCqSw== 1060 - dependencies: 1061 - "@babel/helper-plugin-utils" "^7.13.0" 1062 - 1063 - "@babel/plugin-transform-react-display-name@^7.16.7": 1316 + "@babel/plugin-transform-react-display-name@^7.12.13", "@babel/plugin-transform-react-display-name@^7.16.7": 1064 1317 version "7.16.7" 1065 1318 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340" 1066 1319 integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg== 1067 1320 dependencies: 1068 1321 "@babel/helper-plugin-utils" "^7.16.7" 1069 1322 1070 - "@babel/plugin-transform-react-jsx-development@^7.12.17": 1071 - version "7.12.17" 1072 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447" 1073 - integrity sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ== 1074 - dependencies: 1075 - "@babel/plugin-transform-react-jsx" "^7.12.17" 1076 - 1077 - "@babel/plugin-transform-react-jsx-development@^7.16.7": 1323 + "@babel/plugin-transform-react-jsx-development@^7.12.17", "@babel/plugin-transform-react-jsx-development@^7.16.7": 1078 1324 version "7.16.7" 1079 1325 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz#43a00724a3ed2557ed3f276a01a929e6686ac7b8" 1080 1326 integrity sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A== 1081 1327 dependencies: 1082 1328 "@babel/plugin-transform-react-jsx" "^7.16.7" 1083 1329 1084 - "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.13.12": 1085 - version "7.13.12" 1086 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz#1df5dfaf0f4b784b43e96da6f28d630e775f68b3" 1087 - integrity sha512-jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA== 1088 - dependencies: 1089 - "@babel/helper-annotate-as-pure" "^7.12.13" 1090 - "@babel/helper-module-imports" "^7.13.12" 1091 - "@babel/helper-plugin-utils" "^7.13.0" 1092 - "@babel/plugin-syntax-jsx" "^7.12.13" 1093 - "@babel/types" "^7.13.12" 1094 - 1095 - "@babel/plugin-transform-react-jsx@^7.16.7": 1330 + "@babel/plugin-transform-react-jsx@^7.13.12", "@babel/plugin-transform-react-jsx@^7.16.7": 1096 1331 version "7.16.7" 1097 1332 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz#86a6a220552afd0e4e1f0388a68a372be7add0d4" 1098 1333 integrity sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag== ··· 1078 1363 "@babel/plugin-syntax-jsx" "^7.16.7" 1079 1364 "@babel/types" "^7.16.7" 1080 1365 1081 - "@babel/plugin-transform-react-pure-annotations@^7.12.1": 1082 - version "7.12.1" 1083 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" 1084 - integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== 1085 - dependencies: 1086 - "@babel/helper-annotate-as-pure" "^7.10.4" 1087 - "@babel/helper-plugin-utils" "^7.10.4" 1088 - 1089 - "@babel/plugin-transform-react-pure-annotations@^7.16.7": 1366 + "@babel/plugin-transform-react-pure-annotations@^7.12.1", "@babel/plugin-transform-react-pure-annotations@^7.16.7": 1090 1367 version "7.16.7" 1091 1368 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz#232bfd2f12eb551d6d7d01d13fe3f86b45eb9c67" 1092 1369 integrity sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA== ··· 1086 1379 "@babel/helper-annotate-as-pure" "^7.16.7" 1087 1380 "@babel/helper-plugin-utils" "^7.16.7" 1088 1381 1089 - "@babel/plugin-transform-regenerator@^7.12.13": 1090 - version "7.13.15" 1091 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39" 1092 - integrity sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ== 1093 - dependencies: 1094 - regenerator-transform "^0.14.2" 1095 - 1096 - "@babel/plugin-transform-regenerator@^7.16.7": 1382 + "@babel/plugin-transform-regenerator@^7.12.13", "@babel/plugin-transform-regenerator@^7.16.7": 1097 1383 version "7.16.7" 1098 1384 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz#9e7576dc476cb89ccc5096fff7af659243b4adeb" 1099 1385 integrity sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q== 1100 1386 dependencies: 1101 1387 regenerator-transform "^0.14.2" 1102 1388 1103 - "@babel/plugin-transform-reserved-words@^7.12.13": 1104 - version "7.12.13" 1105 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695" 1106 - integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg== 1107 - dependencies: 1108 - "@babel/helper-plugin-utils" "^7.12.13" 1109 - 1110 - "@babel/plugin-transform-reserved-words@^7.16.7": 1389 + "@babel/plugin-transform-reserved-words@^7.12.13", "@babel/plugin-transform-reserved-words@^7.16.7": 1111 1390 version "7.16.7" 1112 1391 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz#1d798e078f7c5958eec952059c460b220a63f586" 1113 1392 integrity sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg== 1114 1393 dependencies: 1115 1394 "@babel/helper-plugin-utils" "^7.16.7" 1116 1395 1117 - "@babel/plugin-transform-shorthand-properties@^7.12.13": 1118 - version "7.12.13" 1119 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" 1120 - integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== 1121 - dependencies: 1122 - "@babel/helper-plugin-utils" "^7.12.13" 1123 - 1124 - "@babel/plugin-transform-shorthand-properties@^7.16.7": 1396 + "@babel/plugin-transform-shorthand-properties@^7.12.13", "@babel/plugin-transform-shorthand-properties@^7.16.7": 1125 1397 version "7.16.7" 1126 1398 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a" 1127 1399 integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg== 1128 1400 dependencies: 1129 1401 "@babel/helper-plugin-utils" "^7.16.7" 1130 1402 1131 - "@babel/plugin-transform-spread@^7.13.0": 1132 - version "7.13.0" 1133 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd" 1134 - integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== 1135 - dependencies: 1136 - "@babel/helper-plugin-utils" "^7.13.0" 1137 - "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 1138 - 1139 - "@babel/plugin-transform-spread@^7.16.7": 1403 + "@babel/plugin-transform-spread@^7.13.0", "@babel/plugin-transform-spread@^7.16.7": 1140 1404 version "7.16.7" 1141 1405 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz#a303e2122f9f12e0105daeedd0f30fb197d8ff44" 1142 1406 integrity sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg== ··· 1115 1437 "@babel/helper-plugin-utils" "^7.16.7" 1116 1438 "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0" 1117 1439 1118 - "@babel/plugin-transform-sticky-regex@^7.12.13": 1119 - version "7.12.13" 1120 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f" 1121 - integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== 1122 - dependencies: 1123 - "@babel/helper-plugin-utils" "^7.12.13" 1124 - 1125 - "@babel/plugin-transform-sticky-regex@^7.16.7": 1440 + "@babel/plugin-transform-sticky-regex@^7.12.13", "@babel/plugin-transform-sticky-regex@^7.16.7": 1126 1441 version "7.16.7" 1127 1442 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660" 1128 1443 integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw== 1129 1444 dependencies: 1130 1445 "@babel/helper-plugin-utils" "^7.16.7" 1131 1446 1132 - "@babel/plugin-transform-template-literals@^7.13.0": 1133 - version "7.13.0" 1134 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" 1135 - integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== 1136 - dependencies: 1137 - "@babel/helper-plugin-utils" "^7.13.0" 1138 - 1139 - "@babel/plugin-transform-template-literals@^7.16.7": 1447 + "@babel/plugin-transform-template-literals@^7.13.0", "@babel/plugin-transform-template-literals@^7.16.7": 1140 1448 version "7.16.7" 1141 1449 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz#f3d1c45d28967c8e80f53666fc9c3e50618217ab" 1142 1450 integrity sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA== 1143 1451 dependencies: 1144 1452 "@babel/helper-plugin-utils" "^7.16.7" 1145 1453 1146 - "@babel/plugin-transform-typeof-symbol@^7.12.13": 1147 - version "7.12.13" 1148 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f" 1149 - integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ== 1150 - dependencies: 1151 - "@babel/helper-plugin-utils" "^7.12.13" 1152 - 1153 - "@babel/plugin-transform-typeof-symbol@^7.16.7": 1454 + "@babel/plugin-transform-typeof-symbol@^7.12.13", "@babel/plugin-transform-typeof-symbol@^7.16.7": 1154 1455 version "7.16.7" 1155 1456 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz#9cdbe622582c21368bd482b660ba87d5545d4f7e" 1156 1457 integrity sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ== 1157 1458 dependencies: 1158 1459 "@babel/helper-plugin-utils" "^7.16.7" 1159 1460 1160 - "@babel/plugin-transform-typescript@^7.14.5": 1161 - version "7.14.6" 1162 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz#6e9c2d98da2507ebe0a883b100cde3c7279df36c" 1163 - integrity sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA== 1461 + "@babel/plugin-transform-typescript@^7.16.0": 1462 + version "7.16.1" 1463 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz#cc0670b2822b0338355bc1b3d2246a42b8166409" 1464 + integrity sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg== 1164 1465 dependencies: 1165 - "@babel/helper-create-class-features-plugin" "^7.14.6" 1466 + "@babel/helper-create-class-features-plugin" "^7.16.0" 1166 1467 "@babel/helper-plugin-utils" "^7.14.5" 1167 - "@babel/plugin-syntax-typescript" "^7.14.5" 1468 + "@babel/plugin-syntax-typescript" "^7.16.0" 1168 1469 1169 - "@babel/plugin-transform-unicode-escapes@^7.12.13": 1170 - version "7.12.13" 1171 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74" 1172 - integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw== 1173 - dependencies: 1174 - "@babel/helper-plugin-utils" "^7.12.13" 1175 - 1176 - "@babel/plugin-transform-unicode-escapes@^7.16.7": 1470 + "@babel/plugin-transform-unicode-escapes@^7.12.13", "@babel/plugin-transform-unicode-escapes@^7.16.7": 1177 1471 version "7.16.7" 1178 1472 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz#da8717de7b3287a2c6d659750c964f302b31ece3" 1179 1473 integrity sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q== 1180 1474 dependencies: 1181 1475 "@babel/helper-plugin-utils" "^7.16.7" 1182 1476 1183 - "@babel/plugin-transform-unicode-regex@^7.12.13": 1184 - version "7.12.13" 1185 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac" 1186 - integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== 1187 - dependencies: 1188 - "@babel/helper-create-regexp-features-plugin" "^7.12.13" 1189 - "@babel/helper-plugin-utils" "^7.12.13" 1190 - 1191 - "@babel/plugin-transform-unicode-regex@^7.16.7": 1477 + "@babel/plugin-transform-unicode-regex@^7.12.13", "@babel/plugin-transform-unicode-regex@^7.16.7": 1192 1478 version "7.16.7" 1193 1479 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2" 1194 1480 integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q== ··· 1314 1672 core-js-compat "^3.20.2" 1315 1673 semver "^6.3.0" 1316 1674 1317 - "@babel/preset-modules@^0.1.4": 1318 - version "0.1.4" 1319 - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 1320 - integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 1321 - dependencies: 1322 - "@babel/helper-plugin-utils" "^7.0.0" 1323 - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 1324 - "@babel/plugin-transform-dotall-regex" "^7.4.4" 1325 - "@babel/types" "^7.4.4" 1326 - esutils "^2.0.2" 1327 - 1328 - "@babel/preset-modules@^0.1.5": 1675 + "@babel/preset-modules@^0.1.4", "@babel/preset-modules@^0.1.5": 1329 1676 version "0.1.5" 1330 1677 resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" 1331 1678 integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== ··· 1350 1719 "@babel/plugin-transform-react-pure-annotations" "^7.16.7" 1351 1720 1352 1721 "@babel/preset-typescript@^7.8.3": 1353 - version "7.14.5" 1354 - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.14.5.tgz#aa98de119cf9852b79511f19e7f44a2d379bcce0" 1355 - integrity sha512-u4zO6CdbRKbS9TypMqrlGH7sd2TAJppZwn3c/ZRLeO/wGsbddxgbPDUZVNrie3JWYLQ9vpineKlsrWFvO6Pwkw== 1722 + version "7.16.0" 1723 + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz#b0b4f105b855fb3d631ec036cdc9d1ffd1fa5eac" 1724 + integrity sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg== 1356 1725 dependencies: 1357 1726 "@babel/helper-plugin-utils" "^7.14.5" 1358 1727 "@babel/helper-validator-option" "^7.14.5" 1359 - "@babel/plugin-transform-typescript" "^7.14.5" 1728 + "@babel/plugin-transform-typescript" "^7.16.0" 1360 1729 1361 1730 "@babel/runtime@^7.0.0", "@babel/runtime@^7.12.0", "@babel/runtime@^7.13.10", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.0", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": 1362 - version "7.14.0" 1363 - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6" 1364 - integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA== 1731 + version "7.16.0" 1732 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.0.tgz#e27b977f2e2088ba24748bf99b5e1dece64e4f0b" 1733 + integrity sha512-Nht8L0O8YCktmsDV6FqFue7vQLRx3Hb0B37lS5y0jDRqRxlBG4wIJHnf9/bgSE2UyipKFA01YtS+npRdTWBUyw== 1365 1734 dependencies: 1366 1735 regenerator-runtime "^0.13.4" 1367 1736 ··· 1379 1748 dependencies: 1380 1749 regenerator-runtime "^0.13.4" 1381 1750 1382 - "@babel/template@^7.12.13", "@babel/template@^7.14.5": 1751 + "@babel/template@^7.12.13": 1383 1752 version "7.14.5" 1384 1753 resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" 1385 1754 integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== ··· 1388 1757 "@babel/parser" "^7.14.5" 1389 1758 "@babel/types" "^7.14.5" 1390 1759 1391 - "@babel/template@^7.16.7": 1760 + "@babel/template@^7.14.5", "@babel/template@^7.16.7": 1392 1761 version "7.16.7" 1393 1762 resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 1394 1763 integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== ··· 1397 1766 "@babel/parser" "^7.16.7" 1398 1767 "@babel/types" "^7.16.7" 1399 1768 1400 - "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.4.5": 1769 + "@babel/template@^7.16.0": 1770 + version "7.16.0" 1771 + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6" 1772 + integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A== 1773 + dependencies: 1774 + "@babel/code-frame" "^7.16.0" 1775 + "@babel/parser" "^7.16.0" 1776 + "@babel/types" "^7.16.0" 1777 + 1778 + "@babel/traverse@^7.13.0", "@babel/traverse@^7.4.5": 1401 1779 version "7.14.7" 1402 1780 resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753" 1403 1781 integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ== ··· 1418 1778 "@babel/helper-split-export-declaration" "^7.14.5" 1419 1779 "@babel/parser" "^7.14.7" 1420 1780 "@babel/types" "^7.14.5" 1781 + debug "^4.1.0" 1782 + globals "^11.1.0" 1783 + 1784 + "@babel/traverse@^7.16.0": 1785 + version "7.16.0" 1786 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.0.tgz#965df6c6bfc0a958c1e739284d3c9fa4a6e3c45b" 1787 + integrity sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ== 1788 + dependencies: 1789 + "@babel/code-frame" "^7.16.0" 1790 + "@babel/generator" "^7.16.0" 1791 + "@babel/helper-function-name" "^7.16.0" 1792 + "@babel/helper-hoist-variables" "^7.16.0" 1793 + "@babel/helper-split-export-declaration" "^7.16.0" 1794 + "@babel/parser" "^7.16.0" 1795 + "@babel/types" "^7.16.0" 1421 1796 debug "^4.1.0" 1422 1797 globals "^11.1.0" 1423 1798 ··· 1452 1797 debug "^4.1.0" 1453 1798 globals "^11.1.0" 1454 1799 1455 - "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.14.5", "@babel/types@^7.4.4": 1456 - version "7.15.4" 1457 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz#74eeb86dbd6748d2741396557b9860e57fce0a0d" 1458 - integrity sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw== 1459 - dependencies: 1460 - "@babel/helper-validator-identifier" "^7.14.9" 1461 - to-fast-properties "^2.0.0" 1462 - 1463 - "@babel/types@^7.12.6", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0": 1800 + "@babel/types@^7.12.6", "@babel/types@^7.13.12", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0": 1464 1801 version "7.17.0" 1465 1802 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" 1466 1803 integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== 1467 1804 dependencies: 1468 1805 "@babel/helper-validator-identifier" "^7.16.7" 1806 + to-fast-properties "^2.0.0" 1807 + 1808 + "@babel/types@^7.13.0", "@babel/types@^7.14.5", "@babel/types@^7.4.4": 1809 + version "7.15.4" 1810 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz#74eeb86dbd6748d2741396557b9860e57fce0a0d" 1811 + integrity sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw== 1812 + dependencies: 1813 + "@babel/helper-validator-identifier" "^7.14.9" 1469 1814 to-fast-properties "^2.0.0" 1470 1815 1471 1816 "@colors/colors@1.5.0": ··· 1486 1831 "@date-io/core" "^1.3.13" 1487 1832 1488 1833 "@discoveryjs/json-ext@^0.5.0": 1489 - version "0.5.3" 1490 - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz#90420f9f9c6d3987f176a19a7d8e764271a2f55d" 1491 - integrity sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g== 1834 + version "0.5.5" 1835 + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz#9283c9ce5b289a3c4f61c12757469e59377f81f3" 1836 + integrity sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA== 1492 1837 1493 1838 "@emotion/cache@^10.0.27": 1494 1839 version "10.0.29" ··· 1500 1845 "@emotion/utils" "0.11.3" 1501 1846 "@emotion/weak-memoize" "0.2.5" 1502 1847 1503 - "@emotion/cache@^11.4.0": 1504 - version "11.4.0" 1505 - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.4.0.tgz#293fc9d9a7a38b9aad8e9337e5014366c3b09ac0" 1506 - integrity sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g== 1848 + "@emotion/cache@^11.4.0", "@emotion/cache@^11.5.0": 1849 + version "11.5.0" 1850 + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.5.0.tgz#a5eb78cbef8163939ee345e3ddf0af217b845e62" 1851 + integrity sha512-mAZ5QRpLriBtaj/k2qyrXwck6yeoz1V5lMt/jfj6igWU35yYlNKs2LziXVgvH81gnJZ+9QQNGelSsnuoAy6uIw== 1507 1852 dependencies: 1508 1853 "@emotion/memoize" "^0.7.4" 1509 - "@emotion/sheet" "^1.0.0" 1854 + "@emotion/sheet" "^1.0.3" 1510 1855 "@emotion/utils" "^1.0.0" 1511 1856 "@emotion/weak-memoize" "^0.2.5" 1512 - stylis "^4.0.3" 1857 + stylis "^4.0.10" 1513 1858 1514 1859 "@emotion/cache@^11.7.1": 1515 1860 version "11.7.1" ··· 1573 1918 integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ== 1574 1919 1575 1920 "@emotion/react@^11.1.1", "@emotion/react@^11.1.5": 1576 - version "11.4.0" 1577 - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.4.0.tgz#2465ad7b073a691409b88dfd96dc17097ddad9b7" 1578 - integrity sha512-4XklWsl9BdtatLoJpSjusXhpKv9YVteYKh9hPKP1Sxl+mswEFoUe0WtmtWjxEjkA51DQ2QRMCNOvKcSlCQ7ivg== 1921 + version "11.5.0" 1922 + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.5.0.tgz#19b5771bbfbda5e8517e948a2d9064810f0022bd" 1923 + integrity sha512-MYq/bzp3rYbee4EMBORCn4duPQfgpiEB5XzrZEBnUZAL80Qdfr7CEv/T80jwaTl/dnZmt9SnTa8NkTrwFNpLlw== 1579 1924 dependencies: 1580 1925 "@babel/runtime" "^7.13.10" 1581 - "@emotion/cache" "^11.4.0" 1926 + "@emotion/cache" "^11.5.0" 1582 1927 "@emotion/serialize" "^1.0.2" 1583 - "@emotion/sheet" "^1.0.1" 1928 + "@emotion/sheet" "^1.0.3" 1584 1929 "@emotion/utils" "^1.0.0" 1585 1930 "@emotion/weak-memoize" "^0.2.5" 1586 1931 hoist-non-react-statics "^3.3.1" ··· 1612 1957 resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5" 1613 1958 integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== 1614 1959 1615 - "@emotion/sheet@^1.0.0", "@emotion/sheet@^1.0.1": 1616 - version "1.0.1" 1617 - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.1.tgz#245f54abb02dfd82326e28689f34c27aa9b2a698" 1618 - integrity sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g== 1960 + "@emotion/sheet@^1.0.1", "@emotion/sheet@^1.0.3": 1961 + version "1.0.3" 1962 + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.3.tgz#00c326cd7985c5ccb8fe2c1b592886579dcfab8f" 1963 + integrity sha512-YoX5GyQ4db7LpbmXHMuc8kebtBGP6nZfRC5Z13OKJMixBEwdZrJ914D6yJv/P+ZH/YY3F5s89NYX2hlZAf3SRQ== 1619 1964 1620 1965 "@emotion/sheet@^1.1.0": 1621 1966 version "1.1.0" ··· 1665 2010 resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" 1666 2011 integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== 1667 2012 1668 - "@eslint/eslintrc@^0.4.0": 1669 - version "0.4.0" 1670 - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" 1671 - integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== 2013 + "@eslint/eslintrc@^0.4.3": 2014 + version "0.4.3" 2015 + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" 2016 + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== 1672 2017 dependencies: 1673 2018 ajv "^6.12.4" 1674 2019 debug "^4.1.1" 1675 2020 espree "^7.3.0" 1676 - globals "^12.1.0" 2021 + globals "^13.9.0" 1677 2022 ignore "^4.0.6" 1678 2023 import-fresh "^3.2.1" 1679 2024 js-yaml "^3.13.1" ··· 1689 2034 version "1.1.2" 1690 2035 resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz#30aa825f11d438671d585bd44e7fd564535fc210" 1691 2036 integrity sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw== 2037 + 2038 + "@humanwhocodes/config-array@^0.5.0": 2039 + version "0.5.0" 2040 + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" 2041 + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== 2042 + dependencies: 2043 + "@humanwhocodes/object-schema" "^1.2.0" 2044 + debug "^4.1.1" 2045 + minimatch "^3.0.4" 2046 + 2047 + "@humanwhocodes/object-schema@^1.2.0": 2048 + version "1.2.1" 2049 + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 2050 + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 1692 2051 1693 2052 "@istanbuljs/schema@^0.1.2": 1694 2053 version "0.1.3" ··· 1759 2090 react-is "^16.8.0 || ^17.0.0" 1760 2091 1761 2092 "@material-ui/pickers@^3.2.10": 1762 - version "3.2.10" 1763 - resolved "https://registry.yarnpkg.com/@material-ui/pickers/-/pickers-3.2.10.tgz#19df024895876eb0ec7cd239bbaea595f703f0ae" 1764 - integrity sha512-B8G6Obn5S3RCl7hwahkQj9sKUapwXWFjiaz/Bsw1fhYFdNMnDUolRiWQSoKPb1/oKe37Dtfszoywi1Ynbo3y8w== 2093 + version "3.3.10" 2094 + resolved "https://registry.yarnpkg.com/@material-ui/pickers/-/pickers-3.3.10.tgz#f1b0f963348cc191645ef0bdeff7a67c6aa25485" 2095 + integrity sha512-hS4pxwn1ZGXVkmgD4tpFpaumUaAg2ZzbTrxltfC5yPw4BJV+mGkfnQOB4VpWEYZw2jv65Z0wLwDE/piQiPPZ3w== 1765 2096 dependencies: 1766 2097 "@babel/runtime" "^7.6.0" 1767 2098 "@date-io/core" "1.x" ··· 1903 2234 prop-types "^15.7.2" 1904 2235 react-is "^17.0.2" 1905 2236 1906 - "@nodelib/fs.scandir@2.1.4": 1907 - version "2.1.4" 1908 - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" 1909 - integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 2237 + "@nodelib/fs.scandir@2.1.5": 2238 + version "2.1.5" 2239 + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 2240 + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 1910 2241 dependencies: 1911 - "@nodelib/fs.stat" "2.0.4" 2242 + "@nodelib/fs.stat" "2.0.5" 1912 2243 run-parallel "^1.1.9" 1913 2244 1914 - "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": 1915 - version "2.0.4" 1916 - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" 1917 - integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 2245 + "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 2246 + version "2.0.5" 2247 + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 2248 + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 1918 2249 1919 2250 "@nodelib/fs.walk@^1.2.3": 1920 - version "1.2.6" 1921 - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" 1922 - integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 2251 + version "1.2.8" 2252 + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 2253 + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 1923 2254 dependencies: 1924 - "@nodelib/fs.scandir" "2.1.4" 2255 + "@nodelib/fs.scandir" "2.1.5" 1925 2256 fastq "^1.6.0" 1926 2257 1927 2258 "@npmcli/fs@^1.0.0": ··· 1940 2271 mkdirp "^1.0.4" 1941 2272 rimraf "^3.0.2" 1942 2273 1943 - "@polka/url@^1.0.0-next.15": 1944 - version "1.0.0-next.15" 1945 - resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.15.tgz#6a9d143f7f4f49db2d782f9e1c8839a29b43ae23" 1946 - integrity sha512-15spi3V28QdevleWBNXE4pIls3nFZmBbUGrW9IVPwiQczuSb9n76TCB4bsk8TSel+I1OkHEdPhu5QKMfY6rQHA== 2274 + "@polka/url@^1.0.0-next.20": 2275 + version "1.0.0-next.21" 2276 + resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1" 2277 + integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== 1947 2278 1948 2279 "@popperjs/core@^2.11.4": 1949 2280 version "2.11.4" 1950 2281 resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.4.tgz#d8c7b8db9226d2d7664553a0741ad7d0397ee503" 1951 2282 integrity sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg== 1952 2283 1953 - "@popperjs/core@^2.8.3": 1954 - version "2.9.0" 1955 - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.0.tgz#32e63212293dd3efbb521cd35a5020ab66eaa546" 1956 - integrity sha512-wjtKehFAIARq2OxK8j3JrggNlEslJfNuSm2ArteIbKyRMts2g0a7KzTxfRVNUM+O0gnBJ2hNV8nWPOYBgI1sew== 2284 + "@popperjs/core@^2.9.0": 2285 + version "2.10.2" 2286 + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz#0798c03351f0dea1a5a4cabddf26a55a7cbee590" 2287 + integrity sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ== 1957 2288 1958 2289 "@projectstorm/geometry@^6.6.1": 1959 2290 version "6.6.1" ··· 2000 2331 "@projectstorm/react-diagrams-defaults" "^6.6.1" 2001 2332 "@projectstorm/react-diagrams-routing" "^6.6.1" 2002 2333 2334 + "@react-leaflet/core@^1.1.1": 2335 + version "1.1.1" 2336 + resolved "https://registry.yarnpkg.com/@react-leaflet/core/-/core-1.1.1.tgz#827fd05bb542cf874116176d8ef48d5b12163f81" 2337 + integrity sha512-7PGLWa9MZ5x/cWy8EH2VzI4T8q5WpuHbixzCDXqixP/WyqwIrg5NDUPgYuFnB4IEIZF+6nA265mYzswFo/h1Pw== 2338 + 2003 2339 "@simonwep/pickr@^1.5.1": 2004 - version "1.8.1" 2005 - resolved "https://registry.yarnpkg.com/@simonwep/pickr/-/pickr-1.8.1.tgz#e136cbd9c345ddbb7d71eb14af544c798165d495" 2006 - integrity sha512-3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A== 2340 + version "1.8.2" 2341 + resolved "https://registry.yarnpkg.com/@simonwep/pickr/-/pickr-1.8.2.tgz#96dc86675940d7cad63d69c22083dd1cbb9797cb" 2342 + integrity sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA== 2007 2343 dependencies: 2008 - core-js "^3.12.1" 2344 + core-js "^3.15.1" 2009 2345 nanopop "^2.1.0" 2010 2346 2011 2347 "@sindresorhus/is@^0.7.0": ··· 2022 2348 version "1.0.2" 2023 2349 resolved "https://registry.yarnpkg.com/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz#568d9beae00b0d835f4f8c53fd55714986492e61" 2024 2350 integrity sha512-dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ== 2351 + 2352 + "@socket.io/component-emitter@~3.0.0": 2353 + version "3.0.0" 2354 + resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.0.0.tgz#8863915676f837d9dad7b76f50cb500c1e9422e9" 2355 + integrity sha512-2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q== 2025 2356 2026 2357 "@sphinxxxx/color-conversion@^2.2.2": 2027 2358 version "2.2.2" ··· 2145 2466 react-transition-state "^1.1.3" 2146 2467 2147 2468 "@tippyjs/react@^4.2.0": 2148 - version "4.2.3" 2149 - resolved "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.3.tgz#c2dbe9eb71bd9ffa3974f9ba8e3a4a6fc1538aed" 2150 - integrity sha512-44vBapqROQI7Q5nDtX1MMAgcAV+3DsIi+m/45CxQ72C5LDNmNDq9h3f04x3NHMrUhWcfgfgjYA2EmeLSH/4eRg== 2469 + version "4.2.6" 2470 + resolved "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.6.tgz#971677a599bf663f20bb1c60a62b9555b749cc71" 2471 + integrity sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw== 2151 2472 dependencies: 2152 2473 tippy.js "^6.3.1" 2153 2474 ··· 2169 2490 classnames "*" 2170 2491 2171 2492 "@types/component-emitter@^1.2.10": 2172 - version "1.2.10" 2173 - resolved "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.10.tgz#ef5b1589b9f16544642e473db5ea5639107ef3ea" 2174 - integrity sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg== 2493 + version "1.2.11" 2494 + resolved "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.11.tgz#50d47d42b347253817a39709fef03ce66a108506" 2495 + integrity sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ== 2175 2496 2176 2497 "@types/cookie@^0.4.1": 2177 2498 version "0.4.1" ··· 2184 2505 integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== 2185 2506 2186 2507 "@types/eslint-scope@^3.7.0": 2187 - version "3.7.0" 2188 - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.0.tgz#4792816e31119ebd506902a482caec4951fabd86" 2189 - integrity sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw== 2508 + version "3.7.1" 2509 + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.1.tgz#8dc390a7b4f9dd9f1284629efce982e41612116e" 2510 + integrity sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g== 2190 2511 dependencies: 2191 2512 "@types/eslint" "*" 2192 2513 "@types/estree" "*" 2193 2514 2194 2515 "@types/eslint@*": 2195 - version "7.2.7" 2196 - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.7.tgz#f7ef1cf0dceab0ae6f9a976a0a9af14ab1baca26" 2197 - integrity sha512-EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q== 2516 + version "7.28.2" 2517 + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.2.tgz#0ff2947cdd305897c52d5372294e8c76f351db68" 2518 + integrity sha512-KubbADPkfoU75KgKeKLsFHXnU4ipH7wYg0TRT33NK3N3yiu7jlFAAoygIWBV+KbuHx/G+AvuGX6DllnK35gfJA== 2198 2519 dependencies: 2199 2520 "@types/estree" "*" 2200 2521 "@types/json-schema" "*" 2201 2522 2202 - "@types/estree@*", "@types/estree@^0.0.46": 2203 - version "0.0.46" 2204 - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe" 2205 - integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg== 2523 + "@types/estree@*", "@types/estree@^0.0.50": 2524 + version "0.0.50" 2525 + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" 2526 + integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== 2206 2527 2207 2528 "@types/glob@^7.1.1": 2208 - version "7.1.3" 2209 - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" 2210 - integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== 2529 + version "7.2.0" 2530 + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" 2531 + integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== 2211 2532 dependencies: 2212 2533 "@types/minimatch" "*" 2213 2534 "@types/node" "*" 2214 2535 2215 - "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": 2216 - version "7.0.7" 2217 - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" 2218 - integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== 2536 + "@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8": 2537 + version "7.0.9" 2538 + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" 2539 + integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== 2219 2540 2220 2541 "@types/minimatch@*": 2221 - version "3.0.4" 2222 - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21" 2223 - integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA== 2542 + version "3.0.5" 2543 + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" 2544 + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 2224 2545 2225 2546 "@types/node@*", "@types/node@>=10.0.0": 2226 - version "14.14.32" 2227 - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.32.tgz#90c5c4a8d72bbbfe53033f122341343249183448" 2228 - integrity sha512-/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg== 2547 + version "16.11.6" 2548 + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.6.tgz#6bef7a2a0ad684cf6e90fcfe31cecabd9ce0a3ae" 2549 + integrity sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w== 2229 2550 2230 2551 "@types/parse-json@^4.0.0": 2231 2552 version "4.0.0" 2232 2553 resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 2233 2554 integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 2234 2555 2235 - "@types/prop-types@*": 2236 - version "15.7.3" 2237 - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 2238 - integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 2239 - 2240 - "@types/prop-types@^15.7.4": 2556 + "@types/prop-types@*", "@types/prop-types@^15.7.4": 2241 2557 version "15.7.4" 2242 2558 resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" 2243 2559 integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== 2244 2560 2245 2561 "@types/q@^1.5.1": 2246 - version "1.5.4" 2247 - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 2248 - integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 2562 + version "1.5.5" 2563 + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" 2564 + integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== 2249 2565 2250 2566 "@types/react-dom@^16.0.11": 2251 2567 version "16.9.14" ··· 2270 2596 dependencies: 2271 2597 "@types/react" "*" 2272 2598 2273 - "@types/react@*", "@types/react@^16": 2599 + "@types/react@*": 2274 2600 version "16.14.10" 2275 2601 resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.10.tgz#76bc1c42ed5ab0d2ab13e5c58faaccaad3449477" 2276 2602 integrity sha512-QadBsMyF6ldjEAXEhsmEW/L0uBDJT8yw7Qoe5sRnEKVrzMkiYoJwqoL5TKJOlArsn/wvIJM/XdVzkdL6+AS64Q== ··· 2279 2605 "@types/scheduler" "*" 2280 2606 csstype "^3.0.2" 2281 2607 2282 - "@types/react@^16.7.18": 2283 - version "16.14.18" 2284 - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.18.tgz#b2bcea05ee244fde92d409f91bd888ca8e54b20f" 2285 - integrity sha512-eeyqd1mqoG43mI0TvNKy9QNf1Tjz3DEOsRP3rlPo35OeMIt05I+v9RR8ZvL2GuYZeF2WAcLXJZMzu6zdz3VbtQ== 2608 + "@types/react@^16", "@types/react@^16.7.18": 2609 + version "16.14.20" 2610 + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.20.tgz#ff6e932ad71d92c27590e4a8667c7a53a7d0baad" 2611 + integrity sha512-SV7TaVc8e9E/5Xuv6TIyJ5VhQpZoVFJqX6IZgj5HZoFCtIDCArE3qXkcHlc6O/Ud4UwcMoX+tlvDA95YrKdLgA== 2286 2612 dependencies: 2287 2613 "@types/prop-types" "*" 2288 2614 "@types/scheduler" "*" 2289 2615 csstype "^3.0.2" 2290 2616 2291 2617 "@types/scheduler@*": 2292 - version "0.16.1" 2293 - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" 2294 - integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== 2618 + version "0.16.2" 2619 + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 2620 + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 2295 2621 2296 2622 "@types/styled-jsx@^2.2.8": 2297 - version "2.2.8" 2298 - resolved "https://registry.yarnpkg.com/@types/styled-jsx/-/styled-jsx-2.2.8.tgz#b50d13d8a3c34036282d65194554cf186bab7234" 2299 - integrity sha512-Yjye9VwMdYeXfS71ihueWRSxrruuXTwKCbzue4+5b2rjnQ//AtyM7myZ1BEhNhBQ/nL/RE7bdToUoLln2miKvg== 2623 + version "2.2.9" 2624 + resolved "https://registry.yarnpkg.com/@types/styled-jsx/-/styled-jsx-2.2.9.tgz#e50b3f868c055bcbf9bc353eca6c10fdad32a53f" 2625 + integrity sha512-W/iTlIkGEyTBGTEvZCey8EgQlQ5l0DwMqi3iOXlLs2kyBwYTXHKEiU6IZ5EwoRwngL8/dGYuzezSup89ttVHLw== 2300 2626 dependencies: 2301 2627 "@types/react" "*" 2302 2628 ··· 2316 2642 underscore "^1.9.1" 2317 2643 url-join "^4.0.0" 2318 2644 2319 - "@webassemblyjs/ast@1.11.0": 2320 - version "1.11.0" 2321 - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.0.tgz#a5aa679efdc9e51707a4207139da57920555961f" 2322 - integrity sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg== 2645 + "@webassemblyjs/ast@1.11.1": 2646 + version "1.11.1" 2647 + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" 2648 + integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== 2323 2649 dependencies: 2324 - "@webassemblyjs/helper-numbers" "1.11.0" 2325 - "@webassemblyjs/helper-wasm-bytecode" "1.11.0" 2650 + "@webassemblyjs/helper-numbers" "1.11.1" 2651 + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" 2326 2652 2327 - "@webassemblyjs/floating-point-hex-parser@1.11.0": 2328 - version "1.11.0" 2329 - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz#34d62052f453cd43101d72eab4966a022587947c" 2330 - integrity sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA== 2653 + "@webassemblyjs/floating-point-hex-parser@1.11.1": 2654 + version "1.11.1" 2655 + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" 2656 + integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== 2331 2657 2332 - "@webassemblyjs/helper-api-error@1.11.0": 2333 - version "1.11.0" 2334 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz#aaea8fb3b923f4aaa9b512ff541b013ffb68d2d4" 2335 - integrity sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w== 2658 + "@webassemblyjs/helper-api-error@1.11.1": 2659 + version "1.11.1" 2660 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" 2661 + integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== 2336 2662 2337 - "@webassemblyjs/helper-buffer@1.11.0": 2338 - version "1.11.0" 2339 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz#d026c25d175e388a7dbda9694e91e743cbe9b642" 2340 - integrity sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA== 2663 + "@webassemblyjs/helper-buffer@1.11.1": 2664 + version "1.11.1" 2665 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" 2666 + integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== 2341 2667 2342 - "@webassemblyjs/helper-numbers@1.11.0": 2343 - version "1.11.0" 2344 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz#7ab04172d54e312cc6ea4286d7d9fa27c88cd4f9" 2345 - integrity sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ== 2668 + "@webassemblyjs/helper-numbers@1.11.1": 2669 + version "1.11.1" 2670 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" 2671 + integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== 2346 2672 dependencies: 2347 - "@webassemblyjs/floating-point-hex-parser" "1.11.0" 2348 - "@webassemblyjs/helper-api-error" "1.11.0" 2673 + "@webassemblyjs/floating-point-hex-parser" "1.11.1" 2674 + "@webassemblyjs/helper-api-error" "1.11.1" 2349 2675 "@xtuc/long" "4.2.2" 2350 2676 2351 - "@webassemblyjs/helper-wasm-bytecode@1.11.0": 2352 - version "1.11.0" 2353 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz#85fdcda4129902fe86f81abf7e7236953ec5a4e1" 2354 - integrity sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA== 2677 + "@webassemblyjs/helper-wasm-bytecode@1.11.1": 2678 + version "1.11.1" 2679 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" 2680 + integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== 2355 2681 2356 - "@webassemblyjs/helper-wasm-section@1.11.0": 2357 - version "1.11.0" 2358 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz#9ce2cc89300262509c801b4af113d1ca25c1a75b" 2359 - integrity sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew== 2682 + "@webassemblyjs/helper-wasm-section@1.11.1": 2683 + version "1.11.1" 2684 + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" 2685 + integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== 2360 2686 dependencies: 2361 - "@webassemblyjs/ast" "1.11.0" 2362 - "@webassemblyjs/helper-buffer" "1.11.0" 2363 - "@webassemblyjs/helper-wasm-bytecode" "1.11.0" 2364 - "@webassemblyjs/wasm-gen" "1.11.0" 2687 + "@webassemblyjs/ast" "1.11.1" 2688 + "@webassemblyjs/helper-buffer" "1.11.1" 2689 + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" 2690 + "@webassemblyjs/wasm-gen" "1.11.1" 2365 2691 2366 - "@webassemblyjs/ieee754@1.11.0": 2367 - version "1.11.0" 2368 - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz#46975d583f9828f5d094ac210e219441c4e6f5cf" 2369 - integrity sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA== 2692 + "@webassemblyjs/ieee754@1.11.1": 2693 + version "1.11.1" 2694 + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" 2695 + integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== 2370 2696 dependencies: 2371 2697 "@xtuc/ieee754" "^1.2.0" 2372 2698 2373 - "@webassemblyjs/leb128@1.11.0": 2374 - version "1.11.0" 2375 - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.0.tgz#f7353de1df38aa201cba9fb88b43f41f75ff403b" 2376 - integrity sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g== 2699 + "@webassemblyjs/leb128@1.11.1": 2700 + version "1.11.1" 2701 + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" 2702 + integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== 2377 2703 dependencies: 2378 2704 "@xtuc/long" "4.2.2" 2379 2705 2380 - "@webassemblyjs/utf8@1.11.0": 2381 - version "1.11.0" 2382 - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.0.tgz#86e48f959cf49e0e5091f069a709b862f5a2cadf" 2383 - integrity sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw== 2706 + "@webassemblyjs/utf8@1.11.1": 2707 + version "1.11.1" 2708 + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" 2709 + integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== 2384 2710 2385 - "@webassemblyjs/wasm-edit@1.11.0": 2386 - version "1.11.0" 2387 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz#ee4a5c9f677046a210542ae63897094c2027cb78" 2388 - integrity sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ== 2711 + "@webassemblyjs/wasm-edit@1.11.1": 2712 + version "1.11.1" 2713 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" 2714 + integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== 2389 2715 dependencies: 2390 - "@webassemblyjs/ast" "1.11.0" 2391 - "@webassemblyjs/helper-buffer" "1.11.0" 2392 - "@webassemblyjs/helper-wasm-bytecode" "1.11.0" 2393 - "@webassemblyjs/helper-wasm-section" "1.11.0" 2394 - "@webassemblyjs/wasm-gen" "1.11.0" 2395 - "@webassemblyjs/wasm-opt" "1.11.0" 2396 - "@webassemblyjs/wasm-parser" "1.11.0" 2397 - "@webassemblyjs/wast-printer" "1.11.0" 2716 + "@webassemblyjs/ast" "1.11.1" 2717 + "@webassemblyjs/helper-buffer" "1.11.1" 2718 + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" 2719 + "@webassemblyjs/helper-wasm-section" "1.11.1" 2720 + "@webassemblyjs/wasm-gen" "1.11.1" 2721 + "@webassemblyjs/wasm-opt" "1.11.1" 2722 + "@webassemblyjs/wasm-parser" "1.11.1" 2723 + "@webassemblyjs/wast-printer" "1.11.1" 2398 2724 2399 - "@webassemblyjs/wasm-gen@1.11.0": 2400 - version "1.11.0" 2401 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz#3cdb35e70082d42a35166988dda64f24ceb97abe" 2402 - integrity sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ== 2725 + "@webassemblyjs/wasm-gen@1.11.1": 2726 + version "1.11.1" 2727 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" 2728 + integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== 2403 2729 dependencies: 2404 - "@webassemblyjs/ast" "1.11.0" 2405 - "@webassemblyjs/helper-wasm-bytecode" "1.11.0" 2406 - "@webassemblyjs/ieee754" "1.11.0" 2407 - "@webassemblyjs/leb128" "1.11.0" 2408 - "@webassemblyjs/utf8" "1.11.0" 2730 + "@webassemblyjs/ast" "1.11.1" 2731 + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" 2732 + "@webassemblyjs/ieee754" "1.11.1" 2733 + "@webassemblyjs/leb128" "1.11.1" 2734 + "@webassemblyjs/utf8" "1.11.1" 2409 2735 2410 - "@webassemblyjs/wasm-opt@1.11.0": 2411 - version "1.11.0" 2412 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz#1638ae188137f4bb031f568a413cd24d32f92978" 2413 - integrity sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg== 2736 + "@webassemblyjs/wasm-opt@1.11.1": 2737 + version "1.11.1" 2738 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" 2739 + integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== 2414 2740 dependencies: 2415 - "@webassemblyjs/ast" "1.11.0" 2416 - "@webassemblyjs/helper-buffer" "1.11.0" 2417 - "@webassemblyjs/wasm-gen" "1.11.0" 2418 - "@webassemblyjs/wasm-parser" "1.11.0" 2741 + "@webassemblyjs/ast" "1.11.1" 2742 + "@webassemblyjs/helper-buffer" "1.11.1" 2743 + "@webassemblyjs/wasm-gen" "1.11.1" 2744 + "@webassemblyjs/wasm-parser" "1.11.1" 2419 2745 2420 - "@webassemblyjs/wasm-parser@1.11.0": 2421 - version "1.11.0" 2422 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz#3e680b8830d5b13d1ec86cc42f38f3d4a7700754" 2423 - integrity sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw== 2746 + "@webassemblyjs/wasm-parser@1.11.1": 2747 + version "1.11.1" 2748 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" 2749 + integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== 2424 2750 dependencies: 2425 - "@webassemblyjs/ast" "1.11.0" 2426 - "@webassemblyjs/helper-api-error" "1.11.0" 2427 - "@webassemblyjs/helper-wasm-bytecode" "1.11.0" 2428 - "@webassemblyjs/ieee754" "1.11.0" 2429 - "@webassemblyjs/leb128" "1.11.0" 2430 - "@webassemblyjs/utf8" "1.11.0" 2751 + "@webassemblyjs/ast" "1.11.1" 2752 + "@webassemblyjs/helper-api-error" "1.11.1" 2753 + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" 2754 + "@webassemblyjs/ieee754" "1.11.1" 2755 + "@webassemblyjs/leb128" "1.11.1" 2756 + "@webassemblyjs/utf8" "1.11.1" 2431 2757 2432 - "@webassemblyjs/wast-printer@1.11.0": 2433 - version "1.11.0" 2434 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz#680d1f6a5365d6d401974a8e949e05474e1fab7e" 2435 - integrity sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ== 2758 + "@webassemblyjs/wast-printer@1.11.1": 2759 + version "1.11.1" 2760 + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" 2761 + integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== 2436 2762 dependencies: 2437 - "@webassemblyjs/ast" "1.11.0" 2763 + "@webassemblyjs/ast" "1.11.1" 2438 2764 "@xtuc/long" "4.2.2" 2439 2765 2440 - "@webpack-cli/configtest@^1.0.3": 2441 - version "1.0.3" 2442 - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.3.tgz#204bcff87cda3ea4810881f7ea96e5f5321b87b9" 2443 - integrity sha512-WQs0ep98FXX2XBAfQpRbY0Ma6ADw8JR6xoIkaIiJIzClGOMqVRvPCWqndTxf28DgFopWan0EKtHtg/5W1h0Zkw== 2766 + "@webpack-cli/configtest@^1.1.0": 2767 + version "1.1.0" 2768 + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.1.0.tgz#8342bef0badfb7dfd3b576f2574ab80c725be043" 2769 + integrity sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg== 2444 2770 2445 - "@webpack-cli/info@^1.2.4": 2446 - version "1.2.4" 2447 - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.2.4.tgz#7381fd41c9577b2d8f6c2594fad397ef49ad5573" 2448 - integrity sha512-ogE2T4+pLhTTPS/8MM3IjHn0IYplKM4HbVNMCWA9N4NrdPzunwenpCsqKEXyejMfRu6K8mhauIPYf8ZxWG5O6g== 2771 + "@webpack-cli/info@^1.4.0": 2772 + version "1.4.0" 2773 + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.4.0.tgz#b9179c3227ab09cbbb149aa733475fcf99430223" 2774 + integrity sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw== 2449 2775 dependencies: 2450 2776 envinfo "^7.7.3" 2451 2777 2452 - "@webpack-cli/serve@^1.4.0": 2453 - version "1.4.0" 2454 - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.4.0.tgz#f84fd07bcacefe56ce762925798871092f0f228e" 2455 - integrity sha512-xgT/HqJ+uLWGX+Mzufusl3cgjAcnqYYskaB7o0vRcwOEfuu6hMzSILQpnIzFMGsTaeaX4Nnekl+6fadLbl1/Vg== 2778 + "@webpack-cli/serve@^1.6.0": 2779 + version "1.6.0" 2780 + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.6.0.tgz#2c275aa05c895eccebbfc34cfb223c6e8bd591a2" 2781 + integrity sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA== 2456 2782 2457 2783 "@wojtekmaj/enzyme-adapter-react-17@^0.4.1": 2458 2784 version "0.4.1" ··· 2506 2832 negotiator "0.6.2" 2507 2833 2508 2834 ace-builds@^1.4.12: 2509 - version "1.4.12" 2510 - resolved "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.12.tgz#888efa386e36f4345f40b5233fcc4fe4c588fae7" 2511 - integrity sha512-G+chJctFPiiLGvs3+/Mly3apXTcfgE45dT5yp12BcWZ1kUs+gm0qd3/fv4gsz6fVag4mM0moHVpjHDIgph6Psg== 2835 + version "1.4.13" 2836 + resolved "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.13.tgz#186f42d3849ebcc6a48b93088a058489897514c1" 2837 + integrity sha512-SOLzdaQkY6ecPKYRDDg+MY1WoGgXA34cIvYJNNoBMGGUswHmlauU2Hy0UL96vW0Fs/LgFbMUjD+6vqzWTldIYQ== 2512 2838 2513 - "acitree@git+https://github.com/imsurinder90/jquery-aciTree.git#rc.7": 2514 - version "4.5.0-rc.7" 2515 - resolved "git+https://github.com/imsurinder90/jquery-aciTree.git#24dcd7536a008abe25da6adb7bfde8eeb53892f1" 2839 + acorn-import-assertions@^1.7.6: 2840 + version "1.8.0" 2841 + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" 2842 + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== 2516 2843 2517 2844 acorn-jsx@^5.3.1: 2518 - version "5.3.1" 2519 - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 2520 - integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 2845 + version "5.3.2" 2846 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 2847 + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 2521 2848 2522 2849 acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.6.1: 2523 2850 version "1.8.2" ··· 2535 2860 integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 2536 2861 2537 2862 acorn-walk@^8.0.0: 2538 - version "8.1.0" 2539 - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.1.0.tgz#d3c6a9faf00987a5e2b9bdb506c2aa76cd707f83" 2540 - integrity sha512-mjmzmv12YIG/G8JQdQuz2MUDShEJ6teYpT5bmWA4q7iwoGen8xtt3twF3OvzIUl+Q06aWIjvnwQUKvQ6TtMRjg== 2863 + version "8.2.0" 2864 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" 2865 + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== 2541 2866 2542 2867 acorn@^7.0.0, acorn@^7.4.0: 2543 2868 version "7.4.1" 2544 2869 resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 2545 2870 integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 2546 2871 2547 - acorn@^8.0.4: 2548 - version "8.2.4" 2549 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0" 2550 - integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg== 2872 + acorn@^8.0.4, acorn@^8.4.1: 2873 + version "8.5.0" 2874 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" 2875 + integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== 2551 2876 2552 2877 agent-base@6, agent-base@^6.0.2: 2553 2878 version "6.0.2" ··· 2619 2944 uri-js "^4.2.2" 2620 2945 2621 2946 ajv@^8.0.1: 2622 - version "8.5.0" 2623 - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz#695528274bcb5afc865446aa275484049a18ae4b" 2624 - integrity sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ== 2947 + version "8.6.3" 2948 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz#11a66527761dc3e9a3845ea775d2d3c0414e8764" 2949 + integrity sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw== 2625 2950 dependencies: 2626 2951 fast-deep-equal "^3.1.1" 2627 2952 json-schema-traverse "^1.0.0" ··· 2657 2982 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 2658 2983 integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 2659 2984 2660 - ansi-regex@^5.0.0: 2985 + ansi-regex@^5.0.1: 2661 2986 version "5.0.1" 2662 2987 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 2663 2988 integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ··· 2681 3006 dependencies: 2682 3007 color-convert "^2.0.1" 2683 3008 2684 - anymatch@~3.1.1, anymatch@~3.1.2: 3009 + anymatch@~3.1.2: 2685 3010 version "3.1.2" 2686 3011 resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 2687 3012 integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== ··· 2726 3051 resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 2727 3052 integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 2728 3053 2729 - array-includes@^3.1.2, array-includes@^3.1.3: 2730 - version "3.1.3" 2731 - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" 2732 - integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== 3054 + array-includes@^3.1.3: 3055 + version "3.1.4" 3056 + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" 3057 + integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw== 2733 3058 dependencies: 2734 3059 call-bind "^1.0.2" 2735 3060 define-properties "^1.1.3" 2736 - es-abstract "^1.18.0-next.2" 3061 + es-abstract "^1.19.1" 2737 3062 get-intrinsic "^1.1.1" 2738 - is-string "^1.0.5" 3063 + is-string "^1.0.7" 2739 3064 2740 3065 array-union@^2.1.0: 2741 3066 version "2.1.0" ··· 2743 3068 integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 2744 3069 2745 3070 array.prototype.filter@^1.0.0: 2746 - version "1.0.0" 2747 - resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz#24d63e38983cdc6bf023a3c574b2f2a3f384c301" 2748 - integrity sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ== 3071 + version "1.0.1" 3072 + resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.1.tgz#20688792acdb97a09488eaaee9eebbf3966aae21" 3073 + integrity sha512-Dk3Ty7N42Odk7PjU/Ci3zT4pLj20YvuVnneG/58ICM6bt4Ij5kZaJTVQ9TSaWaIECX2sFyz4KItkVZqHNnciqw== 2749 3074 dependencies: 2750 3075 call-bind "^1.0.2" 2751 3076 define-properties "^1.1.3" 2752 - es-abstract "^1.18.0" 3077 + es-abstract "^1.19.0" 2753 3078 es-array-method-boxes-properly "^1.0.0" 2754 - is-string "^1.0.5" 3079 + is-string "^1.0.7" 2755 3080 2756 3081 array.prototype.find@^2.1.1: 2757 - version "2.1.1" 2758 - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c" 2759 - integrity sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA== 3082 + version "2.1.2" 3083 + resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.2.tgz#6abbd0c2573925d8094f7d23112306af8c16d534" 3084 + integrity sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q== 2760 3085 dependencies: 3086 + call-bind "^1.0.2" 2761 3087 define-properties "^1.1.3" 2762 - es-abstract "^1.17.4" 3088 + es-abstract "^1.19.0" 2763 3089 2764 3090 array.prototype.flat@^1.2.3: 2765 - version "1.2.4" 2766 - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" 2767 - integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== 3091 + version "1.2.5" 3092 + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz#07e0975d84bbc7c48cd1879d609e682598d33e13" 3093 + integrity sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg== 2768 3094 dependencies: 2769 - call-bind "^1.0.0" 3095 + call-bind "^1.0.2" 2770 3096 define-properties "^1.1.3" 2771 - es-abstract "^1.18.0-next.1" 3097 + es-abstract "^1.19.0" 2772 3098 2773 - array.prototype.flatmap@1.2.4, array.prototype.flatmap@^1.2.4: 3099 + array.prototype.flatmap@1.2.4: 2774 3100 version "1.2.4" 2775 3101 resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" 2776 3102 integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== ··· 2780 3104 define-properties "^1.1.3" 2781 3105 es-abstract "^1.18.0-next.1" 2782 3106 function-bind "^1.1.1" 3107 + 3108 + array.prototype.flatmap@^1.2.4: 3109 + version "1.2.5" 3110 + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz#908dc82d8a406930fdf38598d51e7411d18d4446" 3111 + integrity sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA== 3112 + dependencies: 3113 + call-bind "^1.0.0" 3114 + define-properties "^1.1.3" 3115 + es-abstract "^1.19.0" 2783 3116 2784 3117 asn1.js@^5.2.0: 2785 3118 version "5.4.1" ··· 2801 3116 safer-buffer "^2.1.0" 2802 3117 2803 3118 aspen-core@^1.0.4: 2804 - version "1.0.4" 2805 - resolved "https://registry.yarnpkg.com/aspen-core/-/aspen-core-1.0.4.tgz#a2d6a23c80303e73aaa836c124c116e447ba7a7d" 2806 - integrity sha512-mQ79JxHstB2rf47Zgw2yduAH9L47b+3bwQtpbEAKeSJsLTPe8X7lsQ6lLP3tFbS204TNILC5LxSkVWv45FXQYg== 3119 + version "1.0.5" 3120 + resolved "https://registry.yarnpkg.com/aspen-core/-/aspen-core-1.0.5.tgz#7745def811f761bca49d475d9addc8a5dbb1c71c" 3121 + integrity sha512-iqWORNQeQTn6XHStl1uCQ4t1yMPMw/nSWygfXVAEflf8vAWs4vR2M2TqDEZGvyoTkrxIPONv+wyQQFDnN5QCkg== 2807 3122 dependencies: 2808 3123 notificar "^1.0.1" 2809 3124 p-series "^1.1.0" ··· 2843 3158 integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 2844 3159 2845 3160 async@^2.1.4: 2846 - version "2.6.3" 2847 - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 2848 - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== 3161 + version "2.6.4" 3162 + resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" 3163 + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== 2849 3164 dependencies: 2850 3165 lodash "^4.17.14" 2851 3166 2852 3167 async@^3.2.0: 2853 - version "3.2.0" 2854 - resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" 2855 - integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== 3168 + version "3.2.2" 3169 + resolved "https://registry.yarnpkg.com/async/-/async-3.2.2.tgz#2eb7671034bb2194d45d30e31e24ec7e7f9670cd" 3170 + integrity sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g== 2856 3171 2857 3172 autoprefixer@^10.2.4: 2858 - version "10.2.6" 2859 - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.6.tgz#aadd9ec34e1c98d403e01950038049f0eb252949" 2860 - integrity sha512-8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg== 3173 + version "10.4.0" 3174 + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.0.tgz#c3577eb32a1079a440ec253e404eaf1eb21388c8" 3175 + integrity sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA== 2861 3176 dependencies: 2862 - browserslist "^4.16.6" 2863 - caniuse-lite "^1.0.30001230" 2864 - colorette "^1.2.2" 3177 + browserslist "^4.17.5" 3178 + caniuse-lite "^1.0.30001272" 2865 3179 fraction.js "^4.1.1" 2866 3180 normalize-range "^0.1.2" 3181 + picocolors "^1.0.0" 2867 3182 postcss-value-parser "^4.1.0" 2868 3183 2869 - available-typed-arrays@^1.0.2: 2870 - version "1.0.4" 2871 - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz#9e0ae84ecff20caae6a94a1c3bc39b955649b7a9" 2872 - integrity sha512-SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA== 3184 + available-typed-arrays@^1.0.5: 3185 + version "1.0.5" 3186 + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 3187 + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 2873 3188 2874 3189 axios-mock-adapter@^1.17.0: 2875 - version "1.19.0" 2876 - resolved "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-1.19.0.tgz#9d72e321a6c5418e1eff067aa99761a86c5188a4" 2877 - integrity sha512-D+0U4LNPr7WroiBDvWilzTMYPYTuZlbo6BI8YHZtj7wYQS8NkARlP9KBt8IWWHTQJ0q/8oZ0ClPBtKCCkx8cQg== 3190 + version "1.20.0" 3191 + resolved "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-1.20.0.tgz#21f5b4b625306f43e8c05673616719da86e20dcb" 3192 + integrity sha512-shZRhTjLP0WWdcvHKf3rH3iW9deb3UdKbdnKUoHmmsnBhVXN3sjPJM6ZvQ2r/ywgvBVQrMnjrSyQab60G1sr2w== 2878 3193 dependencies: 2879 3194 fast-deep-equal "^3.1.3" 2880 - is-buffer "^2.0.3" 3195 + is-blob "^2.1.0" 3196 + is-buffer "^2.0.5" 2881 3197 2882 3198 axios@^0.21.1: 2883 3199 version "0.21.4" ··· 2911 3225 trim-right "^1.0.1" 2912 3226 2913 3227 babel-loader@^8.1.0: 2914 - version "8.2.2" 2915 - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81" 2916 - integrity sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g== 3228 + version "8.2.3" 3229 + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.3.tgz#8986b40f1a64cacfcb4b8429320085ef68b1342d" 3230 + integrity sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw== 2917 3231 dependencies: 2918 3232 find-cache-dir "^3.3.1" 2919 3233 loader-utils "^1.4.0" ··· 3007 3321 dependencies: 3008 3322 "@babel/helper-define-polyfill-provider" "^0.3.1" 3009 3323 3010 - "babel-plugin-styled-components@>= 1": 3011 - version "1.12.0" 3012 - resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz#1dec1676512177de6b827211e9eda5a30db4f9b9" 3013 - integrity sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA== 3324 + "babel-plugin-styled-components@>= 1.12.0": 3325 + version "1.13.3" 3326 + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.3.tgz#1f1cb3927d4afa1e324695c78f690900e3d075bc" 3327 + integrity sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw== 3014 3328 dependencies: 3015 - "@babel/helper-annotate-as-pure" "^7.0.0" 3016 - "@babel/helper-module-imports" "^7.0.0" 3329 + "@babel/helper-annotate-as-pure" "^7.15.4" 3330 + "@babel/helper-module-imports" "^7.15.4" 3017 3331 babel-plugin-syntax-jsx "^6.18.0" 3018 3332 lodash "^4.17.11" 3019 3333 ··· 3135 3449 resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 3136 3450 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 3137 3451 3138 - base64-arraybuffer@0.1.4: 3139 - version "0.1.4" 3140 - resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz#9818c79e059b1355f97e0428a017c838e90ba812" 3141 - integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI= 3142 - 3143 3452 base64-arraybuffer@^0.2.0: 3144 3453 version "0.2.0" 3145 3454 resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.2.0.tgz#4b944fac0191aa5907afe2d8c999ccc57ce80f45" 3146 3455 integrity sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ== 3456 + 3457 + base64-arraybuffer@^1.0.1: 3458 + version "1.0.1" 3459 + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-1.0.1.tgz#87bd13525626db4a9838e00a508c2b73efcf348c" 3460 + integrity sha512-vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA== 3147 3461 3148 3462 base64-js@^1.0.2, base64-js@^1.3.1: 3149 3463 version "1.5.1" ··· 3282 3596 integrity sha512-eRejcTc9YurhZ64nHY9Ii9DQn+F9/R74H9RPoeANVM3N1+C2lZ2tUuFCx1w3orOJ1y/iG4A7iCwdDZphMDIrYg== 3283 3597 3284 3598 bootstrap@^4.3.1, bootstrap@^4.5.2: 3285 - version "4.6.0" 3286 - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.0.tgz#97b9f29ac98f98dfa43bf7468262d84392552fd7" 3287 - integrity sha512-Io55IuQY3kydzHtbGvQya3H+KorS/M9rSNyfCGCg9WZ4pyT/lCxIlpJgG1GXW/PswzC84Tr2fBYi+7+jFVQQBw== 3599 + version "4.6.1" 3600 + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.1.tgz#bc25380c2c14192374e8dec07cf01b2742d222a2" 3601 + integrity sha512-0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og== 3288 3602 3289 3603 bowser@^2.11.0: 3290 3604 version "2.11.0" ··· 3458 3772 vm-browserify "^1.0.0" 3459 3773 xtend "^4.0.0" 3460 3774 3461 - browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6: 3462 - version "4.16.6" 3463 - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" 3464 - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== 3775 + browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.6: 3776 + version "4.17.6" 3777 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.6.tgz#c76be33e7786b497f66cad25a73756c8b938985d" 3778 + integrity sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw== 3465 3779 dependencies: 3466 - caniuse-lite "^1.0.30001219" 3467 - colorette "^1.2.2" 3468 - electron-to-chromium "^1.3.723" 3780 + caniuse-lite "^1.0.30001274" 3781 + electron-to-chromium "^1.3.886" 3469 3782 escalade "^3.1.1" 3470 - node-releases "^1.1.71" 3783 + node-releases "^2.0.1" 3784 + picocolors "^1.0.0" 3471 3785 3472 3786 browserslist@^4.17.5, browserslist@^4.19.1: 3473 3787 version "4.19.1" ··· 3504 3818 integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 3505 3819 3506 3820 buffer-from@^1.0.0: 3507 - version "1.1.1" 3508 - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 3509 - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 3821 + version "1.1.2" 3822 + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 3823 + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 3510 3824 3511 3825 buffer-xor@^1.0.3: 3512 3826 version "1.0.3" ··· 3629 3943 lodash.memoize "^4.1.2" 3630 3944 lodash.uniq "^4.5.0" 3631 3945 3632 - caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001230, caniuse-lite@^1.0.30001286: 3633 - version "1.0.30001309" 3634 - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz" 3635 - integrity sha512-Pl8vfigmBXXq+/yUz1jUwULeq9xhMJznzdc/xwl4WclDAuebcTHVefpz8lE/bMI+UN7TOkSSe7B7RnZd6+dzjA== 3946 + caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001272, caniuse-lite@^1.0.30001274, caniuse-lite@^1.0.30001286: 3947 + version "1.0.30001338" 3948 + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz" 3949 + integrity sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ== 3636 3950 3637 3951 caw@^2.0.0, caw@^2.0.1: 3638 3952 version "2.0.1" ··· 3665 3979 supports-color "^5.3.0" 3666 3980 3667 3981 chalk@^4.0.0, chalk@^4.1.0: 3668 - version "4.1.1" 3669 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 3670 - integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 3982 + version "4.1.2" 3983 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 3984 + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 3671 3985 dependencies: 3672 3986 ansi-styles "^4.1.0" 3673 3987 supports-color "^7.1.0" ··· 3695 4009 chartjs-color-string "^0.6.0" 3696 4010 color-convert "^1.9.3" 3697 4011 3698 - cheerio-select@^1.4.0: 3699 - version "1.4.0" 3700 - resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.4.0.tgz#3a16f21e37a2ef0f211d6d1aa4eff054bb22cdc9" 3701 - integrity sha512-sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew== 4012 + cheerio-select@^1.5.0: 4013 + version "1.5.0" 4014 + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.5.0.tgz#faf3daeb31b17c5e1a9dabcee288aaf8aafa5823" 4015 + integrity sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg== 3702 4016 dependencies: 3703 - css-select "^4.1.2" 3704 - css-what "^5.0.0" 4017 + css-select "^4.1.3" 4018 + css-what "^5.0.1" 3705 4019 domelementtype "^2.2.0" 3706 4020 domhandler "^4.2.0" 3707 - domutils "^2.6.0" 4021 + domutils "^2.7.0" 3708 4022 3709 4023 cheerio@^1.0.0-rc.3: 3710 - version "1.0.0-rc.9" 3711 - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.9.tgz#a3ae6b7ce7af80675302ff836f628e7cb786a67f" 3712 - integrity sha512-QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng== 4024 + version "1.0.0-rc.10" 4025 + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.10.tgz#2ba3dcdfcc26e7956fc1f440e61d51c643379f3e" 4026 + integrity sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw== 3713 4027 dependencies: 3714 - cheerio-select "^1.4.0" 3715 - dom-serializer "^1.3.1" 4028 + cheerio-select "^1.5.0" 4029 + dom-serializer "^1.3.2" 3716 4030 domhandler "^4.2.0" 3717 4031 htmlparser2 "^6.1.0" 3718 4032 parse5 "^6.0.1" 3719 4033 parse5-htmlparser2-tree-adapter "^6.0.1" 3720 4034 tslib "^2.2.0" 3721 4035 3722 - "chokidar@>=2.0.0 <4.0.0": 3723 - version "3.5.1" 3724 - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 3725 - integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 4036 + "chokidar@>=3.0.0 <4.0.0": 4037 + version "3.5.2" 4038 + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 4039 + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 3726 4040 dependencies: 3727 - anymatch "~3.1.1" 4041 + anymatch "~3.1.2" 3728 4042 braces "~3.0.2" 3729 - glob-parent "~5.1.0" 4043 + glob-parent "~5.1.2" 3730 4044 is-binary-path "~2.1.0" 3731 4045 is-glob "~4.0.1" 3732 4046 normalize-path "~3.0.0" 3733 - readdirp "~3.5.0" 4047 + readdirp "~3.6.0" 3734 4048 optionalDependencies: 3735 - fsevents "~2.3.1" 4049 + fsevents "~2.3.2" 3736 4050 3737 4051 chokidar@^3.5.1: 3738 4052 version "3.5.3" ··· 3839 4153 integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 3840 4154 3841 4155 codemirror@^5.59.2: 3842 - version "5.59.4" 3843 - resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.59.4.tgz#bfc11c8ce32b04818e8d661bbd790a94f4b3a6f3" 3844 - integrity sha512-achw5JBgx8QPcACDDn+EUUXmCYzx/zxEtOGXyjvLEvYY8GleUrnfm5D+Zb+UjShHggXKDT9AXrbkBZX6a0YSQg== 4156 + version "5.63.3" 4157 + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.63.3.tgz#97042a242027fe0c87c09b36bc01931d37b76527" 4158 + integrity sha512-1C+LELr+5grgJYqwZKqxrcbPsHFHapVaVAloBsFBASbpLnQqLw1U8yXJ3gT5D+rhxIiSpo+kTqN+hQ+9ialIXw== 3845 4159 3846 4160 color-convert@^1.9.0, color-convert@^1.9.3: 3847 4161 version "1.9.3" ··· 3867 4181 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 3868 4182 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 3869 4183 3870 - colord@^2.0.0: 3871 - version "2.0.0" 3872 - resolved "https://registry.yarnpkg.com/colord/-/colord-2.0.0.tgz#f8c19f2526b7dc5b22d6e57ef102f03a2a43a3d8" 3873 - integrity sha512-WMDFJfoY3wqPZNpKUFdse3HhD5BHCbE9JCdxRzoVH+ywRITGOeWAHNkGEmyxLlErEpN9OLMWgdM9dWQtDk5dog== 4184 + colord@^2.9.1: 4185 + version "2.9.1" 4186 + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.1.tgz#c961ea0efeb57c9f0f4834458f26cb9cc4a3f90e" 4187 + integrity sha512-4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw== 3874 4188 3875 - colorette@^1.2.1, colorette@^1.2.2: 3876 - version "1.2.2" 3877 - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 3878 - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 4189 + colorette@^2.0.14: 4190 + version "2.0.16" 4191 + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.16.tgz#713b9af84fdb000139f04546bd4a93f62a5085da" 4192 + integrity sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g== 3879 4193 3880 4194 combine-source-map@^0.8.0, combine-source-map@~0.8.0: 3881 4195 version "0.8.0" ··· 3897 4211 resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 3898 4212 integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 3899 4213 3900 - commander@^6.2.0: 3901 - version "6.2.1" 3902 - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 3903 - integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 3904 - 3905 - commander@^7.0.0: 3906 - version "7.1.0" 3907 - resolved "https://registry.yarnpkg.com/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" 3908 - integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg== 3909 - 3910 - commander@^7.2.0: 4214 + commander@^7.0.0, commander@^7.2.0: 3911 4215 version "7.2.0" 3912 4216 resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 3913 4217 integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== ··· 3928 4252 typedarray "^0.0.6" 3929 4253 3930 4254 config-chain@^1.1.11: 3931 - version "1.1.12" 3932 - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" 3933 - integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== 4255 + version "1.1.13" 4256 + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" 4257 + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== 3934 4258 dependencies: 3935 4259 ini "^1.3.4" 3936 4260 proto-list "~1.2.1" ··· 3996 4320 resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" 3997 4321 integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== 3998 4322 3999 - copy-to-clipboard@^3.3.1: 4000 - version "3.3.1" 4001 - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" 4002 - integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== 4003 - dependencies: 4004 - toggle-selection "^1.0.6" 4005 - 4006 4323 copy-webpack-plugin@^7.0.0: 4007 4324 version "7.0.0" 4008 4325 resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-7.0.0.tgz#3506f867ca6e861ee2769d4deaf8fa0d2563ada9" ··· 4010 4341 schema-utils "^3.0.0" 4011 4342 serialize-javascript "^5.0.1" 4012 4343 4013 - core-js-compat@^3.20.2, core-js-compat@^3.21.0: 4344 + core-js-compat@^3.20.2, core-js-compat@^3.21.0, core-js-compat@^3.8.1, core-js-compat@^3.9.0: 4014 4345 version "3.21.0" 4015 4346 resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.21.0.tgz#bcc86aa5a589cee358e7a7fa0a4979d5a76c3885" 4016 4347 integrity sha512-OSXseNPSK2OPJa6GdtkMz/XxeXx8/CJvfhQWTqd6neuUraujcL4jVsjkLQz1OWnax8xVQJnRPe0V2jqNWORA+A== ··· 4018 4349 browserslist "^4.19.1" 4019 4350 semver "7.0.0" 4020 4351 4021 - core-js-compat@^3.8.1, core-js-compat@^3.9.0: 4022 - version "3.9.1" 4023 - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455" 4024 - integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA== 4025 - dependencies: 4026 - browserslist "^4.16.3" 4027 - semver "7.0.0" 4028 - 4029 4352 core-js@^2.4.0: 4030 4353 version "2.6.12" 4031 4354 resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" 4032 4355 integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== 4033 4356 4034 - core-js@^3.12.1, core-js@^3.2.1: 4035 - version "3.12.1" 4036 - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.12.1.tgz#6b5af4ff55616c08a44d386f1f510917ff204112" 4037 - integrity sha512-Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw== 4357 + core-js@^3.15.1, core-js@^3.2.1: 4358 + version "3.19.1" 4359 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.19.1.tgz#f6f173cae23e73a7d88fa23b6e9da329276c6641" 4360 + integrity sha512-Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg== 4038 4361 4039 4362 core-util-is@~1.0.0: 4040 - version "1.0.2" 4041 - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 4042 - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 4363 + version "1.0.3" 4364 + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 4365 + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 4043 4366 4044 4367 cors@~2.8.5: 4045 4368 version "2.8.5" ··· 4053 4392 yaml "^1.7.2" 4054 4393 4055 4394 cosmiconfig@^7.0.0: 4056 - version "7.0.0" 4057 - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" 4058 - integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== 4395 + version "7.0.1" 4396 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" 4397 + integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== 4059 4398 dependencies: 4060 4399 "@types/parse-json" "^4.0.0" 4061 4400 import-fresh "^3.2.1" ··· 4152 4491 resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" 4153 4492 integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= 4154 4493 4155 - css-color-names@^0.0.4: 4156 - version "0.0.4" 4157 - resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 4158 - integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= 4159 - 4160 4494 css-color-names@^1.0.1: 4161 4495 version "1.0.1" 4162 4496 resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-1.0.1.tgz#6ff7ee81a823ad46e020fa2fd6ab40a887e2ba67" 4163 4497 integrity sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA== 4164 4498 4165 4499 css-declaration-sorter@^6.0.3: 4166 - version "6.0.3" 4167 - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.0.3.tgz#9dfd8ea0df4cc7846827876fafb52314890c21a9" 4168 - integrity sha512-52P95mvW1SMzuRZegvpluT6yEv0FqQusydKQPZsNN5Q7hh8EwQvN8E2nwuJ16BBvNN6LcoIZXu/Bk58DAhrrxw== 4500 + version "6.1.3" 4501 + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz#e9852e4cf940ba79f509d9425b137d1f94438dc2" 4502 + integrity sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA== 4169 4503 dependencies: 4170 4504 timsort "^0.3.0" 4171 4505 4172 - css-line-break@1.1.1: 4173 - version "1.1.1" 4174 - resolved "https://registry.yarnpkg.com/css-line-break/-/css-line-break-1.1.1.tgz#d5e9bdd297840099eb0503c7310fd34927a026ef" 4175 - integrity sha512-1feNVaM4Fyzdj4mKPIQNL2n70MmuYzAXZ1aytlROFX1JsOo070OsugwGjj7nl6jnDJWHDM8zRZswkmeYVWZJQA== 4506 + css-line-break@2.0.1: 4507 + version "2.0.1" 4508 + resolved "https://registry.yarnpkg.com/css-line-break/-/css-line-break-2.0.1.tgz#3dc74c2ed5eb64211480281932475790243e7338" 4509 + integrity sha512-gwKYIMUn7xodIcb346wgUhE2Dt5O1Kmrc16PWi8sL4FTfyDj8P5095rzH7+O8CTZudJr+uw2GCI/hwEkDJFI2w== 4176 4510 dependencies: 4177 4511 base64-arraybuffer "^0.2.0" 4178 4512 4179 4513 css-loader@^5.0.1: 4180 - version "5.1.1" 4181 - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.1.1.tgz#9362d444a0f7c08c148a109596715c904e252879" 4182 - integrity sha512-5FfhpjwtuRgxqmusDidowqmLlcb+1HgnEDMsi2JhiUrZUcoc+cqw+mUtMIF/+OfeMYaaFCLYp1TaIt9H6I/fKA== 4514 + version "5.2.7" 4515 + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz#9b9f111edf6fb2be5dc62525644cbc9c232064ae" 4516 + integrity sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg== 4183 4517 dependencies: 4184 - camelcase "^6.2.0" 4185 - cssesc "^3.0.0" 4186 4518 icss-utils "^5.1.0" 4187 4519 loader-utils "^2.0.0" 4188 - postcss "^8.2.6" 4520 + postcss "^8.2.15" 4189 4521 postcss-modules-extract-imports "^3.0.0" 4190 4522 postcss-modules-local-by-default "^4.0.0" 4191 4523 postcss-modules-scope "^3.0.0" 4192 4524 postcss-modules-values "^4.0.0" 4193 4525 postcss-value-parser "^4.1.0" 4194 4526 schema-utils "^3.0.0" 4195 - semver "^7.3.4" 4527 + semver "^7.3.5" 4196 4528 4197 4529 css-minimizer-webpack-plugin@^3.0.0: 4198 - version "3.0.0" 4199 - resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.0.tgz#5b1edbffe1a3e6450d8cb53fb4f4c5013b7af313" 4200 - integrity sha512-yIrqG0pPphR1RoNx2wDxYmxRf2ubRChLDXxv7ccipEm5bRKsZRYp8n+2peeXehtTF5s3yNxlqsdz3WQOsAgUkw== 4530 + version "3.1.1" 4531 + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.1.1.tgz#27bafa3b75054713565b2266c64b0228acd18634" 4532 + integrity sha512-KlB8l5uoNcf9F7i5kXnkxoqJGd2BXH4f0+Lj2vSWSmuvMLYO1kNsJ1KHSzeDW8e45/whgSOPcKVT/3JopkT8dg== 4201 4533 dependencies: 4202 - cssnano "^5.0.0" 4203 - jest-worker "^26.3.0" 4534 + cssnano "^5.0.6" 4535 + jest-worker "^27.0.2" 4204 4536 p-limit "^3.0.2" 4205 - postcss "^8.2.9" 4206 - schema-utils "^3.0.0" 4207 - serialize-javascript "^5.0.1" 4537 + postcss "^8.3.5" 4538 + schema-utils "^3.1.0" 4539 + serialize-javascript "^6.0.0" 4208 4540 source-map "^0.6.1" 4209 4541 4210 4542 css-select-base-adapter@^0.1.1: ··· 4215 4561 domutils "^1.7.0" 4216 4562 nth-check "^1.0.2" 4217 4563 4218 - css-select@^4.1.2, css-select@^4.1.3: 4564 + css-select@^4.1.3: 4219 4565 version "4.1.3" 4220 4566 resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" 4221 4567 integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== ··· 4264 4610 resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" 4265 4611 integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== 4266 4612 4267 - css-what@^5.0.0: 4613 + css-what@^5.0.0, css-what@^5.0.1: 4268 4614 version "5.1.0" 4269 4615 resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz#3f7b707aadf633baf62c2ceb8579b545bb40f7fe" 4270 4616 integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== ··· 4274 4620 resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 4275 4621 integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 4276 4622 4277 - cssnano-preset-default@^5.1.1: 4278 - version "5.1.1" 4279 - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.1.tgz#5cd783caed942cc94159aeb10583af4691445b8c" 4280 - integrity sha512-kAhR71Tascmnjlhl4UegGA3KGGbMLXHkkqVpA9idsRT1JmIhIsz1C3tDpBeQMUw5EX5Rfb1HGc/PRqD2AFk3Vg== 4623 + cssnano-preset-default@^5.1.5: 4624 + version "5.1.5" 4625 + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.5.tgz#6effb7175ee5d296f95330e137587e27ee974d44" 4626 + integrity sha512-fF00UI+d3PWkGfMd62geqmoUe5h+LOhGE2GH4Fqq3beNKdCU1LWwLUyIcu4/A72lWv0737cHey5zhhWw3rW0sA== 4281 4627 dependencies: 4282 4628 css-declaration-sorter "^6.0.3" 4283 4629 cssnano-utils "^2.0.1" 4284 4630 postcss-calc "^8.0.0" 4285 - postcss-colormin "^5.1.1" 4286 - postcss-convert-values "^5.0.1" 4631 + postcss-colormin "^5.2.1" 4632 + postcss-convert-values "^5.0.2" 4287 4633 postcss-discard-comments "^5.0.1" 4288 4634 postcss-discard-duplicates "^5.0.1" 4289 4635 postcss-discard-empty "^5.0.1" 4290 4636 postcss-discard-overridden "^5.0.1" 4291 4637 postcss-merge-longhand "^5.0.2" 4292 - postcss-merge-rules "^5.0.1" 4638 + postcss-merge-rules "^5.0.2" 4293 4639 postcss-minify-font-values "^5.0.1" 4294 - postcss-minify-gradients "^5.0.1" 4640 + postcss-minify-gradients "^5.0.3" 4295 4641 postcss-minify-params "^5.0.1" 4296 4642 postcss-minify-selectors "^5.1.0" 4297 4643 postcss-normalize-charset "^5.0.1" ··· 4301 4647 postcss-normalize-string "^5.0.1" 4302 4648 postcss-normalize-timing-functions "^5.0.1" 4303 4649 postcss-normalize-unicode "^5.0.1" 4304 - postcss-normalize-url "^5.0.1" 4650 + postcss-normalize-url "^5.0.2" 4305 4651 postcss-normalize-whitespace "^5.0.1" 4306 - postcss-ordered-values "^5.0.1" 4652 + postcss-ordered-values "^5.0.2" 4307 4653 postcss-reduce-initial "^5.0.1" 4308 4654 postcss-reduce-transforms "^5.0.1" 4309 - postcss-svgo "^5.0.1" 4655 + postcss-svgo "^5.0.3" 4310 4656 postcss-unique-selectors "^5.0.1" 4311 4657 4312 4658 cssnano-utils@^2.0.1: ··· 4314 4660 resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-2.0.1.tgz#8660aa2b37ed869d2e2f22918196a9a8b6498ce2" 4315 4661 integrity sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ== 4316 4662 4317 - cssnano@^5.0.0, cssnano@^5.0.2: 4318 - version "5.0.4" 4319 - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.4.tgz#5ca90729c94c71c4bc3d45abb543be10740bf381" 4320 - integrity sha512-I+fDW74CJ4yb31765ov9xXe70XLZvFTXjwhmA//VgAAuSAU34Oblbe94Q9zffiCX1VhcSfQWARQnwhz+Nqgb4Q== 4663 + cssnano@^5.0.2, cssnano@^5.0.6: 4664 + version "5.0.9" 4665 + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.9.tgz#bd03168835c0883c16754085704f57861a32d99c" 4666 + integrity sha512-Y4olTKBKsPKl5izpcXHRDiB/1rVdbIDM4qVXgEKBt466kYT42SEEsnCYOQFFXzEkUYV8pJNCII9JKzb8KfDk+g== 4321 4667 dependencies: 4322 - cosmiconfig "^7.0.0" 4323 - cssnano-preset-default "^5.1.1" 4668 + cssnano-preset-default "^5.1.5" 4324 4669 is-resolvable "^1.1.0" 4670 + lilconfig "^2.0.3" 4671 + yaml "^1.10.2" 4325 4672 4326 4673 csso@^4.0.2, csso@^4.2.0: 4327 4674 version "4.2.0" ··· 4332 4677 css-tree "^1.1.2" 4333 4678 4334 4679 csstype@^2.5.2, csstype@^2.5.7: 4335 - version "2.6.16" 4336 - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.16.tgz#544d69f547013b85a40d15bff75db38f34fe9c39" 4337 - integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== 4680 + version "2.6.18" 4681 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.18.tgz#980a8b53085f34af313410af064f2bd241784218" 4682 + integrity sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ== 4338 4683 4339 4684 csstype@^3.0.11: 4340 4685 version "3.0.11" ··· 4342 4687 integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw== 4343 4688 4344 4689 csstype@^3.0.2: 4345 - version "3.0.8" 4346 - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" 4347 - integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw== 4690 + version "3.0.9" 4691 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" 4692 + integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== 4348 4693 4349 4694 cubic2quad@^1.0.0: 4350 4695 version "1.2.1" ··· 4370 4715 integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== 4371 4716 4372 4717 date-fns@^2.24.0: 4373 - version "2.24.0" 4374 - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.24.0.tgz#7d86dc0d93c87b76b63d213b4413337cfd1c105d" 4375 - integrity sha512-6ujwvwgPID6zbI0o7UbURi2vlLDR9uP26+tW6Lg+Ji3w7dd0i3DOcjcClLjLPranT60SSEFBwdSyYwn/ZkPIuw== 4718 + version "2.25.0" 4719 + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.25.0.tgz#8c5c8f1d958be3809a9a03f4b742eba894fc5680" 4720 + integrity sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w== 4376 4721 4377 4722 date-format@^4.0.3: 4378 4723 version "4.0.3" 4379 4724 resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.3.tgz#f63de5dc08dc02efd8ef32bf2a6918e486f35873" 4380 - integrity "sha1-9j3l3AjcAu/Y7zK/KmkY5IbzWHM= sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==" 4725 + integrity sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ== 4381 4726 4382 4727 debug@2.6.9, debug@^2.6.8: 4383 4728 version "2.6.9" ··· 4387 4732 ms "2.0.0" 4388 4733 4389 4734 debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@~4.3.1: 4390 - version "4.3.1" 4391 - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 4392 - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 4735 + version "4.3.2" 4736 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 4737 + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 4393 4738 dependencies: 4394 4739 ms "2.1.2" 4395 4740 ··· 4478 4823 lodash.isequal "^3.0" 4479 4824 4480 4825 deep-is@^0.1.3: 4481 - version "0.1.3" 4482 - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 4483 - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 4826 + version "0.1.4" 4827 + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 4828 + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 4484 4829 4485 4830 deepmerge@^4.2.2: 4486 4831 version "4.2.2" ··· 4549 4894 integrity sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw= 4550 4895 4551 4896 diff-arrays-of-objects@^1.1.8: 4552 - version "1.1.8" 4553 - resolved "https://registry.yarnpkg.com/diff-arrays-of-objects/-/diff-arrays-of-objects-1.1.8.tgz#a5b008bb409af7c7f997f0064e312df0d5a1bb24" 4554 - integrity sha512-OAaiDlQRiv5+EASUpwNSDa/sWyKHKvODQfah1CAx0dosR8OWXedFXgxAQHIdeWDobZ86D6g93BfK2X9ECIRuqw== 4897 + version "1.1.9" 4898 + resolved "https://registry.yarnpkg.com/diff-arrays-of-objects/-/diff-arrays-of-objects-1.1.9.tgz#b1f00485684c1bb2ac6610d2f604b51f9679064d" 4899 + integrity sha512-V3Uk0sm71RjLsEvH9NZcgz6+C8Fu2eBRLwlrFlwXDEj6dfHX5El6mlRUS1hTSEm6eNvLmE4ewJ+iQbXCqGvVgQ== 4555 4900 dependencies: 4556 4901 deep-diff "^1.0.2" 4557 - lodash "^4.17.19" 4902 + lodash "4" 4558 4903 4559 4904 diffie-hellman@^5.0.0: 4560 4905 version "5.0.3" ··· 4597 4942 integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== 4598 4943 4599 4944 dom-helpers@^5.0.1: 4600 - version "5.2.0" 4601 - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.0.tgz#57fd054c5f8f34c52a3eeffdb7e7e93cd357d95b" 4602 - integrity sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ== 4945 + version "5.2.1" 4946 + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" 4947 + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== 4603 4948 dependencies: 4604 4949 "@babel/runtime" "^7.8.7" 4605 4950 csstype "^3.0.2" ··· 4622 4967 domelementtype "^2.0.1" 4623 4968 entities "^2.0.0" 4624 4969 4625 - dom-serializer@^1.0.1, dom-serializer@^1.3.1: 4970 + dom-serializer@^1.0.1, dom-serializer@^1.3.2: 4626 4971 version "1.3.2" 4627 4972 resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" 4628 4973 integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== ··· 4646 4991 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" 4647 4992 integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 4648 4993 4649 - domhandler@4.2.0, domhandler@^4.0.0, domhandler@^4.2.0: 4650 - version "4.2.0" 4651 - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" 4652 - integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== 4994 + domhandler@4.2.2, domhandler@^4.0.0, domhandler@^4.2.0: 4995 + version "4.2.2" 4996 + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" 4997 + integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== 4653 4998 dependencies: 4654 4999 domelementtype "^2.2.0" 4655 5000 ··· 4661 5006 dom-serializer "0" 4662 5007 domelementtype "1" 4663 5008 4664 - domutils@^2.5.2, domutils@^2.6.0: 4665 - version "2.6.0" 4666 - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.6.0.tgz#2e15c04185d43fb16ae7057cb76433c6edb938b7" 4667 - integrity sha512-y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA== 5009 + domutils@^2.5.2, domutils@^2.6.0, domutils@^2.7.0: 5010 + version "2.8.0" 5011 + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" 5012 + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== 4668 5013 dependencies: 4669 5014 dom-serializer "^1.0.1" 4670 5015 domelementtype "^2.2.0" ··· 4739 5084 dependencies: 4740 5085 jake "^10.6.1" 4741 5086 4742 - electron-to-chromium@^1.3.723: 4743 - version "1.3.740" 4744 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.740.tgz#e38b7d2b848f632191b643e6dabca51be2162922" 4745 - integrity sha512-Mi2m55JrX2BFbNZGKYR+2ItcGnR4O5HhrvgoRRyZQlaMGQULqDhoGkLWHzJoshSzi7k1PUofxcDbNhlFrDZNhg== 5087 + electron-to-chromium@^1.3.886: 5088 + version "1.3.889" 5089 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.889.tgz#0b7c6f7628559592d5406deda281788f37107790" 5090 + integrity sha512-suEUoPTD1mExjL9TdmH7cvEiWJVM2oEiAi+Y1p0QKxI2HcRlT44qDTP2c1aZmVwRemIPYOpxmV7CxQCOWcm4XQ== 4746 5091 4747 5092 electron-to-chromium@^1.4.17: 4748 5093 version "1.4.63" ··· 4791 5136 dependencies: 4792 5137 once "^1.4.0" 4793 5138 4794 - engine.io-client@~5.1.1: 4795 - version "5.1.1" 4796 - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.1.1.tgz#f5c3aaaef1bdc9443aac6ffde48b3b2fb2dc56fc" 4797 - integrity sha512-jPFpw2HLL0lhZ2KY0BpZhIJdleQcUO9W1xkIpo0h3d6s+5D6+EV/xgQw9qWOmymszv2WXef/6KUUehyxEKomlQ== 5139 + engine.io-client@~6.0.1: 5140 + version "6.0.2" 5141 + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.0.2.tgz#ccfc059051e65ca63845e65929184757754cc34e" 5142 + integrity sha512-cAep9lhZV6Q8jMXx3TNSU5cydMzMed8/O7Tz5uzyqZvpNPtQ3WQXrLYGADxlsuaFmOLN7wZLmT7ImiFhUOku8g== 4798 5143 dependencies: 4799 - base64-arraybuffer "0.1.4" 4800 - component-emitter "~1.3.0" 5144 + "@socket.io/component-emitter" "~3.0.0" 4801 5145 debug "~4.3.1" 4802 - engine.io-parser "~4.0.1" 5146 + engine.io-parser "~5.0.0" 4803 5147 has-cors "1.1.0" 4804 5148 parseqs "0.0.6" 4805 5149 parseuri "0.0.6" 4806 - ws "~7.4.2" 5150 + ws "~8.2.3" 5151 + xmlhttprequest-ssl "~2.0.0" 4807 5152 yeast "0.1.2" 4808 - 4809 - engine.io-parser@~4.0.1: 4810 - version "4.0.2" 4811 - resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.2.tgz#e41d0b3fb66f7bf4a3671d2038a154024edb501e" 4812 - integrity sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg== 4813 - dependencies: 4814 - base64-arraybuffer "0.1.4" 4815 5153 4816 5154 engine.io-parser@~5.0.0: 4817 5155 version "5.0.3" ··· 4829 5181 engine.io-parser "~5.0.0" 4830 5182 ws "~8.2.3" 4831 5183 4832 - enhanced-resolve@^5.7.0: 4833 - version "5.8.2" 4834 - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz#15ddc779345cbb73e97c611cd00c01c1e7bf4d8b" 4835 - integrity sha512-F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA== 5184 + enhanced-resolve@^5.8.3: 5185 + version "5.8.3" 5186 + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz#6d552d465cce0423f5b3d718511ea53826a7b2f0" 5187 + integrity sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA== 4836 5188 dependencies: 4837 5189 graceful-fs "^4.2.4" 4838 5190 tapable "^2.2.0" ··· 4933 5285 dependencies: 4934 5286 is-arrayish "^0.2.1" 4935 5287 4936 - es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: 4937 - version "1.18.2" 4938 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.2.tgz#6eb518b640262e8ddcbd48e0bc8549f82efd48a7" 4939 - integrity sha512-byRiNIQXE6HWNySaU6JohoNXzYgbBjztwFnBLUTiJmWXjaU9bSq3urQLUlNLQ292tc+gc07zYZXNZjaOoAX3sw== 5288 + es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.5, es-abstract@^1.19.0, es-abstract@^1.19.1: 5289 + version "1.19.1" 5290 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" 5291 + integrity sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w== 4940 5292 dependencies: 4941 5293 call-bind "^1.0.2" 4942 5294 es-to-primitive "^1.2.1" 4943 5295 function-bind "^1.1.1" 4944 5296 get-intrinsic "^1.1.1" 5297 + get-symbol-description "^1.0.0" 4945 5298 has "^1.0.3" 4946 5299 has-symbols "^1.0.2" 4947 - is-callable "^1.2.3" 5300 + internal-slot "^1.0.3" 5301 + is-callable "^1.2.4" 4948 5302 is-negative-zero "^2.0.1" 4949 - is-regex "^1.1.3" 4950 - is-string "^1.0.6" 4951 - object-inspect "^1.10.3" 5303 + is-regex "^1.1.4" 5304 + is-shared-array-buffer "^1.0.1" 5305 + is-string "^1.0.7" 5306 + is-weakref "^1.0.1" 5307 + object-inspect "^1.11.0" 4952 5308 object-keys "^1.1.1" 4953 5309 object.assign "^4.1.2" 4954 5310 string.prototype.trimend "^1.0.4" ··· 4964 5312 resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" 4965 5313 integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== 4966 5314 4967 - es-module-lexer@^0.4.0: 4968 - version "0.4.1" 4969 - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.4.1.tgz#dda8c6a14d8f340a24e34331e0fab0cb50438e0e" 4970 - integrity sha512-ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA== 5315 + es-module-lexer@^0.9.0: 5316 + version "0.9.3" 5317 + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" 5318 + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== 4971 5319 4972 5320 es-to-primitive@^1.2.1: 4973 5321 version "1.2.1" ··· 4993 5341 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 4994 5342 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 4995 5343 5344 + escape-string-regexp@^4.0.0: 5345 + version "4.0.0" 5346 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 5347 + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 5348 + 4996 5349 eslint-plugin-react-hooks@^4.3.0: 4997 5350 version "4.3.0" 4998 5351 resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172" 4999 5352 integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== 5000 5353 5001 5354 eslint-plugin-react@^7.20.5: 5002 - version "7.23.2" 5003 - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.2.tgz#2d2291b0f95c03728b55869f01102290e792d494" 5004 - integrity sha512-AfjgFQB+nYszudkxRkTFu0UR1zEQig0ArVMPloKhxwlwkzaw/fBiH0QWcBBhZONlXqQC51+nfqFrkn4EzHcGBw== 5355 + version "7.26.1" 5356 + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz#41bcfe3e39e6a5ac040971c1af94437c80daa40e" 5357 + integrity sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ== 5005 5358 dependencies: 5006 5359 array-includes "^3.1.3" 5007 5360 array.prototype.flatmap "^1.2.4" 5008 5361 doctrine "^2.1.0" 5009 - has "^1.0.3" 5362 + estraverse "^5.2.0" 5010 5363 jsx-ast-utils "^2.4.1 || ^3.0.0" 5011 5364 minimatch "^3.0.4" 5012 - object.entries "^1.1.3" 5365 + object.entries "^1.1.4" 5013 5366 object.fromentries "^2.0.4" 5014 - object.values "^1.1.3" 5367 + object.hasown "^1.0.0" 5368 + object.values "^1.1.4" 5015 5369 prop-types "^15.7.2" 5016 5370 resolve "^2.0.0-next.3" 5017 - string.prototype.matchall "^4.0.4" 5371 + semver "^6.3.0" 5372 + string.prototype.matchall "^4.0.5" 5018 5373 5019 5374 eslint-rule-composer@^0.3.0: 5020 5375 version "0.3.0" 5021 5376 resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" 5022 5377 integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== 5023 5378 5024 - eslint-scope@^5.1.1: 5379 + eslint-scope@5.1.1, eslint-scope@^5.1.1: 5025 5380 version "5.1.1" 5026 5381 resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 5027 5382 integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== ··· 5054 5395 integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 5055 5396 5056 5397 eslint@^7.19.0: 5057 - version "7.21.0" 5058 - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.21.0.tgz#4ecd5b8c5b44f5dedc9b8a110b01bbfeb15d1c83" 5059 - integrity sha512-W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg== 5398 + version "7.32.0" 5399 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" 5400 + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== 5060 5401 dependencies: 5061 5402 "@babel/code-frame" "7.12.11" 5062 - "@eslint/eslintrc" "^0.4.0" 5403 + "@eslint/eslintrc" "^0.4.3" 5404 + "@humanwhocodes/config-array" "^0.5.0" 5063 5405 ajv "^6.10.0" 5064 5406 chalk "^4.0.0" 5065 5407 cross-spawn "^7.0.2" 5066 5408 debug "^4.0.1" 5067 5409 doctrine "^3.0.0" 5068 5410 enquirer "^2.3.5" 5411 + escape-string-regexp "^4.0.0" 5069 5412 eslint-scope "^5.1.1" 5070 5413 eslint-utils "^2.1.0" 5071 5414 eslint-visitor-keys "^2.0.0" 5072 5415 espree "^7.3.1" 5073 5416 esquery "^1.4.0" 5074 5417 esutils "^2.0.2" 5418 + fast-deep-equal "^3.1.3" 5075 5419 file-entry-cache "^6.0.1" 5076 5420 functional-red-black-tree "^1.0.1" 5077 - glob-parent "^5.0.0" 5078 - globals "^12.1.0" 5421 + glob-parent "^5.1.2" 5422 + globals "^13.6.0" 5079 5423 ignore "^4.0.6" 5080 5424 import-fresh "^3.0.0" 5081 5425 imurmurhash "^0.1.4" ··· 5086 5424 js-yaml "^3.13.1" 5087 5425 json-stable-stringify-without-jsonify "^1.0.1" 5088 5426 levn "^0.4.1" 5089 - lodash "^4.17.20" 5427 + lodash.merge "^4.6.2" 5090 5428 minimatch "^3.0.4" 5091 5429 natural-compare "^1.4.0" 5092 5430 optionator "^0.9.1" ··· 5095 5433 semver "^7.2.1" 5096 5434 strip-ansi "^6.0.0" 5097 5435 strip-json-comments "^3.1.0" 5098 - table "^6.0.4" 5436 + table "^6.0.9" 5099 5437 text-table "^0.2.0" 5100 5438 v8-compile-cache "^2.0.3" 5101 5439 ··· 5133 5471 integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 5134 5472 5135 5473 estraverse@^5.1.0, estraverse@^5.2.0: 5136 - version "5.2.0" 5137 - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 5138 - integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 5474 + version "5.3.0" 5475 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 5476 + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 5139 5477 5140 5478 esutils@^2.0.2: 5141 5479 version "2.0.3" ··· 5218 5556 strip-final-newline "^2.0.0" 5219 5557 5220 5558 execa@^5.0.0: 5221 - version "5.0.0" 5222 - resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" 5223 - integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== 5559 + version "5.1.1" 5560 + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 5561 + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 5224 5562 dependencies: 5225 5563 cross-spawn "^7.0.3" 5226 5564 get-stream "^6.0.0" ··· 5277 5615 integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 5278 5616 5279 5617 fast-glob@^3.0.3, fast-glob@^3.1.1, fast-glob@^3.2.4: 5280 - version "3.2.5" 5281 - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" 5282 - integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 5618 + version "3.2.7" 5619 + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" 5620 + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== 5283 5621 dependencies: 5284 5622 "@nodelib/fs.stat" "^2.0.2" 5285 5623 "@nodelib/fs.walk" "^1.2.3" 5286 - glob-parent "^5.1.0" 5624 + glob-parent "^5.1.2" 5287 5625 merge2 "^1.3.0" 5288 - micromatch "^4.0.2" 5289 - picomatch "^2.2.1" 5626 + micromatch "^4.0.4" 5290 5627 5291 5628 fast-json-stable-stringify@^2.0.0: 5292 5629 version "2.1.0" ··· 5303 5642 integrity sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw== 5304 5643 5305 5644 fast-safe-stringify@^2.0.7: 5306 - version "2.0.7" 5307 - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" 5308 - integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== 5645 + version "2.1.1" 5646 + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" 5647 + integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== 5309 5648 5310 5649 fast-xml-parser@^3.19.0: 5311 - version "3.19.0" 5312 - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" 5313 - integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== 5650 + version "3.21.1" 5651 + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz#152a1d51d445380f7046b304672dd55d15c9e736" 5652 + integrity sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg== 5653 + dependencies: 5654 + strnum "^1.0.4" 5314 5655 5315 5656 fastest-levenshtein@^1.0.12: 5316 5657 version "1.0.12" ··· 5320 5657 integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== 5321 5658 5322 5659 fastq@^1.6.0: 5323 - version "1.11.0" 5324 - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" 5325 - integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== 5660 + version "1.13.0" 5661 + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 5662 + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 5326 5663 dependencies: 5327 5664 reusify "^1.0.4" 5328 5665 ··· 5417 5754 unpipe "~1.0.0" 5418 5755 5419 5756 find-cache-dir@^3.3.1: 5420 - version "3.3.1" 5421 - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" 5422 - integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== 5757 + version "3.3.2" 5758 + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" 5759 + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== 5423 5760 dependencies: 5424 5761 commondir "^1.0.1" 5425 5762 make-dir "^3.0.2" ··· 5454 5791 rimraf "^3.0.2" 5455 5792 5456 5793 flatted@^3.1.0: 5457 - version "3.1.1" 5458 - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" 5459 - integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== 5794 + version "3.2.2" 5795 + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" 5796 + integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== 5460 5797 5461 5798 flatted@^3.2.4: 5462 5799 version "3.2.5" 5463 5800 resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 5464 - integrity "sha1-dshYT0/IQ9tkcCpr0Eq3qL1mbaM= sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" 5801 + integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 5465 5802 5466 5803 follow-redirects@^1.0.0, follow-redirects@^1.14.0: 5467 5804 version "1.14.8" ··· 5494 5831 fs-extra@^10.0.0: 5495 5832 version "10.0.0" 5496 5833 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1" 5497 - integrity "sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E= sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==" 5834 + integrity sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ== 5498 5835 dependencies: 5499 5836 graceful-fs "^4.2.0" 5500 5837 jsonfile "^6.0.1" ··· 5512 5849 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 5513 5850 integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 5514 5851 5515 - fsevents@~2.3.1, fsevents@~2.3.2: 5852 + fsevents@~2.3.2: 5516 5853 version "2.3.2" 5517 5854 resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 5518 5855 integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== ··· 5523 5860 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 5524 5861 5525 5862 function.prototype.name@^1.1.2, function.prototype.name@^1.1.3: 5526 - version "1.1.4" 5527 - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz#e4ea839b9d3672ae99d0efd9f38d9191c5eaac83" 5528 - integrity sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ== 5863 + version "1.1.5" 5864 + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 5865 + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 5529 5866 dependencies: 5530 5867 call-bind "^1.0.2" 5531 5868 define-properties "^1.1.3" 5532 - es-abstract "^1.18.0-next.2" 5869 + es-abstract "^1.19.0" 5533 5870 functions-have-names "^1.2.2" 5534 5871 5535 5872 functional-red-black-tree@^1.0.1: ··· 5624 5961 resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 5625 5962 integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 5626 5963 5627 - glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@~5.1.0, glob-parent@~5.1.2: 5964 + get-symbol-description@^1.0.0: 5965 + version "1.0.0" 5966 + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 5967 + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 5968 + dependencies: 5969 + call-bind "^1.0.2" 5970 + get-intrinsic "^1.1.1" 5971 + 5972 + glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2: 5628 5973 version "5.1.2" 5629 5974 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 5630 5975 integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== ··· 5644 5973 resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" 5645 5974 integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== 5646 5975 5647 - glob@^7.1.0, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 5648 - version "7.1.6" 5649 - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 5650 - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 5651 - dependencies: 5652 - fs.realpath "^1.0.0" 5653 - inflight "^1.0.4" 5654 - inherits "2" 5655 - minimatch "^3.0.4" 5656 - once "^1.3.0" 5657 - path-is-absolute "^1.0.0" 5658 - 5659 - glob@^7.1.7: 5976 + glob@^7.1.0, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7: 5660 5977 version "7.2.0" 5661 5978 resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 5662 5979 integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== ··· 5661 6002 resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 5662 6003 integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 5663 6004 5664 - globals@^12.1.0: 5665 - version "12.4.0" 5666 - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 5667 - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 6005 + globals@^13.6.0, globals@^13.9.0: 6006 + version "13.12.0" 6007 + resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e" 6008 + integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg== 5668 6009 dependencies: 5669 - type-fest "^0.8.1" 6010 + type-fest "^0.20.2" 5670 6011 5671 6012 globals@^9.18.0: 5672 6013 version "9.18.0" ··· 5688 6029 slash "^3.0.0" 5689 6030 5690 6031 globby@^11.0.1: 5691 - version "11.0.3" 5692 - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb" 5693 - integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg== 6032 + version "11.0.4" 6033 + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" 6034 + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== 5694 6035 dependencies: 5695 6036 array-union "^2.1.0" 5696 6037 dir-glob "^3.0.1" ··· 5743 6084 url-to-options "^1.0.1" 5744 6085 5745 6086 graceful-fs@^4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6: 5746 - version "4.2.6" 5747 - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 5748 - integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 6087 + version "4.2.8" 6088 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 6089 + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 5749 6090 5750 6091 graphlib@^2.1.8: 5751 6092 version "2.1.8" ··· 5817 6158 dependencies: 5818 6159 has-symbol-support-x "^1.4.1" 5819 6160 6161 + has-tostringtag@^1.0.0: 6162 + version "1.0.0" 6163 + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 6164 + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 6165 + dependencies: 6166 + has-symbols "^1.0.2" 6167 + 5820 6168 has-unicode@^2.0.0: 5821 6169 version "2.0.1" 5822 6170 resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" ··· 5863 6197 resolved "https://registry.yarnpkg.com/heap/-/heap-0.2.5.tgz#713b65590ebcc40fcbeeaf55e851694092b39af1" 5864 6198 integrity sha1-cTtlWQ68xA/L7q9V6FFpQJKzmvE= 5865 6199 5866 - hex-color-regex@^1.1.0: 5867 - version "1.1.0" 5868 - resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 5869 - integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 5870 - 5871 6200 history@^5.2.0: 5872 6201 version "5.3.0" 5873 6202 resolved "https://registry.yarnpkg.com/history/-/history-5.3.0.tgz#1548abaa245ba47992f063a0783db91ef201c73b" ··· 5886 6225 dependencies: 5887 6226 react-is "^16.7.0" 5888 6227 5889 - hsl-regex@^1.0.0: 5890 - version "1.0.0" 5891 - resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" 5892 - integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= 5893 - 5894 - hsla-regex@^1.0.0: 5895 - version "1.0.0" 5896 - resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 5897 - integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 5898 - 5899 - html-dom-parser@1.0.1: 5900 - version "1.0.1" 5901 - resolved "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.0.1.tgz#5d147fed6656c12918edbcea4a423eefe8d0e715" 5902 - integrity sha512-uKXISKlHzB/l9A08jrs2wseQJ9b864ZfEdmIZskj10cuP6HxCOMHSK0RdluV8NVQaWs0PwefN7d8wqG3jR0IbQ== 6228 + html-dom-parser@1.0.2: 6229 + version "1.0.2" 6230 + resolved "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.0.2.tgz#bb5ff844f214657d899aa4fb7b0a9e7d15607e96" 6231 + integrity sha512-Jq4oVkVSn+10ut3fyc2P/Fs1jqTo0l45cP6Q8d2ef/9jfkYwulO0QXmyLI0VUiZrXF4czpGgMEJRa52CQ6Fk8Q== 5903 6232 dependencies: 5904 - domhandler "4.2.0" 6233 + domhandler "4.2.2" 5905 6234 htmlparser2 "6.1.0" 5906 6235 5907 6236 html-element-map@^1.2.0: ··· 5908 6257 integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 5909 6258 5910 6259 html-react-parser@^1.2.7: 5911 - version "1.2.7" 5912 - resolved "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.2.7.tgz#1674ed4b96b3440ad922962a3ff000e7f3325293" 5913 - integrity sha512-gUUEgrZV0YaCxtZO2XuJDUnHSq7gOqKu1krye97cxgiZ+ipaIzspGMhATeq9lhy9gwYmwBF2YCHe/accrMMo8Q== 6260 + version "1.4.0" 6261 + resolved "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.4.0.tgz#bf264f38b9fdf4d94e2120f6a39586c15cb81bd0" 6262 + integrity sha512-v8Kxy+7L90ZFSM690oJWBNRzZWZOQquYPpQt6kDQPzQyZptXgOJ69kHSi7xdqNdm1mOfsDPwF4K9Bo/dS5gRTQ== 5914 6263 dependencies: 5915 - domhandler "4.2.0" 5916 - html-dom-parser "1.0.1" 5917 - react-property "1.0.1" 6264 + domhandler "4.2.2" 6265 + html-dom-parser "1.0.2" 6266 + react-property "2.0.0" 5918 6267 style-to-js "1.1.0" 5919 6268 5920 6269 html2canvas@^1.0.0-rc.7: 5921 - version "1.0.0-rc.7" 5922 - resolved "https://registry.yarnpkg.com/html2canvas/-/html2canvas-1.0.0-rc.7.tgz#70c159ce0e63954a91169531894d08ad5627ac98" 5923 - integrity sha512-yvPNZGejB2KOyKleZspjK/NruXVQuowu8NnV2HYG7gW7ytzl+umffbtUI62v2dCHQLDdsK6HIDtyJZ0W3neerA== 6270 + version "1.3.2" 6271 + resolved "https://registry.yarnpkg.com/html2canvas/-/html2canvas-1.3.2.tgz#951cc8388a3ce939fdac02131007ee28124afc27" 6272 + integrity sha512-4+zqv87/a1LsaCrINV69wVLGG8GBZcYBboz1JPWEgiXcWoD9kroLzccsBRU/L9UlfV2MAZ+3J92U9IQPVMDeSQ== 5924 6273 dependencies: 5925 - css-line-break "1.1.1" 6274 + css-line-break "2.0.1" 6275 + text-segmentation "^1.0.2" 5926 6276 5927 6277 htmlescape@^1.1.0: 5928 6278 version "1.1.1" ··· 6044 6392 integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 6045 6393 6046 6394 ignore@^5.1.1, ignore@^5.1.4: 6047 - version "5.1.8" 6048 - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 6049 - integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 6395 + version "5.1.9" 6396 + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz#9ec1a5cbe8e1446ec60d4420060d43aa6e7382fb" 6397 + integrity sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ== 6050 6398 6051 6399 image-minimizer-webpack-plugin@^2.2.0: 6052 6400 version "2.2.0" ··· 6128 6476 integrity sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ== 6129 6477 6130 6478 import-local@^3.0.2: 6131 - version "3.0.2" 6132 - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 6133 - integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== 6479 + version "3.0.3" 6480 + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" 6481 + integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 6134 6482 dependencies: 6135 6483 pkg-dir "^4.2.0" 6136 6484 resolve-cwd "^3.0.0" ··· 6148 6496 version "0.1.4" 6149 6497 resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 6150 6498 integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 6151 - 6152 - indefinite-observable@^2.0.1: 6153 - version "2.0.1" 6154 - resolved "https://registry.yarnpkg.com/indefinite-observable/-/indefinite-observable-2.0.1.tgz#574af29bfbc17eb5947793797bddc94c9d859400" 6155 - integrity sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ== 6156 - dependencies: 6157 - symbol-observable "1.2.0" 6158 6499 6159 6500 indent-string@^4.0.0: 6160 6501 version "4.0.0" ··· 6268 6623 integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== 6269 6624 6270 6625 is-any-array@^1.0.0: 6271 - version "1.0.0" 6272 - resolved "https://registry.yarnpkg.com/is-any-array/-/is-any-array-1.0.0.tgz#bcb2c7e2d28aaa2fa02ee8f6b604b0b3a957bba7" 6273 - integrity sha512-0o0ZsgObnylv72nO39P6M+PL7jPUEx39O6BEfZuX36IKPy/RpdudxluAIaRn/LZi5eVPDMlMBaLABzOK6bwPlw== 6626 + version "1.0.1" 6627 + resolved "https://registry.yarnpkg.com/is-any-array/-/is-any-array-1.0.1.tgz#05fedec1a4dced1854bd279b2ec5df431e5bea9e" 6628 + integrity sha512-m+FSiaONxBt2W0h9XOUngMBu/WW8uzAKbSk4Ty2aeCcQJ+muBqENexvxUHtDpX65fk5AMCROxqgNX0sSAHstcw== 6274 6629 6275 6630 is-arguments@^1.0.4: 6276 - version "1.1.0" 6277 - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" 6278 - integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== 6631 + version "1.1.1" 6632 + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" 6633 + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== 6279 6634 dependencies: 6280 - call-bind "^1.0.0" 6635 + call-bind "^1.0.2" 6636 + has-tostringtag "^1.0.0" 6281 6637 6282 6638 is-arrayish@^0.2.1: 6283 6639 version "0.2.1" ··· 6286 6640 integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 6287 6641 6288 6642 is-bigint@^1.0.1: 6289 - version "1.0.1" 6290 - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 6291 - integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 6643 + version "1.0.4" 6644 + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 6645 + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 6646 + dependencies: 6647 + has-bigints "^1.0.1" 6292 6648 6293 6649 is-binary-path@~2.1.0: 6294 6650 version "2.1.0" ··· 6299 6651 dependencies: 6300 6652 binary-extensions "^2.0.0" 6301 6653 6654 + is-blob@^2.1.0: 6655 + version "2.1.0" 6656 + resolved "https://registry.yarnpkg.com/is-blob/-/is-blob-2.1.0.tgz#e36cd82c90653f1e1b930f11baf9c64216a05385" 6657 + integrity sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw== 6658 + 6302 6659 is-boolean-object@^1.0.1, is-boolean-object@^1.1.0: 6303 - version "1.1.0" 6304 - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 6305 - integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 6660 + version "1.1.2" 6661 + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 6662 + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 6306 6663 dependencies: 6307 - call-bind "^1.0.0" 6664 + call-bind "^1.0.2" 6665 + has-tostringtag "^1.0.0" 6308 6666 6309 6667 is-buffer@^1.1.0: 6310 6668 version "1.1.6" 6311 6669 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 6312 6670 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 6313 6671 6314 - is-buffer@^2.0.3: 6672 + is-buffer@^2.0.5: 6315 6673 version "2.0.5" 6316 6674 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" 6317 6675 integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== 6318 6676 6319 - is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.3: 6320 - version "1.2.3" 6321 - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 6322 - integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 6323 - 6324 - is-color-stop@^1.1.0: 6325 - version "1.1.0" 6326 - resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" 6327 - integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= 6328 - dependencies: 6329 - css-color-names "^0.0.4" 6330 - hex-color-regex "^1.1.0" 6331 - hsl-regex "^1.0.0" 6332 - hsla-regex "^1.0.0" 6333 - rgb-regex "^1.0.1" 6334 - rgba-regex "^1.0.0" 6677 + is-callable@^1.1.4, is-callable@^1.1.5, is-callable@^1.2.4: 6678 + version "1.2.4" 6679 + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 6680 + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 6335 6681 6336 6682 is-core-module@^2.2.0: 6337 - version "2.2.0" 6338 - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 6339 - integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 6683 + version "2.8.0" 6684 + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" 6685 + integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== 6340 6686 dependencies: 6341 6687 has "^1.0.3" 6342 6688 6343 6689 is-date-object@^1.0.1: 6344 - version "1.0.4" 6345 - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5" 6346 - integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A== 6690 + version "1.0.5" 6691 + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 6692 + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 6693 + dependencies: 6694 + has-tostringtag "^1.0.0" 6347 6695 6348 6696 is-docker@^2.1.1: 6349 6697 version "2.2.1" ··· 6369 6725 integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 6370 6726 6371 6727 is-generator-function@^1.0.7: 6372 - version "1.0.9" 6373 - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c" 6374 - integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A== 6728 + version "1.0.10" 6729 + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" 6730 + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== 6731 + dependencies: 6732 + has-tostringtag "^1.0.0" 6375 6733 6376 6734 is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 6377 - version "4.0.1" 6378 - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 6379 - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 6735 + version "4.0.3" 6736 + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 6737 + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 6380 6738 dependencies: 6381 6739 is-extglob "^2.1.1" 6382 6740 ··· 6408 6762 integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 6409 6763 6410 6764 is-number-object@^1.0.4: 6411 - version "1.0.5" 6412 - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb" 6413 - integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw== 6765 + version "1.0.6" 6766 + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" 6767 + integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== 6768 + dependencies: 6769 + has-tostringtag "^1.0.0" 6414 6770 6415 6771 is-number@^7.0.0: 6416 6772 version "7.0.0" ··· 6441 6793 resolved "https://registry.yarnpkg.com/is-png/-/is-png-2.0.0.tgz#ee8cbc9e9b050425cedeeb4a6fb74a649b0a4a8d" 6442 6794 integrity sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g== 6443 6795 6444 - is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.3: 6445 - version "1.1.3" 6446 - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f" 6447 - integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ== 6796 + is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.4: 6797 + version "1.1.4" 6798 + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 6799 + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 6448 6800 dependencies: 6449 6801 call-bind "^1.0.2" 6450 - has-symbols "^1.0.2" 6802 + has-tostringtag "^1.0.0" 6451 6803 6452 6804 is-relative@^1.0.0: 6453 6805 version "1.0.0" ··· 6466 6818 resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 6467 6819 integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== 6468 6820 6821 + is-shared-array-buffer@^1.0.1: 6822 + version "1.0.1" 6823 + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz#97b0c85fbdacb59c9c446fe653b82cf2b5b7cfe6" 6824 + integrity sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA== 6825 + 6469 6826 is-stream@^1.0.0, is-stream@^1.1.0: 6470 6827 version "1.1.0" 6471 6828 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 6472 6829 integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 6473 6830 6474 6831 is-stream@^2.0.0: 6475 - version "2.0.0" 6476 - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 6477 - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 6832 + version "2.0.1" 6833 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 6834 + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 6478 6835 6479 - is-string@^1.0.5, is-string@^1.0.6: 6480 - version "1.0.6" 6481 - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f" 6482 - integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w== 6836 + is-string@^1.0.5, is-string@^1.0.7: 6837 + version "1.0.7" 6838 + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 6839 + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 6840 + dependencies: 6841 + has-tostringtag "^1.0.0" 6483 6842 6484 6843 is-subset@^0.1.1: 6485 6844 version "0.1.1" ··· 6501 6846 fast-xml-parser "^3.19.0" 6502 6847 6503 6848 is-symbol@^1.0.2, is-symbol@^1.0.3: 6504 - version "1.0.3" 6505 - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 6506 - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 6849 + version "1.0.4" 6850 + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 6851 + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 6507 6852 dependencies: 6508 - has-symbols "^1.0.1" 6853 + has-symbols "^1.0.2" 6509 6854 6510 - is-typed-array@^1.1.3: 6511 - version "1.1.5" 6512 - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e" 6513 - integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug== 6855 + is-typed-array@^1.1.3, is-typed-array@^1.1.7: 6856 + version "1.1.8" 6857 + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.8.tgz#cbaa6585dc7db43318bc5b89523ea384a6f65e79" 6858 + integrity sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA== 6514 6859 dependencies: 6515 - available-typed-arrays "^1.0.2" 6860 + available-typed-arrays "^1.0.5" 6516 6861 call-bind "^1.0.2" 6517 - es-abstract "^1.18.0-next.2" 6862 + es-abstract "^1.18.5" 6518 6863 foreach "^2.0.5" 6519 - has-symbols "^1.0.1" 6864 + has-tostringtag "^1.0.0" 6520 6865 6521 6866 is-unc-path@^1.0.0: 6522 6867 version "1.0.0" ··· 6524 6869 integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== 6525 6870 dependencies: 6526 6871 unc-path-regex "^0.1.2" 6872 + 6873 + is-weakref@^1.0.1: 6874 + version "1.0.1" 6875 + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.1.tgz#842dba4ec17fa9ac9850df2d6efbc1737274f2a2" 6876 + integrity sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ== 6877 + dependencies: 6878 + call-bind "^1.0.0" 6527 6879 6528 6880 isarray@0.0.1: 6529 6881 version "0.0.1" ··· 6573 6911 integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ== 6574 6912 6575 6913 istanbul-lib-coverage@^3.0.0: 6576 - version "3.0.0" 6577 - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 6578 - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== 6914 + version "3.2.0" 6915 + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 6916 + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 6579 6917 6580 6918 istanbul-lib-instrument@^1.7.3: 6581 6919 version "1.10.2" ··· 6610 6948 supports-color "^7.1.0" 6611 6949 6612 6950 istanbul-lib-source-maps@^4.0.0: 6613 - version "4.0.0" 6614 - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 6615 - integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== 6951 + version "4.0.1" 6952 + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 6953 + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 6616 6954 dependencies: 6617 6955 debug "^4.1.1" 6618 6956 istanbul-lib-coverage "^3.0.0" 6619 6957 source-map "^0.6.1" 6620 6958 6621 6959 istanbul-reports@^3.0.0: 6622 - version "3.0.2" 6623 - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" 6624 - integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== 6960 + version "3.0.5" 6961 + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.5.tgz#a2580107e71279ea6d661ddede929ffc6d693384" 6962 + integrity sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ== 6625 6963 dependencies: 6626 6964 html-escaper "^2.0.0" 6627 6965 istanbul-lib-report "^3.0.0" ··· 6645 6983 minimatch "^3.0.4" 6646 6984 6647 6985 jasmine-core@^3.6.0: 6648 - version "3.7.1" 6649 - resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.7.1.tgz#0401327f6249eac993d47bbfa18d4e8efacfb561" 6650 - integrity sha512-DH3oYDS/AUvvr22+xUBW62m1Xoy7tUlY1tsxKEJvl5JeJ7q8zd1K5bUwiOxdH+erj6l2vAMM3hV25Xs9/WrmuQ== 6986 + version "3.10.1" 6987 + resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.10.1.tgz#7aa6fa2b834a522315c651a128d940eca553989a" 6988 + integrity sha512-ooZWSDVAdh79Rrj4/nnfklL3NQVra0BcuhcuWoAwwi+znLDoUeH87AFfeX8s+YeYi6xlv5nveRyaA1v7CintfA== 6651 6989 6652 6990 jasmine-enzyme@^7.1.2: 6653 6991 version "7.1.2" ··· 6661 6999 resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59" 6662 7000 integrity sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k= 6663 7001 6664 - jest-worker@^26.3.0, jest-worker@^26.6.2: 6665 - version "26.6.2" 6666 - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 6667 - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 7002 + jest-worker@^27.0.2, jest-worker@^27.0.6: 7003 + version "27.3.1" 7004 + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.3.1.tgz#0def7feae5b8042be38479799aeb7b5facac24b2" 7005 + integrity sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g== 6668 7006 dependencies: 6669 7007 "@types/node" "*" 6670 7008 merge-stream "^2.0.0" 6671 - supports-color "^7.0.0" 7009 + supports-color "^8.0.0" 6672 7010 6673 7011 jmespath@^0.15.0: 6674 7012 version "0.15.0" ··· 6823 7161 jsonfile@^6.0.1: 6824 7162 version "6.1.0" 6825 7163 resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 6826 - integrity "sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4= sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" 7164 + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 6827 7165 dependencies: 6828 7166 universalify "^2.0.0" 6829 7167 optionalDependencies: ··· 6840 7178 integrity sha512-o9Je8TceILo872uQC9fIBJm957j1Io7z8Ca1iWIqY6S5S65HGE9XN7XEEw7+tUviB9Vq4sygV89MVTxl+rhZyg== 6841 7179 6842 7180 jss-plugin-camel-case@^10.5.1: 6843 - version "10.5.1" 6844 - resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz#427b24a9951b4c2eaa7e3d5267acd2e00b0934f9" 6845 - integrity sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg== 7181 + version "10.8.2" 7182 + resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.8.2.tgz#8d7f915c8115afaff8cbde08faf610ec9892fba6" 7183 + integrity sha512-2INyxR+1UdNuKf4v9It3tNfPvf7IPrtkiwzofeKuMd5D58/dxDJVUQYRVg/n460rTlHUfsEQx43hDrcxi9dSPA== 6846 7184 dependencies: 6847 7185 "@babel/runtime" "^7.3.1" 6848 7186 hyphenate-style-name "^1.0.3" 6849 - jss "10.5.1" 7187 + jss "10.8.2" 6850 7188 6851 7189 jss-plugin-default-unit@^10.5.1: 6852 - version "10.5.1" 6853 - resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz#2be385d71d50aee2ee81c2a9ac70e00592ed861b" 6854 - integrity sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ== 7190 + version "10.8.2" 7191 + resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.8.2.tgz#c66f12e02e0815d911b85c02c2a979ee7b4ce69a" 7192 + integrity sha512-UZ7cwT9NFYSG+SEy7noRU50s4zifulFdjkUNKE+u6mW7vFP960+RglWjTgMfh79G6OENZmaYnjHV/gcKV4nSxg== 6855 7193 dependencies: 6856 7194 "@babel/runtime" "^7.3.1" 6857 - jss "10.5.1" 7195 + jss "10.8.2" 6858 7196 6859 7197 jss-plugin-global@^10.5.1: 6860 - version "10.5.1" 6861 - resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz#0e1793dea86c298360a7e2004721351653c7e764" 6862 - integrity sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ== 7198 + version "10.8.2" 7199 + resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.8.2.tgz#1a35632a693cf50113bcc5ffe6b51969df79c4ec" 7200 + integrity sha512-UaYMSPsYZ7s/ECGoj4KoHC2jwQd5iQ7K+FFGnCAILdQrv7hPmvM2Ydg45ThT/sH46DqktCRV2SqjRuxeBH8nRA== 6863 7201 dependencies: 6864 7202 "@babel/runtime" "^7.3.1" 6865 - jss "10.5.1" 7203 + jss "10.8.2" 6866 7204 6867 7205 jss-plugin-nested@^10.5.1: 6868 - version "10.5.1" 6869 - resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz#8753a80ad31190fb6ac6fdd39f57352dcf1295bb" 6870 - integrity sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ== 7206 + version "10.8.2" 7207 + resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.8.2.tgz#79f3c7f75ea6a36ae72fe52e777035bb24d230c7" 7208 + integrity sha512-acRvuPJOb930fuYmhkJaa994EADpt8TxI63Iyg96C8FJ9T2xRyU5T6R1IYKRwUiqZo+2Sr7fdGzRTDD4uBZaMA== 6871 7209 dependencies: 6872 7210 "@babel/runtime" "^7.3.1" 6873 - jss "10.5.1" 7211 + jss "10.8.2" 6874 7212 tiny-warning "^1.0.2" 6875 7213 6876 7214 jss-plugin-props-sort@^10.5.1: 6877 - version "10.5.1" 6878 - resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz#ab1c167fd2d4506fb6a1c1d66c5f3ef545ff1cd8" 6879 - integrity sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g== 7215 + version "10.8.2" 7216 + resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.8.2.tgz#e25a7471868652c394562b6dc5433dcaea7dff6f" 7217 + integrity sha512-wqdcjayKRWBZnNpLUrXvsWqh+5J5YToAQ+8HNBNw0kZxVvCDwzhK2Nx6AKs7p+5/MbAh2PLgNW5Ym/ysbVAuqQ== 6880 7218 dependencies: 6881 7219 "@babel/runtime" "^7.3.1" 6882 - jss "10.5.1" 7220 + jss "10.8.2" 6883 7221 6884 7222 jss-plugin-rule-value-function@^10.5.1: 6885 - version "10.5.1" 6886 - resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz#37f4030523fb3032c8801fab48c36c373004de7e" 6887 - integrity sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ== 7223 + version "10.8.2" 7224 + resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.8.2.tgz#55354b55f1b2968a15976729968f767f02d64049" 7225 + integrity sha512-bW0EKAs+0HXpb6BKJhrn94IDdiWb0CnSluTkh0rGEgyzY/nmD1uV/Wf6KGlesGOZ9gmJzQy+9FFdxIUID1c9Ug== 6888 7226 dependencies: 6889 7227 "@babel/runtime" "^7.3.1" 6890 - jss "10.5.1" 7228 + jss "10.8.2" 6891 7229 tiny-warning "^1.0.2" 6892 7230 6893 7231 jss-plugin-vendor-prefixer@^10.5.1: 6894 - version "10.5.1" 6895 - resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz#45a183a3a0eb097bdfab0986b858d99920c0bbd8" 6896 - integrity sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ== 7232 + version "10.8.2" 7233 + resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.8.2.tgz#ebb4a482642f34091e454901e21176441dd5f475" 7234 + integrity sha512-DeGv18QsSiYLSVIEB2+l0af6OToUe0JB+trpzUxyqD2QRC/5AzzDrCrYffO5AHZ81QbffYvSN/pkfZaTWpRXlg== 6897 7235 dependencies: 6898 7236 "@babel/runtime" "^7.3.1" 6899 7237 css-vendor "^2.0.8" 6900 - jss "10.5.1" 7238 + jss "10.8.2" 6901 7239 6902 - jss@10.5.1, jss@^10.5.1: 6903 - version "10.5.1" 6904 - resolved "https://registry.yarnpkg.com/jss/-/jss-10.5.1.tgz#93e6b2428c840408372d8b548c3f3c60fa601c40" 6905 - integrity sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg== 7240 + jss@10.8.2, jss@^10.5.1: 7241 + version "10.8.2" 7242 + resolved "https://registry.yarnpkg.com/jss/-/jss-10.8.2.tgz#4b2a30b094b924629a64928236017a52c7c97505" 7243 + integrity sha512-FkoUNxI329CKQ9OQC8L72MBF9KPf5q8mIupAJ5twU7G7XREW7ahb+7jFfrjZ4iy1qvhx1HwIWUIvkZBDnKkEdQ== 6906 7244 dependencies: 6907 7245 "@babel/runtime" "^7.3.1" 6908 7246 csstype "^3.0.2" 6909 - indefinite-observable "^2.0.1" 6910 7247 is-in-browser "^1.1.3" 6911 7248 tiny-warning "^1.0.2" 6912 7249 6913 7250 "jsx-ast-utils@^2.4.1 || ^3.0.0": 6914 - version "3.2.0" 6915 - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" 6916 - integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== 7251 + version "3.2.1" 7252 + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz#720b97bfe7d901b927d87c3773637ae8ea48781b" 7253 + integrity sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA== 6917 7254 dependencies: 6918 - array-includes "^3.1.2" 7255 + array-includes "^3.1.3" 6919 7256 object.assign "^4.1.2" 6920 7257 6921 7258 junk@^3.1.0: ··· 6959 7298 minimatch "^3.0.4" 6960 7299 6961 7300 karma-jasmine-html-reporter@^1.4.0: 6962 - version "1.6.0" 6963 - resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.6.0.tgz#586e17025a1b4128e9fba55d5f1e8921bfc3bc1e" 6964 - integrity sha512-ELO9yf0cNqpzaNLsfFgXd/wxZVYkE2+ECUwhMHUD4PZ17kcsPsYsVyjquiRqyMn2jkd2sHt0IeMyAyq1MC23Fw== 7301 + version "1.7.0" 7302 + resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz#52c489a74d760934a1089bfa5ea4a8fcb84cc28b" 7303 + integrity sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ== 6965 7304 6966 7305 karma-jasmine@^4.0.1: 6967 7306 version "4.0.1" ··· 7041 7380 integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 7042 7381 7043 7382 klona@^2.0.4: 7044 - version "2.0.4" 7045 - resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" 7046 - integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== 7383 + version "2.0.5" 7384 + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" 7385 + integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== 7047 7386 7048 7387 labeled-stream-splicer@^2.0.0: 7049 7388 version "2.0.2" ··· 7066 7405 prelude-ls "^1.2.1" 7067 7406 type-check "~0.4.0" 7068 7407 7408 + lilconfig@^2.0.3: 7409 + version "2.0.3" 7410 + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.3.tgz#68f3005e921dafbd2a2afb48379986aa6d2579fd" 7411 + integrity sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg== 7412 + 7069 7413 lines-and-columns@^1.1.6: 7070 7414 version "1.1.6" 7071 7415 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" ··· 7091 7425 json5 "^1.0.1" 7092 7426 7093 7427 loader-utils@^2.0.0: 7094 - version "2.0.0" 7095 - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" 7096 - integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== 7428 + version "2.0.2" 7429 + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129" 7430 + integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A== 7097 7431 dependencies: 7098 7432 big.js "^5.2.2" 7099 7433 emojis-list "^3.0.0" ··· 7124 7458 version "3.9.1" 7125 7459 resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 7126 7460 integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= 7127 - 7128 - lodash.clonedeep@^4.5.0: 7129 - version "4.5.0" 7130 - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 7131 - integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 7132 7461 7133 7462 lodash.debounce@^4.0.8: 7134 7463 version "4.0.8" ··· 7187 7526 resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 7188 7527 integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8= 7189 7528 7529 + lodash.merge@^4.6.2: 7530 + version "4.6.2" 7531 + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 7532 + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 7533 + 7190 7534 lodash.truncate@^4.4.2: 7191 7535 version "4.4.2" 7192 7536 resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" ··· 7202 7536 resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 7203 7537 integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 7204 7538 7205 - lodash@4.*, lodash@^4.14.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: 7539 + lodash@4, lodash@4.*, lodash@^4.14.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4: 7206 7540 version "4.17.21" 7207 7541 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 7208 7542 integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== ··· 7292 7626 ssri "^8.0.0" 7293 7627 7294 7628 marked@^2.0.0: 7295 - version "2.0.1" 7296 - resolved "https://registry.yarnpkg.com/marked/-/marked-2.0.1.tgz#5e7ed7009bfa5c95182e4eb696f85e948cefcee3" 7297 - integrity sha512-5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw== 7629 + version "2.1.3" 7630 + resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" 7631 + integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== 7298 7632 7299 7633 matches-selector@0.0.1: 7300 7634 version "0.0.1" ··· 7345 7679 resolved "https://registry.yarnpkg.com/microbuffer/-/microbuffer-1.0.0.tgz#8b3832ed40c87d51f47bb234913a698a756d19d2" 7346 7680 integrity sha1-izgy7UDIfVH0e7I0kTppinVtGdI= 7347 7681 7348 - micromatch@^4.0.2: 7682 + micromatch@^4.0.4: 7349 7683 version "4.0.4" 7350 7684 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 7351 7685 integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== ··· 7361 7695 bn.js "^4.0.0" 7362 7696 brorand "^1.0.1" 7363 7697 7364 - mime-db@1.46.0, mime-db@^1.28.0: 7365 - version "1.46.0" 7366 - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee" 7367 - integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ== 7698 + mime-db@1.50.0, mime-db@^1.28.0: 7699 + version "1.50.0" 7700 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" 7701 + integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== 7368 7702 7369 7703 mime-types@^2.1.27, mime-types@~2.1.24: 7370 - version "2.1.29" 7371 - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2" 7372 - integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ== 7704 + version "2.1.33" 7705 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" 7706 + integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g== 7373 7707 dependencies: 7374 - mime-db "1.46.0" 7708 + mime-db "1.50.0" 7375 7709 7376 7710 mime@^2.0.3, mime@^2.3.1: 7377 7711 version "2.5.2" ··· 7394 7728 integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 7395 7729 7396 7730 mini-css-extract-plugin@^1.3.5: 7397 - version "1.3.9" 7398 - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.3.9.tgz#47a32132b0fd97a119acd530e8421e8f6ab16d5e" 7399 - integrity sha512-Ac4s+xhVbqlyhXS5J/Vh/QXUz3ycXlCqoCPpg0vdfhsIBH9eg/It/9L1r1XhSCH737M1lqcWnMuWL13zcygn5A== 7731 + version "1.6.2" 7732 + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8" 7733 + integrity sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q== 7400 7734 dependencies: 7401 7735 loader-utils "^2.0.0" 7402 7736 schema-utils "^3.0.0" ··· 7420 7754 brace-expansion "^1.1.7" 7421 7755 7422 7756 minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 7423 - version "1.2.5" 7424 - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 7425 - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 7757 + version "1.2.6" 7758 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 7759 + integrity "sha1-hjelt1nqDW6YcCz7OpKDMjyTr0Q= sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" 7426 7760 7427 7761 minipass-collect@^1.0.2: 7428 7762 version "1.0.2" ··· 7510 7844 is-any-array "^1.0.0" 7511 7845 7512 7846 ml-array-rescale@^1.3.5: 7513 - version "1.3.5" 7514 - resolved "https://registry.yarnpkg.com/ml-array-rescale/-/ml-array-rescale-1.3.5.tgz#a41a98535e5b3bcdcde2f1ef532f4453feb11104" 7515 - integrity sha512-czK+faN7kYrF48SgVQeXGkxUjDEas6BA4EzF4jJNh8UEtzpSvHW3RllZCJCCyrAqeFc+Y/LhgYUzuHFpevM3qA== 7847 + version "1.3.6" 7848 + resolved "https://registry.yarnpkg.com/ml-array-rescale/-/ml-array-rescale-1.3.6.tgz#060d1c636fbb5f877265f4fcc4e0e157521d615a" 7849 + integrity sha512-Lzj45T6hvHNdht924JQhHzInIK+ilC55zn98uraZUvLBkOWOJGOztEkRM0xyzAjWvVuhpszLADOnoVwfBSnj8w== 7516 7850 dependencies: 7517 7851 is-any-array "^1.0.0" 7518 7852 ml-array-max "^1.2.3" ··· 7551 7885 through2 "^2.0.0" 7552 7886 xtend "^4.0.0" 7553 7887 7554 - moment-timezone@^0.5.28, moment-timezone@^0.5.31, moment-timezone@^0.5.33: 7888 + moment-timezone@^0.5.31: 7555 7889 version "0.5.33" 7556 7890 resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz#b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c" 7557 7891 integrity sha512-PTc2vcT8K9J5/9rDEPe5czSIKgLoGsH8UNpA4qZTVw0Vd/Uz19geE9abbIOQKaAQFcnQ3v5YEXrbSc5BpshH+w== 7558 7892 dependencies: 7559 7893 moment ">= 2.9.0" 7560 7894 7561 - "moment@>= 2.9.0", moment@^2.10.2, moment@^2.29.0, moment@^2.29.1: 7562 - version "2.29.1" 7563 - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" 7564 - integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== 7895 + moment-timezone@^0.5.34: 7896 + version "0.5.34" 7897 + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz#a75938f7476b88f155d3504a9343f7519d9a405c" 7898 + integrity sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg== 7899 + dependencies: 7900 + moment ">= 2.9.0" 7565 7901 7566 - moment@~2.24.0: 7567 - version "2.24.0" 7568 - resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" 7569 - integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== 7902 + "moment@>= 2.9.0", moment@^2.10.2, moment@^2.29.0, moment@^2.29.3, moment@~2.29.2: 7903 + version "2.29.3" 7904 + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3" 7905 + integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw== 7570 7906 7571 7907 moo@^0.5.0: 7572 7908 version "0.5.1" ··· 7593 7925 resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 7594 7926 integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 7595 7927 7596 - ms@2.1.2, ms@^2.0.0: 7928 + ms@2.1.2: 7597 7929 version "2.1.2" 7598 7930 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 7599 7931 integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 7932 + 7933 + ms@^2.0.0: 7934 + version "2.1.3" 7935 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 7936 + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 7600 7937 7601 7938 nan@^2.14.2: 7602 7939 version "2.15.0" 7603 7940 resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" 7604 7941 integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== 7605 7942 7606 - nanocolors@^0.1.12: 7607 - version "0.1.12" 7608 - resolved "https://registry.yarnpkg.com/nanocolors/-/nanocolors-0.1.12.tgz#8577482c58cbd7b5bb1681db4cf48f11a87fd5f6" 7609 - integrity sha512-2nMHqg1x5PU+unxX7PGY7AuYxl2qDx7PSrTRjizr8sxdd3l/3hBuWWaki62qmtYm2U5i4Z5E7GbjlyDFhs9/EQ== 7610 - 7611 - nanoid@^3.0.0, nanoid@^3.1.23: 7943 + nanoid@^3.0.0: 7612 7944 version "3.2.0" 7613 7945 resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.2.0.tgz#62667522da6673971cca916a6d3eff3f415ff80c" 7614 7946 integrity "sha1-YmZ1Itpmc5ccypFqbT7/P0Ff+Aw= sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==" 7947 + 7948 + nanoid@^3.1.30: 7949 + version "3.3.2" 7950 + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557" 7951 + integrity "sha1-yJYi+vtDgc0iFCHGnsWFR6HuxVc= sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA==" 7615 7952 7616 7953 nanopop@^2.1.0: 7617 7954 version "2.1.0" ··· 7661 7988 integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 7662 7989 7663 7990 node-gyp@^8.1.0: 7664 - version "8.3.0" 7665 - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.3.0.tgz#ebc36a146d45095e1c6af6ccb0e47d1c8fc3fe69" 7666 - integrity sha512-e+vmKyTiybKgrmvs4M2REFKCnOd+NcrAAnn99Yko6NQA+zZdMlRvbIUHojfsHrSQ1CddLgZnHicnEVgDHziJzA== 7991 + version "8.4.0" 7992 + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.0.tgz#6e1112b10617f0f8559c64b3f737e8109e5a8338" 7993 + integrity sha512-Bi/oCm5bH6F+FmzfUxJpPaxMEyIhszULGR3TprmTeku8/dMFcdTcypk120NeZqEt54r1BrgEKtm2jJiuIKE28Q== 7667 7994 dependencies: 7668 7995 env-paths "^2.2.0" 7669 7996 glob "^7.1.4" ··· 7675 8002 semver "^7.3.5" 7676 8003 tar "^6.1.2" 7677 8004 which "^2.0.2" 7678 - 7679 - node-releases@^1.1.71: 7680 - version "1.1.72" 7681 - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" 7682 - integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== 7683 8005 7684 8006 node-releases@^2.0.1: 7685 8007 version "2.0.1" ··· 7707 8039 query-string "^5.0.1" 7708 8040 sort-keys "^2.0.0" 7709 8041 7710 - normalize-url@^4.5.0: 7711 - version "4.5.1" 7712 - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 7713 - integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 8042 + normalize-url@^6.0.1: 8043 + version "6.1.0" 8044 + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" 8045 + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== 7714 8046 7715 8047 notificar@^1.0.1: 7716 8048 version "1.0.1" ··· 7781 8113 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 7782 8114 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 7783 8115 7784 - object-inspect@^1.10.3, object-inspect@^1.7.0, object-inspect@^1.9.0: 7785 - version "1.10.3" 7786 - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" 7787 - integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw== 8116 + object-inspect@^1.11.0, object-inspect@^1.7.0, object-inspect@^1.9.0: 8117 + version "1.11.0" 8118 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" 8119 + integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== 7788 8120 7789 8121 object-is@^1.0.2, object-is@^1.1.2: 7790 8122 version "1.1.5" ··· 7809 8141 has-symbols "^1.0.1" 7810 8142 object-keys "^1.1.1" 7811 8143 7812 - object.entries@^1.1.1, object.entries@^1.1.2, object.entries@^1.1.3: 7813 - version "1.1.4" 7814 - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd" 7815 - integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA== 8144 + object.entries@^1.1.1, object.entries@^1.1.2, object.entries@^1.1.4: 8145 + version "1.1.5" 8146 + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 8147 + integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 7816 8148 dependencies: 7817 8149 call-bind "^1.0.2" 7818 8150 define-properties "^1.1.3" 7819 - es-abstract "^1.18.2" 8151 + es-abstract "^1.19.1" 7820 8152 7821 8153 object.fromentries@^2.0.3, object.fromentries@^2.0.4: 7822 - version "2.0.4" 7823 - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8" 7824 - integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== 8154 + version "2.0.5" 8155 + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 8156 + integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 7825 8157 dependencies: 7826 8158 call-bind "^1.0.2" 7827 8159 define-properties "^1.1.3" 7828 - es-abstract "^1.18.0-next.2" 7829 - has "^1.0.3" 8160 + es-abstract "^1.19.1" 7830 8161 7831 8162 object.getownpropertydescriptors@^2.1.0: 7832 - version "2.1.2" 7833 - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7" 7834 - integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== 8163 + version "2.1.3" 8164 + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz#b223cf38e17fefb97a63c10c91df72ccb386df9e" 8165 + integrity sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw== 7835 8166 dependencies: 7836 8167 call-bind "^1.0.2" 7837 8168 define-properties "^1.1.3" 7838 - es-abstract "^1.18.0-next.2" 8169 + es-abstract "^1.19.1" 7839 8170 7840 - object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.3: 7841 - version "1.1.4" 7842 - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" 7843 - integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== 8171 + object.hasown@^1.0.0: 8172 + version "1.1.0" 8173 + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" 8174 + integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg== 8175 + dependencies: 8176 + define-properties "^1.1.3" 8177 + es-abstract "^1.19.1" 8178 + 8179 + object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.4: 8180 + version "1.1.5" 8181 + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 8182 + integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 7844 8183 dependencies: 7845 8184 call-bind "^1.0.2" 7846 8185 define-properties "^1.1.3" 7847 - es-abstract "^1.18.2" 8186 + es-abstract "^1.19.1" 7848 8187 7849 8188 on-finished@~2.3.0: 7850 8189 version "2.3.0" ··· 8176 8501 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 8177 8502 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 8178 8503 8179 - "pgadmin4-tree@git+https://github.com/EnterpriseDB/pgadmin4-treeview/#c966febebcdffaa46f1ccf0769fe5308f179d613": 8504 + "pgadmin4-tree@git+https://github.com/EnterpriseDB/pgadmin4-treeview/#2c288ccc0ae0c98b41e56e79abf1204be3861702": 8180 8505 version "1.0.0" 8181 - resolved "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#c966febebcdffaa46f1ccf0769fe5308f179d613" 8506 + resolved "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#2c288ccc0ae0c98b41e56e79abf1204be3861702" 8182 8507 dependencies: 8183 8508 "@types/classnames" "^2.2.6" 8184 8509 "@types/react" "^16.7.18" ··· 8273 8598 postcss-selector-parser "^6.0.2" 8274 8599 postcss-value-parser "^4.0.2" 8275 8600 8276 - postcss-colormin@^5.1.1: 8277 - version "5.1.1" 8278 - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.1.1.tgz#834d262f6021f832d9085e355f08ade288a92a1d" 8279 - integrity sha512-SyTmqKKN6PyYNeeKEC0hqIP5CDuprO1hHurdW1aezDyfofDUOn7y7MaxcolbsW3oazPwFiGiY30XRiW1V4iZpA== 8601 + postcss-colormin@^5.2.1: 8602 + version "5.2.1" 8603 + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.1.tgz#6e444a806fd3c578827dbad022762df19334414d" 8604 + integrity sha512-VVwMrEYLcHYePUYV99Ymuoi7WhKrMGy/V9/kTS0DkCoJYmmjdOMneyhzYUxcNgteKDVbrewOkSM7Wje/MFwxzA== 8280 8605 dependencies: 8281 - browserslist "^4.16.0" 8282 - colord "^2.0.0" 8606 + browserslist "^4.16.6" 8607 + caniuse-api "^3.0.0" 8608 + colord "^2.9.1" 8283 8609 postcss-value-parser "^4.1.0" 8284 8610 8285 - postcss-convert-values@^5.0.1: 8286 - version "5.0.1" 8287 - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz#4ec19d6016534e30e3102fdf414e753398645232" 8288 - integrity sha512-C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg== 8611 + postcss-convert-values@^5.0.2: 8612 + version "5.0.2" 8613 + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz#879b849dc3677c7d6bc94b6a2c1a3f0808798059" 8614 + integrity sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg== 8289 8615 dependencies: 8290 8616 postcss-value-parser "^4.1.0" 8291 8617 ··· 8311 8635 integrity sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q== 8312 8636 8313 8637 postcss-loader@^5.0.0: 8314 - version "5.1.0" 8315 - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-5.1.0.tgz#8a36f18b8989bee94172626b25f2b9cc6160fb43" 8316 - integrity sha512-tGgKZF6Ntn16zIWXt7yKV19L0rISaozHPCfdPt+aHOnTZrreeqVR6hCkFhZYfJ6KgpyIFRkKuW8ygHtUid4GlA== 8638 + version "5.3.0" 8639 + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-5.3.0.tgz#1657f869e48d4fdb018a40771c235e499ee26244" 8640 + integrity sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw== 8317 8641 dependencies: 8318 8642 cosmiconfig "^7.0.0" 8319 8643 klona "^2.0.4" ··· 8328 8652 postcss-value-parser "^4.1.0" 8329 8653 stylehacks "^5.0.1" 8330 8654 8331 - postcss-merge-rules@^5.0.1: 8332 - version "5.0.1" 8333 - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.1.tgz#4ff61c5089d86845184a0f149e88d687028bef7e" 8334 - integrity sha512-UR6R5Ph0c96QB9TMBH3ml8/kvPCThPHepdhRqAbvMRDRHQACPC8iM5NpfIC03+VRMZTGXy4L/BvFzcDFCgb+fA== 8655 + postcss-merge-rules@^5.0.2: 8656 + version "5.0.2" 8657 + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz#d6e4d65018badbdb7dcc789c4f39b941305d410a" 8658 + integrity sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg== 8335 8659 dependencies: 8336 - browserslist "^4.16.0" 8660 + browserslist "^4.16.6" 8337 8661 caniuse-api "^3.0.0" 8338 8662 cssnano-utils "^2.0.1" 8339 8663 postcss-selector-parser "^6.0.5" ··· 8346 8670 dependencies: 8347 8671 postcss-value-parser "^4.1.0" 8348 8672 8349 - postcss-minify-gradients@^5.0.1: 8350 - version "5.0.1" 8351 - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz#2dc79fd1a1afcb72a9e727bc549ce860f93565d2" 8352 - integrity sha512-odOwBFAIn2wIv+XYRpoN2hUV3pPQlgbJ10XeXPq8UY2N+9ZG42xu45lTn/g9zZ+d70NKSQD6EOi6UiCMu3FN7g== 8673 + postcss-minify-gradients@^5.0.3: 8674 + version "5.0.3" 8675 + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz#f970a11cc71e08e9095e78ec3a6b34b91c19550e" 8676 + integrity sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q== 8353 8677 dependencies: 8678 + colord "^2.9.1" 8354 8679 cssnano-utils "^2.0.1" 8355 - is-color-stop "^1.1.0" 8356 8680 postcss-value-parser "^4.1.0" 8357 8681 8358 8682 postcss-minify-params@^5.0.1: ··· 8453 8777 browserslist "^4.16.0" 8454 8778 postcss-value-parser "^4.1.0" 8455 8779 8456 - postcss-normalize-url@^5.0.1: 8457 - version "5.0.1" 8458 - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.1.tgz#ffa9fe545935d8b57becbbb7934dd5e245513183" 8459 - integrity sha512-hkbG0j58Z1M830/CJ73VsP7gvlG1yF+4y7Fd1w4tD2c7CaA2Psll+pQ6eQhth9y9EaqZSLzamff/D0MZBMbYSg== 8780 + postcss-normalize-url@^5.0.2: 8781 + version "5.0.2" 8782 + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz#ddcdfb7cede1270740cf3e4dfc6008bd96abc763" 8783 + integrity sha512-k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ== 8460 8784 dependencies: 8461 8785 is-absolute-url "^3.0.3" 8462 - normalize-url "^4.5.0" 8786 + normalize-url "^6.0.1" 8463 8787 postcss-value-parser "^4.1.0" 8464 8788 8465 8789 postcss-normalize-whitespace@^5.0.1: ··· 8469 8793 dependencies: 8470 8794 postcss-value-parser "^4.1.0" 8471 8795 8472 - postcss-ordered-values@^5.0.1: 8473 - version "5.0.1" 8474 - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.1.tgz#79ef6e2bd267ccad3fc0c4f4a586dfd01c131f64" 8475 - integrity sha512-6mkCF5BQ25HvEcDfrMHCLLFHlraBSlOXFnQMHYhSpDO/5jSR1k8LdEXOkv+7+uzW6o6tBYea1Km0wQSRkPJkwA== 8796 + postcss-ordered-values@^5.0.2: 8797 + version "5.0.2" 8798 + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz#1f351426977be00e0f765b3164ad753dac8ed044" 8799 + integrity sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ== 8476 8800 dependencies: 8477 8801 cssnano-utils "^2.0.1" 8478 8802 postcss-value-parser "^4.1.0" ··· 8501 8825 cssesc "^3.0.0" 8502 8826 util-deprecate "^1.0.2" 8503 8827 8504 - postcss-svgo@^5.0.1: 8505 - version "5.0.1" 8506 - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.1.tgz#6ed5e01e164e59204978994d844c653a331a8100" 8507 - integrity sha512-cD7DFo6tF9i5eWvwtI4irKOHCpmASFS0xvZ5EQIgEdA1AWfM/XiHHY/iss0gcKHhkqwgYmuo2M0KhJLd5Us6mg== 8828 + postcss-svgo@^5.0.3: 8829 + version "5.0.3" 8830 + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.3.tgz#d945185756e5dfaae07f9edb0d3cae7ff79f9b30" 8831 + integrity sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA== 8508 8832 dependencies: 8509 8833 postcss-value-parser "^4.1.0" 8510 - svgo "^2.3.0" 8834 + svgo "^2.7.0" 8511 8835 8512 8836 postcss-unique-selectors@^5.0.1: 8513 8837 version "5.0.1" ··· 8523 8847 resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 8524 8848 integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 8525 8849 8526 - postcss@^8.2.15, postcss@^8.2.6, postcss@^8.2.9: 8527 - version "8.2.15" 8528 - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.15.tgz#9e66ccf07292817d226fc315cbbf9bc148fbca65" 8529 - integrity sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q== 8850 + postcss@^8.2.15, postcss@^8.3.5: 8851 + version "8.3.11" 8852 + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.11.tgz#c3beca7ea811cd5e1c4a3ec6d2e7599ef1f8f858" 8853 + integrity sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA== 8530 8854 dependencies: 8531 - colorette "^1.2.2" 8532 - nanoid "^3.1.23" 8533 - source-map "^0.6.1" 8855 + nanoid "^3.1.30" 8856 + picocolors "^1.0.0" 8857 + source-map-js "^0.6.2" 8534 8858 8535 8859 precond@^0.2.3: 8536 8860 version "0.2.3" ··· 8877 9201 nanoid "^3.0.0" 8878 9202 prop-types "^15.5.8" 8879 9203 9204 + "react-data-grid@git+https://github.com/adityatoshniwal/react-data-grid.git/#1dc310dfaf5afea359404e867b7cf54953f47d1e": 9205 + version "7.0.0-beta.12" 9206 + resolved "git+https://github.com/adityatoshniwal/react-data-grid.git/#1dc310dfaf5afea359404e867b7cf54953f47d1e" 9207 + dependencies: 9208 + clsx "^1.1.1" 9209 + 8880 9210 react-dom@^16.6.3: 8881 9211 version "16.14.0" 8882 9212 resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" ··· 8935 9253 resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 8936 9254 integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 8937 9255 8938 - react-property@1.0.1: 8939 - version "1.0.1" 8940 - resolved "https://registry.yarnpkg.com/react-property/-/react-property-1.0.1.tgz#4ae4211557d0a0ae050a71aa8ad288c074bea4e6" 8941 - integrity sha512-1tKOwxFn3dXVomH6pM9IkLkq2Y8oh+fh/lYW3MJ/B03URswUTqttgckOlbxY2XHF3vPG6uanSc4dVsLW/wk3wQ== 9256 + react-leaflet@^3.2.2: 9257 + version "3.2.2" 9258 + resolved "https://registry.yarnpkg.com/react-leaflet/-/react-leaflet-3.2.2.tgz#3d779662c32a1d8729e73d24e8ad96ee5b38beef" 9259 + integrity sha512-5W7iWjI9+CdTGVAICe8RUyK0n+uLshr+eLQa8eBCbmstPNpCHZJTUSbju4Ws5dkS/PUCr9t5VmoIE9CXuSBEhw== 9260 + dependencies: 9261 + "@react-leaflet/core" "^1.1.1" 9262 + 9263 + react-property@2.0.0: 9264 + version "2.0.0" 9265 + resolved "https://registry.yarnpkg.com/react-property/-/react-property-2.0.0.tgz#2156ba9d85fa4741faf1918b38efc1eae3c6a136" 9266 + integrity sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw== 8942 9267 8943 9268 react-rnd@^10.3.5: 8944 9269 version "10.3.5" ··· 9012 9323 resolved "https://registry.yarnpkg.com/react-timer-hook/-/react-timer-hook-3.0.5.tgz#a8d930f99b180cd88da245965a26a17df3e7457b" 9013 9324 integrity sha512-n+98SdmYvui2ne3KyWb3Ldu4k0NYQa3g/VzW6VEIfZJ8GAk/jJsIY700M8Nd2vNSTj05c7wKyQfJBqZ0x7zfiA== 9014 9325 9015 - react-transition-group@^4.0.0, react-transition-group@^4.3.0, react-transition-group@^4.4.0: 9016 - version "4.4.1" 9017 - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.1.tgz#63868f9325a38ea5ee9535d828327f85773345c9" 9018 - integrity sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw== 9019 - dependencies: 9020 - "@babel/runtime" "^7.5.5" 9021 - dom-helpers "^5.0.1" 9022 - loose-envify "^1.4.0" 9023 - prop-types "^15.6.2" 9024 - 9025 - react-transition-group@^4.4.2: 9326 + react-transition-group@^4.0.0, react-transition-group@^4.3.0, react-transition-group@^4.4.0, react-transition-group@^4.4.2: 9026 9327 version "4.4.2" 9027 9328 resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470" 9028 9329 integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg== ··· 9096 9417 string_decoder "^1.1.1" 9097 9418 util-deprecate "^1.0.1" 9098 9419 9099 - readdirp@~3.5.0: 9100 - version "3.5.0" 9101 - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 9102 - integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 9103 - dependencies: 9104 - picomatch "^2.2.1" 9105 - 9106 9420 readdirp@~3.6.0: 9107 9421 version "3.6.0" 9108 9422 resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" ··· 9104 9432 picomatch "^2.2.1" 9105 9433 9106 9434 rechoir@^0.7.0: 9107 - version "0.7.0" 9108 - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz#32650fd52c21ab252aa5d65b19310441c7e03aca" 9109 - integrity sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q== 9435 + version "0.7.1" 9436 + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz#9478a96a1ca135b5e88fc027f03ee92d6c645686" 9437 + integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg== 9110 9438 dependencies: 9111 9439 resolve "^1.9.0" 9112 9440 ··· 9140 9468 integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 9141 9469 9142 9470 regenerator-runtime@^0.13.4: 9143 - version "0.13.7" 9144 - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 9145 - integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 9471 + version "0.13.9" 9472 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 9473 + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 9146 9474 9147 9475 regenerator-transform@^0.14.2: 9148 9476 version "0.14.5" ··· 9160 9488 define-properties "^1.1.3" 9161 9489 9162 9490 regexpp@^3.1.0: 9163 - version "3.1.0" 9164 - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 9165 - integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 9491 + version "3.2.0" 9492 + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 9493 + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 9166 9494 9167 9495 regexpu-core@^4.7.1: 9168 9496 version "4.7.1" ··· 9304 9632 resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" 9305 9633 integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== 9306 9634 9307 - rgb-regex@^1.0.1: 9308 - version "1.0.1" 9309 - resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" 9310 - integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= 9311 - 9312 - rgba-regex@^1.0.0: 9313 - version "1.0.0" 9314 - resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 9315 - integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 9316 - 9317 9635 rifm@^0.7.0: 9318 9636 version "0.7.0" 9319 9637 resolved "https://registry.yarnpkg.com/rifm/-/rifm-0.7.0.tgz#debe951a9c83549ca6b33e5919f716044c2230be" ··· 9372 9710 neo-async "^2.6.2" 9373 9711 9374 9712 sass-resources-loader@^2.2.1: 9375 - version "2.2.1" 9376 - resolved "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.2.1.tgz#d7dbc36ccb25b2d8ffa508b1b8630b987df1e5c3" 9377 - integrity sha512-WlofxbWOVnxad874IHZdWbP9eW1pbyqsTJKBsMbeB+YELvLSrZQNDTpH70s6F19BwtanR3NEFnyGwJ9WyotJTQ== 9713 + version "2.2.4" 9714 + resolved "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.2.4.tgz#1a86fba499e74a88cb7ce95f0c98449f348d360e" 9715 + integrity sha512-hIQhBygYky+rLf+4cuoGYONZ623CEH4Swo1fs1WRJkukbqdvN1VIu2KCL59du6vX92bNELzNkGPLx+NorN73xA== 9378 9716 dependencies: 9379 9717 async "^3.2.0" 9380 9718 chalk "^4.1.0" ··· 9382 9720 loader-utils "^2.0.0" 9383 9721 9384 9722 sass@^1.24.4: 9385 - version "1.32.8" 9386 - resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.8.tgz#f16a9abd8dc530add8834e506878a2808c037bdc" 9387 - integrity sha512-Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ== 9723 + version "1.43.4" 9724 + resolved "https://registry.yarnpkg.com/sass/-/sass-1.43.4.tgz#68c7d6a1b004bef49af0d9caf750e9b252105d1f" 9725 + integrity sha512-/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg== 9388 9726 dependencies: 9389 - chokidar ">=2.0.0 <4.0.0" 9727 + chokidar ">=3.0.0 <4.0.0" 9390 9728 9391 9729 sax@^1.2.4, sax@~1.2.4: 9392 9730 version "1.2.4" ··· 9434 9772 ajv "^6.12.4" 9435 9773 ajv-keywords "^3.5.2" 9436 9774 9437 - schema-utils@^3.0.0: 9438 - version "3.0.0" 9439 - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" 9440 - integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== 9775 + schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: 9776 + version "3.1.1" 9777 + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" 9778 + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== 9441 9779 dependencies: 9442 - "@types/json-schema" "^7.0.6" 9780 + "@types/json-schema" "^7.0.8" 9443 9781 ajv "^6.12.5" 9444 9782 ajv-keywords "^3.5.2" 9445 9783 ··· 9482 9820 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 9483 9821 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 9484 9822 9485 - semver@^7.2.1, semver@^7.3.4: 9486 - version "7.3.4" 9487 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 9488 - integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 9489 - dependencies: 9490 - lru-cache "^6.0.0" 9491 - 9492 - semver@^7.3.5: 9823 + semver@^7.2.1, semver@^7.3.4, semver@^7.3.5: 9493 9824 version "7.3.5" 9494 9825 resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 9495 9826 integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== ··· 9493 9838 version "5.0.1" 9494 9839 resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" 9495 9840 integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== 9841 + dependencies: 9842 + randombytes "^2.1.0" 9843 + 9844 + serialize-javascript@^6.0.0: 9845 + version "6.0.0" 9846 + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" 9847 + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== 9496 9848 dependencies: 9497 9849 randombytes "^2.1.0" 9498 9850 ··· 9565 9903 integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 9566 9904 9567 9905 shell-quote@^1.6.1: 9568 - version "1.7.2" 9569 - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 9570 - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 9906 + version "1.7.3" 9907 + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" 9908 + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== 9571 9909 9572 9910 shim-loader@^1.0.1: 9573 9911 version "1.0.1" ··· 9589 9927 object-inspect "^1.9.0" 9590 9928 9591 9929 signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: 9592 - version "3.0.3" 9593 - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 9594 - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 9930 + version "3.0.5" 9931 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 9932 + integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 9595 9933 9596 9934 simple-concat@^1.0.0: 9597 9935 version "1.0.1" ··· 9599 9937 integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== 9600 9938 9601 9939 sirv@^1.0.7: 9602 - version "1.0.12" 9603 - resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.12.tgz#d816c882b35489b3c63290e2f455ae3eccd5f652" 9604 - integrity sha512-+jQoCxndz7L2tqQL4ZyzfDhky0W/4ZJip3XoOuxyQWnAwMxindLl3Xv1qT4x1YX/re0leShvTm8Uk0kQspGhBg== 9940 + version "1.0.18" 9941 + resolved "https://registry.yarnpkg.com/sirv/-/sirv-1.0.18.tgz#105fab52fb656ce8a2bebbf36b11052005952899" 9942 + integrity sha512-f2AOPogZmXgJ9Ma2M22ZEhc1dNtRIzcEkiflMFeVTRq+OViOZMvH1IPMVOwrKaxpSaHioBJiDR0SluRqGa7atA== 9605 9943 dependencies: 9606 - "@polka/url" "^1.0.0-next.15" 9944 + "@polka/url" "^1.0.0-next.20" 9607 9945 mime "^2.3.1" 9608 9946 totalist "^1.0.0" 9609 9947 ··· 9653 9991 integrity sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ== 9654 9992 9655 9993 socket.io-client@^4.0.0: 9656 - version "4.1.2" 9657 - resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.1.2.tgz#95ad7113318ea01fba0860237b96d71e1b1fd2eb" 9658 - integrity sha512-RDpWJP4DQT1XeexmeDyDkm0vrFc0+bUsHDKiVGaNISJvJonhQQOMqV9Vwfg0ZpPJ27LCdan7iqTI92FRSOkFWQ== 9994 + version "4.3.2" 9995 + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.3.2.tgz#9cfdb8fecac8a24d5723daf8c8749e70c8fdeb25" 9996 + integrity sha512-2B9LqSunN60yV8F7S84CCEEcgbYNfrn7ejIInZtLZ7ppWtiX8rGZAjvdCvbnC8bqo/9RlCNOUsORLyskxSFP1g== 9659 9997 dependencies: 9660 - "@types/component-emitter" "^1.2.10" 9998 + "@socket.io/component-emitter" "~3.0.0" 9661 9999 backo2 "~1.0.2" 9662 - component-emitter "~1.3.0" 9663 - debug "~4.3.1" 9664 - engine.io-client "~5.1.1" 10000 + debug "~4.3.2" 10001 + engine.io-client "~6.0.1" 9665 10002 parseuri "0.0.6" 9666 - socket.io-parser "~4.0.4" 10003 + socket.io-parser "~4.1.1" 9667 10004 9668 10005 socket.io-parser@~4.0.4: 9669 10006 version "4.0.4" ··· 9671 10010 dependencies: 9672 10011 "@types/component-emitter" "^1.2.10" 9673 10012 component-emitter "~1.3.0" 10013 + debug "~4.3.1" 10014 + 10015 + socket.io-parser@~4.1.1: 10016 + version "4.1.1" 10017 + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.1.1.tgz#0ad53d980781cab1eabe320417d8480c0133e62d" 10018 + integrity sha512-USQVLSkDWE5nbcY760ExdKaJxCE65kcsG/8k5FDGZVVxpD1pA7hABYXYkCUvxUuYYh/+uQw0N/fvBzfT8o07KA== 10019 + dependencies: 10020 + "@socket.io/component-emitter" "~3.0.0" 9674 10021 debug "~4.3.1" 9675 10022 9676 10023 socket.io@^4.2.0: ··· 9736 10067 resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" 9737 10068 integrity sha1-mIkBnRAkzOVc3AaUmDN+9hhqEaE= 9738 10069 9739 - source-list-map@^2.0.0, source-list-map@^2.0.1: 10070 + source-list-map@^2.0.0: 9740 10071 version "2.0.1" 9741 10072 resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 9742 10073 integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 9743 10074 9744 - source-map-support@^0.5.5, source-map-support@~0.5.19: 9745 - version "0.5.19" 9746 - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 9747 - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 10075 + source-map-js@^0.6.2: 10076 + version "0.6.2" 10077 + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e" 10078 + integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug== 10079 + 10080 + source-map-support@^0.5.5: 10081 + version "0.5.20" 10082 + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" 10083 + integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== 10084 + dependencies: 10085 + buffer-from "^1.0.0" 10086 + source-map "^0.6.0" 10087 + 10088 + source-map-support@~0.5.20: 10089 + version "0.5.21" 10090 + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 10091 + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 9748 10092 dependencies: 9749 10093 buffer-from "^1.0.0" 9750 10094 source-map "^0.6.0" ··· 9851 10169 streamroller@^3.0.2: 9852 10170 version "3.0.2" 9853 10171 resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.0.2.tgz#30418d0eee3d6c93ec897f892ed098e3a81e68b7" 9854 - integrity "sha1-MEGNDu49bJPsiX+JLtCY46geaLc= sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA==" 10172 + integrity sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA== 9855 10173 dependencies: 9856 10174 date-format "^4.0.3" 9857 10175 debug "^4.1.1" ··· 9871 10189 is-fullwidth-code-point "^1.0.0" 9872 10190 strip-ansi "^3.0.0" 9873 10191 9874 - "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0: 9875 - version "4.2.2" 9876 - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 9877 - integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 10192 + "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 10193 + version "4.2.3" 10194 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 10195 + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 9878 10196 dependencies: 9879 10197 emoji-regex "^8.0.0" 9880 10198 is-fullwidth-code-point "^3.0.0" 9881 - strip-ansi "^6.0.0" 10199 + strip-ansi "^6.0.1" 9882 10200 9883 10201 string.fromcodepoint@^0.2.1: 9884 10202 version "0.2.1" ··· 9890 10208 resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz#004ad44c8afc727527b108cd462b4d971cd469bc" 9891 10209 integrity sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg== 9892 10210 9893 - string.prototype.matchall@^4.0.4: 9894 - version "4.0.5" 9895 - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da" 9896 - integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q== 10211 + string.prototype.matchall@^4.0.5: 10212 + version "4.0.6" 10213 + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa" 10214 + integrity sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg== 9897 10215 dependencies: 9898 10216 call-bind "^1.0.2" 9899 10217 define-properties "^1.1.3" 9900 - es-abstract "^1.18.2" 10218 + es-abstract "^1.19.1" 9901 10219 get-intrinsic "^1.1.1" 9902 10220 has-symbols "^1.0.2" 9903 10221 internal-slot "^1.0.3" ··· 9905 10223 side-channel "^1.0.4" 9906 10224 9907 10225 string.prototype.trim@^1.2.1: 9908 - version "1.2.4" 9909 - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz#6014689baf5efaf106ad031a5fa45157666ed1bd" 9910 - integrity sha512-hWCk/iqf7lp0/AgTF7/ddO1IWtSNPASjlzCicV5irAVdE1grjsneK26YG6xACMBEdCvO8fUST0UzDMh/2Qy+9Q== 10226 + version "1.2.5" 10227 + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.5.tgz#a587bcc8bfad8cb9829a577f5de30dd170c1682c" 10228 + integrity sha512-Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg== 9911 10229 dependencies: 9912 10230 call-bind "^1.0.2" 9913 10231 define-properties "^1.1.3" 9914 - es-abstract "^1.18.0-next.2" 10232 + es-abstract "^1.19.1" 9915 10233 9916 10234 string.prototype.trimend@^1.0.4: 9917 10235 version "1.0.4" ··· 9955 10273 dependencies: 9956 10274 ansi-regex "^2.0.0" 9957 10275 9958 - strip-ansi@^6.0.0: 9959 - version "6.0.0" 9960 - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 9961 - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 10276 + strip-ansi@^6.0.0, strip-ansi@^6.0.1: 10277 + version "6.0.1" 10278 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 10279 + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 9962 10280 dependencies: 9963 - ansi-regex "^5.0.0" 10281 + ansi-regex "^5.0.1" 9964 10282 9965 10283 strip-comments@^2.0.1: 9966 10284 version "2.0.1" ··· 9996 10314 dependencies: 9997 10315 escape-string-regexp "^1.0.2" 9998 10316 10317 + strnum@^1.0.4: 10318 + version "1.0.4" 10319 + resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.4.tgz#e97e36a7d6ba9f93d0d6b496b2ed0678d422832b" 10320 + integrity sha512-lMzNMfDpaQOLt4B2mEbfzYS0+T7dvCXeojnlGf6f1AygvWDMcWyXYaLbyICfjVu29sErR8fnRagQfBW/N/hGgw== 10321 + 9999 10322 style-loader@^2.0.0: 10000 10323 version "2.0.0" 10001 10324 resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-2.0.0.tgz#9669602fd4690740eaaec137799a03addbbc393c" ··· 10024 10337 inline-style-parser "0.1.1" 10025 10338 10026 10339 styled-components@^5.2.1: 10027 - version "5.2.1" 10028 - resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.2.1.tgz#6ed7fad2dc233825f64c719ffbdedd84ad79101a" 10029 - integrity sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ== 10340 + version "5.3.3" 10341 + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743" 10342 + integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw== 10030 10343 dependencies: 10031 10344 "@babel/helper-module-imports" "^7.0.0" 10032 10345 "@babel/traverse" "^7.4.5" 10033 10346 "@emotion/is-prop-valid" "^0.8.8" 10034 10347 "@emotion/stylis" "^0.8.4" 10035 10348 "@emotion/unitless" "^0.7.4" 10036 - babel-plugin-styled-components ">= 1" 10349 + babel-plugin-styled-components ">= 1.12.0" 10037 10350 css-to-react-native "^3.0.0" 10038 10351 hoist-non-react-statics "^3.0.0" 10039 10352 shallowequal "^1.1.0" ··· 10052 10365 resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91" 10053 10366 integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag== 10054 10367 10055 - stylis@^4.0.3, stylis@^4.0.7: 10368 + stylis@^4.0.10, stylis@^4.0.7: 10056 10369 version "4.0.10" 10057 10370 resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.10.tgz#446512d1097197ab3f02fb3c258358c3f7a14240" 10058 10371 integrity sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg== ··· 10076 10389 dependencies: 10077 10390 has-flag "^3.0.0" 10078 10391 10079 - supports-color@^7.0.0, supports-color@^7.1.0: 10392 + supports-color@^7.1.0: 10080 10393 version "7.2.0" 10081 10394 resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 10082 10395 integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 10396 + dependencies: 10397 + has-flag "^4.0.0" 10398 + 10399 + supports-color@^8.0.0: 10400 + version "8.1.1" 10401 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 10402 + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 10083 10403 dependencies: 10084 10404 has-flag "^4.0.0" 10085 10405 ··· 10155 10461 unquote "~1.1.1" 10156 10462 util.promisify "~1.0.0" 10157 10463 10158 - svgo@^2.3.0: 10159 - version "2.7.0" 10160 - resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.7.0.tgz#e164cded22f4408fe4978f082be80159caea1e2d" 10161 - integrity sha512-aDLsGkre4fTDCWvolyW+fs8ZJFABpzLXbtdK1y71CKnHzAnpDxKXPj2mNKj+pyOXUCzFHzuxRJ94XOFygOWV3w== 10162 - dependencies: 10163 - "@trysound/sax" "0.2.0" 10164 - commander "^7.2.0" 10165 - css-select "^4.1.3" 10166 - css-tree "^1.1.3" 10167 - csso "^4.2.0" 10168 - nanocolors "^0.1.12" 10169 - stable "^0.1.8" 10170 - 10171 10464 svgo@^2.7.0: 10172 10465 version "2.8.0" 10173 10466 resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" ··· 10173 10492 resolved "https://registry.yarnpkg.com/svgpath/-/svgpath-2.3.1.tgz#b102334bebd2244b4818460ba2ebad52716a0d43" 10174 10493 integrity sha512-wNz6lCoj+99GMoyU7SozTfPqiLHz6WcJYZ30Z+F4lF/gPtxWHBCpZ4DhoDI0+oZ0dObKyYsJdSPGbL2mJq/qCg== 10175 10494 10176 - symbol-observable@1.2.0: 10177 - version "1.2.0" 10178 - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" 10179 - integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== 10180 - 10181 10495 syntax-error@^1.1.1: 10182 10496 version "1.4.0" 10183 10497 resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" ··· 10180 10504 dependencies: 10181 10505 acorn-node "^1.2.0" 10182 10506 10183 - table@^6.0.4: 10184 - version "6.7.1" 10185 - resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" 10186 - integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== 10507 + table@^6.0.9: 10508 + version "6.7.3" 10509 + resolved "https://registry.yarnpkg.com/table/-/table-6.7.3.tgz#255388439715a738391bd2ee4cbca89a4d05a9b7" 10510 + integrity sha512-5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw== 10187 10511 dependencies: 10188 10512 ajv "^8.0.1" 10189 - lodash.clonedeep "^4.5.0" 10190 10513 lodash.truncate "^4.4.2" 10191 10514 slice-ansi "^4.0.0" 10192 - string-width "^4.2.0" 10193 - strip-ansi "^6.0.0" 10515 + string-width "^4.2.3" 10516 + strip-ansi "^6.0.1" 10194 10517 10195 10518 tablesorter@^2.31.2: 10196 10519 version "2.31.3" ··· 10199 10524 jquery ">=1.2.6" 10200 10525 10201 10526 tapable@^2.1.1, tapable@^2.2.0: 10202 - version "2.2.0" 10203 - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b" 10204 - integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw== 10527 + version "2.2.1" 10528 + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 10529 + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 10205 10530 10206 10531 tar-stream@^1.5.2: 10207 10532 version "1.6.2" ··· 10252 10577 moment-timezone "^0.5.31" 10253 10578 popper.js "^1.16.1" 10254 10579 10255 - tempusdominus-core@^5.0.3: 10256 - version "5.19.0" 10257 - resolved "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.19.0.tgz#ccbd2c35109b0a4b96c61513e53e0175ec4896bd" 10258 - integrity sha512-7a4oBQw4cjz6C87BLRg3KHVvzpnPlnRTkuDZ7SwcJayQQ4QgOryX5u6wj0q07TXhgtMQLCntZO6nVhHIKPaeUw== 10580 + tempusdominus-core@^5.19.3: 10581 + version "5.19.3" 10582 + resolved "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.19.3.tgz#7dba3e9d40f9d9753b92361619532425813c40b8" 10583 + integrity sha512-WXBVXcBG/hErB6u9gdUs+vzANvCU1kd1ykzL4kolPB3h1OEv20OKUW5qz1iynxyqRFPa1NWY9gwRu5d+MjXEuQ== 10259 10584 dependencies: 10260 - jquery "^3.5.0" 10261 - moment "~2.24.0" 10262 - moment-timezone "^0.5.28" 10585 + jquery "^3.6.0" 10586 + moment "~2.29.2" 10587 + moment-timezone "^0.5.34" 10263 10588 10264 - terser-webpack-plugin@^5.1.1: 10265 - version "5.1.2" 10266 - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.2.tgz#51d295eb7cc56785a67a372575fdc46e42d5c20c" 10267 - integrity sha512-6QhDaAiVHIQr5Ab3XUWZyDmrIPCHMiqJVljMF91YKyqwKkL5QHnYMkrMBy96v9Z7ev1hGhSEw1HQZc2p/s5Z8Q== 10589 + terser-webpack-plugin@^5.1.1, terser-webpack-plugin@^5.1.3: 10590 + version "5.2.4" 10591 + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.2.4.tgz#ad1be7639b1cbe3ea49fab995cbe7224b31747a1" 10592 + integrity sha512-E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA== 10268 10593 dependencies: 10269 - jest-worker "^26.6.2" 10594 + jest-worker "^27.0.6" 10270 10595 p-limit "^3.1.0" 10271 - schema-utils "^3.0.0" 10272 - serialize-javascript "^5.0.1" 10596 + schema-utils "^3.1.1" 10597 + serialize-javascript "^6.0.0" 10273 10598 source-map "^0.6.1" 10274 - terser "^5.7.0" 10599 + terser "^5.7.2" 10275 10600 10276 - terser@^5.7.0: 10277 - version "5.7.0" 10278 - resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" 10279 - integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== 10601 + terser@^5.7.2: 10602 + version "5.9.0" 10603 + resolved "https://registry.yarnpkg.com/terser/-/terser-5.9.0.tgz#47d6e629a522963240f2b55fcaa3c99083d2c351" 10604 + integrity sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ== 10280 10605 dependencies: 10281 10606 commander "^2.20.0" 10282 10607 source-map "~0.7.2" 10283 - source-map-support "~0.5.19" 10608 + source-map-support "~0.5.20" 10609 + 10610 + text-segmentation@^1.0.2: 10611 + version "1.0.2" 10612 + resolved "https://registry.yarnpkg.com/text-segmentation/-/text-segmentation-1.0.2.tgz#1f828fa14aa101c114ded1bda35ba7dcc17c9858" 10613 + integrity sha512-uTqvLxdBrVnx/CFQOtnf8tfzSXFm+1Qxau7Xi54j4OPTZokuDOX8qncQzrg2G8ZicAMOM8TgzFAYTb+AqNO4Cw== 10614 + dependencies: 10615 + utrie "^1.0.1" 10284 10616 10285 10617 text-table@^0.2.0: 10286 10618 version "0.2.0" ··· 10335 10653 integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== 10336 10654 10337 10655 tippy.js@^6.3.1: 10338 - version "6.3.1" 10339 - resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.1.tgz#3788a007be7015eee0fd589a66b98fb3f8f10181" 10340 - integrity sha512-JnFncCq+rF1dTURupoJ4yPie5Cof978inW6/4S6kmWV7LL9YOSEVMifED3KdrVPEG+Z/TFH2CDNJcQEfaeuQww== 10656 + version "6.3.5" 10657 + resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.5.tgz#cbc99d34f87ccc127e6460032b86c8d47971d38f" 10658 + integrity sha512-B9hAQ5KNF+jDJRg6cRysV6Y3J+5fiNfD60GuXR5TP0sfrcltpgdzVc7f1wMtjQ3W0+Xsy80CDvk0Z+Vr0cM4sQ== 10341 10659 dependencies: 10342 - "@popperjs/core" "^2.8.3" 10660 + "@popperjs/core" "^2.9.0" 10343 10661 10344 10662 tmp@^0.2.1: 10345 10663 version "0.2.1" ··· 10370 10688 dependencies: 10371 10689 is-number "^7.0.0" 10372 10690 10373 - toggle-selection@^1.0.6: 10374 - version "1.0.6" 10375 - resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" 10376 - integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI= 10377 - 10378 10691 toidentifier@1.0.0: 10379 10692 version "1.0.0" 10380 10693 resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" ··· 10398 10721 integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== 10399 10722 10400 10723 tslib@^2.2.0: 10401 - version "2.2.0" 10402 - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" 10403 - integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== 10724 + version "2.3.1" 10725 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 10726 + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 10404 10727 10405 10728 ttf2eot@^2.0.0: 10406 10729 version "2.0.0" ··· 10453 10776 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 10454 10777 integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 10455 10778 10456 - type-fest@^0.8.1: 10457 - version "0.8.1" 10458 - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 10459 - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 10779 + type-fest@^0.20.2: 10780 + version "0.20.2" 10781 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 10782 + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 10460 10783 10461 10784 type-is@~1.6.17: 10462 10785 version "1.6.18" ··· 10482 10805 integrity sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ== 10483 10806 10484 10807 uglify-js@^3.1.4: 10485 - version "3.14.2" 10486 - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.2.tgz#d7dd6a46ca57214f54a2d0a43cad0f35db82ac99" 10487 - integrity sha512-rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A== 10808 + version "3.14.3" 10809 + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.3.tgz#c0f25dfea1e8e5323eccf59610be08b6043c15cf" 10810 + integrity sha512-mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g== 10488 10811 10489 10812 umd@^3.0.0: 10490 10813 version "3.0.3" ··· 10598 10921 universalify@^2.0.0: 10599 10922 version "2.0.0" 10600 10923 resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 10601 - integrity "sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc= sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" 10924 + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 10602 10925 10603 10926 unpipe@1.0.0, unpipe@~1.0.0: 10604 10927 version "1.0.0" ··· 10681 11004 inherits "2.0.1" 10682 11005 10683 11006 util@~0.12.0: 10684 - version "0.12.3" 10685 - resolved "https://registry.yarnpkg.com/util/-/util-0.12.3.tgz#971bb0292d2cc0c892dab7c6a5d37c2bec707888" 10686 - integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog== 11007 + version "0.12.4" 11008 + resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" 11009 + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== 10687 11010 dependencies: 10688 11011 inherits "^2.0.3" 10689 11012 is-arguments "^1.0.4" ··· 10697 11020 resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 10698 11021 integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 10699 11022 11023 + utrie@^1.0.1: 11024 + version "1.0.1" 11025 + resolved "https://registry.yarnpkg.com/utrie/-/utrie-1.0.1.tgz#e155235ebcbddc89ae09261ab6e773ce61401b2f" 11026 + integrity sha512-JPaDXF3vzgZxfeEwutdGzlrNoVFL5UvZcbO6Qo9D4GoahrieUPoMU8GCpVpR7MQqcKhmShIh8VlbEN3PLM3EBg== 11027 + dependencies: 11028 + base64-arraybuffer "^1.0.1" 11029 + 10700 11030 uuid@^3.0.1: 10701 11031 version "3.4.0" 10702 11032 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 10703 11033 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 10704 11034 10705 - v8-compile-cache@^2.0.3, v8-compile-cache@^2.2.0: 11035 + v8-compile-cache@^2.0.3: 10706 11036 version "2.3.0" 10707 11037 resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 10708 11038 integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== ··· 10722 11038 filename-reserved-regex "^2.0.0" 10723 11039 10724 11040 vanilla-picker@^2.11.2: 10725 - version "2.11.2" 10726 - resolved "https://registry.yarnpkg.com/vanilla-picker/-/vanilla-picker-2.11.2.tgz#eaa24efa68c27e7ee9e0776df55d6913b855f133" 10727 - integrity sha512-2cP7LlUnxHxwOf06ReUVtd2RFJMnJGaxN2s0p8wzBH3In5b00Le7fFZ9VrIoBE0svZkSq/BC/Pwq/k/9n+AA2g== 11041 + version "2.12.1" 11042 + resolved "https://registry.yarnpkg.com/vanilla-picker/-/vanilla-picker-2.12.1.tgz#6e619eecf553891b8d2d042b745a23c91f19f34c" 11043 + integrity sha512-2qrEP9VYylKXbyzXKsbu2dferBTvqnlsr29XjHwFE+/MEp0VNj6oEUESLDtKZ7DWzGdSv1x/+ujqFZF+KsO3cg== 10728 11044 dependencies: 10729 11045 "@sphinxxxx/color-conversion" "^2.2.2" 10730 11046 ··· 10755 11071 resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 10756 11072 integrity sha1-wGavtYK7HLQSjWDqkjkulNXp2+w= 10757 11073 10758 - watchpack@^2.0.0: 11074 + watchpack@^2.2.0: 10759 11075 version "2.2.0" 10760 11076 resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.2.0.tgz#47d78f5415fe550ecd740f99fe2882323a58b1ce" 10761 11077 integrity sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA== ··· 10782 11098 loader-utils "^2.0.0" 10783 11099 10784 11100 webpack-bundle-analyzer@^4.4.0: 10785 - version "4.4.2" 10786 - resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.4.2.tgz#39898cf6200178240910d629705f0f3493f7d666" 10787 - integrity sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ== 11101 + version "4.5.0" 11102 + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz#1b0eea2947e73528754a6f9af3e91b2b6e0f79d5" 11103 + integrity sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ== 10788 11104 dependencies: 10789 11105 acorn "^8.0.4" 10790 11106 acorn-walk "^8.0.0" 10791 11107 chalk "^4.1.0" 10792 - commander "^6.2.0" 11108 + commander "^7.2.0" 10793 11109 gzip-size "^6.0.0" 10794 11110 lodash "^4.17.20" 10795 11111 opener "^1.5.2" ··· 10797 11113 ws "^7.3.1" 10798 11114 10799 11115 webpack-cli@^4.5.0: 10800 - version "4.7.0" 10801 - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.7.0.tgz#3195a777f1f802ecda732f6c95d24c0004bc5a35" 10802 - integrity sha512-7bKr9182/sGfjFm+xdZSwgQuFjgEcy0iCTIBxRUeteJ2Kr8/Wz0qNJX+jw60LU36jApt4nmMkep6+W5AKhok6g== 11116 + version "4.9.1" 11117 + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.9.1.tgz#b64be825e2d1b130f285c314caa3b1ba9a4632b3" 11118 + integrity sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ== 10803 11119 dependencies: 10804 11120 "@discoveryjs/json-ext" "^0.5.0" 10805 - "@webpack-cli/configtest" "^1.0.3" 10806 - "@webpack-cli/info" "^1.2.4" 10807 - "@webpack-cli/serve" "^1.4.0" 10808 - colorette "^1.2.1" 11121 + "@webpack-cli/configtest" "^1.1.0" 11122 + "@webpack-cli/info" "^1.4.0" 11123 + "@webpack-cli/serve" "^1.6.0" 11124 + colorette "^2.0.14" 10809 11125 commander "^7.0.0" 10810 11126 execa "^5.0.0" 10811 11127 fastest-levenshtein "^1.0.12" 10812 11128 import-local "^3.0.2" 10813 11129 interpret "^2.2.0" 10814 11130 rechoir "^0.7.0" 10815 - v8-compile-cache "^2.2.0" 10816 11131 webpack-merge "^5.7.3" 10817 11132 10818 11133 webpack-merge@^4.1.5: ··· 10822 11139 lodash "^4.17.15" 10823 11140 10824 11141 webpack-merge@^5.7.3: 10825 - version "5.7.3" 10826 - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz#2a0754e1877a25a8bbab3d2475ca70a052708213" 10827 - integrity sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA== 11142 + version "5.8.0" 11143 + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" 11144 + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== 10828 11145 dependencies: 10829 11146 clone-deep "^4.0.1" 10830 11147 wildcard "^2.0.0" ··· 10845 11162 source-list-map "^2.0.0" 10846 11163 source-map "~0.6.1" 10847 11164 10848 - webpack-sources@^2.1.1: 10849 - version "2.3.0" 10850 - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.0.tgz#9ed2de69b25143a4c18847586ad9eccb19278cfa" 10851 - integrity sha512-WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ== 10852 - dependencies: 10853 - source-list-map "^2.0.1" 10854 - source-map "^0.6.1" 11165 + webpack-sources@^3.2.0: 11166 + version "3.2.1" 11167 + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.1.tgz#251a7d9720d75ada1469ca07dbb62f3641a05b6d" 11168 + integrity sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA== 10855 11169 10856 11170 webpack@^5.21.2: 10857 - version "5.24.3" 10858 - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.24.3.tgz#6ec0f5059f8d7c7961075fa553cfce7b7928acb3" 10859 - integrity sha512-x7lrWZ7wlWAdyKdML6YPvfVZkhD1ICuIZGODE5SzKJjqI9A4SpqGTjGJTc6CwaHqn19gGaoOR3ONJ46nYsn9rw== 11171 + version "5.61.0" 11172 + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.61.0.tgz#fa827f0ee9bdfd141dd73c3e891e955ebd52fe7f" 11173 + integrity sha512-fPdTuaYZ/GMGFm4WrPi2KRCqS1vDp773kj9S0iI5Uc//5cszsFEDgHNaX4Rj1vobUiU1dFIV3mA9k1eHeluFpw== 10860 11174 dependencies: 10861 11175 "@types/eslint-scope" "^3.7.0" 10862 - "@types/estree" "^0.0.46" 10863 - "@webassemblyjs/ast" "1.11.0" 10864 - "@webassemblyjs/wasm-edit" "1.11.0" 10865 - "@webassemblyjs/wasm-parser" "1.11.0" 10866 - acorn "^8.0.4" 11176 + "@types/estree" "^0.0.50" 11177 + "@webassemblyjs/ast" "1.11.1" 11178 + "@webassemblyjs/wasm-edit" "1.11.1" 11179 + "@webassemblyjs/wasm-parser" "1.11.1" 11180 + acorn "^8.4.1" 11181 + acorn-import-assertions "^1.7.6" 10867 11182 browserslist "^4.14.5" 10868 11183 chrome-trace-event "^1.0.2" 10869 - enhanced-resolve "^5.7.0" 10870 - es-module-lexer "^0.4.0" 10871 - eslint-scope "^5.1.1" 11184 + enhanced-resolve "^5.8.3" 11185 + es-module-lexer "^0.9.0" 11186 + eslint-scope "5.1.1" 10872 11187 events "^3.2.0" 10873 11188 glob-to-regexp "^0.4.1" 10874 11189 graceful-fs "^4.2.4" ··· 10874 11193 loader-runner "^4.2.0" 10875 11194 mime-types "^2.1.27" 10876 11195 neo-async "^2.6.2" 10877 - schema-utils "^3.0.0" 11196 + schema-utils "^3.1.0" 10878 11197 tapable "^2.1.1" 10879 - terser-webpack-plugin "^5.1.1" 10880 - watchpack "^2.0.0" 10881 - webpack-sources "^2.1.1" 11198 + terser-webpack-plugin "^5.1.3" 11199 + watchpack "^2.2.0" 11200 + webpack-sources "^3.2.0" 10882 11201 10883 11202 which-boxed-primitive@^1.0.2: 10884 11203 version "1.0.2" ··· 10892 11211 is-symbol "^1.0.3" 10893 11212 10894 11213 which-typed-array@^1.1.2: 10895 - version "1.1.4" 10896 - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz#8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff" 10897 - integrity sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA== 11214 + version "1.1.7" 11215 + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.7.tgz#2761799b9a22d4b8660b3c1b40abaa7739691793" 11216 + integrity sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw== 10898 11217 dependencies: 10899 - available-typed-arrays "^1.0.2" 10900 - call-bind "^1.0.0" 10901 - es-abstract "^1.18.0-next.1" 11218 + available-typed-arrays "^1.0.5" 11219 + call-bind "^1.0.2" 11220 + es-abstract "^1.18.5" 10902 11221 foreach "^2.0.5" 10903 - function-bind "^1.1.1" 10904 - has-symbols "^1.0.1" 10905 - is-typed-array "^1.1.3" 11222 + has-tostringtag "^1.0.0" 11223 + is-typed-array "^1.1.7" 10906 11224 10907 11225 which@^1.2.1, which@^1.2.9: 10908 11226 version "1.3.1" ··· 10960 11280 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 10961 11281 integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 10962 11282 10963 - ws@^7.3.1, ws@~7.4.2: 10964 - version "7.4.6" 10965 - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 10966 - integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 11283 + ws@^7.3.1: 11284 + version "7.5.5" 11285 + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" 11286 + integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== 10967 11287 10968 11288 ws@~8.2.3: 10969 11289 version "8.2.3" ··· 10974 11294 version "0.5.0" 10975 11295 resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz#193cb96b84aa3486127ea6272c4596354cb4962e" 10976 11296 integrity sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA== 11297 + 11298 + xmlhttprequest-ssl@~2.0.0: 11299 + version "2.0.0" 11300 + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz#91360c86b914e67f44dce769180027c0da618c67" 11301 + integrity sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A== 10977 11302 10978 11303 xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.1: 10979 11304 version "4.0.2" ··· 10991 11306 integrity sha512-DsS9fqhXHacEmsPxBJZvfj2la30Iz9xk+UKjhQgnYNkrUIN5CYLbw7WEfz117c7+S86S/tpHPfvNxJsF5/G8wQ== 10992 11307 10993 11308 xterm-addon-search@^0.8.0: 10994 - version "0.8.0" 10995 - resolved "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.0.tgz#e33eab918df7eac7e7baf95dd2b3d14133754881" 10996 - integrity sha512-MPJGPVPpHRUw9cLIuqQbrVepmENMOybVUSxIALz5h1ryyQBrVqVujq2hL5aroX5/dZJoHx9lGHQTVLQ07SKgKA== 11309 + version "0.8.1" 11310 + resolved "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.1.tgz#dfc557e9bcf5fd8ed96292c0d271aa865bc545d5" 11311 + integrity sha512-OtOaC9gxD2Q4ZnjZrCSRZmKLwwUjXX3gP7mIzq8Rs50317DGRDqgTLuHTYv/Nx/LvI5ceVFRYCxK36Ixs1nXNw== 10997 11312 10998 11313 xterm-addon-web-links@^0.4.0: 10999 11314 version "0.4.0" ··· 11001 11316 integrity sha512-xv8GeiINmx0zENO9hf5k+5bnkaE8mRzF+OBAr9WeFq2eLaQSudioQSiT34M1ofKbzcdjSsKiZm19Rw3i4eXamg== 11002 11317 11003 11318 xterm@^4.11.0: 11004 - version "4.12.0" 11005 - resolved "https://registry.yarnpkg.com/xterm/-/xterm-4.12.0.tgz#db09b425b4dcae5b96f8cbbaaa93b3bc60997ca9" 11006 - integrity sha512-K5mF/p3txUV18mjiZFlElagoHFpqXrm5OYHeoymeXSu8GG/nMaOO/+NRcNCwfdjzAbdQ5VLF32hEHiWWKKm0bw== 11319 + version "4.14.1" 11320 + resolved "https://registry.yarnpkg.com/xterm/-/xterm-4.14.1.tgz#6884cb8fb3b83353b1a98139ea23daedf8e35796" 11321 + integrity sha512-jgzNg5BuGPwq5/M4dGnmbghZvHx2jaj+9crSEt15bV34Za49VziBmCu7zIy88zUKKiGTxeo7aVzirFSJArIMFw== 11007 11322 11008 11323 y18n@^5.0.5: 11009 11324 version "5.0.8" ··· 11020 11335 resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 11021 11336 integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 11022 11337 11023 - yaml@^1.10.0, yaml@^1.7.2: 11338 + yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: 11024 11339 version "1.10.2" 11025 11340 resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 11026 11341 integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 11027 11342 11028 11343 yargs-parser@^20.2.2: 11029 - version "20.2.6" 11030 - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20" 11031 - integrity sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA== 11344 + version "20.2.9" 11345 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 11346 + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 11032 11347 11033 11348 yargs@^16.1.1: 11034 11349 version "16.2.0"
+1252 -1588
pkgs/tools/admin/pgadmin/yarn.nix
··· 34 34 }; 35 35 } 36 36 { 37 + name = "_babel_code_frame___code_frame_7.16.0.tgz"; 38 + path = fetchurl { 39 + name = "_babel_code_frame___code_frame_7.16.0.tgz"; 40 + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz"; 41 + sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 42 + }; 43 + } 44 + { 37 45 name = "_babel_code_frame___code_frame_7.16.7.tgz"; 38 46 path = fetchurl { 39 47 name = "_babel_code_frame___code_frame_7.16.7.tgz"; 40 48 url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz"; 41 49 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 42 - }; 43 - } 44 - { 45 - name = "_babel_compat_data___compat_data_7.14.7.tgz"; 46 - path = fetchurl { 47 - name = "_babel_compat_data___compat_data_7.14.7.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz"; 49 - sha512 = "nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw=="; 50 50 }; 51 51 } 52 52 { ··· 90 90 }; 91 91 } 92 92 { 93 - name = "_babel_generator___generator_7.14.5.tgz"; 94 - path = fetchurl { 95 - name = "_babel_generator___generator_7.14.5.tgz"; 96 - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz"; 97 - sha512 = "y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA=="; 98 - }; 99 - } 100 - { 101 93 name = "_babel_generator___generator_7.17.0.tgz"; 102 94 path = fetchurl { 103 95 name = "_babel_generator___generator_7.17.0.tgz"; ··· 98 106 }; 99 107 } 100 108 { 101 - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; 109 + name = "_babel_generator___generator_7.16.0.tgz"; 102 110 path = fetchurl { 103 - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; 104 - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz"; 105 - sha512 = "EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA=="; 111 + name = "_babel_generator___generator_7.16.0.tgz"; 112 + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.0.tgz"; 113 + sha512 = "RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew=="; 114 + }; 115 + } 116 + { 117 + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.0.tgz"; 118 + path = fetchurl { 119 + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.0.tgz"; 120 + url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"; 121 + sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="; 106 122 }; 107 123 } 108 124 { ··· 119 119 name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.7.tgz"; 120 120 url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; 121 121 sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="; 122 - }; 123 - } 124 - { 125 - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz"; 126 - path = fetchurl { 127 - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz"; 128 - url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz"; 129 - sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 130 122 }; 131 123 } 132 124 { ··· 146 154 }; 147 155 } 148 156 { 149 - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.6.tgz"; 157 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.17.1.tgz"; 150 158 path = fetchurl { 151 - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.6.tgz"; 152 - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz"; 153 - sha512 = "Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg=="; 159 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.17.1.tgz"; 160 + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.1.tgz"; 161 + sha512 = "JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ=="; 162 + }; 163 + } 164 + { 165 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.16.0.tgz"; 166 + path = fetchurl { 167 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.16.0.tgz"; 168 + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz"; 169 + sha512 = "XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA=="; 154 170 }; 155 171 } 156 172 { ··· 170 170 }; 171 171 } 172 172 { 173 - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.14.3.tgz"; 174 - path = fetchurl { 175 - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.14.3.tgz"; 176 - url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz"; 177 - sha512 = "JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA=="; 178 - }; 179 - } 180 - { 181 173 name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.17.0.tgz"; 182 174 path = fetchurl { 183 175 name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.17.0.tgz"; 184 176 url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz"; 185 177 sha512 = "awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA=="; 178 + }; 179 + } 180 + { 181 + name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.16.0.tgz"; 182 + path = fetchurl { 183 + name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.16.0.tgz"; 184 + url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz"; 185 + sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; 186 186 }; 187 187 } 188 188 { ··· 210 210 }; 211 211 } 212 212 { 213 - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.13.0.tgz"; 214 - path = fetchurl { 215 - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.13.0.tgz"; 216 - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz"; 217 - sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA=="; 218 - }; 219 - } 220 - { 221 213 name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.7.tgz"; 222 214 path = fetchurl { 223 215 name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.7.tgz"; ··· 226 234 }; 227 235 } 228 236 { 237 + name = "_babel_helper_function_name___helper_function_name_7.16.0.tgz"; 238 + path = fetchurl { 239 + name = "_babel_helper_function_name___helper_function_name_7.16.0.tgz"; 240 + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"; 241 + sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="; 242 + }; 243 + } 244 + { 229 245 name = "_babel_helper_function_name___helper_function_name_7.16.7.tgz"; 230 246 path = fetchurl { 231 247 name = "_babel_helper_function_name___helper_function_name_7.16.7.tgz"; 232 248 url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; 233 249 sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 234 - }; 235 - } 236 - { 237 - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz"; 238 - path = fetchurl { 239 - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz"; 240 - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"; 241 - sha512 = "I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg=="; 242 250 }; 243 251 } 244 252 { ··· 250 258 }; 251 259 } 252 260 { 261 + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.0.tgz"; 262 + path = fetchurl { 263 + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.0.tgz"; 264 + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"; 265 + sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="; 266 + }; 267 + } 268 + { 253 269 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; 254 270 path = fetchurl { 255 271 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; 256 272 url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"; 257 273 sha512 = "R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ=="; 274 + }; 275 + } 276 + { 277 + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.0.tgz"; 278 + path = fetchurl { 279 + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.0.tgz"; 280 + url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"; 281 + sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="; 258 282 }; 259 283 } 260 284 { ··· 282 274 }; 283 275 } 284 276 { 285 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz"; 277 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.16.0.tgz"; 286 278 path = fetchurl { 287 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.14.7.tgz"; 288 - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz"; 289 - sha512 = "TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA=="; 279 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.16.0.tgz"; 280 + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz"; 281 + sha512 = "bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ=="; 290 282 }; 291 283 } 292 284 { ··· 303 295 name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz"; 304 296 url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 305 297 sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 298 + }; 299 + } 300 + { 301 + name = "_babel_helper_module_imports___helper_module_imports_7.16.0.tgz"; 302 + path = fetchurl { 303 + name = "_babel_helper_module_imports___helper_module_imports_7.16.0.tgz"; 304 + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"; 305 + sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="; 306 306 }; 307 307 } 308 308 { ··· 338 322 }; 339 323 } 340 324 { 341 - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; 325 + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.0.tgz"; 342 326 path = fetchurl { 343 - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; 344 - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"; 345 - sha512 = "IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA=="; 327 + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.0.tgz"; 328 + url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"; 329 + sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="; 346 330 }; 347 331 } 348 332 { ··· 370 354 }; 371 355 } 372 356 { 373 - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz"; 374 - path = fetchurl { 375 - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz"; 376 - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz"; 377 - sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 378 - }; 379 - } 380 - { 381 357 name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.8.tgz"; 382 358 path = fetchurl { 383 359 name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.8.tgz"; 384 360 url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; 385 361 sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; 386 - }; 387 - } 388 - { 389 - name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz"; 390 - path = fetchurl { 391 - name = "_babel_helper_replace_supers___helper_replace_supers_7.14.5.tgz"; 392 - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz"; 393 - sha512 = "3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow=="; 394 362 }; 395 363 } 396 364 { ··· 386 386 }; 387 387 } 388 388 { 389 - name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz"; 389 + name = "_babel_helper_replace_supers___helper_replace_supers_7.16.0.tgz"; 390 390 path = fetchurl { 391 - name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz"; 392 - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 393 - sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 391 + name = "_babel_helper_replace_supers___helper_replace_supers_7.16.0.tgz"; 392 + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz"; 393 + sha512 = "TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA=="; 394 394 }; 395 395 } 396 396 { ··· 402 402 }; 403 403 } 404 404 { 405 - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.12.1.tgz"; 406 - path = fetchurl { 407 - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.12.1.tgz"; 408 - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"; 409 - sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 410 - }; 411 - } 412 - { 413 405 name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; 414 406 path = fetchurl { 415 407 name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; 416 408 url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"; 417 409 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 418 - }; 419 - } 420 - { 421 - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; 422 - path = fetchurl { 423 - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; 424 - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"; 425 - sha512 = "hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="; 426 410 }; 427 411 } 428 412 { ··· 418 434 }; 419 435 } 420 436 { 421 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; 437 + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; 422 438 path = fetchurl { 423 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; 424 - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; 425 - sha512 = "pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="; 439 + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; 440 + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"; 441 + sha512 = "hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="; 442 + }; 443 + } 444 + { 445 + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.0.tgz"; 446 + path = fetchurl { 447 + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.0.tgz"; 448 + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"; 449 + sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="; 426 450 }; 427 451 } 428 452 { ··· 442 450 }; 443 451 } 444 452 { 445 - name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; 453 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; 446 454 path = fetchurl { 447 - name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; 448 - url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 449 - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 455 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; 456 + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 457 + sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 450 458 }; 451 459 } 452 460 { ··· 458 466 }; 459 467 } 460 468 { 461 - name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz"; 469 + name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; 462 470 path = fetchurl { 463 - name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz"; 464 - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz"; 465 - sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA=="; 471 + name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; 472 + url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 473 + sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 466 474 }; 467 475 } 468 476 { ··· 498 506 }; 499 507 } 500 508 { 509 + name = "_babel_highlight___highlight_7.16.0.tgz"; 510 + path = fetchurl { 511 + name = "_babel_highlight___highlight_7.16.0.tgz"; 512 + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz"; 513 + sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; 514 + }; 515 + } 516 + { 501 517 name = "_babel_highlight___highlight_7.16.10.tgz"; 502 518 path = fetchurl { 503 519 name = "_babel_highlight___highlight_7.16.10.tgz"; ··· 519 519 name = "_babel_parser___parser_7.14.7.tgz"; 520 520 url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz"; 521 521 sha512 = "X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="; 522 + }; 523 + } 524 + { 525 + name = "_babel_parser___parser_7.16.2.tgz"; 526 + path = fetchurl { 527 + name = "_babel_parser___parser_7.16.2.tgz"; 528 + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.2.tgz"; 529 + sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw=="; 522 530 }; 523 531 } 524 532 { ··· 551 543 name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.16.7.tgz"; 552 544 url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"; 553 545 sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw=="; 554 - }; 555 - } 556 - { 557 - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.8.tgz"; 558 - path = fetchurl { 559 - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.8.tgz"; 560 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz"; 561 - sha512 = "rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA=="; 562 546 }; 563 547 } 564 548 { ··· 586 586 }; 587 587 } 588 588 { 589 - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz"; 590 - path = fetchurl { 591 - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz"; 592 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz"; 593 - sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ=="; 594 - }; 595 - } 596 - { 597 589 name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.7.tgz"; 598 590 path = fetchurl { 599 591 name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.7.tgz"; 600 592 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; 601 593 sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; 602 - }; 603 - } 604 - { 605 - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.14.2.tgz"; 606 - path = fetchurl { 607 - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.14.2.tgz"; 608 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz"; 609 - sha512 = "sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ=="; 610 594 }; 611 595 } 612 596 { ··· 602 618 }; 603 619 } 604 620 { 605 - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz"; 606 - path = fetchurl { 607 - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz"; 608 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz"; 609 - sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q=="; 610 - }; 611 - } 612 - { 613 621 name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.7.tgz"; 614 622 path = fetchurl { 615 623 name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.7.tgz"; 616 624 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; 617 625 sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; 618 - }; 619 - } 620 - { 621 - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz"; 622 - path = fetchurl { 623 - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz"; 624 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz"; 625 - sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A=="; 626 626 }; 627 627 } 628 628 { ··· 618 650 }; 619 651 } 620 652 { 621 - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz"; 622 - path = fetchurl { 623 - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz"; 624 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz"; 625 - sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A=="; 626 - }; 627 - } 628 - { 629 653 name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.7.tgz"; 630 654 path = fetchurl { 631 655 name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.7.tgz"; 632 656 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; 633 657 sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; 634 - }; 635 - } 636 - { 637 - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.14.2.tgz"; 638 - path = fetchurl { 639 - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.14.2.tgz"; 640 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz"; 641 - sha512 = "DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg=="; 642 658 }; 643 659 } 644 660 { ··· 650 698 }; 651 699 } 652 700 { 653 - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz"; 654 - path = fetchurl { 655 - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz"; 656 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz"; 657 - sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 658 - }; 659 - } 660 - { 661 701 name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.7.tgz"; 662 702 path = fetchurl { 663 703 name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.7.tgz"; ··· 658 714 }; 659 715 } 660 716 { 661 - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.8.tgz"; 662 - path = fetchurl { 663 - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.8.tgz"; 664 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz"; 665 - sha512 = "hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ=="; 666 - }; 667 - } 668 - { 669 717 name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.7.tgz"; 670 718 path = fetchurl { 671 719 name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.7.tgz"; 672 720 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; 673 721 sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; 674 - }; 675 - } 676 - { 677 - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz"; 678 - path = fetchurl { 679 - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz"; 680 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz"; 681 - sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q=="; 682 722 }; 683 723 } 684 724 { ··· 682 754 }; 683 755 } 684 756 { 685 - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz"; 686 - path = fetchurl { 687 - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz"; 688 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz"; 689 - sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg=="; 690 - }; 691 - } 692 - { 693 757 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.7.tgz"; 694 758 path = fetchurl { 695 759 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.7.tgz"; 696 760 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; 697 761 sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; 762 + }; 763 + } 764 + { 765 + name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.0.tgz"; 766 + path = fetchurl { 767 + name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.0.tgz"; 768 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz"; 769 + sha512 = "ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g=="; 698 770 }; 699 771 } 700 772 { ··· 743 815 name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz"; 744 816 url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; 745 817 sha512 = "lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="; 746 - }; 747 - } 748 - { 749 - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz"; 750 - path = fetchurl { 751 - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz"; 752 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz"; 753 - sha512 = "d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g=="; 754 818 }; 755 819 } 756 820 { ··· 810 890 }; 811 891 } 812 892 { 813 - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz"; 814 - path = fetchurl { 815 - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz"; 816 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz"; 817 - sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ=="; 818 - }; 819 - } 820 - { 821 893 name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; 822 894 path = fetchurl { 823 895 name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; ··· 818 906 }; 819 907 } 820 908 { 821 - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz"; 909 + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.16.0.tgz"; 822 910 path = fetchurl { 823 - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz"; 824 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz"; 825 - sha512 = "u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q=="; 826 - }; 827 - } 828 - { 829 - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz"; 830 - path = fetchurl { 831 - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz"; 832 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"; 833 - sha512 = "96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="; 911 + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.16.0.tgz"; 912 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz"; 913 + sha512 = "Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ=="; 834 914 }; 835 915 } 836 916 { ··· 834 930 }; 835 931 } 836 932 { 837 - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz"; 838 - path = fetchurl { 839 - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz"; 840 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz"; 841 - sha512 = "3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg=="; 842 - }; 843 - } 844 - { 845 933 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.8.tgz"; 846 934 path = fetchurl { 847 935 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.8.tgz"; 848 936 url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; 849 937 sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; 850 - }; 851 - } 852 - { 853 - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz"; 854 - path = fetchurl { 855 - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz"; 856 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"; 857 - sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="; 858 938 }; 859 939 } 860 940 { ··· 850 962 }; 851 963 } 852 964 { 853 - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.2.tgz"; 854 - path = fetchurl { 855 - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.2.tgz"; 856 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz"; 857 - sha512 = "neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg=="; 858 - }; 859 - } 860 - { 861 965 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.7.tgz"; 862 966 path = fetchurl { 863 967 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.7.tgz"; 864 968 url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; 865 969 sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; 866 - }; 867 - } 868 - { 869 - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz"; 870 - path = fetchurl { 871 - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz"; 872 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"; 873 - sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="; 874 970 }; 875 971 } 876 972 { ··· 866 994 }; 867 995 } 868 996 { 869 - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz"; 870 - path = fetchurl { 871 - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz"; 872 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"; 873 - sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="; 874 - }; 875 - } 876 - { 877 997 name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.7.tgz"; 878 998 path = fetchurl { 879 999 name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.7.tgz"; 880 1000 url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; 881 1001 sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 882 - }; 883 - } 884 - { 885 - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.0.tgz"; 886 - path = fetchurl { 887 - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.0.tgz"; 888 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz"; 889 - sha512 = "zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA=="; 890 1002 }; 891 1003 } 892 1004 { ··· 882 1026 }; 883 1027 } 884 1028 { 885 - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz"; 886 - path = fetchurl { 887 - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz"; 888 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 889 - sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 890 - }; 891 - } 892 - { 893 1029 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.7.tgz"; 894 1030 path = fetchurl { 895 1031 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.7.tgz"; ··· 890 1042 }; 891 1043 } 892 1044 { 893 - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz"; 1045 + name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz"; 894 1046 path = fetchurl { 895 - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz"; 896 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz"; 897 - sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ=="; 1047 + name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz"; 1048 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 1049 + sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 898 1050 }; 899 1051 } 900 1052 { ··· 906 1058 }; 907 1059 } 908 1060 { 909 - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz"; 910 - path = fetchurl { 911 - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz"; 912 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz"; 913 - sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA=="; 914 - }; 915 - } 916 - { 917 1061 name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.7.tgz"; 918 1062 path = fetchurl { 919 1063 name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.7.tgz"; 920 1064 url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; 921 1065 sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; 922 - }; 923 - } 924 - { 925 - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz"; 926 - path = fetchurl { 927 - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz"; 928 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"; 929 - sha512 = "IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="; 930 1066 }; 931 1067 } 932 1068 { ··· 922 1090 }; 923 1091 } 924 1092 { 925 - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz"; 926 - path = fetchurl { 927 - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz"; 928 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"; 929 - sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="; 930 - }; 931 - } 932 - { 933 1093 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.7.tgz"; 934 1094 path = fetchurl { 935 1095 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.7.tgz"; 936 1096 url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; 937 1097 sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; 938 - }; 939 - } 940 - { 941 - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz"; 942 - path = fetchurl { 943 - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz"; 944 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"; 945 - sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="; 946 1098 }; 947 1099 } 948 1100 { ··· 938 1122 }; 939 1123 } 940 1124 { 941 - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz"; 942 - path = fetchurl { 943 - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz"; 944 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"; 945 - sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="; 946 - }; 947 - } 948 - { 949 1125 name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.7.tgz"; 950 1126 path = fetchurl { 951 1127 name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.7.tgz"; 952 1128 url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; 953 1129 sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; 954 - }; 955 - } 956 - { 957 - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.13.0.tgz"; 958 - path = fetchurl { 959 - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.13.0.tgz"; 960 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz"; 961 - sha512 = "EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ=="; 962 1130 }; 963 1131 } 964 1132 { ··· 954 1154 }; 955 1155 } 956 1156 { 957 - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.13.8.tgz"; 958 - path = fetchurl { 959 - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.13.8.tgz"; 960 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz"; 961 - sha512 = "9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw=="; 962 - }; 963 - } 964 - { 965 1157 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.16.8.tgz"; 966 1158 path = fetchurl { 967 1159 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.16.8.tgz"; 968 1160 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz"; 969 1161 sha512 = "oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA=="; 970 - }; 971 - } 972 - { 973 - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz"; 974 - path = fetchurl { 975 - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz"; 976 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz"; 977 - sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A=="; 978 1162 }; 979 1163 } 980 1164 { ··· 970 1186 }; 971 1187 } 972 1188 { 973 - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.13.0.tgz"; 974 - path = fetchurl { 975 - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.13.0.tgz"; 976 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz"; 977 - sha512 = "D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw=="; 978 - }; 979 - } 980 - { 981 1189 name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.7.tgz"; 982 1190 path = fetchurl { 983 1191 name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.7.tgz"; 984 1192 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; 985 1193 sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 986 - }; 987 - } 988 - { 989 - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz"; 990 - path = fetchurl { 991 - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz"; 992 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz"; 993 - sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA=="; 994 1194 }; 995 1195 } 996 1196 { ··· 986 1218 }; 987 1219 } 988 1220 { 989 - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz"; 990 - path = fetchurl { 991 - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz"; 992 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz"; 993 - sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ=="; 994 - }; 995 - } 996 - { 997 1221 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.7.tgz"; 998 1222 path = fetchurl { 999 1223 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.7.tgz"; 1000 1224 url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; 1001 1225 sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; 1002 - }; 1003 - } 1004 - { 1005 - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz"; 1006 - path = fetchurl { 1007 - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz"; 1008 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"; 1009 - sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="; 1010 1226 }; 1011 1227 } 1012 1228 { ··· 1002 1250 }; 1003 1251 } 1004 1252 { 1005 - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.14.5.tgz"; 1006 - path = fetchurl { 1007 - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.14.5.tgz"; 1008 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz"; 1009 - sha512 = "Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA=="; 1010 - }; 1011 - } 1012 - { 1013 1253 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.7.tgz"; 1014 1254 path = fetchurl { 1015 1255 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.7.tgz"; 1016 1256 url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; 1017 1257 sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; 1018 - }; 1019 - } 1020 - { 1021 - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz"; 1022 - path = fetchurl { 1023 - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz"; 1024 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"; 1025 - sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="; 1026 1258 }; 1027 1259 } 1028 1260 { ··· 1026 1290 }; 1027 1291 } 1028 1292 { 1029 - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.14.2.tgz"; 1030 - path = fetchurl { 1031 - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.14.2.tgz"; 1032 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.2.tgz"; 1033 - sha512 = "zCubvP+jjahpnFJvPaHPiGVfuVUjXHhFvJKQdNnsmSsiU9kR/rCZ41jHc++tERD2zV+p7Hr6is+t5b6iWTCqSw=="; 1034 - }; 1035 - } 1036 - { 1037 1293 name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.16.7.tgz"; 1038 1294 path = fetchurl { 1039 1295 name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.16.7.tgz"; 1040 1296 url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz"; 1041 1297 sha512 = "qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg=="; 1042 - }; 1043 - } 1044 - { 1045 - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz"; 1046 - path = fetchurl { 1047 - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz"; 1048 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz"; 1049 - sha512 = "BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ=="; 1050 1298 }; 1051 1299 } 1052 1300 { ··· 1042 1322 }; 1043 1323 } 1044 1324 { 1045 - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz"; 1046 - path = fetchurl { 1047 - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz"; 1048 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz"; 1049 - sha512 = "jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA=="; 1050 - }; 1051 - } 1052 - { 1053 1325 name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.16.7.tgz"; 1054 1326 path = fetchurl { 1055 1327 name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.16.7.tgz"; 1056 1328 url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz"; 1057 1329 sha512 = "8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag=="; 1058 - }; 1059 - } 1060 - { 1061 - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.12.1.tgz"; 1062 - path = fetchurl { 1063 - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.12.1.tgz"; 1064 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz"; 1065 - sha512 = "RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg=="; 1066 1330 }; 1067 1331 } 1068 1332 { ··· 1058 1354 }; 1059 1355 } 1060 1356 { 1061 - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.13.15.tgz"; 1062 - path = fetchurl { 1063 - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.13.15.tgz"; 1064 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz"; 1065 - sha512 = "Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ=="; 1066 - }; 1067 - } 1068 - { 1069 1357 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.7.tgz"; 1070 1358 path = fetchurl { 1071 1359 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.7.tgz"; 1072 1360 url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 1073 1361 sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 1074 - }; 1075 - } 1076 - { 1077 - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz"; 1078 - path = fetchurl { 1079 - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz"; 1080 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz"; 1081 - sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg=="; 1082 1362 }; 1083 1363 } 1084 1364 { ··· 1074 1386 }; 1075 1387 } 1076 1388 { 1077 - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz"; 1078 - path = fetchurl { 1079 - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz"; 1080 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"; 1081 - sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="; 1082 - }; 1083 - } 1084 - { 1085 1389 name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.7.tgz"; 1086 1390 path = fetchurl { 1087 1391 name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.7.tgz"; 1088 1392 url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; 1089 1393 sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 1090 - }; 1091 - } 1092 - { 1093 - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz"; 1094 - path = fetchurl { 1095 - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz"; 1096 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"; 1097 - sha512 = "V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="; 1098 1394 }; 1099 1395 } 1100 1396 { ··· 1090 1418 }; 1091 1419 } 1092 1420 { 1093 - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz"; 1094 - path = fetchurl { 1095 - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz"; 1096 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz"; 1097 - sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg=="; 1098 - }; 1099 - } 1100 - { 1101 1421 name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.7.tgz"; 1102 1422 path = fetchurl { 1103 1423 name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.7.tgz"; 1104 1424 url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; 1105 1425 sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; 1106 - }; 1107 - } 1108 - { 1109 - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz"; 1110 - path = fetchurl { 1111 - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz"; 1112 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"; 1113 - sha512 = "d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="; 1114 1426 }; 1115 1427 } 1116 1428 { ··· 1106 1450 }; 1107 1451 } 1108 1452 { 1109 - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz"; 1110 - path = fetchurl { 1111 - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz"; 1112 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz"; 1113 - sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 1114 - }; 1115 - } 1116 - { 1117 1453 name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.7.tgz"; 1118 1454 path = fetchurl { 1119 1455 name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.7.tgz"; ··· 1114 1466 }; 1115 1467 } 1116 1468 { 1117 - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.14.6.tgz"; 1469 + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.16.1.tgz"; 1118 1470 path = fetchurl { 1119 - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.14.6.tgz"; 1120 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz"; 1121 - sha512 = "XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA=="; 1122 - }; 1123 - } 1124 - { 1125 - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz"; 1126 - path = fetchurl { 1127 - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz"; 1128 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz"; 1129 - sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw=="; 1471 + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.16.1.tgz"; 1472 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz"; 1473 + sha512 = "NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg=="; 1130 1474 }; 1131 1475 } 1132 1476 { ··· 1127 1487 name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.16.7.tgz"; 1128 1488 url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; 1129 1489 sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="; 1130 - }; 1131 - } 1132 - { 1133 - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz"; 1134 - path = fetchurl { 1135 - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz"; 1136 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz"; 1137 - sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA=="; 1138 1490 }; 1139 1491 } 1140 1492 { ··· 1154 1522 }; 1155 1523 } 1156 1524 { 1157 - name = "_babel_preset_modules___preset_modules_0.1.4.tgz"; 1158 - path = fetchurl { 1159 - name = "_babel_preset_modules___preset_modules_0.1.4.tgz"; 1160 - url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz"; 1161 - sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 1162 - }; 1163 - } 1164 - { 1165 1525 name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; 1166 1526 path = fetchurl { 1167 1527 name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; ··· 1178 1554 }; 1179 1555 } 1180 1556 { 1181 - name = "_babel_preset_typescript___preset_typescript_7.14.5.tgz"; 1557 + name = "_babel_preset_typescript___preset_typescript_7.16.0.tgz"; 1182 1558 path = fetchurl { 1183 - name = "_babel_preset_typescript___preset_typescript_7.14.5.tgz"; 1184 - url = "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.14.5.tgz"; 1185 - sha512 = "u4zO6CdbRKbS9TypMqrlGH7sd2TAJppZwn3c/ZRLeO/wGsbddxgbPDUZVNrie3JWYLQ9vpineKlsrWFvO6Pwkw=="; 1559 + name = "_babel_preset_typescript___preset_typescript_7.16.0.tgz"; 1560 + url = "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz"; 1561 + sha512 = "txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg=="; 1186 1562 }; 1187 1563 } 1188 1564 { 1189 - name = "_babel_runtime___runtime_7.14.0.tgz"; 1565 + name = "_babel_runtime___runtime_7.16.0.tgz"; 1190 1566 path = fetchurl { 1191 - name = "_babel_runtime___runtime_7.14.0.tgz"; 1192 - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz"; 1193 - sha512 = "JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA=="; 1567 + name = "_babel_runtime___runtime_7.16.0.tgz"; 1568 + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.0.tgz"; 1569 + sha512 = "Nht8L0O8YCktmsDV6FqFue7vQLRx3Hb0B37lS5y0jDRqRxlBG4wIJHnf9/bgSE2UyipKFA01YtS+npRdTWBUyw=="; 1194 1570 }; 1195 1571 } 1196 1572 { ··· 1226 1602 }; 1227 1603 } 1228 1604 { 1605 + name = "_babel_template___template_7.16.0.tgz"; 1606 + path = fetchurl { 1607 + name = "_babel_template___template_7.16.0.tgz"; 1608 + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz"; 1609 + sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="; 1610 + }; 1611 + } 1612 + { 1229 1613 name = "_babel_traverse___traverse_7.14.7.tgz"; 1230 1614 path = fetchurl { 1231 1615 name = "_babel_traverse___traverse_7.14.7.tgz"; 1232 1616 url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz"; 1233 1617 sha512 = "9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ=="; 1618 + }; 1619 + } 1620 + { 1621 + name = "_babel_traverse___traverse_7.16.0.tgz"; 1622 + path = fetchurl { 1623 + name = "_babel_traverse___traverse_7.16.0.tgz"; 1624 + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.0.tgz"; 1625 + sha512 = "qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ=="; 1234 1626 }; 1235 1627 } 1236 1628 { ··· 1258 1618 }; 1259 1619 } 1260 1620 { 1261 - name = "_babel_types___types_7.15.4.tgz"; 1262 - path = fetchurl { 1263 - name = "_babel_types___types_7.15.4.tgz"; 1264 - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz"; 1265 - sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 1266 - }; 1267 - } 1268 - { 1269 1621 name = "_babel_types___types_7.17.0.tgz"; 1270 1622 path = fetchurl { 1271 1623 name = "_babel_types___types_7.17.0.tgz"; 1272 1624 url = "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz"; 1273 1625 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 1626 + }; 1627 + } 1628 + { 1629 + name = "_babel_types___types_7.15.4.tgz"; 1630 + path = fetchurl { 1631 + name = "_babel_types___types_7.15.4.tgz"; 1632 + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.4.tgz"; 1633 + sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw=="; 1274 1634 }; 1275 1635 } 1276 1636 { ··· 1298 1658 }; 1299 1659 } 1300 1660 { 1301 - name = "_discoveryjs_json_ext___json_ext_0.5.3.tgz"; 1661 + name = "_discoveryjs_json_ext___json_ext_0.5.5.tgz"; 1302 1662 path = fetchurl { 1303 - name = "_discoveryjs_json_ext___json_ext_0.5.3.tgz"; 1304 - url = "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz"; 1305 - sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g=="; 1663 + name = "_discoveryjs_json_ext___json_ext_0.5.5.tgz"; 1664 + url = "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz"; 1665 + sha512 = "6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA=="; 1306 1666 }; 1307 1667 } 1308 1668 { ··· 1314 1674 }; 1315 1675 } 1316 1676 { 1317 - name = "_emotion_cache___cache_11.4.0.tgz"; 1677 + name = "_emotion_cache___cache_11.5.0.tgz"; 1318 1678 path = fetchurl { 1319 - name = "_emotion_cache___cache_11.4.0.tgz"; 1320 - url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.4.0.tgz"; 1321 - sha512 = "Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g=="; 1679 + name = "_emotion_cache___cache_11.5.0.tgz"; 1680 + url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.5.0.tgz"; 1681 + sha512 = "mAZ5QRpLriBtaj/k2qyrXwck6yeoz1V5lMt/jfj6igWU35yYlNKs2LziXVgvH81gnJZ+9QQNGelSsnuoAy6uIw=="; 1322 1682 }; 1323 1683 } 1324 1684 { ··· 1386 1746 }; 1387 1747 } 1388 1748 { 1389 - name = "_emotion_react___react_11.4.0.tgz"; 1749 + name = "_emotion_react___react_11.5.0.tgz"; 1390 1750 path = fetchurl { 1391 - name = "_emotion_react___react_11.4.0.tgz"; 1392 - url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.4.0.tgz"; 1393 - sha512 = "4XklWsl9BdtatLoJpSjusXhpKv9YVteYKh9hPKP1Sxl+mswEFoUe0WtmtWjxEjkA51DQ2QRMCNOvKcSlCQ7ivg=="; 1751 + name = "_emotion_react___react_11.5.0.tgz"; 1752 + url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.5.0.tgz"; 1753 + sha512 = "MYq/bzp3rYbee4EMBORCn4duPQfgpiEB5XzrZEBnUZAL80Qdfr7CEv/T80jwaTl/dnZmt9SnTa8NkTrwFNpLlw=="; 1394 1754 }; 1395 1755 } 1396 1756 { ··· 1418 1778 }; 1419 1779 } 1420 1780 { 1421 - name = "_emotion_sheet___sheet_1.0.1.tgz"; 1781 + name = "_emotion_sheet___sheet_1.0.3.tgz"; 1422 1782 path = fetchurl { 1423 - name = "_emotion_sheet___sheet_1.0.1.tgz"; 1424 - url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.1.tgz"; 1425 - sha512 = "GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g=="; 1783 + name = "_emotion_sheet___sheet_1.0.3.tgz"; 1784 + url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.3.tgz"; 1785 + sha512 = "YoX5GyQ4db7LpbmXHMuc8kebtBGP6nZfRC5Z13OKJMixBEwdZrJ914D6yJv/P+ZH/YY3F5s89NYX2hlZAf3SRQ=="; 1426 1786 }; 1427 1787 } 1428 1788 { ··· 1490 1850 }; 1491 1851 } 1492 1852 { 1493 - name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 1853 + name = "_eslint_eslintrc___eslintrc_0.4.3.tgz"; 1494 1854 path = fetchurl { 1495 - name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 1496 - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 1497 - sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 1855 + name = "_eslint_eslintrc___eslintrc_0.4.3.tgz"; 1856 + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 1857 + sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 1498 1858 }; 1499 1859 } 1500 1860 { ··· 1511 1871 name = "_gar_promisify___promisify_1.1.2.tgz"; 1512 1872 url = "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz"; 1513 1873 sha512 = "82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw=="; 1874 + }; 1875 + } 1876 + { 1877 + name = "_humanwhocodes_config_array___config_array_0.5.0.tgz"; 1878 + path = fetchurl { 1879 + name = "_humanwhocodes_config_array___config_array_0.5.0.tgz"; 1880 + url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; 1881 + sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; 1882 + }; 1883 + } 1884 + { 1885 + name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; 1886 + path = fetchurl { 1887 + name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; 1888 + url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; 1889 + sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 1514 1890 }; 1515 1891 } 1516 1892 { ··· 1578 1922 }; 1579 1923 } 1580 1924 { 1581 - name = "_material_ui_pickers___pickers_3.2.10.tgz"; 1925 + name = "_material_ui_pickers___pickers_3.3.10.tgz"; 1582 1926 path = fetchurl { 1583 - name = "_material_ui_pickers___pickers_3.2.10.tgz"; 1584 - url = "https://registry.yarnpkg.com/@material-ui/pickers/-/pickers-3.2.10.tgz"; 1585 - sha512 = "B8G6Obn5S3RCl7hwahkQj9sKUapwXWFjiaz/Bsw1fhYFdNMnDUolRiWQSoKPb1/oKe37Dtfszoywi1Ynbo3y8w=="; 1927 + name = "_material_ui_pickers___pickers_3.3.10.tgz"; 1928 + url = "https://registry.yarnpkg.com/@material-ui/pickers/-/pickers-3.3.10.tgz"; 1929 + sha512 = "hS4pxwn1ZGXVkmgD4tpFpaumUaAg2ZzbTrxltfC5yPw4BJV+mGkfnQOB4VpWEYZw2jv65Z0wLwDE/piQiPPZ3w=="; 1586 1930 }; 1587 1931 } 1588 1932 { ··· 1682 2026 }; 1683 2027 } 1684 2028 { 1685 - name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; 2029 + name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; 1686 2030 path = fetchurl { 1687 - name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; 1688 - url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 1689 - sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 2031 + name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; 2032 + url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 2033 + sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 1690 2034 }; 1691 2035 } 1692 2036 { 1693 - name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz"; 2037 + name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; 1694 2038 path = fetchurl { 1695 - name = "_nodelib_fs.stat___fs.stat_2.0.4.tgz"; 1696 - url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 1697 - sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 2039 + name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; 2040 + url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 2041 + sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 1698 2042 }; 1699 2043 } 1700 2044 { 1701 - name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz"; 2045 + name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; 1702 2046 path = fetchurl { 1703 - name = "_nodelib_fs.walk___fs.walk_1.2.6.tgz"; 1704 - url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 1705 - sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 2047 + name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; 2048 + url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 2049 + sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1706 2050 }; 1707 2051 } 1708 2052 { ··· 1722 2066 }; 1723 2067 } 1724 2068 { 1725 - name = "_polka_url___url_1.0.0_next.15.tgz"; 2069 + name = "_polka_url___url_1.0.0_next.21.tgz"; 1726 2070 path = fetchurl { 1727 - name = "_polka_url___url_1.0.0_next.15.tgz"; 1728 - url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.15.tgz"; 1729 - sha512 = "15spi3V28QdevleWBNXE4pIls3nFZmBbUGrW9IVPwiQczuSb9n76TCB4bsk8TSel+I1OkHEdPhu5QKMfY6rQHA=="; 2071 + name = "_polka_url___url_1.0.0_next.21.tgz"; 2072 + url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.21.tgz"; 2073 + sha512 = "a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="; 1730 2074 }; 1731 2075 } 1732 2076 { ··· 1738 2082 }; 1739 2083 } 1740 2084 { 1741 - name = "_popperjs_core___core_2.9.0.tgz"; 2085 + name = "_popperjs_core___core_2.10.2.tgz"; 1742 2086 path = fetchurl { 1743 - name = "_popperjs_core___core_2.9.0.tgz"; 1744 - url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.0.tgz"; 1745 - sha512 = "wjtKehFAIARq2OxK8j3JrggNlEslJfNuSm2ArteIbKyRMts2g0a7KzTxfRVNUM+O0gnBJ2hNV8nWPOYBgI1sew=="; 2087 + name = "_popperjs_core___core_2.10.2.tgz"; 2088 + url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.10.2.tgz"; 2089 + sha512 = "IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ=="; 1746 2090 }; 1747 2091 } 1748 2092 { ··· 1794 2138 }; 1795 2139 } 1796 2140 { 1797 - name = "_simonwep_pickr___pickr_1.8.1.tgz"; 2141 + name = "_react_leaflet_core___core_1.1.1.tgz"; 1798 2142 path = fetchurl { 1799 - name = "_simonwep_pickr___pickr_1.8.1.tgz"; 1800 - url = "https://registry.yarnpkg.com/@simonwep/pickr/-/pickr-1.8.1.tgz"; 1801 - sha512 = "3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A=="; 2143 + name = "_react_leaflet_core___core_1.1.1.tgz"; 2144 + url = "https://registry.yarnpkg.com/@react-leaflet/core/-/core-1.1.1.tgz"; 2145 + sha512 = "7PGLWa9MZ5x/cWy8EH2VzI4T8q5WpuHbixzCDXqixP/WyqwIrg5NDUPgYuFnB4IEIZF+6nA265mYzswFo/h1Pw=="; 2146 + }; 2147 + } 2148 + { 2149 + name = "_simonwep_pickr___pickr_1.8.2.tgz"; 2150 + path = fetchurl { 2151 + name = "_simonwep_pickr___pickr_1.8.2.tgz"; 2152 + url = "https://registry.yarnpkg.com/@simonwep/pickr/-/pickr-1.8.2.tgz"; 2153 + sha512 = "/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA=="; 1802 2154 }; 1803 2155 } 1804 2156 { ··· 1823 2159 name = "_socket.io_base64_arraybuffer___base64_arraybuffer_1.0.2.tgz"; 1824 2160 url = "https://registry.yarnpkg.com/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"; 1825 2161 sha512 = "dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ=="; 2162 + }; 2163 + } 2164 + { 2165 + name = "_socket.io_component_emitter___component_emitter_3.0.0.tgz"; 2166 + path = fetchurl { 2167 + name = "_socket.io_component_emitter___component_emitter_3.0.0.tgz"; 2168 + url = "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.0.0.tgz"; 2169 + sha512 = "2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q=="; 1826 2170 }; 1827 2171 } 1828 2172 { ··· 1962 2290 }; 1963 2291 } 1964 2292 { 1965 - name = "_tippyjs_react___react_4.2.3.tgz"; 2293 + name = "_tippyjs_react___react_4.2.6.tgz"; 1966 2294 path = fetchurl { 1967 - name = "_tippyjs_react___react_4.2.3.tgz"; 1968 - url = "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.3.tgz"; 1969 - sha512 = "44vBapqROQI7Q5nDtX1MMAgcAV+3DsIi+m/45CxQ72C5LDNmNDq9h3f04x3NHMrUhWcfgfgjYA2EmeLSH/4eRg=="; 2295 + name = "_tippyjs_react___react_4.2.6.tgz"; 2296 + url = "https://registry.yarnpkg.com/@tippyjs/react/-/react-4.2.6.tgz"; 2297 + sha512 = "91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw=="; 1970 2298 }; 1971 2299 } 1972 2300 { ··· 1994 2322 }; 1995 2323 } 1996 2324 { 1997 - name = "_types_component_emitter___component_emitter_1.2.10.tgz"; 2325 + name = "_types_component_emitter___component_emitter_1.2.11.tgz"; 1998 2326 path = fetchurl { 1999 - name = "_types_component_emitter___component_emitter_1.2.10.tgz"; 2000 - url = "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.10.tgz"; 2001 - sha512 = "bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg=="; 2327 + name = "_types_component_emitter___component_emitter_1.2.11.tgz"; 2328 + url = "https://registry.yarnpkg.com/@types/component-emitter/-/component-emitter-1.2.11.tgz"; 2329 + sha512 = "SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ=="; 2002 2330 }; 2003 2331 } 2004 2332 { ··· 2018 2346 }; 2019 2347 } 2020 2348 { 2021 - name = "_types_eslint_scope___eslint_scope_3.7.0.tgz"; 2349 + name = "_types_eslint_scope___eslint_scope_3.7.1.tgz"; 2022 2350 path = fetchurl { 2023 - name = "_types_eslint_scope___eslint_scope_3.7.0.tgz"; 2024 - url = "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"; 2025 - sha512 = "O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw=="; 2351 + name = "_types_eslint_scope___eslint_scope_3.7.1.tgz"; 2352 + url = "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.1.tgz"; 2353 + sha512 = "SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g=="; 2026 2354 }; 2027 2355 } 2028 2356 { 2029 - name = "_types_eslint___eslint_7.2.7.tgz"; 2357 + name = "_types_eslint___eslint_7.28.2.tgz"; 2030 2358 path = fetchurl { 2031 - name = "_types_eslint___eslint_7.2.7.tgz"; 2032 - url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.7.tgz"; 2033 - sha512 = "EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q=="; 2359 + name = "_types_eslint___eslint_7.28.2.tgz"; 2360 + url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.2.tgz"; 2361 + sha512 = "KubbADPkfoU75KgKeKLsFHXnU4ipH7wYg0TRT33NK3N3yiu7jlFAAoygIWBV+KbuHx/G+AvuGX6DllnK35gfJA=="; 2034 2362 }; 2035 2363 } 2036 2364 { 2037 - name = "_types_estree___estree_0.0.46.tgz"; 2365 + name = "_types_estree___estree_0.0.50.tgz"; 2038 2366 path = fetchurl { 2039 - name = "_types_estree___estree_0.0.46.tgz"; 2040 - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz"; 2041 - sha512 = "laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg=="; 2367 + name = "_types_estree___estree_0.0.50.tgz"; 2368 + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz"; 2369 + sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; 2042 2370 }; 2043 2371 } 2044 2372 { 2045 - name = "_types_glob___glob_7.1.3.tgz"; 2373 + name = "_types_glob___glob_7.2.0.tgz"; 2046 2374 path = fetchurl { 2047 - name = "_types_glob___glob_7.1.3.tgz"; 2048 - url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz"; 2049 - sha512 = "SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="; 2375 + name = "_types_glob___glob_7.2.0.tgz"; 2376 + url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz"; 2377 + sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="; 2050 2378 }; 2051 2379 } 2052 2380 { 2053 - name = "_types_json_schema___json_schema_7.0.7.tgz"; 2381 + name = "_types_json_schema___json_schema_7.0.9.tgz"; 2054 2382 path = fetchurl { 2055 - name = "_types_json_schema___json_schema_7.0.7.tgz"; 2056 - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz"; 2057 - sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 2383 + name = "_types_json_schema___json_schema_7.0.9.tgz"; 2384 + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz"; 2385 + sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 2058 2386 }; 2059 2387 } 2060 2388 { 2061 - name = "_types_minimatch___minimatch_3.0.4.tgz"; 2389 + name = "_types_minimatch___minimatch_3.0.5.tgz"; 2062 2390 path = fetchurl { 2063 - name = "_types_minimatch___minimatch_3.0.4.tgz"; 2064 - url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz"; 2065 - sha512 = "1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA=="; 2391 + name = "_types_minimatch___minimatch_3.0.5.tgz"; 2392 + url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz"; 2393 + sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 2066 2394 }; 2067 2395 } 2068 2396 { 2069 - name = "_types_node___node_14.14.32.tgz"; 2397 + name = "_types_node___node_16.11.6.tgz"; 2070 2398 path = fetchurl { 2071 - name = "_types_node___node_14.14.32.tgz"; 2072 - url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.32.tgz"; 2073 - sha512 = "/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg=="; 2399 + name = "_types_node___node_16.11.6.tgz"; 2400 + url = "https://registry.yarnpkg.com/@types/node/-/node-16.11.6.tgz"; 2401 + sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; 2074 2402 }; 2075 2403 } 2076 2404 { ··· 2082 2410 }; 2083 2411 } 2084 2412 { 2085 - name = "_types_prop_types___prop_types_15.7.3.tgz"; 2086 - path = fetchurl { 2087 - name = "_types_prop_types___prop_types_15.7.3.tgz"; 2088 - url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"; 2089 - sha512 = "KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="; 2090 - }; 2091 - } 2092 - { 2093 2413 name = "_types_prop_types___prop_types_15.7.4.tgz"; 2094 2414 path = fetchurl { 2095 2415 name = "_types_prop_types___prop_types_15.7.4.tgz"; ··· 2090 2426 }; 2091 2427 } 2092 2428 { 2093 - name = "_types_q___q_1.5.4.tgz"; 2429 + name = "_types_q___q_1.5.5.tgz"; 2094 2430 path = fetchurl { 2095 - name = "_types_q___q_1.5.4.tgz"; 2096 - url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz"; 2097 - sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 2431 + name = "_types_q___q_1.5.5.tgz"; 2432 + url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz"; 2433 + sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; 2098 2434 }; 2099 2435 } 2100 2436 { ··· 2138 2474 }; 2139 2475 } 2140 2476 { 2141 - name = "_types_react___react_16.14.18.tgz"; 2477 + name = "_types_react___react_16.14.20.tgz"; 2142 2478 path = fetchurl { 2143 - name = "_types_react___react_16.14.18.tgz"; 2144 - url = "https://registry.yarnpkg.com/@types/react/-/react-16.14.18.tgz"; 2145 - sha512 = "eeyqd1mqoG43mI0TvNKy9QNf1Tjz3DEOsRP3rlPo35OeMIt05I+v9RR8ZvL2GuYZeF2WAcLXJZMzu6zdz3VbtQ=="; 2479 + name = "_types_react___react_16.14.20.tgz"; 2480 + url = "https://registry.yarnpkg.com/@types/react/-/react-16.14.20.tgz"; 2481 + sha512 = "SV7TaVc8e9E/5Xuv6TIyJ5VhQpZoVFJqX6IZgj5HZoFCtIDCArE3qXkcHlc6O/Ud4UwcMoX+tlvDA95YrKdLgA=="; 2146 2482 }; 2147 2483 } 2148 2484 { 2149 - name = "_types_scheduler___scheduler_0.16.1.tgz"; 2485 + name = "_types_scheduler___scheduler_0.16.2.tgz"; 2150 2486 path = fetchurl { 2151 - name = "_types_scheduler___scheduler_0.16.1.tgz"; 2152 - url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz"; 2153 - sha512 = "EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA=="; 2487 + name = "_types_scheduler___scheduler_0.16.2.tgz"; 2488 + url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz"; 2489 + sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; 2154 2490 }; 2155 2491 } 2156 2492 { 2157 - name = "_types_styled_jsx___styled_jsx_2.2.8.tgz"; 2493 + name = "_types_styled_jsx___styled_jsx_2.2.9.tgz"; 2158 2494 path = fetchurl { 2159 - name = "_types_styled_jsx___styled_jsx_2.2.8.tgz"; 2160 - url = "https://registry.yarnpkg.com/@types/styled-jsx/-/styled-jsx-2.2.8.tgz"; 2161 - sha512 = "Yjye9VwMdYeXfS71ihueWRSxrruuXTwKCbzue4+5b2rjnQ//AtyM7myZ1BEhNhBQ/nL/RE7bdToUoLln2miKvg=="; 2495 + name = "_types_styled_jsx___styled_jsx_2.2.9.tgz"; 2496 + url = "https://registry.yarnpkg.com/@types/styled-jsx/-/styled-jsx-2.2.9.tgz"; 2497 + sha512 = "W/iTlIkGEyTBGTEvZCey8EgQlQ5l0DwMqi3iOXlLs2kyBwYTXHKEiU6IZ5EwoRwngL8/dGYuzezSup89ttVHLw=="; 2162 2498 }; 2163 2499 } 2164 2500 { ··· 2170 2506 }; 2171 2507 } 2172 2508 { 2173 - name = "_webassemblyjs_ast___ast_1.11.0.tgz"; 2509 + name = "_webassemblyjs_ast___ast_1.11.1.tgz"; 2174 2510 path = fetchurl { 2175 - name = "_webassemblyjs_ast___ast_1.11.0.tgz"; 2176 - url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.0.tgz"; 2177 - sha512 = "kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg=="; 2511 + name = "_webassemblyjs_ast___ast_1.11.1.tgz"; 2512 + url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz"; 2513 + sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; 2178 2514 }; 2179 2515 } 2180 2516 { 2181 - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.0.tgz"; 2517 + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.1.tgz"; 2182 2518 path = fetchurl { 2183 - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.0.tgz"; 2184 - url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"; 2185 - sha512 = "Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA=="; 2519 + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.1.tgz"; 2520 + url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"; 2521 + sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; 2186 2522 }; 2187 2523 } 2188 2524 { 2189 - name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.0.tgz"; 2525 + name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.1.tgz"; 2190 2526 path = fetchurl { 2191 - name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.0.tgz"; 2192 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"; 2193 - sha512 = "baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w=="; 2527 + name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.1.tgz"; 2528 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"; 2529 + sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; 2194 2530 }; 2195 2531 } 2196 2532 { 2197 - name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.0.tgz"; 2533 + name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.1.tgz"; 2198 2534 path = fetchurl { 2199 - name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.0.tgz"; 2200 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"; 2201 - sha512 = "u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA=="; 2535 + name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.1.tgz"; 2536 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"; 2537 + sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; 2202 2538 }; 2203 2539 } 2204 2540 { 2205 - name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.0.tgz"; 2541 + name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.1.tgz"; 2206 2542 path = fetchurl { 2207 - name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.0.tgz"; 2208 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"; 2209 - sha512 = "DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ=="; 2543 + name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.1.tgz"; 2544 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"; 2545 + sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; 2210 2546 }; 2211 2547 } 2212 2548 { 2213 - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.0.tgz"; 2549 + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.1.tgz"; 2214 2550 path = fetchurl { 2215 - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.0.tgz"; 2216 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"; 2217 - sha512 = "MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA=="; 2551 + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.1.tgz"; 2552 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"; 2553 + sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; 2218 2554 }; 2219 2555 } 2220 2556 { 2221 - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.0.tgz"; 2557 + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.1.tgz"; 2222 2558 path = fetchurl { 2223 - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.0.tgz"; 2224 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"; 2225 - sha512 = "3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew=="; 2559 + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.1.tgz"; 2560 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"; 2561 + sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; 2226 2562 }; 2227 2563 } 2228 2564 { 2229 - name = "_webassemblyjs_ieee754___ieee754_1.11.0.tgz"; 2565 + name = "_webassemblyjs_ieee754___ieee754_1.11.1.tgz"; 2230 2566 path = fetchurl { 2231 - name = "_webassemblyjs_ieee754___ieee754_1.11.0.tgz"; 2232 - url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"; 2233 - sha512 = "KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA=="; 2567 + name = "_webassemblyjs_ieee754___ieee754_1.11.1.tgz"; 2568 + url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"; 2569 + sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; 2234 2570 }; 2235 2571 } 2236 2572 { 2237 - name = "_webassemblyjs_leb128___leb128_1.11.0.tgz"; 2573 + name = "_webassemblyjs_leb128___leb128_1.11.1.tgz"; 2238 2574 path = fetchurl { 2239 - name = "_webassemblyjs_leb128___leb128_1.11.0.tgz"; 2240 - url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"; 2241 - sha512 = "aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g=="; 2575 + name = "_webassemblyjs_leb128___leb128_1.11.1.tgz"; 2576 + url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"; 2577 + sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; 2242 2578 }; 2243 2579 } 2244 2580 { 2245 - name = "_webassemblyjs_utf8___utf8_1.11.0.tgz"; 2581 + name = "_webassemblyjs_utf8___utf8_1.11.1.tgz"; 2246 2582 path = fetchurl { 2247 - name = "_webassemblyjs_utf8___utf8_1.11.0.tgz"; 2248 - url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"; 2249 - sha512 = "A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw=="; 2583 + name = "_webassemblyjs_utf8___utf8_1.11.1.tgz"; 2584 + url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"; 2585 + sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; 2250 2586 }; 2251 2587 } 2252 2588 { 2253 - name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.0.tgz"; 2589 + name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.1.tgz"; 2254 2590 path = fetchurl { 2255 - name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.0.tgz"; 2256 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"; 2257 - sha512 = "JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ=="; 2591 + name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.1.tgz"; 2592 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"; 2593 + sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; 2258 2594 }; 2259 2595 } 2260 2596 { 2261 - name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.0.tgz"; 2597 + name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.1.tgz"; 2262 2598 path = fetchurl { 2263 - name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.0.tgz"; 2264 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"; 2265 - sha512 = "BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ=="; 2599 + name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.1.tgz"; 2600 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"; 2601 + sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; 2266 2602 }; 2267 2603 } 2268 2604 { 2269 - name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.0.tgz"; 2605 + name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.1.tgz"; 2270 2606 path = fetchurl { 2271 - name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.0.tgz"; 2272 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"; 2273 - sha512 = "tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg=="; 2607 + name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.1.tgz"; 2608 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"; 2609 + sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; 2274 2610 }; 2275 2611 } 2276 2612 { 2277 - name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.0.tgz"; 2613 + name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.1.tgz"; 2278 2614 path = fetchurl { 2279 - name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.0.tgz"; 2280 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"; 2281 - sha512 = "6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw=="; 2615 + name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.1.tgz"; 2616 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"; 2617 + sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; 2282 2618 }; 2283 2619 } 2284 2620 { 2285 - name = "_webassemblyjs_wast_printer___wast_printer_1.11.0.tgz"; 2621 + name = "_webassemblyjs_wast_printer___wast_printer_1.11.1.tgz"; 2286 2622 path = fetchurl { 2287 - name = "_webassemblyjs_wast_printer___wast_printer_1.11.0.tgz"; 2288 - url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz"; 2289 - sha512 = "Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ=="; 2623 + name = "_webassemblyjs_wast_printer___wast_printer_1.11.1.tgz"; 2624 + url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"; 2625 + sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; 2290 2626 }; 2291 2627 } 2292 2628 { 2293 - name = "_webpack_cli_configtest___configtest_1.0.3.tgz"; 2629 + name = "_webpack_cli_configtest___configtest_1.1.0.tgz"; 2294 2630 path = fetchurl { 2295 - name = "_webpack_cli_configtest___configtest_1.0.3.tgz"; 2296 - url = "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.3.tgz"; 2297 - sha512 = "WQs0ep98FXX2XBAfQpRbY0Ma6ADw8JR6xoIkaIiJIzClGOMqVRvPCWqndTxf28DgFopWan0EKtHtg/5W1h0Zkw=="; 2631 + name = "_webpack_cli_configtest___configtest_1.1.0.tgz"; 2632 + url = "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.1.0.tgz"; 2633 + sha512 = "ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg=="; 2298 2634 }; 2299 2635 } 2300 2636 { 2301 - name = "_webpack_cli_info___info_1.2.4.tgz"; 2637 + name = "_webpack_cli_info___info_1.4.0.tgz"; 2302 2638 path = fetchurl { 2303 - name = "_webpack_cli_info___info_1.2.4.tgz"; 2304 - url = "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.2.4.tgz"; 2305 - sha512 = "ogE2T4+pLhTTPS/8MM3IjHn0IYplKM4HbVNMCWA9N4NrdPzunwenpCsqKEXyejMfRu6K8mhauIPYf8ZxWG5O6g=="; 2639 + name = "_webpack_cli_info___info_1.4.0.tgz"; 2640 + url = "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.4.0.tgz"; 2641 + sha512 = "F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw=="; 2306 2642 }; 2307 2643 } 2308 2644 { 2309 - name = "_webpack_cli_serve___serve_1.4.0.tgz"; 2645 + name = "_webpack_cli_serve___serve_1.6.0.tgz"; 2310 2646 path = fetchurl { 2311 - name = "_webpack_cli_serve___serve_1.4.0.tgz"; 2312 - url = "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.4.0.tgz"; 2313 - sha512 = "xgT/HqJ+uLWGX+Mzufusl3cgjAcnqYYskaB7o0vRcwOEfuu6hMzSILQpnIzFMGsTaeaX4Nnekl+6fadLbl1/Vg=="; 2647 + name = "_webpack_cli_serve___serve_1.6.0.tgz"; 2648 + url = "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.6.0.tgz"; 2649 + sha512 = "ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA=="; 2314 2650 }; 2315 2651 } 2316 2652 { ··· 2370 2706 }; 2371 2707 } 2372 2708 { 2373 - name = "ace_builds___ace_builds_1.4.12.tgz"; 2709 + name = "ace_builds___ace_builds_1.4.13.tgz"; 2374 2710 path = fetchurl { 2375 - name = "ace_builds___ace_builds_1.4.12.tgz"; 2376 - url = "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.12.tgz"; 2377 - sha512 = "G+chJctFPiiLGvs3+/Mly3apXTcfgE45dT5yp12BcWZ1kUs+gm0qd3/fv4gsz6fVag4mM0moHVpjHDIgph6Psg=="; 2711 + name = "ace_builds___ace_builds_1.4.13.tgz"; 2712 + url = "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.13.tgz"; 2713 + sha512 = "SOLzdaQkY6ecPKYRDDg+MY1WoGgXA34cIvYJNNoBMGGUswHmlauU2Hy0UL96vW0Fs/LgFbMUjD+6vqzWTldIYQ=="; 2378 2714 }; 2379 2715 } 2380 2716 { 2381 - name = "jquery-aciTree.git"; 2382 - path = 2383 - let 2384 - repo = fetchgit { 2385 - url = "https://github.com/imsurinder90/jquery-aciTree.git"; 2386 - rev = "24dcd7536a008abe25da6adb7bfde8eeb53892f1"; 2387 - sha256 = "1y8kz70492x5i6fb7s6g5qgrwhv50jmzbqg0gdnyb5q0n0xypk4z"; 2388 - }; 2389 - in 2390 - runCommand "jquery-aciTree.git" { buildInputs = [gnutar]; } '' 2391 - # Set u+w because tar-fs can't unpack archives with read-only dirs 2392 - # https://github.com/mafintosh/tar-fs/issues/79 2393 - tar cf $out --mode u+w -C ${repo} . 2394 - ''; 2395 - } 2396 - { 2397 - name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 2717 + name = "acorn_import_assertions___acorn_import_assertions_1.8.0.tgz"; 2398 2718 path = fetchurl { 2399 - name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 2400 - url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 2401 - sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="; 2719 + name = "acorn_import_assertions___acorn_import_assertions_1.8.0.tgz"; 2720 + url = "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz"; 2721 + sha512 = "m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw=="; 2722 + }; 2723 + } 2724 + { 2725 + name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; 2726 + path = fetchurl { 2727 + name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; 2728 + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 2729 + sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 2402 2730 }; 2403 2731 } 2404 2732 { ··· 2410 2754 }; 2411 2755 } 2412 2756 { 2413 - name = "acorn_walk___acorn_walk_8.1.0.tgz"; 2757 + name = "acorn_walk___acorn_walk_8.2.0.tgz"; 2414 2758 path = fetchurl { 2415 - name = "acorn_walk___acorn_walk_8.1.0.tgz"; 2416 - url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.1.0.tgz"; 2417 - sha512 = "mjmzmv12YIG/G8JQdQuz2MUDShEJ6teYpT5bmWA4q7iwoGen8xtt3twF3OvzIUl+Q06aWIjvnwQUKvQ6TtMRjg=="; 2759 + name = "acorn_walk___acorn_walk_8.2.0.tgz"; 2760 + url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz"; 2761 + sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="; 2418 2762 }; 2419 2763 } 2420 2764 { ··· 2426 2770 }; 2427 2771 } 2428 2772 { 2429 - name = "acorn___acorn_8.2.4.tgz"; 2773 + name = "acorn___acorn_8.5.0.tgz"; 2430 2774 path = fetchurl { 2431 - name = "acorn___acorn_8.2.4.tgz"; 2432 - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz"; 2433 - sha512 = "Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg=="; 2775 + name = "acorn___acorn_8.5.0.tgz"; 2776 + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz"; 2777 + sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="; 2434 2778 }; 2435 2779 } 2436 2780 { ··· 2498 2842 }; 2499 2843 } 2500 2844 { 2501 - name = "ajv___ajv_8.5.0.tgz"; 2845 + name = "ajv___ajv_8.6.3.tgz"; 2502 2846 path = fetchurl { 2503 - name = "ajv___ajv_8.5.0.tgz"; 2504 - url = "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz"; 2505 - sha512 = "Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ=="; 2847 + name = "ajv___ajv_8.6.3.tgz"; 2848 + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz"; 2849 + sha512 = "SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw=="; 2506 2850 }; 2507 2851 } 2508 2852 { ··· 2642 2986 }; 2643 2987 } 2644 2988 { 2645 - name = "array_includes___array_includes_3.1.3.tgz"; 2989 + name = "array_includes___array_includes_3.1.4.tgz"; 2646 2990 path = fetchurl { 2647 - name = "array_includes___array_includes_3.1.3.tgz"; 2648 - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz"; 2649 - sha512 = "gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A=="; 2991 + name = "array_includes___array_includes_3.1.4.tgz"; 2992 + url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz"; 2993 + sha512 = "ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw=="; 2650 2994 }; 2651 2995 } 2652 2996 { ··· 2658 3002 }; 2659 3003 } 2660 3004 { 2661 - name = "array.prototype.filter___array.prototype.filter_1.0.0.tgz"; 3005 + name = "array.prototype.filter___array.prototype.filter_1.0.1.tgz"; 2662 3006 path = fetchurl { 2663 - name = "array.prototype.filter___array.prototype.filter_1.0.0.tgz"; 2664 - url = "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz"; 2665 - sha512 = "TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ=="; 3007 + name = "array.prototype.filter___array.prototype.filter_1.0.1.tgz"; 3008 + url = "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.1.tgz"; 3009 + sha512 = "Dk3Ty7N42Odk7PjU/Ci3zT4pLj20YvuVnneG/58ICM6bt4Ij5kZaJTVQ9TSaWaIECX2sFyz4KItkVZqHNnciqw=="; 2666 3010 }; 2667 3011 } 2668 3012 { 2669 - name = "array.prototype.find___array.prototype.find_2.1.1.tgz"; 3013 + name = "array.prototype.find___array.prototype.find_2.1.2.tgz"; 2670 3014 path = fetchurl { 2671 - name = "array.prototype.find___array.prototype.find_2.1.1.tgz"; 2672 - url = "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz"; 2673 - sha512 = "mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA=="; 3015 + name = "array.prototype.find___array.prototype.find_2.1.2.tgz"; 3016 + url = "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.2.tgz"; 3017 + sha512 = "00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q=="; 2674 3018 }; 2675 3019 } 2676 3020 { 2677 - name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 3021 + name = "array.prototype.flat___array.prototype.flat_1.2.5.tgz"; 2678 3022 path = fetchurl { 2679 - name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 2680 - url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz"; 2681 - sha512 = "4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg=="; 3023 + name = "array.prototype.flat___array.prototype.flat_1.2.5.tgz"; 3024 + url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz"; 3025 + sha512 = "KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg=="; 2682 3026 }; 2683 3027 } 2684 3028 { ··· 2690 3034 }; 2691 3035 } 2692 3036 { 3037 + name = "array.prototype.flatmap___array.prototype.flatmap_1.2.5.tgz"; 3038 + path = fetchurl { 3039 + name = "array.prototype.flatmap___array.prototype.flatmap_1.2.5.tgz"; 3040 + url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz"; 3041 + sha512 = "08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA=="; 3042 + }; 3043 + } 3044 + { 2693 3045 name = "asn1.js___asn1.js_5.4.1.tgz"; 2694 3046 path = fetchurl { 2695 3047 name = "asn1.js___asn1.js_5.4.1.tgz"; ··· 2706 3042 }; 2707 3043 } 2708 3044 { 2709 - name = "aspen_core___aspen_core_1.0.4.tgz"; 3045 + name = "aspen_core___aspen_core_1.0.5.tgz"; 2710 3046 path = fetchurl { 2711 - name = "aspen_core___aspen_core_1.0.4.tgz"; 2712 - url = "https://registry.yarnpkg.com/aspen-core/-/aspen-core-1.0.4.tgz"; 2713 - sha512 = "mQ79JxHstB2rf47Zgw2yduAH9L47b+3bwQtpbEAKeSJsLTPe8X7lsQ6lLP3tFbS204TNILC5LxSkVWv45FXQYg=="; 3047 + name = "aspen_core___aspen_core_1.0.5.tgz"; 3048 + url = "https://registry.yarnpkg.com/aspen-core/-/aspen-core-1.0.5.tgz"; 3049 + sha512 = "iqWORNQeQTn6XHStl1uCQ4t1yMPMw/nSWygfXVAEflf8vAWs4vR2M2TqDEZGvyoTkrxIPONv+wyQQFDnN5QCkg=="; 2714 3050 }; 2715 3051 } 2716 3052 { ··· 2754 3090 }; 2755 3091 } 2756 3092 { 2757 - name = "async___async_2.6.3.tgz"; 3093 + name = "async___async_2.6.4.tgz"; 2758 3094 path = fetchurl { 2759 - name = "async___async_2.6.3.tgz"; 2760 - url = "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz"; 2761 - sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 3095 + name = "async___async_2.6.4.tgz"; 3096 + url = "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz"; 3097 + sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 2762 3098 }; 2763 3099 } 2764 3100 { 2765 - name = "async___async_3.2.0.tgz"; 3101 + name = "async___async_3.2.2.tgz"; 2766 3102 path = fetchurl { 2767 - name = "async___async_3.2.0.tgz"; 2768 - url = "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz"; 2769 - sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; 3103 + name = "async___async_3.2.2.tgz"; 3104 + url = "https://registry.yarnpkg.com/async/-/async-3.2.2.tgz"; 3105 + sha512 = "H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g=="; 2770 3106 }; 2771 3107 } 2772 3108 { 2773 - name = "autoprefixer___autoprefixer_10.2.6.tgz"; 3109 + name = "autoprefixer___autoprefixer_10.4.0.tgz"; 2774 3110 path = fetchurl { 2775 - name = "autoprefixer___autoprefixer_10.2.6.tgz"; 2776 - url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.6.tgz"; 2777 - sha512 = "8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg=="; 3111 + name = "autoprefixer___autoprefixer_10.4.0.tgz"; 3112 + url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.0.tgz"; 3113 + sha512 = "7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA=="; 2778 3114 }; 2779 3115 } 2780 3116 { 2781 - name = "available_typed_arrays___available_typed_arrays_1.0.4.tgz"; 3117 + name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz"; 2782 3118 path = fetchurl { 2783 - name = "available_typed_arrays___available_typed_arrays_1.0.4.tgz"; 2784 - url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz"; 2785 - sha512 = "SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA=="; 3119 + name = "available_typed_arrays___available_typed_arrays_1.0.5.tgz"; 3120 + url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; 3121 + sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 2786 3122 }; 2787 3123 } 2788 3124 { 2789 - name = "axios_mock_adapter___axios_mock_adapter_1.19.0.tgz"; 3125 + name = "axios_mock_adapter___axios_mock_adapter_1.20.0.tgz"; 2790 3126 path = fetchurl { 2791 - name = "axios_mock_adapter___axios_mock_adapter_1.19.0.tgz"; 2792 - url = "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-1.19.0.tgz"; 2793 - sha512 = "D+0U4LNPr7WroiBDvWilzTMYPYTuZlbo6BI8YHZtj7wYQS8NkARlP9KBt8IWWHTQJ0q/8oZ0ClPBtKCCkx8cQg=="; 3127 + name = "axios_mock_adapter___axios_mock_adapter_1.20.0.tgz"; 3128 + url = "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-1.20.0.tgz"; 3129 + sha512 = "shZRhTjLP0WWdcvHKf3rH3iW9deb3UdKbdnKUoHmmsnBhVXN3sjPJM6ZvQ2r/ywgvBVQrMnjrSyQab60G1sr2w=="; 2794 3130 }; 2795 3131 } 2796 3132 { ··· 2818 3154 }; 2819 3155 } 2820 3156 { 2821 - name = "babel_loader___babel_loader_8.2.2.tgz"; 3157 + name = "babel_loader___babel_loader_8.2.3.tgz"; 2822 3158 path = fetchurl { 2823 - name = "babel_loader___babel_loader_8.2.2.tgz"; 2824 - url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz"; 2825 - sha512 = "JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g=="; 3159 + name = "babel_loader___babel_loader_8.2.3.tgz"; 3160 + url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.3.tgz"; 3161 + sha512 = "n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw=="; 2826 3162 }; 2827 3163 } 2828 3164 { ··· 2906 3242 }; 2907 3243 } 2908 3244 { 2909 - name = "babel_plugin_styled_components___babel_plugin_styled_components_1.12.0.tgz"; 3245 + name = "babel_plugin_styled_components___babel_plugin_styled_components_1.13.3.tgz"; 2910 3246 path = fetchurl { 2911 - name = "babel_plugin_styled_components___babel_plugin_styled_components_1.12.0.tgz"; 2912 - url = "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz"; 2913 - sha512 = "FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA=="; 3247 + name = "babel_plugin_styled_components___babel_plugin_styled_components_1.13.3.tgz"; 3248 + url = "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.3.tgz"; 3249 + sha512 = "meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw=="; 2914 3250 }; 2915 3251 } 2916 3252 { ··· 3042 3378 }; 3043 3379 } 3044 3380 { 3045 - name = "base64_arraybuffer___base64_arraybuffer_0.1.4.tgz"; 3046 - path = fetchurl { 3047 - name = "base64_arraybuffer___base64_arraybuffer_0.1.4.tgz"; 3048 - url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz"; 3049 - sha1 = "mBjHngWbE1X5fgQooBfIOOkLqBI="; 3050 - }; 3051 - } 3052 - { 3053 3381 name = "base64_arraybuffer___base64_arraybuffer_0.2.0.tgz"; 3054 3382 path = fetchurl { 3055 3383 name = "base64_arraybuffer___base64_arraybuffer_0.2.0.tgz"; 3056 3384 url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.2.0.tgz"; 3057 3385 sha512 = "7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ=="; 3386 + }; 3387 + } 3388 + { 3389 + name = "base64_arraybuffer___base64_arraybuffer_1.0.1.tgz"; 3390 + path = fetchurl { 3391 + name = "base64_arraybuffer___base64_arraybuffer_1.0.1.tgz"; 3392 + url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-1.0.1.tgz"; 3393 + sha512 = "vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA=="; 3058 3394 }; 3059 3395 } 3060 3396 { ··· 3210 3546 }; 3211 3547 } 3212 3548 { 3213 - name = "bootstrap___bootstrap_4.6.0.tgz"; 3549 + name = "bootstrap___bootstrap_4.6.1.tgz"; 3214 3550 path = fetchurl { 3215 - name = "bootstrap___bootstrap_4.6.0.tgz"; 3216 - url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.0.tgz"; 3217 - sha512 = "Io55IuQY3kydzHtbGvQya3H+KorS/M9rSNyfCGCg9WZ4pyT/lCxIlpJgG1GXW/PswzC84Tr2fBYi+7+jFVQQBw=="; 3551 + name = "bootstrap___bootstrap_4.6.1.tgz"; 3552 + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.6.1.tgz"; 3553 + sha512 = "0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og=="; 3218 3554 }; 3219 3555 } 3220 3556 { ··· 3338 3674 }; 3339 3675 } 3340 3676 { 3341 - name = "browserslist___browserslist_4.16.6.tgz"; 3677 + name = "browserslist___browserslist_4.17.6.tgz"; 3342 3678 path = fetchurl { 3343 - name = "browserslist___browserslist_4.16.6.tgz"; 3344 - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz"; 3345 - sha512 = "Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="; 3679 + name = "browserslist___browserslist_4.17.6.tgz"; 3680 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.6.tgz"; 3681 + sha512 = "uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw=="; 3346 3682 }; 3347 3683 } 3348 3684 { ··· 3386 3722 }; 3387 3723 } 3388 3724 { 3389 - name = "buffer_from___buffer_from_1.1.1.tgz"; 3725 + name = "buffer_from___buffer_from_1.1.2.tgz"; 3390 3726 path = fetchurl { 3391 - name = "buffer_from___buffer_from_1.1.1.tgz"; 3392 - url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 3393 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 3727 + name = "buffer_from___buffer_from_1.1.2.tgz"; 3728 + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; 3729 + sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 3394 3730 }; 3395 3731 } 3396 3732 { ··· 3514 3850 }; 3515 3851 } 3516 3852 { 3517 - name = "https___registry.npmjs.org_caniuse_lite___caniuse_lite_1.0.30001309.tgz"; 3853 + name = "https___registry.npmjs.org_caniuse_lite___caniuse_lite_1.0.30001338.tgz"; 3518 3854 path = fetchurl { 3519 - name = "https___registry.npmjs.org_caniuse_lite___caniuse_lite_1.0.30001309.tgz"; 3520 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz"; 3521 - sha512 = "Pl8vfigmBXXq+/yUz1jUwULeq9xhMJznzdc/xwl4WclDAuebcTHVefpz8lE/bMI+UN7TOkSSe7B7RnZd6+dzjA=="; 3855 + name = "https___registry.npmjs.org_caniuse_lite___caniuse_lite_1.0.30001338.tgz"; 3856 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz"; 3857 + sha512 = "1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ=="; 3522 3858 }; 3523 3859 } 3524 3860 { ··· 3546 3882 }; 3547 3883 } 3548 3884 { 3549 - name = "chalk___chalk_4.1.1.tgz"; 3885 + name = "chalk___chalk_4.1.2.tgz"; 3550 3886 path = fetchurl { 3551 - name = "chalk___chalk_4.1.1.tgz"; 3552 - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz"; 3553 - sha512 = "diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="; 3887 + name = "chalk___chalk_4.1.2.tgz"; 3888 + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; 3889 + sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 3554 3890 }; 3555 3891 } 3556 3892 { ··· 3578 3914 }; 3579 3915 } 3580 3916 { 3581 - name = "cheerio_select___cheerio_select_1.4.0.tgz"; 3917 + name = "cheerio_select___cheerio_select_1.5.0.tgz"; 3582 3918 path = fetchurl { 3583 - name = "cheerio_select___cheerio_select_1.4.0.tgz"; 3584 - url = "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.4.0.tgz"; 3585 - sha512 = "sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew=="; 3919 + name = "cheerio_select___cheerio_select_1.5.0.tgz"; 3920 + url = "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.5.0.tgz"; 3921 + sha512 = "qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg=="; 3586 3922 }; 3587 3923 } 3588 3924 { 3589 - name = "cheerio___cheerio_1.0.0_rc.9.tgz"; 3925 + name = "cheerio___cheerio_1.0.0_rc.10.tgz"; 3590 3926 path = fetchurl { 3591 - name = "cheerio___cheerio_1.0.0_rc.9.tgz"; 3592 - url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.9.tgz"; 3593 - sha512 = "QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng=="; 3927 + name = "cheerio___cheerio_1.0.0_rc.10.tgz"; 3928 + url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.10.tgz"; 3929 + sha512 = "g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw=="; 3594 3930 }; 3595 3931 } 3596 3932 { 3597 - name = "chokidar___chokidar_3.5.1.tgz"; 3933 + name = "chokidar___chokidar_3.5.2.tgz"; 3598 3934 path = fetchurl { 3599 - name = "chokidar___chokidar_3.5.1.tgz"; 3600 - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz"; 3601 - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 3935 + name = "chokidar___chokidar_3.5.2.tgz"; 3936 + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz"; 3937 + sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 3602 3938 }; 3603 3939 } 3604 3940 { ··· 3722 4058 }; 3723 4059 } 3724 4060 { 3725 - name = "codemirror___codemirror_5.59.4.tgz"; 4061 + name = "codemirror___codemirror_5.63.3.tgz"; 3726 4062 path = fetchurl { 3727 - name = "codemirror___codemirror_5.59.4.tgz"; 3728 - url = "https://registry.yarnpkg.com/codemirror/-/codemirror-5.59.4.tgz"; 3729 - sha512 = "achw5JBgx8QPcACDDn+EUUXmCYzx/zxEtOGXyjvLEvYY8GleUrnfm5D+Zb+UjShHggXKDT9AXrbkBZX6a0YSQg=="; 4063 + name = "codemirror___codemirror_5.63.3.tgz"; 4064 + url = "https://registry.yarnpkg.com/codemirror/-/codemirror-5.63.3.tgz"; 4065 + sha512 = "1C+LELr+5grgJYqwZKqxrcbPsHFHapVaVAloBsFBASbpLnQqLw1U8yXJ3gT5D+rhxIiSpo+kTqN+hQ+9ialIXw=="; 3730 4066 }; 3731 4067 } 3732 4068 { ··· 3762 4098 }; 3763 4099 } 3764 4100 { 3765 - name = "colord___colord_2.0.0.tgz"; 4101 + name = "colord___colord_2.9.1.tgz"; 3766 4102 path = fetchurl { 3767 - name = "colord___colord_2.0.0.tgz"; 3768 - url = "https://registry.yarnpkg.com/colord/-/colord-2.0.0.tgz"; 3769 - sha512 = "WMDFJfoY3wqPZNpKUFdse3HhD5BHCbE9JCdxRzoVH+ywRITGOeWAHNkGEmyxLlErEpN9OLMWgdM9dWQtDk5dog=="; 4103 + name = "colord___colord_2.9.1.tgz"; 4104 + url = "https://registry.yarnpkg.com/colord/-/colord-2.9.1.tgz"; 4105 + sha512 = "4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw=="; 3770 4106 }; 3771 4107 } 3772 4108 { 3773 - name = "colorette___colorette_1.2.2.tgz"; 4109 + name = "colorette___colorette_2.0.16.tgz"; 3774 4110 path = fetchurl { 3775 - name = "colorette___colorette_1.2.2.tgz"; 3776 - url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz"; 3777 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 4111 + name = "colorette___colorette_2.0.16.tgz"; 4112 + url = "https://registry.yarnpkg.com/colorette/-/colorette-2.0.16.tgz"; 4113 + sha512 = "hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g=="; 3778 4114 }; 3779 4115 } 3780 4116 { ··· 3799 4135 name = "commander___commander_4.1.1.tgz"; 3800 4136 url = "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz"; 3801 4137 sha512 = "NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="; 3802 - }; 3803 - } 3804 - { 3805 - name = "commander___commander_6.2.1.tgz"; 3806 - path = fetchurl { 3807 - name = "commander___commander_6.2.1.tgz"; 3808 - url = "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz"; 3809 - sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; 3810 - }; 3811 - } 3812 - { 3813 - name = "commander___commander_7.1.0.tgz"; 3814 - path = fetchurl { 3815 - name = "commander___commander_7.1.0.tgz"; 3816 - url = "https://registry.yarnpkg.com/commander/-/commander-7.1.0.tgz"; 3817 - sha512 = "pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg=="; 3818 4138 }; 3819 4139 } 3820 4140 { ··· 3842 4194 }; 3843 4195 } 3844 4196 { 3845 - name = "config_chain___config_chain_1.1.12.tgz"; 4197 + name = "config_chain___config_chain_1.1.13.tgz"; 3846 4198 path = fetchurl { 3847 - name = "config_chain___config_chain_1.1.12.tgz"; 3848 - url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz"; 3849 - sha512 = "a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA=="; 4199 + name = "config_chain___config_chain_1.1.13.tgz"; 4200 + url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz"; 4201 + sha512 = "qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ=="; 3850 4202 }; 3851 4203 } 3852 4204 { ··· 3930 4282 }; 3931 4283 } 3932 4284 { 3933 - name = "copy_to_clipboard___copy_to_clipboard_3.3.1.tgz"; 3934 - path = fetchurl { 3935 - name = "copy_to_clipboard___copy_to_clipboard_3.3.1.tgz"; 3936 - url = "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz"; 3937 - sha512 = "i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw=="; 3938 - }; 3939 - } 3940 - { 3941 4285 name = "copy_webpack_plugin___copy_webpack_plugin_7.0.0.tgz"; 3942 4286 path = fetchurl { 3943 4287 name = "copy_webpack_plugin___copy_webpack_plugin_7.0.0.tgz"; ··· 3946 4306 }; 3947 4307 } 3948 4308 { 3949 - name = "core_js_compat___core_js_compat_3.9.1.tgz"; 3950 - path = fetchurl { 3951 - name = "core_js_compat___core_js_compat_3.9.1.tgz"; 3952 - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz"; 3953 - sha512 = "jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA=="; 3954 - }; 3955 - } 3956 - { 3957 4309 name = "core_js___core_js_2.6.12.tgz"; 3958 4310 path = fetchurl { 3959 4311 name = "core_js___core_js_2.6.12.tgz"; ··· 3954 4322 }; 3955 4323 } 3956 4324 { 3957 - name = "core_js___core_js_3.12.1.tgz"; 4325 + name = "core_js___core_js_3.19.1.tgz"; 3958 4326 path = fetchurl { 3959 - name = "core_js___core_js_3.12.1.tgz"; 3960 - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.12.1.tgz"; 3961 - sha512 = "Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw=="; 4327 + name = "core_js___core_js_3.19.1.tgz"; 4328 + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.19.1.tgz"; 4329 + sha512 = "Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg=="; 3962 4330 }; 3963 4331 } 3964 4332 { 3965 - name = "core_util_is___core_util_is_1.0.2.tgz"; 4333 + name = "core_util_is___core_util_is_1.0.3.tgz"; 3966 4334 path = fetchurl { 3967 - name = "core_util_is___core_util_is_1.0.2.tgz"; 3968 - url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 3969 - sha1 = "tf1UIgqivFq1eqtxQMlAdUUDwac="; 4335 + name = "core_util_is___core_util_is_1.0.3.tgz"; 4336 + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz"; 4337 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 3970 4338 }; 3971 4339 } 3972 4340 { ··· 3986 4354 }; 3987 4355 } 3988 4356 { 3989 - name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; 4357 + name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; 3990 4358 path = fetchurl { 3991 - name = "cosmiconfig___cosmiconfig_7.0.0.tgz"; 3992 - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz"; 3993 - sha512 = "pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA=="; 4359 + name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; 4360 + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; 4361 + sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; 3994 4362 }; 3995 4363 } 3996 4364 { ··· 4066 4434 }; 4067 4435 } 4068 4436 { 4069 - name = "css_color_names___css_color_names_0.0.4.tgz"; 4070 - path = fetchurl { 4071 - name = "css_color_names___css_color_names_0.0.4.tgz"; 4072 - url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz"; 4073 - sha1 = "gIrcLnnPhHOAabZGyyDsJ762KeA="; 4074 - }; 4075 - } 4076 - { 4077 4437 name = "css_color_names___css_color_names_1.0.1.tgz"; 4078 4438 path = fetchurl { 4079 4439 name = "css_color_names___css_color_names_1.0.1.tgz"; ··· 4074 4450 }; 4075 4451 } 4076 4452 { 4077 - name = "css_declaration_sorter___css_declaration_sorter_6.0.3.tgz"; 4453 + name = "css_declaration_sorter___css_declaration_sorter_6.1.3.tgz"; 4078 4454 path = fetchurl { 4079 - name = "css_declaration_sorter___css_declaration_sorter_6.0.3.tgz"; 4080 - url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.0.3.tgz"; 4081 - sha512 = "52P95mvW1SMzuRZegvpluT6yEv0FqQusydKQPZsNN5Q7hh8EwQvN8E2nwuJ16BBvNN6LcoIZXu/Bk58DAhrrxw=="; 4455 + name = "css_declaration_sorter___css_declaration_sorter_6.1.3.tgz"; 4456 + url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz"; 4457 + sha512 = "SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA=="; 4082 4458 }; 4083 4459 } 4084 4460 { 4085 - name = "css_line_break___css_line_break_1.1.1.tgz"; 4461 + name = "css_line_break___css_line_break_2.0.1.tgz"; 4086 4462 path = fetchurl { 4087 - name = "css_line_break___css_line_break_1.1.1.tgz"; 4088 - url = "https://registry.yarnpkg.com/css-line-break/-/css-line-break-1.1.1.tgz"; 4089 - sha512 = "1feNVaM4Fyzdj4mKPIQNL2n70MmuYzAXZ1aytlROFX1JsOo070OsugwGjj7nl6jnDJWHDM8zRZswkmeYVWZJQA=="; 4463 + name = "css_line_break___css_line_break_2.0.1.tgz"; 4464 + url = "https://registry.yarnpkg.com/css-line-break/-/css-line-break-2.0.1.tgz"; 4465 + sha512 = "gwKYIMUn7xodIcb346wgUhE2Dt5O1Kmrc16PWi8sL4FTfyDj8P5095rzH7+O8CTZudJr+uw2GCI/hwEkDJFI2w=="; 4090 4466 }; 4091 4467 } 4092 4468 { 4093 - name = "css_loader___css_loader_5.1.1.tgz"; 4469 + name = "css_loader___css_loader_5.2.7.tgz"; 4094 4470 path = fetchurl { 4095 - name = "css_loader___css_loader_5.1.1.tgz"; 4096 - url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.1.1.tgz"; 4097 - sha512 = "5FfhpjwtuRgxqmusDidowqmLlcb+1HgnEDMsi2JhiUrZUcoc+cqw+mUtMIF/+OfeMYaaFCLYp1TaIt9H6I/fKA=="; 4471 + name = "css_loader___css_loader_5.2.7.tgz"; 4472 + url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz"; 4473 + sha512 = "Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg=="; 4098 4474 }; 4099 4475 } 4100 4476 { 4101 - name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.0.0.tgz"; 4477 + name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.1.1.tgz"; 4102 4478 path = fetchurl { 4103 - name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.0.0.tgz"; 4104 - url = "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.0.tgz"; 4105 - sha512 = "yIrqG0pPphR1RoNx2wDxYmxRf2ubRChLDXxv7ccipEm5bRKsZRYp8n+2peeXehtTF5s3yNxlqsdz3WQOsAgUkw=="; 4479 + name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.1.1.tgz"; 4480 + url = "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.1.1.tgz"; 4481 + sha512 = "KlB8l5uoNcf9F7i5kXnkxoqJGd2BXH4f0+Lj2vSWSmuvMLYO1kNsJ1KHSzeDW8e45/whgSOPcKVT/3JopkT8dg=="; 4106 4482 }; 4107 4483 } 4108 4484 { ··· 4186 4562 }; 4187 4563 } 4188 4564 { 4189 - name = "cssnano_preset_default___cssnano_preset_default_5.1.1.tgz"; 4565 + name = "cssnano_preset_default___cssnano_preset_default_5.1.5.tgz"; 4190 4566 path = fetchurl { 4191 - name = "cssnano_preset_default___cssnano_preset_default_5.1.1.tgz"; 4192 - url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.1.tgz"; 4193 - sha512 = "kAhR71Tascmnjlhl4UegGA3KGGbMLXHkkqVpA9idsRT1JmIhIsz1C3tDpBeQMUw5EX5Rfb1HGc/PRqD2AFk3Vg=="; 4567 + name = "cssnano_preset_default___cssnano_preset_default_5.1.5.tgz"; 4568 + url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.5.tgz"; 4569 + sha512 = "fF00UI+d3PWkGfMd62geqmoUe5h+LOhGE2GH4Fqq3beNKdCU1LWwLUyIcu4/A72lWv0737cHey5zhhWw3rW0sA=="; 4194 4570 }; 4195 4571 } 4196 4572 { ··· 4202 4578 }; 4203 4579 } 4204 4580 { 4205 - name = "cssnano___cssnano_5.0.4.tgz"; 4581 + name = "cssnano___cssnano_5.0.9.tgz"; 4206 4582 path = fetchurl { 4207 - name = "cssnano___cssnano_5.0.4.tgz"; 4208 - url = "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.4.tgz"; 4209 - sha512 = "I+fDW74CJ4yb31765ov9xXe70XLZvFTXjwhmA//VgAAuSAU34Oblbe94Q9zffiCX1VhcSfQWARQnwhz+Nqgb4Q=="; 4583 + name = "cssnano___cssnano_5.0.9.tgz"; 4584 + url = "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.9.tgz"; 4585 + sha512 = "Y4olTKBKsPKl5izpcXHRDiB/1rVdbIDM4qVXgEKBt466kYT42SEEsnCYOQFFXzEkUYV8pJNCII9JKzb8KfDk+g=="; 4210 4586 }; 4211 4587 } 4212 4588 { ··· 4218 4594 }; 4219 4595 } 4220 4596 { 4221 - name = "csstype___csstype_2.6.16.tgz"; 4597 + name = "csstype___csstype_2.6.18.tgz"; 4222 4598 path = fetchurl { 4223 - name = "csstype___csstype_2.6.16.tgz"; 4224 - url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.16.tgz"; 4225 - sha512 = "61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q=="; 4599 + name = "csstype___csstype_2.6.18.tgz"; 4600 + url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.18.tgz"; 4601 + sha512 = "RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ=="; 4226 4602 }; 4227 4603 } 4228 4604 { ··· 4234 4610 }; 4235 4611 } 4236 4612 { 4237 - name = "csstype___csstype_3.0.8.tgz"; 4613 + name = "csstype___csstype_3.0.9.tgz"; 4238 4614 path = fetchurl { 4239 - name = "csstype___csstype_3.0.8.tgz"; 4240 - url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz"; 4241 - sha512 = "jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="; 4615 + name = "csstype___csstype_3.0.9.tgz"; 4616 + url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz"; 4617 + sha512 = "rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="; 4242 4618 }; 4243 4619 } 4244 4620 { ··· 4274 4650 }; 4275 4651 } 4276 4652 { 4277 - name = "date_fns___date_fns_2.24.0.tgz"; 4653 + name = "date_fns___date_fns_2.25.0.tgz"; 4278 4654 path = fetchurl { 4279 - name = "date_fns___date_fns_2.24.0.tgz"; 4280 - url = "https://registry.yarnpkg.com/date-fns/-/date-fns-2.24.0.tgz"; 4281 - sha512 = "6ujwvwgPID6zbI0o7UbURi2vlLDR9uP26+tW6Lg+Ji3w7dd0i3DOcjcClLjLPranT60SSEFBwdSyYwn/ZkPIuw=="; 4655 + name = "date_fns___date_fns_2.25.0.tgz"; 4656 + url = "https://registry.yarnpkg.com/date-fns/-/date-fns-2.25.0.tgz"; 4657 + sha512 = "ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w=="; 4282 4658 }; 4283 4659 } 4284 4660 { ··· 4286 4662 path = fetchurl { 4287 4663 name = "date_format___date_format_4.0.3.tgz"; 4288 4664 url = "https://registry.yarnpkg.com/date-format/-/date-format-4.0.3.tgz"; 4289 - sha1 = "9j3l3AjcAu/Y7zK/KmkY5IbzWHM="; 4665 + sha512 = "7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ=="; 4290 4666 }; 4291 4667 } 4292 4668 { ··· 4298 4674 }; 4299 4675 } 4300 4676 { 4301 - name = "debug___debug_4.3.1.tgz"; 4677 + name = "debug___debug_4.3.2.tgz"; 4302 4678 path = fetchurl { 4303 - name = "debug___debug_4.3.1.tgz"; 4304 - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 4305 - sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="; 4679 + name = "debug___debug_4.3.2.tgz"; 4680 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz"; 4681 + sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 4306 4682 }; 4307 4683 } 4308 4684 { ··· 4386 4762 }; 4387 4763 } 4388 4764 { 4389 - name = "deep_is___deep_is_0.1.3.tgz"; 4765 + name = "deep_is___deep_is_0.1.4.tgz"; 4390 4766 path = fetchurl { 4391 - name = "deep_is___deep_is_0.1.3.tgz"; 4392 - url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 4393 - sha1 = "s2nW+128E+7PUk+RsHD+7cNXzzQ="; 4767 + name = "deep_is___deep_is_0.1.4.tgz"; 4768 + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz"; 4769 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 4394 4770 }; 4395 4771 } 4396 4772 { ··· 4474 4850 }; 4475 4851 } 4476 4852 { 4477 - name = "diff_arrays_of_objects___diff_arrays_of_objects_1.1.8.tgz"; 4853 + name = "diff_arrays_of_objects___diff_arrays_of_objects_1.1.9.tgz"; 4478 4854 path = fetchurl { 4479 - name = "diff_arrays_of_objects___diff_arrays_of_objects_1.1.8.tgz"; 4480 - url = "https://registry.yarnpkg.com/diff-arrays-of-objects/-/diff-arrays-of-objects-1.1.8.tgz"; 4481 - sha512 = "OAaiDlQRiv5+EASUpwNSDa/sWyKHKvODQfah1CAx0dosR8OWXedFXgxAQHIdeWDobZ86D6g93BfK2X9ECIRuqw=="; 4855 + name = "diff_arrays_of_objects___diff_arrays_of_objects_1.1.9.tgz"; 4856 + url = "https://registry.yarnpkg.com/diff-arrays-of-objects/-/diff-arrays-of-objects-1.1.9.tgz"; 4857 + sha512 = "V3Uk0sm71RjLsEvH9NZcgz6+C8Fu2eBRLwlrFlwXDEj6dfHX5El6mlRUS1hTSEm6eNvLmE4ewJ+iQbXCqGvVgQ=="; 4482 4858 }; 4483 4859 } 4484 4860 { ··· 4530 4906 }; 4531 4907 } 4532 4908 { 4533 - name = "dom_helpers___dom_helpers_5.2.0.tgz"; 4909 + name = "dom_helpers___dom_helpers_5.2.1.tgz"; 4534 4910 path = fetchurl { 4535 - name = "dom_helpers___dom_helpers_5.2.0.tgz"; 4536 - url = "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.0.tgz"; 4537 - sha512 = "Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ=="; 4911 + name = "dom_helpers___dom_helpers_5.2.1.tgz"; 4912 + url = "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz"; 4913 + sha512 = "nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="; 4538 4914 }; 4539 4915 } 4540 4916 { ··· 4586 4962 }; 4587 4963 } 4588 4964 { 4589 - name = "domhandler___domhandler_4.2.0.tgz"; 4965 + name = "domhandler___domhandler_4.2.2.tgz"; 4590 4966 path = fetchurl { 4591 - name = "domhandler___domhandler_4.2.0.tgz"; 4592 - url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz"; 4593 - sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="; 4967 + name = "domhandler___domhandler_4.2.2.tgz"; 4968 + url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz"; 4969 + sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 4594 4970 }; 4595 4971 } 4596 4972 { ··· 4602 4978 }; 4603 4979 } 4604 4980 { 4605 - name = "domutils___domutils_2.6.0.tgz"; 4981 + name = "domutils___domutils_2.8.0.tgz"; 4606 4982 path = fetchurl { 4607 - name = "domutils___domutils_2.6.0.tgz"; 4608 - url = "https://registry.yarnpkg.com/domutils/-/domutils-2.6.0.tgz"; 4609 - sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA=="; 4983 + name = "domutils___domutils_2.8.0.tgz"; 4984 + url = "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz"; 4985 + sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 4610 4986 }; 4611 4987 } 4612 4988 { ··· 4674 5050 }; 4675 5051 } 4676 5052 { 4677 - name = "electron_to_chromium___electron_to_chromium_1.3.740.tgz"; 5053 + name = "electron_to_chromium___electron_to_chromium_1.3.889.tgz"; 4678 5054 path = fetchurl { 4679 - name = "electron_to_chromium___electron_to_chromium_1.3.740.tgz"; 4680 - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.740.tgz"; 4681 - sha512 = "Mi2m55JrX2BFbNZGKYR+2ItcGnR4O5HhrvgoRRyZQlaMGQULqDhoGkLWHzJoshSzi7k1PUofxcDbNhlFrDZNhg=="; 5055 + name = "electron_to_chromium___electron_to_chromium_1.3.889.tgz"; 5056 + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.889.tgz"; 5057 + sha512 = "suEUoPTD1mExjL9TdmH7cvEiWJVM2oEiAi+Y1p0QKxI2HcRlT44qDTP2c1aZmVwRemIPYOpxmV7CxQCOWcm4XQ=="; 4682 5058 }; 4683 5059 } 4684 5060 { ··· 4738 5114 }; 4739 5115 } 4740 5116 { 4741 - name = "engine.io_client___engine.io_client_5.1.1.tgz"; 5117 + name = "engine.io_client___engine.io_client_6.0.2.tgz"; 4742 5118 path = fetchurl { 4743 - name = "engine.io_client___engine.io_client_5.1.1.tgz"; 4744 - url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-5.1.1.tgz"; 4745 - sha512 = "jPFpw2HLL0lhZ2KY0BpZhIJdleQcUO9W1xkIpo0h3d6s+5D6+EV/xgQw9qWOmymszv2WXef/6KUUehyxEKomlQ=="; 4746 - }; 4747 - } 4748 - { 4749 - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; 4750 - path = fetchurl { 4751 - name = "engine.io_parser___engine.io_parser_4.0.2.tgz"; 4752 - url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-4.0.2.tgz"; 4753 - sha512 = "sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg=="; 5119 + name = "engine.io_client___engine.io_client_6.0.2.tgz"; 5120 + url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.0.2.tgz"; 5121 + sha512 = "cAep9lhZV6Q8jMXx3TNSU5cydMzMed8/O7Tz5uzyqZvpNPtQ3WQXrLYGADxlsuaFmOLN7wZLmT7ImiFhUOku8g=="; 4754 5122 }; 4755 5123 } 4756 5124 { ··· 4762 5146 }; 4763 5147 } 4764 5148 { 4765 - name = "enhanced_resolve___enhanced_resolve_5.8.2.tgz"; 5149 + name = "enhanced_resolve___enhanced_resolve_5.8.3.tgz"; 4766 5150 path = fetchurl { 4767 - name = "enhanced_resolve___enhanced_resolve_5.8.2.tgz"; 4768 - url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz"; 4769 - sha512 = "F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA=="; 5151 + name = "enhanced_resolve___enhanced_resolve_5.8.3.tgz"; 5152 + url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz"; 5153 + sha512 = "EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA=="; 4770 5154 }; 4771 5155 } 4772 5156 { ··· 4858 5242 }; 4859 5243 } 4860 5244 { 4861 - name = "es_abstract___es_abstract_1.18.2.tgz"; 5245 + name = "es_abstract___es_abstract_1.19.1.tgz"; 4862 5246 path = fetchurl { 4863 - name = "es_abstract___es_abstract_1.18.2.tgz"; 4864 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.2.tgz"; 4865 - sha512 = "byRiNIQXE6HWNySaU6JohoNXzYgbBjztwFnBLUTiJmWXjaU9bSq3urQLUlNLQ292tc+gc07zYZXNZjaOoAX3sw=="; 5247 + name = "es_abstract___es_abstract_1.19.1.tgz"; 5248 + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz"; 5249 + sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; 4866 5250 }; 4867 5251 } 4868 5252 { ··· 4874 5258 }; 4875 5259 } 4876 5260 { 4877 - name = "es_module_lexer___es_module_lexer_0.4.1.tgz"; 5261 + name = "es_module_lexer___es_module_lexer_0.9.3.tgz"; 4878 5262 path = fetchurl { 4879 - name = "es_module_lexer___es_module_lexer_0.4.1.tgz"; 4880 - url = "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.4.1.tgz"; 4881 - sha512 = "ooYciCUtfw6/d2w56UVeqHPcoCFAiJdz5XOkYpv/Txl1HMUozpXjz/2RIQgqwKdXNDPSF1W7mJCFse3G+HDyAA=="; 5263 + name = "es_module_lexer___es_module_lexer_0.9.3.tgz"; 5264 + url = "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz"; 5265 + sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="; 4882 5266 }; 4883 5267 } 4884 5268 { ··· 4914 5298 }; 4915 5299 } 4916 5300 { 5301 + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; 5302 + path = fetchurl { 5303 + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; 5304 + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 5305 + sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 5306 + }; 5307 + } 5308 + { 4917 5309 name = "eslint_plugin_react_hooks___eslint_plugin_react_hooks_4.3.0.tgz"; 4918 5310 path = fetchurl { 4919 5311 name = "eslint_plugin_react_hooks___eslint_plugin_react_hooks_4.3.0.tgz"; ··· 4930 5306 }; 4931 5307 } 4932 5308 { 4933 - name = "eslint_plugin_react___eslint_plugin_react_7.23.2.tgz"; 5309 + name = "eslint_plugin_react___eslint_plugin_react_7.26.1.tgz"; 4934 5310 path = fetchurl { 4935 - name = "eslint_plugin_react___eslint_plugin_react_7.23.2.tgz"; 4936 - url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.2.tgz"; 4937 - sha512 = "AfjgFQB+nYszudkxRkTFu0UR1zEQig0ArVMPloKhxwlwkzaw/fBiH0QWcBBhZONlXqQC51+nfqFrkn4EzHcGBw=="; 5311 + name = "eslint_plugin_react___eslint_plugin_react_7.26.1.tgz"; 5312 + url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.26.1.tgz"; 5313 + sha512 = "Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ=="; 4938 5314 }; 4939 5315 } 4940 5316 { ··· 4978 5354 }; 4979 5355 } 4980 5356 { 4981 - name = "eslint___eslint_7.21.0.tgz"; 5357 + name = "eslint___eslint_7.32.0.tgz"; 4982 5358 path = fetchurl { 4983 - name = "eslint___eslint_7.21.0.tgz"; 4984 - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.21.0.tgz"; 4985 - sha512 = "W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg=="; 5359 + name = "eslint___eslint_7.32.0.tgz"; 5360 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz"; 5361 + sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 4986 5362 }; 4987 5363 } 4988 5364 { ··· 5026 5402 }; 5027 5403 } 5028 5404 { 5029 - name = "estraverse___estraverse_5.2.0.tgz"; 5405 + name = "estraverse___estraverse_5.3.0.tgz"; 5030 5406 path = fetchurl { 5031 - name = "estraverse___estraverse_5.2.0.tgz"; 5032 - url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz"; 5033 - sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 5407 + name = "estraverse___estraverse_5.3.0.tgz"; 5408 + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz"; 5409 + sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 5034 5410 }; 5035 5411 } 5036 5412 { ··· 5106 5482 }; 5107 5483 } 5108 5484 { 5109 - name = "execa___execa_5.0.0.tgz"; 5485 + name = "execa___execa_5.1.1.tgz"; 5110 5486 path = fetchurl { 5111 - name = "execa___execa_5.0.0.tgz"; 5112 - url = "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz"; 5113 - sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ=="; 5487 + name = "execa___execa_5.1.1.tgz"; 5488 + url = "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz"; 5489 + sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; 5114 5490 }; 5115 5491 } 5116 5492 { ··· 5170 5546 }; 5171 5547 } 5172 5548 { 5173 - name = "fast_glob___fast_glob_3.2.5.tgz"; 5549 + name = "fast_glob___fast_glob_3.2.7.tgz"; 5174 5550 path = fetchurl { 5175 - name = "fast_glob___fast_glob_3.2.5.tgz"; 5176 - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz"; 5177 - sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 5551 + name = "fast_glob___fast_glob_3.2.7.tgz"; 5552 + url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz"; 5553 + sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 5178 5554 }; 5179 5555 } 5180 5556 { ··· 5202 5578 }; 5203 5579 } 5204 5580 { 5205 - name = "fast_safe_stringify___fast_safe_stringify_2.0.7.tgz"; 5581 + name = "fast_safe_stringify___fast_safe_stringify_2.1.1.tgz"; 5206 5582 path = fetchurl { 5207 - name = "fast_safe_stringify___fast_safe_stringify_2.0.7.tgz"; 5208 - url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz"; 5209 - sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 5583 + name = "fast_safe_stringify___fast_safe_stringify_2.1.1.tgz"; 5584 + url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz"; 5585 + sha512 = "W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="; 5210 5586 }; 5211 5587 } 5212 5588 { 5213 - name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 5589 + name = "fast_xml_parser___fast_xml_parser_3.21.1.tgz"; 5214 5590 path = fetchurl { 5215 - name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 5216 - url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz"; 5217 - sha512 = "4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg=="; 5591 + name = "fast_xml_parser___fast_xml_parser_3.21.1.tgz"; 5592 + url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz"; 5593 + sha512 = "FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg=="; 5218 5594 }; 5219 5595 } 5220 5596 { ··· 5226 5602 }; 5227 5603 } 5228 5604 { 5229 - name = "fastq___fastq_1.11.0.tgz"; 5605 + name = "fastq___fastq_1.13.0.tgz"; 5230 5606 path = fetchurl { 5231 - name = "fastq___fastq_1.11.0.tgz"; 5232 - url = "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz"; 5233 - sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 5607 + name = "fastq___fastq_1.13.0.tgz"; 5608 + url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz"; 5609 + sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; 5234 5610 }; 5235 5611 } 5236 5612 { ··· 5346 5722 }; 5347 5723 } 5348 5724 { 5349 - name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; 5725 + name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; 5350 5726 path = fetchurl { 5351 - name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; 5352 - url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 5353 - sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 5727 + name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; 5728 + url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 5729 + sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 5354 5730 }; 5355 5731 } 5356 5732 { ··· 5386 5762 }; 5387 5763 } 5388 5764 { 5389 - name = "flatted___flatted_3.1.1.tgz"; 5765 + name = "flatted___flatted_3.2.2.tgz"; 5390 5766 path = fetchurl { 5391 - name = "flatted___flatted_3.1.1.tgz"; 5392 - url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz"; 5393 - sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 5767 + name = "flatted___flatted_3.2.2.tgz"; 5768 + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz"; 5769 + sha512 = "JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA=="; 5394 5770 }; 5395 5771 } 5396 5772 { ··· 5398 5774 path = fetchurl { 5399 5775 name = "flatted___flatted_3.2.5.tgz"; 5400 5776 url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz"; 5401 - sha1 = "dshYT0/IQ9tkcCpr0Eq3qL1mbaM="; 5777 + sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 5402 5778 }; 5403 5779 } 5404 5780 { ··· 5446 5822 path = fetchurl { 5447 5823 name = "fs_extra___fs_extra_10.0.0.tgz"; 5448 5824 url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.0.0.tgz"; 5449 - sha1 = "n/YbZV3eU/s0qC34S7IUzoAuF8E="; 5825 + sha512 = "C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ=="; 5450 5826 }; 5451 5827 } 5452 5828 { ··· 5482 5858 }; 5483 5859 } 5484 5860 { 5485 - name = "function.prototype.name___function.prototype.name_1.1.4.tgz"; 5861 + name = "function.prototype.name___function.prototype.name_1.1.5.tgz"; 5486 5862 path = fetchurl { 5487 - name = "function.prototype.name___function.prototype.name_1.1.4.tgz"; 5488 - url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz"; 5489 - sha512 = "iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ=="; 5863 + name = "function.prototype.name___function.prototype.name_1.1.5.tgz"; 5864 + url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz"; 5865 + sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="; 5490 5866 }; 5491 5867 } 5492 5868 { ··· 5602 5978 }; 5603 5979 } 5604 5980 { 5981 + name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; 5982 + path = fetchurl { 5983 + name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; 5984 + url = "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; 5985 + sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; 5986 + }; 5987 + } 5988 + { 5605 5989 name = "glob_parent___glob_parent_5.1.2.tgz"; 5606 5990 path = fetchurl { 5607 5991 name = "glob_parent___glob_parent_5.1.2.tgz"; ··· 5623 5991 name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz"; 5624 5992 url = "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"; 5625 5993 sha512 = "lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="; 5626 - }; 5627 - } 5628 - { 5629 - name = "glob___glob_7.1.6.tgz"; 5630 - path = fetchurl { 5631 - name = "glob___glob_7.1.6.tgz"; 5632 - url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 5633 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 5634 5994 }; 5635 5995 } 5636 5996 { ··· 5642 6018 }; 5643 6019 } 5644 6020 { 5645 - name = "globals___globals_12.4.0.tgz"; 6021 + name = "globals___globals_13.12.0.tgz"; 5646 6022 path = fetchurl { 5647 - name = "globals___globals_12.4.0.tgz"; 5648 - url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz"; 5649 - sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 6023 + name = "globals___globals_13.12.0.tgz"; 6024 + url = "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz"; 6025 + sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 5650 6026 }; 5651 6027 } 5652 6028 { ··· 5666 6042 }; 5667 6043 } 5668 6044 { 5669 - name = "globby___globby_11.0.3.tgz"; 6045 + name = "globby___globby_11.0.4.tgz"; 5670 6046 path = fetchurl { 5671 - name = "globby___globby_11.0.3.tgz"; 5672 - url = "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz"; 5673 - sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 6047 + name = "globby___globby_11.0.4.tgz"; 6048 + url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz"; 6049 + sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 5674 6050 }; 5675 6051 } 5676 6052 { ··· 5690 6066 }; 5691 6067 } 5692 6068 { 5693 - name = "graceful_fs___graceful_fs_4.2.6.tgz"; 6069 + name = "graceful_fs___graceful_fs_4.2.8.tgz"; 5694 6070 path = fetchurl { 5695 - name = "graceful_fs___graceful_fs_4.2.6.tgz"; 5696 - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz"; 5697 - sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 6071 + name = "graceful_fs___graceful_fs_4.2.8.tgz"; 6072 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz"; 6073 + sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 5698 6074 }; 5699 6075 } 5700 6076 { ··· 5786 6162 }; 5787 6163 } 5788 6164 { 6165 + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; 6166 + path = fetchurl { 6167 + name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; 6168 + url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 6169 + sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 6170 + }; 6171 + } 6172 + { 5789 6173 name = "has_unicode___has_unicode_2.0.1.tgz"; 5790 6174 path = fetchurl { 5791 6175 name = "has_unicode___has_unicode_2.0.1.tgz"; ··· 5842 6210 }; 5843 6211 } 5844 6212 { 5845 - name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; 5846 - path = fetchurl { 5847 - name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; 5848 - url = "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz"; 5849 - sha512 = "l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="; 5850 - }; 5851 - } 5852 - { 5853 6213 name = "history___history_5.3.0.tgz"; 5854 6214 path = fetchurl { 5855 6215 name = "history___history_5.3.0.tgz"; ··· 5866 6242 }; 5867 6243 } 5868 6244 { 5869 - name = "hsl_regex___hsl_regex_1.0.0.tgz"; 6245 + name = "html_dom_parser___html_dom_parser_1.0.2.tgz"; 5870 6246 path = fetchurl { 5871 - name = "hsl_regex___hsl_regex_1.0.0.tgz"; 5872 - url = "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz"; 5873 - sha1 = "1JMwx4ntgZ4nakwNJy3/owsY/m4="; 5874 - }; 5875 - } 5876 - { 5877 - name = "hsla_regex___hsla_regex_1.0.0.tgz"; 5878 - path = fetchurl { 5879 - name = "hsla_regex___hsla_regex_1.0.0.tgz"; 5880 - url = "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz"; 5881 - sha1 = "wc56MWjIxmFAM6S194d/OyJfnDg="; 5882 - }; 5883 - } 5884 - { 5885 - name = "html_dom_parser___html_dom_parser_1.0.1.tgz"; 5886 - path = fetchurl { 5887 - name = "html_dom_parser___html_dom_parser_1.0.1.tgz"; 5888 - url = "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.0.1.tgz"; 5889 - sha512 = "uKXISKlHzB/l9A08jrs2wseQJ9b864ZfEdmIZskj10cuP6HxCOMHSK0RdluV8NVQaWs0PwefN7d8wqG3jR0IbQ=="; 6247 + name = "html_dom_parser___html_dom_parser_1.0.2.tgz"; 6248 + url = "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.0.2.tgz"; 6249 + sha512 = "Jq4oVkVSn+10ut3fyc2P/Fs1jqTo0l45cP6Q8d2ef/9jfkYwulO0QXmyLI0VUiZrXF4czpGgMEJRa52CQ6Fk8Q=="; 5890 6250 }; 5891 6251 } 5892 6252 { ··· 5890 6282 }; 5891 6283 } 5892 6284 { 5893 - name = "html_react_parser___html_react_parser_1.2.7.tgz"; 6285 + name = "html_react_parser___html_react_parser_1.4.0.tgz"; 5894 6286 path = fetchurl { 5895 - name = "html_react_parser___html_react_parser_1.2.7.tgz"; 5896 - url = "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.2.7.tgz"; 5897 - sha512 = "gUUEgrZV0YaCxtZO2XuJDUnHSq7gOqKu1krye97cxgiZ+ipaIzspGMhATeq9lhy9gwYmwBF2YCHe/accrMMo8Q=="; 6287 + name = "html_react_parser___html_react_parser_1.4.0.tgz"; 6288 + url = "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.4.0.tgz"; 6289 + sha512 = "v8Kxy+7L90ZFSM690oJWBNRzZWZOQquYPpQt6kDQPzQyZptXgOJ69kHSi7xdqNdm1mOfsDPwF4K9Bo/dS5gRTQ=="; 5898 6290 }; 5899 6291 } 5900 6292 { 5901 - name = "html2canvas___html2canvas_1.0.0_rc.7.tgz"; 6293 + name = "html2canvas___html2canvas_1.3.2.tgz"; 5902 6294 path = fetchurl { 5903 - name = "html2canvas___html2canvas_1.0.0_rc.7.tgz"; 5904 - url = "https://registry.yarnpkg.com/html2canvas/-/html2canvas-1.0.0-rc.7.tgz"; 5905 - sha512 = "yvPNZGejB2KOyKleZspjK/NruXVQuowu8NnV2HYG7gW7ytzl+umffbtUI62v2dCHQLDdsK6HIDtyJZ0W3neerA=="; 6295 + name = "html2canvas___html2canvas_1.3.2.tgz"; 6296 + url = "https://registry.yarnpkg.com/html2canvas/-/html2canvas-1.3.2.tgz"; 6297 + sha512 = "4+zqv87/a1LsaCrINV69wVLGG8GBZcYBboz1JPWEgiXcWoD9kroLzccsBRU/L9UlfV2MAZ+3J92U9IQPVMDeSQ=="; 5906 6298 }; 5907 6299 } 5908 6300 { ··· 6050 6442 }; 6051 6443 } 6052 6444 { 6053 - name = "ignore___ignore_5.1.8.tgz"; 6445 + name = "ignore___ignore_5.1.9.tgz"; 6054 6446 path = fetchurl { 6055 - name = "ignore___ignore_5.1.8.tgz"; 6056 - url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz"; 6057 - sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 6447 + name = "ignore___ignore_5.1.9.tgz"; 6448 + url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz"; 6449 + sha512 = "2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ=="; 6058 6450 }; 6059 6451 } 6060 6452 { ··· 6130 6522 }; 6131 6523 } 6132 6524 { 6133 - name = "import_local___import_local_3.0.2.tgz"; 6525 + name = "import_local___import_local_3.0.3.tgz"; 6134 6526 path = fetchurl { 6135 - name = "import_local___import_local_3.0.2.tgz"; 6136 - url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz"; 6137 - sha512 = "vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA=="; 6527 + name = "import_local___import_local_3.0.3.tgz"; 6528 + url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz"; 6529 + sha512 = "bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA=="; 6138 6530 }; 6139 6531 } 6140 6532 { ··· 6151 6543 name = "imurmurhash___imurmurhash_0.1.4.tgz"; 6152 6544 url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 6153 6545 sha1 = "khi5srkoojixPcT7a21XbyMUU+o="; 6154 - }; 6155 - } 6156 - { 6157 - name = "indefinite_observable___indefinite_observable_2.0.1.tgz"; 6158 - path = fetchurl { 6159 - name = "indefinite_observable___indefinite_observable_2.0.1.tgz"; 6160 - url = "https://registry.yarnpkg.com/indefinite-observable/-/indefinite-observable-2.0.1.tgz"; 6161 - sha512 = "G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ=="; 6162 6546 }; 6163 6547 } 6164 6548 { ··· 6298 6698 }; 6299 6699 } 6300 6700 { 6301 - name = "is_any_array___is_any_array_1.0.0.tgz"; 6701 + name = "is_any_array___is_any_array_1.0.1.tgz"; 6302 6702 path = fetchurl { 6303 - name = "is_any_array___is_any_array_1.0.0.tgz"; 6304 - url = "https://registry.yarnpkg.com/is-any-array/-/is-any-array-1.0.0.tgz"; 6305 - sha512 = "0o0ZsgObnylv72nO39P6M+PL7jPUEx39O6BEfZuX36IKPy/RpdudxluAIaRn/LZi5eVPDMlMBaLABzOK6bwPlw=="; 6703 + name = "is_any_array___is_any_array_1.0.1.tgz"; 6704 + url = "https://registry.yarnpkg.com/is-any-array/-/is-any-array-1.0.1.tgz"; 6705 + sha512 = "m+FSiaONxBt2W0h9XOUngMBu/WW8uzAKbSk4Ty2aeCcQJ+muBqENexvxUHtDpX65fk5AMCROxqgNX0sSAHstcw=="; 6306 6706 }; 6307 6707 } 6308 6708 { 6309 - name = "is_arguments___is_arguments_1.1.0.tgz"; 6709 + name = "is_arguments___is_arguments_1.1.1.tgz"; 6310 6710 path = fetchurl { 6311 - name = "is_arguments___is_arguments_1.1.0.tgz"; 6312 - url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz"; 6313 - sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="; 6711 + name = "is_arguments___is_arguments_1.1.1.tgz"; 6712 + url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz"; 6713 + sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 6314 6714 }; 6315 6715 } 6316 6716 { ··· 6322 6722 }; 6323 6723 } 6324 6724 { 6325 - name = "is_bigint___is_bigint_1.0.1.tgz"; 6725 + name = "is_bigint___is_bigint_1.0.4.tgz"; 6326 6726 path = fetchurl { 6327 - name = "is_bigint___is_bigint_1.0.1.tgz"; 6328 - url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz"; 6329 - sha512 = "J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg=="; 6727 + name = "is_bigint___is_bigint_1.0.4.tgz"; 6728 + url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; 6729 + sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 6330 6730 }; 6331 6731 } 6332 6732 { ··· 6338 6738 }; 6339 6739 } 6340 6740 { 6341 - name = "is_boolean_object___is_boolean_object_1.1.0.tgz"; 6741 + name = "is_blob___is_blob_2.1.0.tgz"; 6342 6742 path = fetchurl { 6343 - name = "is_boolean_object___is_boolean_object_1.1.0.tgz"; 6344 - url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz"; 6345 - sha512 = "a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA=="; 6743 + name = "is_blob___is_blob_2.1.0.tgz"; 6744 + url = "https://registry.yarnpkg.com/is-blob/-/is-blob-2.1.0.tgz"; 6745 + sha512 = "SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw=="; 6746 + }; 6747 + } 6748 + { 6749 + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; 6750 + path = fetchurl { 6751 + name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; 6752 + url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 6753 + sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 6346 6754 }; 6347 6755 } 6348 6756 { ··· 6370 6762 }; 6371 6763 } 6372 6764 { 6373 - name = "is_callable___is_callable_1.2.3.tgz"; 6765 + name = "is_callable___is_callable_1.2.4.tgz"; 6374 6766 path = fetchurl { 6375 - name = "is_callable___is_callable_1.2.3.tgz"; 6376 - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz"; 6377 - sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="; 6767 + name = "is_callable___is_callable_1.2.4.tgz"; 6768 + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; 6769 + sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 6378 6770 }; 6379 6771 } 6380 6772 { 6381 - name = "is_color_stop___is_color_stop_1.1.0.tgz"; 6773 + name = "is_core_module___is_core_module_2.8.0.tgz"; 6382 6774 path = fetchurl { 6383 - name = "is_color_stop___is_color_stop_1.1.0.tgz"; 6384 - url = "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz"; 6385 - sha1 = "z/9HGu5N1cnhWFmPvhKWe1za00U="; 6775 + name = "is_core_module___is_core_module_2.8.0.tgz"; 6776 + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz"; 6777 + sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; 6386 6778 }; 6387 6779 } 6388 6780 { 6389 - name = "is_core_module___is_core_module_2.2.0.tgz"; 6781 + name = "is_date_object___is_date_object_1.0.5.tgz"; 6390 6782 path = fetchurl { 6391 - name = "is_core_module___is_core_module_2.2.0.tgz"; 6392 - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz"; 6393 - sha512 = "XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ=="; 6394 - }; 6395 - } 6396 - { 6397 - name = "is_date_object___is_date_object_1.0.4.tgz"; 6398 - path = fetchurl { 6399 - name = "is_date_object___is_date_object_1.0.4.tgz"; 6400 - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz"; 6401 - sha512 = "/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A=="; 6783 + name = "is_date_object___is_date_object_1.0.5.tgz"; 6784 + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; 6785 + sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 6402 6786 }; 6403 6787 } 6404 6788 { ··· 6434 6834 }; 6435 6835 } 6436 6836 { 6437 - name = "is_generator_function___is_generator_function_1.0.9.tgz"; 6837 + name = "is_generator_function___is_generator_function_1.0.10.tgz"; 6438 6838 path = fetchurl { 6439 - name = "is_generator_function___is_generator_function_1.0.9.tgz"; 6440 - url = "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz"; 6441 - sha512 = "ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A=="; 6839 + name = "is_generator_function___is_generator_function_1.0.10.tgz"; 6840 + url = "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz"; 6841 + sha512 = "jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A=="; 6442 6842 }; 6443 6843 } 6444 6844 { 6445 - name = "is_glob___is_glob_4.0.1.tgz"; 6845 + name = "is_glob___is_glob_4.0.3.tgz"; 6446 6846 path = fetchurl { 6447 - name = "is_glob___is_glob_4.0.1.tgz"; 6448 - url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz"; 6449 - sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; 6847 + name = "is_glob___is_glob_4.0.3.tgz"; 6848 + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz"; 6849 + sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 6450 6850 }; 6451 6851 } 6452 6852 { ··· 6490 6890 }; 6491 6891 } 6492 6892 { 6493 - name = "is_number_object___is_number_object_1.0.5.tgz"; 6893 + name = "is_number_object___is_number_object_1.0.6.tgz"; 6494 6894 path = fetchurl { 6495 - name = "is_number_object___is_number_object_1.0.5.tgz"; 6496 - url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz"; 6497 - sha512 = "RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw=="; 6895 + name = "is_number_object___is_number_object_1.0.6.tgz"; 6896 + url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; 6897 + sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 6498 6898 }; 6499 6899 } 6500 6900 { ··· 6538 6938 }; 6539 6939 } 6540 6940 { 6541 - name = "is_regex___is_regex_1.1.3.tgz"; 6941 + name = "is_regex___is_regex_1.1.4.tgz"; 6542 6942 path = fetchurl { 6543 - name = "is_regex___is_regex_1.1.3.tgz"; 6544 - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz"; 6545 - sha512 = "qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="; 6943 + name = "is_regex___is_regex_1.1.4.tgz"; 6944 + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; 6945 + sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 6546 6946 }; 6547 6947 } 6548 6948 { ··· 6570 6970 }; 6571 6971 } 6572 6972 { 6973 + name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; 6974 + path = fetchurl { 6975 + name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; 6976 + url = "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; 6977 + sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; 6978 + }; 6979 + } 6980 + { 6573 6981 name = "is_stream___is_stream_1.1.0.tgz"; 6574 6982 path = fetchurl { 6575 6983 name = "is_stream___is_stream_1.1.0.tgz"; ··· 6586 6978 }; 6587 6979 } 6588 6980 { 6589 - name = "is_stream___is_stream_2.0.0.tgz"; 6981 + name = "is_stream___is_stream_2.0.1.tgz"; 6590 6982 path = fetchurl { 6591 - name = "is_stream___is_stream_2.0.0.tgz"; 6592 - url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz"; 6593 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 6983 + name = "is_stream___is_stream_2.0.1.tgz"; 6984 + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; 6985 + sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 6594 6986 }; 6595 6987 } 6596 6988 { 6597 - name = "is_string___is_string_1.0.6.tgz"; 6989 + name = "is_string___is_string_1.0.7.tgz"; 6598 6990 path = fetchurl { 6599 - name = "is_string___is_string_1.0.6.tgz"; 6600 - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz"; 6601 - sha512 = "2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="; 6991 + name = "is_string___is_string_1.0.7.tgz"; 6992 + url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; 6993 + sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 6602 6994 }; 6603 6995 } 6604 6996 { ··· 6618 7010 }; 6619 7011 } 6620 7012 { 6621 - name = "is_symbol___is_symbol_1.0.3.tgz"; 7013 + name = "is_symbol___is_symbol_1.0.4.tgz"; 6622 7014 path = fetchurl { 6623 - name = "is_symbol___is_symbol_1.0.3.tgz"; 6624 - url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz"; 6625 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 7015 + name = "is_symbol___is_symbol_1.0.4.tgz"; 7016 + url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz"; 7017 + sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 6626 7018 }; 6627 7019 } 6628 7020 { 6629 - name = "is_typed_array___is_typed_array_1.1.5.tgz"; 7021 + name = "is_typed_array___is_typed_array_1.1.8.tgz"; 6630 7022 path = fetchurl { 6631 - name = "is_typed_array___is_typed_array_1.1.5.tgz"; 6632 - url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz"; 6633 - sha512 = "S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug=="; 7023 + name = "is_typed_array___is_typed_array_1.1.8.tgz"; 7024 + url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.8.tgz"; 7025 + sha512 = "HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA=="; 6634 7026 }; 6635 7027 } 6636 7028 { ··· 6639 7031 name = "is_unc_path___is_unc_path_1.0.0.tgz"; 6640 7032 url = "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz"; 6641 7033 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="; 7034 + }; 7035 + } 7036 + { 7037 + name = "is_weakref___is_weakref_1.0.1.tgz"; 7038 + path = fetchurl { 7039 + name = "is_weakref___is_weakref_1.0.1.tgz"; 7040 + url = "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.1.tgz"; 7041 + sha512 = "b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ=="; 6642 7042 }; 6643 7043 } 6644 7044 { ··· 6706 7090 }; 6707 7091 } 6708 7092 { 6709 - name = "istanbul_lib_coverage___istanbul_lib_coverage_3.0.0.tgz"; 7093 + name = "istanbul_lib_coverage___istanbul_lib_coverage_3.2.0.tgz"; 6710 7094 path = fetchurl { 6711 - name = "istanbul_lib_coverage___istanbul_lib_coverage_3.0.0.tgz"; 6712 - url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"; 6713 - sha512 = "UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg=="; 7095 + name = "istanbul_lib_coverage___istanbul_lib_coverage_3.2.0.tgz"; 7096 + url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; 7097 + sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 6714 7098 }; 6715 7099 } 6716 7100 { ··· 6738 7122 }; 6739 7123 } 6740 7124 { 6741 - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.0.tgz"; 7125 + name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.1.tgz"; 6742 7126 path = fetchurl { 6743 - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.0.tgz"; 6744 - url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"; 6745 - sha512 = "c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg=="; 7127 + name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.1.tgz"; 7128 + url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"; 7129 + sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 6746 7130 }; 6747 7131 } 6748 7132 { 6749 - name = "istanbul_reports___istanbul_reports_3.0.2.tgz"; 7133 + name = "istanbul_reports___istanbul_reports_3.0.5.tgz"; 6750 7134 path = fetchurl { 6751 - name = "istanbul_reports___istanbul_reports_3.0.2.tgz"; 6752 - url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz"; 6753 - sha512 = "9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="; 7135 + name = "istanbul_reports___istanbul_reports_3.0.5.tgz"; 7136 + url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.5.tgz"; 7137 + sha512 = "5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ=="; 6754 7138 }; 6755 7139 } 6756 7140 { ··· 6770 7154 }; 6771 7155 } 6772 7156 { 6773 - name = "jasmine_core___jasmine_core_3.7.1.tgz"; 7157 + name = "jasmine_core___jasmine_core_3.10.1.tgz"; 6774 7158 path = fetchurl { 6775 - name = "jasmine_core___jasmine_core_3.7.1.tgz"; 6776 - url = "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.7.1.tgz"; 6777 - sha512 = "DH3oYDS/AUvvr22+xUBW62m1Xoy7tUlY1tsxKEJvl5JeJ7q8zd1K5bUwiOxdH+erj6l2vAMM3hV25Xs9/WrmuQ=="; 7159 + name = "jasmine_core___jasmine_core_3.10.1.tgz"; 7160 + url = "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.10.1.tgz"; 7161 + sha512 = "ooZWSDVAdh79Rrj4/nnfklL3NQVra0BcuhcuWoAwwi+znLDoUeH87AFfeX8s+YeYi6xlv5nveRyaA1v7CintfA=="; 6778 7162 }; 6779 7163 } 6780 7164 { ··· 6794 7178 }; 6795 7179 } 6796 7180 { 6797 - name = "jest_worker___jest_worker_26.6.2.tgz"; 7181 + name = "jest_worker___jest_worker_27.3.1.tgz"; 6798 7182 path = fetchurl { 6799 - name = "jest_worker___jest_worker_26.6.2.tgz"; 6800 - url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz"; 6801 - sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; 7183 + name = "jest_worker___jest_worker_27.3.1.tgz"; 7184 + url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.3.1.tgz"; 7185 + sha512 = "ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g=="; 6802 7186 }; 6803 7187 } 6804 7188 { ··· 7006 7390 path = fetchurl { 7007 7391 name = "jsonfile___jsonfile_6.1.0.tgz"; 7008 7392 url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz"; 7009 - sha1 = "vFWyY0eTxnnsZAMJTrE2mKbsCq4="; 7393 + sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; 7010 7394 }; 7011 7395 } 7012 7396 { ··· 7026 7410 }; 7027 7411 } 7028 7412 { 7029 - name = "jss_plugin_camel_case___jss_plugin_camel_case_10.5.1.tgz"; 7413 + name = "jss_plugin_camel_case___jss_plugin_camel_case_10.8.2.tgz"; 7030 7414 path = fetchurl { 7031 - name = "jss_plugin_camel_case___jss_plugin_camel_case_10.5.1.tgz"; 7032 - url = "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz"; 7033 - sha512 = "9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg=="; 7415 + name = "jss_plugin_camel_case___jss_plugin_camel_case_10.8.2.tgz"; 7416 + url = "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.8.2.tgz"; 7417 + sha512 = "2INyxR+1UdNuKf4v9It3tNfPvf7IPrtkiwzofeKuMd5D58/dxDJVUQYRVg/n460rTlHUfsEQx43hDrcxi9dSPA=="; 7034 7418 }; 7035 7419 } 7036 7420 { 7037 - name = "jss_plugin_default_unit___jss_plugin_default_unit_10.5.1.tgz"; 7421 + name = "jss_plugin_default_unit___jss_plugin_default_unit_10.8.2.tgz"; 7038 7422 path = fetchurl { 7039 - name = "jss_plugin_default_unit___jss_plugin_default_unit_10.5.1.tgz"; 7040 - url = "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz"; 7041 - sha512 = "D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ=="; 7423 + name = "jss_plugin_default_unit___jss_plugin_default_unit_10.8.2.tgz"; 7424 + url = "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.8.2.tgz"; 7425 + sha512 = "UZ7cwT9NFYSG+SEy7noRU50s4zifulFdjkUNKE+u6mW7vFP960+RglWjTgMfh79G6OENZmaYnjHV/gcKV4nSxg=="; 7042 7426 }; 7043 7427 } 7044 7428 { 7045 - name = "jss_plugin_global___jss_plugin_global_10.5.1.tgz"; 7429 + name = "jss_plugin_global___jss_plugin_global_10.8.2.tgz"; 7046 7430 path = fetchurl { 7047 - name = "jss_plugin_global___jss_plugin_global_10.5.1.tgz"; 7048 - url = "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz"; 7049 - sha512 = "jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ=="; 7431 + name = "jss_plugin_global___jss_plugin_global_10.8.2.tgz"; 7432 + url = "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.8.2.tgz"; 7433 + sha512 = "UaYMSPsYZ7s/ECGoj4KoHC2jwQd5iQ7K+FFGnCAILdQrv7hPmvM2Ydg45ThT/sH46DqktCRV2SqjRuxeBH8nRA=="; 7050 7434 }; 7051 7435 } 7052 7436 { 7053 - name = "jss_plugin_nested___jss_plugin_nested_10.5.1.tgz"; 7437 + name = "jss_plugin_nested___jss_plugin_nested_10.8.2.tgz"; 7054 7438 path = fetchurl { 7055 - name = "jss_plugin_nested___jss_plugin_nested_10.5.1.tgz"; 7056 - url = "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz"; 7057 - sha512 = "xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ=="; 7439 + name = "jss_plugin_nested___jss_plugin_nested_10.8.2.tgz"; 7440 + url = "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.8.2.tgz"; 7441 + sha512 = "acRvuPJOb930fuYmhkJaa994EADpt8TxI63Iyg96C8FJ9T2xRyU5T6R1IYKRwUiqZo+2Sr7fdGzRTDD4uBZaMA=="; 7058 7442 }; 7059 7443 } 7060 7444 { 7061 - name = "jss_plugin_props_sort___jss_plugin_props_sort_10.5.1.tgz"; 7445 + name = "jss_plugin_props_sort___jss_plugin_props_sort_10.8.2.tgz"; 7062 7446 path = fetchurl { 7063 - name = "jss_plugin_props_sort___jss_plugin_props_sort_10.5.1.tgz"; 7064 - url = "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz"; 7065 - sha512 = "t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g=="; 7447 + name = "jss_plugin_props_sort___jss_plugin_props_sort_10.8.2.tgz"; 7448 + url = "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.8.2.tgz"; 7449 + sha512 = "wqdcjayKRWBZnNpLUrXvsWqh+5J5YToAQ+8HNBNw0kZxVvCDwzhK2Nx6AKs7p+5/MbAh2PLgNW5Ym/ysbVAuqQ=="; 7066 7450 }; 7067 7451 } 7068 7452 { 7069 - name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.5.1.tgz"; 7453 + name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.8.2.tgz"; 7070 7454 path = fetchurl { 7071 - name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.5.1.tgz"; 7072 - url = "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz"; 7073 - sha512 = "3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ=="; 7455 + name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.8.2.tgz"; 7456 + url = "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.8.2.tgz"; 7457 + sha512 = "bW0EKAs+0HXpb6BKJhrn94IDdiWb0CnSluTkh0rGEgyzY/nmD1uV/Wf6KGlesGOZ9gmJzQy+9FFdxIUID1c9Ug=="; 7074 7458 }; 7075 7459 } 7076 7460 { 7077 - name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.5.1.tgz"; 7461 + name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.8.2.tgz"; 7078 7462 path = fetchurl { 7079 - name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.5.1.tgz"; 7080 - url = "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz"; 7081 - sha512 = "cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ=="; 7463 + name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.8.2.tgz"; 7464 + url = "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.8.2.tgz"; 7465 + sha512 = "DeGv18QsSiYLSVIEB2+l0af6OToUe0JB+trpzUxyqD2QRC/5AzzDrCrYffO5AHZ81QbffYvSN/pkfZaTWpRXlg=="; 7082 7466 }; 7083 7467 } 7084 7468 { 7085 - name = "jss___jss_10.5.1.tgz"; 7469 + name = "jss___jss_10.8.2.tgz"; 7086 7470 path = fetchurl { 7087 - name = "jss___jss_10.5.1.tgz"; 7088 - url = "https://registry.yarnpkg.com/jss/-/jss-10.5.1.tgz"; 7089 - sha512 = "hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg=="; 7471 + name = "jss___jss_10.8.2.tgz"; 7472 + url = "https://registry.yarnpkg.com/jss/-/jss-10.8.2.tgz"; 7473 + sha512 = "FkoUNxI329CKQ9OQC8L72MBF9KPf5q8mIupAJ5twU7G7XREW7ahb+7jFfrjZ4iy1qvhx1HwIWUIvkZBDnKkEdQ=="; 7090 7474 }; 7091 7475 } 7092 7476 { 7093 - name = "jsx_ast_utils___jsx_ast_utils_3.2.0.tgz"; 7477 + name = "jsx_ast_utils___jsx_ast_utils_3.2.1.tgz"; 7094 7478 path = fetchurl { 7095 - name = "jsx_ast_utils___jsx_ast_utils_3.2.0.tgz"; 7096 - url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz"; 7097 - sha512 = "EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q=="; 7479 + name = "jsx_ast_utils___jsx_ast_utils_3.2.1.tgz"; 7480 + url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz"; 7481 + sha512 = "uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA=="; 7098 7482 }; 7099 7483 } 7100 7484 { ··· 7138 7522 }; 7139 7523 } 7140 7524 { 7141 - name = "karma_jasmine_html_reporter___karma_jasmine_html_reporter_1.6.0.tgz"; 7525 + name = "karma_jasmine_html_reporter___karma_jasmine_html_reporter_1.7.0.tgz"; 7142 7526 path = fetchurl { 7143 - name = "karma_jasmine_html_reporter___karma_jasmine_html_reporter_1.6.0.tgz"; 7144 - url = "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.6.0.tgz"; 7145 - sha512 = "ELO9yf0cNqpzaNLsfFgXd/wxZVYkE2+ECUwhMHUD4PZ17kcsPsYsVyjquiRqyMn2jkd2sHt0IeMyAyq1MC23Fw=="; 7527 + name = "karma_jasmine_html_reporter___karma_jasmine_html_reporter_1.7.0.tgz"; 7528 + url = "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz"; 7529 + sha512 = "pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ=="; 7146 7530 }; 7147 7531 } 7148 7532 { ··· 7210 7594 }; 7211 7595 } 7212 7596 { 7213 - name = "klona___klona_2.0.4.tgz"; 7597 + name = "klona___klona_2.0.5.tgz"; 7214 7598 path = fetchurl { 7215 - name = "klona___klona_2.0.4.tgz"; 7216 - url = "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz"; 7217 - sha512 = "ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA=="; 7599 + name = "klona___klona_2.0.5.tgz"; 7600 + url = "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz"; 7601 + sha512 = "pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ=="; 7218 7602 }; 7219 7603 } 7220 7604 { ··· 7242 7626 }; 7243 7627 } 7244 7628 { 7629 + name = "lilconfig___lilconfig_2.0.3.tgz"; 7630 + path = fetchurl { 7631 + name = "lilconfig___lilconfig_2.0.3.tgz"; 7632 + url = "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.3.tgz"; 7633 + sha512 = "EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg=="; 7634 + }; 7635 + } 7636 + { 7245 7637 name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; 7246 7638 path = fetchurl { 7247 7639 name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; ··· 7274 7650 }; 7275 7651 } 7276 7652 { 7277 - name = "loader_utils___loader_utils_2.0.0.tgz"; 7653 + name = "loader_utils___loader_utils_2.0.2.tgz"; 7278 7654 path = fetchurl { 7279 - name = "loader_utils___loader_utils_2.0.0.tgz"; 7280 - url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz"; 7281 - sha512 = "rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ=="; 7655 + name = "loader_utils___loader_utils_2.0.2.tgz"; 7656 + url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz"; 7657 + sha512 = "TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A=="; 7282 7658 }; 7283 7659 } 7284 7660 { ··· 7311 7687 name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; 7312 7688 url = "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; 7313 7689 sha1 = "VwvH3t5G1hzc3mh9ZdPuy6o6r/U="; 7314 - }; 7315 - } 7316 - { 7317 - name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 7318 - path = fetchurl { 7319 - name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 7320 - url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 7321 - sha1 = "4j8/nE+Pvd6HJSnBBxhXoIblzO8="; 7322 7690 }; 7323 7691 } 7324 7692 { ··· 7399 7783 name = "lodash.memoize___lodash.memoize_3.0.4.tgz"; 7400 7784 url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz"; 7401 7785 sha1 = "LcvSwofLwKVcxCMovQxzYVDVPj8="; 7786 + }; 7787 + } 7788 + { 7789 + name = "lodash.merge___lodash.merge_4.6.2.tgz"; 7790 + path = fetchurl { 7791 + name = "lodash.merge___lodash.merge_4.6.2.tgz"; 7792 + url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz"; 7793 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 7402 7794 }; 7403 7795 } 7404 7796 { ··· 7514 7890 }; 7515 7891 } 7516 7892 { 7517 - name = "marked___marked_2.0.1.tgz"; 7893 + name = "marked___marked_2.1.3.tgz"; 7518 7894 path = fetchurl { 7519 - name = "marked___marked_2.0.1.tgz"; 7520 - url = "https://registry.yarnpkg.com/marked/-/marked-2.0.1.tgz"; 7521 - sha512 = "5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw=="; 7895 + name = "marked___marked_2.1.3.tgz"; 7896 + url = "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz"; 7897 + sha512 = "/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA=="; 7522 7898 }; 7523 7899 } 7524 7900 { ··· 7610 7986 }; 7611 7987 } 7612 7988 { 7613 - name = "mime_db___mime_db_1.46.0.tgz"; 7989 + name = "mime_db___mime_db_1.50.0.tgz"; 7614 7990 path = fetchurl { 7615 - name = "mime_db___mime_db_1.46.0.tgz"; 7616 - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz"; 7617 - sha512 = "svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ=="; 7991 + name = "mime_db___mime_db_1.50.0.tgz"; 7992 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz"; 7993 + sha512 = "9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A=="; 7618 7994 }; 7619 7995 } 7620 7996 { 7621 - name = "mime_types___mime_types_2.1.29.tgz"; 7997 + name = "mime_types___mime_types_2.1.33.tgz"; 7622 7998 path = fetchurl { 7623 - name = "mime_types___mime_types_2.1.29.tgz"; 7624 - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz"; 7625 - sha512 = "Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ=="; 7999 + name = "mime_types___mime_types_2.1.33.tgz"; 8000 + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz"; 8001 + sha512 = "plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g=="; 7626 8002 }; 7627 8003 } 7628 8004 { ··· 7658 8034 }; 7659 8035 } 7660 8036 { 7661 - name = "mini_css_extract_plugin___mini_css_extract_plugin_1.3.9.tgz"; 8037 + name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.2.tgz"; 7662 8038 path = fetchurl { 7663 - name = "mini_css_extract_plugin___mini_css_extract_plugin_1.3.9.tgz"; 7664 - url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.3.9.tgz"; 7665 - sha512 = "Ac4s+xhVbqlyhXS5J/Vh/QXUz3ycXlCqoCPpg0vdfhsIBH9eg/It/9L1r1XhSCH737M1lqcWnMuWL13zcygn5A=="; 8039 + name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.2.tgz"; 8040 + url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz"; 8041 + sha512 = "WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q=="; 7666 8042 }; 7667 8043 } 7668 8044 { ··· 7690 8066 }; 7691 8067 } 7692 8068 { 7693 - name = "minimist___minimist_1.2.5.tgz"; 8069 + name = "minimist___minimist_1.2.6.tgz"; 7694 8070 path = fetchurl { 7695 - name = "minimist___minimist_1.2.5.tgz"; 7696 - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 7697 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 8071 + name = "minimist___minimist_1.2.6.tgz"; 8072 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz"; 8073 + sha1 = "hjelt1nqDW6YcCz7OpKDMjyTr0Q="; 7698 8074 }; 7699 8075 } 7700 8076 { ··· 7794 8170 }; 7795 8171 } 7796 8172 { 7797 - name = "ml_array_rescale___ml_array_rescale_1.3.5.tgz"; 8173 + name = "ml_array_rescale___ml_array_rescale_1.3.6.tgz"; 7798 8174 path = fetchurl { 7799 - name = "ml_array_rescale___ml_array_rescale_1.3.5.tgz"; 7800 - url = "https://registry.yarnpkg.com/ml-array-rescale/-/ml-array-rescale-1.3.5.tgz"; 7801 - sha512 = "czK+faN7kYrF48SgVQeXGkxUjDEas6BA4EzF4jJNh8UEtzpSvHW3RllZCJCCyrAqeFc+Y/LhgYUzuHFpevM3qA=="; 8175 + name = "ml_array_rescale___ml_array_rescale_1.3.6.tgz"; 8176 + url = "https://registry.yarnpkg.com/ml-array-rescale/-/ml-array-rescale-1.3.6.tgz"; 8177 + sha512 = "Lzj45T6hvHNdht924JQhHzInIK+ilC55zn98uraZUvLBkOWOJGOztEkRM0xyzAjWvVuhpszLADOnoVwfBSnj8w=="; 7802 8178 }; 7803 8179 } 7804 8180 { ··· 7834 8210 }; 7835 8211 } 7836 8212 { 7837 - name = "moment___moment_2.29.1.tgz"; 8213 + name = "moment_timezone___moment_timezone_0.5.34.tgz"; 7838 8214 path = fetchurl { 7839 - name = "moment___moment_2.29.1.tgz"; 7840 - url = "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz"; 7841 - sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 8215 + name = "moment_timezone___moment_timezone_0.5.34.tgz"; 8216 + url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.34.tgz"; 8217 + sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; 7842 8218 }; 7843 8219 } 7844 8220 { 7845 - name = "moment___moment_2.24.0.tgz"; 8221 + name = "moment___moment_2.29.3.tgz"; 7846 8222 path = fetchurl { 7847 - name = "moment___moment_2.24.0.tgz"; 7848 - url = "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz"; 7849 - sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; 8223 + name = "moment___moment_2.29.3.tgz"; 8224 + url = "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz"; 8225 + sha512 = "c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw=="; 7850 8226 }; 7851 8227 } 7852 8228 { ··· 7890 8266 }; 7891 8267 } 7892 8268 { 8269 + name = "ms___ms_2.1.3.tgz"; 8270 + path = fetchurl { 8271 + name = "ms___ms_2.1.3.tgz"; 8272 + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz"; 8273 + sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 8274 + }; 8275 + } 8276 + { 7893 8277 name = "nan___nan_2.15.0.tgz"; 7894 8278 path = fetchurl { 7895 8279 name = "nan___nan_2.15.0.tgz"; ··· 7906 8274 }; 7907 8275 } 7908 8276 { 7909 - name = "nanocolors___nanocolors_0.1.12.tgz"; 7910 - path = fetchurl { 7911 - name = "nanocolors___nanocolors_0.1.12.tgz"; 7912 - url = "https://registry.yarnpkg.com/nanocolors/-/nanocolors-0.1.12.tgz"; 7913 - sha512 = "2nMHqg1x5PU+unxX7PGY7AuYxl2qDx7PSrTRjizr8sxdd3l/3hBuWWaki62qmtYm2U5i4Z5E7GbjlyDFhs9/EQ=="; 7914 - }; 7915 - } 7916 - { 7917 8277 name = "nanoid___nanoid_3.2.0.tgz"; 7918 8278 path = fetchurl { 7919 8279 name = "nanoid___nanoid_3.2.0.tgz"; 7920 8280 url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.2.0.tgz"; 7921 8281 sha1 = "YmZ1Itpmc5ccypFqbT7/P0Ff+Aw="; 8282 + }; 8283 + } 8284 + { 8285 + name = "nanoid___nanoid_3.3.2.tgz"; 8286 + path = fetchurl { 8287 + name = "nanoid___nanoid_3.3.2.tgz"; 8288 + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.2.tgz"; 8289 + sha1 = "yJYi+vtDgc0iFCHGnsWFR6HuxVc="; 7922 8290 }; 7923 8291 } 7924 8292 { ··· 7978 8346 }; 7979 8347 } 7980 8348 { 7981 - name = "node_gyp___node_gyp_8.3.0.tgz"; 8349 + name = "node_gyp___node_gyp_8.4.0.tgz"; 7982 8350 path = fetchurl { 7983 - name = "node_gyp___node_gyp_8.3.0.tgz"; 7984 - url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.3.0.tgz"; 7985 - sha512 = "e+vmKyTiybKgrmvs4M2REFKCnOd+NcrAAnn99Yko6NQA+zZdMlRvbIUHojfsHrSQ1CddLgZnHicnEVgDHziJzA=="; 7986 - }; 7987 - } 7988 - { 7989 - name = "node_releases___node_releases_1.1.72.tgz"; 7990 - path = fetchurl { 7991 - name = "node_releases___node_releases_1.1.72.tgz"; 7992 - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz"; 7993 - sha512 = "LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw=="; 8351 + name = "node_gyp___node_gyp_8.4.0.tgz"; 8352 + url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.0.tgz"; 8353 + sha512 = "Bi/oCm5bH6F+FmzfUxJpPaxMEyIhszULGR3TprmTeku8/dMFcdTcypk120NeZqEt54r1BrgEKtm2jJiuIKE28Q=="; 7994 8354 }; 7995 8355 } 7996 8356 { ··· 8026 8402 }; 8027 8403 } 8028 8404 { 8029 - name = "normalize_url___normalize_url_4.5.1.tgz"; 8405 + name = "normalize_url___normalize_url_6.1.0.tgz"; 8030 8406 path = fetchurl { 8031 - name = "normalize_url___normalize_url_4.5.1.tgz"; 8032 - url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz"; 8033 - sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="; 8407 + name = "normalize_url___normalize_url_6.1.0.tgz"; 8408 + url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz"; 8409 + sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; 8034 8410 }; 8035 8411 } 8036 8412 { ··· 8114 8490 }; 8115 8491 } 8116 8492 { 8117 - name = "object_inspect___object_inspect_1.10.3.tgz"; 8493 + name = "object_inspect___object_inspect_1.11.0.tgz"; 8118 8494 path = fetchurl { 8119 - name = "object_inspect___object_inspect_1.10.3.tgz"; 8120 - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz"; 8121 - sha512 = "e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw=="; 8495 + name = "object_inspect___object_inspect_1.11.0.tgz"; 8496 + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz"; 8497 + sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="; 8122 8498 }; 8123 8499 } 8124 8500 { ··· 8146 8522 }; 8147 8523 } 8148 8524 { 8149 - name = "object.entries___object.entries_1.1.4.tgz"; 8525 + name = "object.entries___object.entries_1.1.5.tgz"; 8150 8526 path = fetchurl { 8151 - name = "object.entries___object.entries_1.1.4.tgz"; 8152 - url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz"; 8153 - sha512 = "h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA=="; 8527 + name = "object.entries___object.entries_1.1.5.tgz"; 8528 + url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz"; 8529 + sha512 = "TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="; 8154 8530 }; 8155 8531 } 8156 8532 { 8157 - name = "object.fromentries___object.fromentries_2.0.4.tgz"; 8533 + name = "object.fromentries___object.fromentries_2.0.5.tgz"; 8158 8534 path = fetchurl { 8159 - name = "object.fromentries___object.fromentries_2.0.4.tgz"; 8160 - url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz"; 8161 - sha512 = "EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ=="; 8535 + name = "object.fromentries___object.fromentries_2.0.5.tgz"; 8536 + url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz"; 8537 + sha512 = "CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw=="; 8162 8538 }; 8163 8539 } 8164 8540 { 8165 - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz"; 8541 + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.3.tgz"; 8166 8542 path = fetchurl { 8167 - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz"; 8168 - url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz"; 8169 - sha512 = "WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ=="; 8543 + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.3.tgz"; 8544 + url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz"; 8545 + sha512 = "VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw=="; 8170 8546 }; 8171 8547 } 8172 8548 { 8173 - name = "object.values___object.values_1.1.4.tgz"; 8549 + name = "object.hasown___object.hasown_1.1.0.tgz"; 8174 8550 path = fetchurl { 8175 - name = "object.values___object.values_1.1.4.tgz"; 8176 - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz"; 8177 - sha512 = "TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg=="; 8551 + name = "object.hasown___object.hasown_1.1.0.tgz"; 8552 + url = "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz"; 8553 + sha512 = "MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg=="; 8554 + }; 8555 + } 8556 + { 8557 + name = "object.values___object.values_1.1.5.tgz"; 8558 + path = fetchurl { 8559 + name = "object.values___object.values_1.1.5.tgz"; 8560 + url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz"; 8561 + sha512 = "QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg=="; 8178 8562 }; 8179 8563 } 8180 8564 { ··· 8599 8967 let 8600 8968 repo = fetchgit { 8601 8969 url = "https://github.com/EnterpriseDB/pgadmin4-treeview/"; 8602 - rev = "c966febebcdffaa46f1ccf0769fe5308f179d613"; 8603 - sha256 = "0fxjalh7g8fwy3fczbj9pvf8g06chq41gw1jidz106wadjr72081"; 8970 + rev = "2c288ccc0ae0c98b41e56e79abf1204be3861702"; 8971 + sha256 = "021y8hd78p61c8k6h5q9dqgms7l89gf51h5q05cjr554ayyyqs24"; 8604 8972 }; 8605 8973 in 8606 8974 runCommand "pgadmin4-treeview" { buildInputs = [gnutar]; } '' ··· 8714 9082 }; 8715 9083 } 8716 9084 { 8717 - name = "postcss_colormin___postcss_colormin_5.1.1.tgz"; 9085 + name = "postcss_colormin___postcss_colormin_5.2.1.tgz"; 8718 9086 path = fetchurl { 8719 - name = "postcss_colormin___postcss_colormin_5.1.1.tgz"; 8720 - url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.1.1.tgz"; 8721 - sha512 = "SyTmqKKN6PyYNeeKEC0hqIP5CDuprO1hHurdW1aezDyfofDUOn7y7MaxcolbsW3oazPwFiGiY30XRiW1V4iZpA=="; 9087 + name = "postcss_colormin___postcss_colormin_5.2.1.tgz"; 9088 + url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.1.tgz"; 9089 + sha512 = "VVwMrEYLcHYePUYV99Ymuoi7WhKrMGy/V9/kTS0DkCoJYmmjdOMneyhzYUxcNgteKDVbrewOkSM7Wje/MFwxzA=="; 8722 9090 }; 8723 9091 } 8724 9092 { 8725 - name = "postcss_convert_values___postcss_convert_values_5.0.1.tgz"; 9093 + name = "postcss_convert_values___postcss_convert_values_5.0.2.tgz"; 8726 9094 path = fetchurl { 8727 - name = "postcss_convert_values___postcss_convert_values_5.0.1.tgz"; 8728 - url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz"; 8729 - sha512 = "C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg=="; 9095 + name = "postcss_convert_values___postcss_convert_values_5.0.2.tgz"; 9096 + url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz"; 9097 + sha512 = "KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg=="; 8730 9098 }; 8731 9099 } 8732 9100 { ··· 8762 9130 }; 8763 9131 } 8764 9132 { 8765 - name = "postcss_loader___postcss_loader_5.1.0.tgz"; 9133 + name = "postcss_loader___postcss_loader_5.3.0.tgz"; 8766 9134 path = fetchurl { 8767 - name = "postcss_loader___postcss_loader_5.1.0.tgz"; 8768 - url = "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-5.1.0.tgz"; 8769 - sha512 = "tGgKZF6Ntn16zIWXt7yKV19L0rISaozHPCfdPt+aHOnTZrreeqVR6hCkFhZYfJ6KgpyIFRkKuW8ygHtUid4GlA=="; 9135 + name = "postcss_loader___postcss_loader_5.3.0.tgz"; 9136 + url = "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-5.3.0.tgz"; 9137 + sha512 = "/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw=="; 8770 9138 }; 8771 9139 } 8772 9140 { ··· 8778 9146 }; 8779 9147 } 8780 9148 { 8781 - name = "postcss_merge_rules___postcss_merge_rules_5.0.1.tgz"; 9149 + name = "postcss_merge_rules___postcss_merge_rules_5.0.2.tgz"; 8782 9150 path = fetchurl { 8783 - name = "postcss_merge_rules___postcss_merge_rules_5.0.1.tgz"; 8784 - url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.1.tgz"; 8785 - sha512 = "UR6R5Ph0c96QB9TMBH3ml8/kvPCThPHepdhRqAbvMRDRHQACPC8iM5NpfIC03+VRMZTGXy4L/BvFzcDFCgb+fA=="; 9151 + name = "postcss_merge_rules___postcss_merge_rules_5.0.2.tgz"; 9152 + url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz"; 9153 + sha512 = "5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg=="; 8786 9154 }; 8787 9155 } 8788 9156 { ··· 8794 9162 }; 8795 9163 } 8796 9164 { 8797 - name = "postcss_minify_gradients___postcss_minify_gradients_5.0.1.tgz"; 9165 + name = "postcss_minify_gradients___postcss_minify_gradients_5.0.3.tgz"; 8798 9166 path = fetchurl { 8799 - name = "postcss_minify_gradients___postcss_minify_gradients_5.0.1.tgz"; 8800 - url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz"; 8801 - sha512 = "odOwBFAIn2wIv+XYRpoN2hUV3pPQlgbJ10XeXPq8UY2N+9ZG42xu45lTn/g9zZ+d70NKSQD6EOi6UiCMu3FN7g=="; 9167 + name = "postcss_minify_gradients___postcss_minify_gradients_5.0.3.tgz"; 9168 + url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz"; 9169 + sha512 = "Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q=="; 8802 9170 }; 8803 9171 } 8804 9172 { ··· 8906 9274 }; 8907 9275 } 8908 9276 { 8909 - name = "postcss_normalize_url___postcss_normalize_url_5.0.1.tgz"; 9277 + name = "postcss_normalize_url___postcss_normalize_url_5.0.2.tgz"; 8910 9278 path = fetchurl { 8911 - name = "postcss_normalize_url___postcss_normalize_url_5.0.1.tgz"; 8912 - url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.1.tgz"; 8913 - sha512 = "hkbG0j58Z1M830/CJ73VsP7gvlG1yF+4y7Fd1w4tD2c7CaA2Psll+pQ6eQhth9y9EaqZSLzamff/D0MZBMbYSg=="; 9279 + name = "postcss_normalize_url___postcss_normalize_url_5.0.2.tgz"; 9280 + url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz"; 9281 + sha512 = "k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ=="; 8914 9282 }; 8915 9283 } 8916 9284 { ··· 8922 9290 }; 8923 9291 } 8924 9292 { 8925 - name = "postcss_ordered_values___postcss_ordered_values_5.0.1.tgz"; 9293 + name = "postcss_ordered_values___postcss_ordered_values_5.0.2.tgz"; 8926 9294 path = fetchurl { 8927 - name = "postcss_ordered_values___postcss_ordered_values_5.0.1.tgz"; 8928 - url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.1.tgz"; 8929 - sha512 = "6mkCF5BQ25HvEcDfrMHCLLFHlraBSlOXFnQMHYhSpDO/5jSR1k8LdEXOkv+7+uzW6o6tBYea1Km0wQSRkPJkwA=="; 9295 + name = "postcss_ordered_values___postcss_ordered_values_5.0.2.tgz"; 9296 + url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz"; 9297 + sha512 = "8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ=="; 8930 9298 }; 8931 9299 } 8932 9300 { ··· 8954 9322 }; 8955 9323 } 8956 9324 { 8957 - name = "postcss_svgo___postcss_svgo_5.0.1.tgz"; 9325 + name = "postcss_svgo___postcss_svgo_5.0.3.tgz"; 8958 9326 path = fetchurl { 8959 - name = "postcss_svgo___postcss_svgo_5.0.1.tgz"; 8960 - url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.1.tgz"; 8961 - sha512 = "cD7DFo6tF9i5eWvwtI4irKOHCpmASFS0xvZ5EQIgEdA1AWfM/XiHHY/iss0gcKHhkqwgYmuo2M0KhJLd5Us6mg=="; 9327 + name = "postcss_svgo___postcss_svgo_5.0.3.tgz"; 9328 + url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.3.tgz"; 9329 + sha512 = "41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA=="; 8962 9330 }; 8963 9331 } 8964 9332 { ··· 8978 9346 }; 8979 9347 } 8980 9348 { 8981 - name = "postcss___postcss_8.2.15.tgz"; 9349 + name = "postcss___postcss_8.3.11.tgz"; 8982 9350 path = fetchurl { 8983 - name = "postcss___postcss_8.2.15.tgz"; 8984 - url = "https://registry.yarnpkg.com/postcss/-/postcss-8.2.15.tgz"; 8985 - sha512 = "2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q=="; 9351 + name = "postcss___postcss_8.3.11.tgz"; 9352 + url = "https://registry.yarnpkg.com/postcss/-/postcss-8.3.11.tgz"; 9353 + sha512 = "hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA=="; 8986 9354 }; 8987 9355 } 8988 9356 { ··· 9354 9722 }; 9355 9723 } 9356 9724 { 9725 + name = "react-data-grid.git"; 9726 + path = 9727 + let 9728 + repo = fetchgit { 9729 + url = "https://github.com/adityatoshniwal/react-data-grid.git/"; 9730 + rev = "1dc310dfaf5afea359404e867b7cf54953f47d1e"; 9731 + sha256 = "1v2wx6fazhv5ijjdksbvyjn4kcbnsgn9zj3s35a29y3swpd41fiy"; 9732 + }; 9733 + in 9734 + runCommand "react-data-grid.git" { buildInputs = [gnutar]; } '' 9735 + # Set u+w because tar-fs can't unpack archives with read-only dirs 9736 + # https://github.com/mafintosh/tar-fs/issues/79 9737 + tar cf $out --mode u+w -C ${repo} . 9738 + ''; 9739 + } 9740 + { 9357 9741 name = "react_dom___react_dom_16.14.0.tgz"; 9358 9742 path = fetchurl { 9359 9743 name = "react_dom___react_dom_16.14.0.tgz"; ··· 9426 9778 }; 9427 9779 } 9428 9780 { 9429 - name = "react_property___react_property_1.0.1.tgz"; 9781 + name = "react_leaflet___react_leaflet_3.2.2.tgz"; 9430 9782 path = fetchurl { 9431 - name = "react_property___react_property_1.0.1.tgz"; 9432 - url = "https://registry.yarnpkg.com/react-property/-/react-property-1.0.1.tgz"; 9433 - sha512 = "1tKOwxFn3dXVomH6pM9IkLkq2Y8oh+fh/lYW3MJ/B03URswUTqttgckOlbxY2XHF3vPG6uanSc4dVsLW/wk3wQ=="; 9783 + name = "react_leaflet___react_leaflet_3.2.2.tgz"; 9784 + url = "https://registry.yarnpkg.com/react-leaflet/-/react-leaflet-3.2.2.tgz"; 9785 + sha512 = "5W7iWjI9+CdTGVAICe8RUyK0n+uLshr+eLQa8eBCbmstPNpCHZJTUSbju4Ws5dkS/PUCr9t5VmoIE9CXuSBEhw=="; 9786 + }; 9787 + } 9788 + { 9789 + name = "react_property___react_property_2.0.0.tgz"; 9790 + path = fetchurl { 9791 + name = "react_property___react_property_2.0.0.tgz"; 9792 + url = "https://registry.yarnpkg.com/react-property/-/react-property-2.0.0.tgz"; 9793 + sha512 = "kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw=="; 9434 9794 }; 9435 9795 } 9436 9796 { ··· 9503 9847 name = "react_timer_hook___react_timer_hook_3.0.5.tgz"; 9504 9848 url = "https://registry.yarnpkg.com/react-timer-hook/-/react-timer-hook-3.0.5.tgz"; 9505 9849 sha512 = "n+98SdmYvui2ne3KyWb3Ldu4k0NYQa3g/VzW6VEIfZJ8GAk/jJsIY700M8Nd2vNSTj05c7wKyQfJBqZ0x7zfiA=="; 9506 - }; 9507 - } 9508 - { 9509 - name = "react_transition_group___react_transition_group_4.4.1.tgz"; 9510 - path = fetchurl { 9511 - name = "react_transition_group___react_transition_group_4.4.1.tgz"; 9512 - url = "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.1.tgz"; 9513 - sha512 = "Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw=="; 9514 9850 }; 9515 9851 } 9516 9852 { ··· 9586 9938 }; 9587 9939 } 9588 9940 { 9589 - name = "readdirp___readdirp_3.5.0.tgz"; 9590 - path = fetchurl { 9591 - name = "readdirp___readdirp_3.5.0.tgz"; 9592 - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; 9593 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 9594 - }; 9595 - } 9596 - { 9597 9941 name = "readdirp___readdirp_3.6.0.tgz"; 9598 9942 path = fetchurl { 9599 9943 name = "readdirp___readdirp_3.6.0.tgz"; ··· 9594 9954 }; 9595 9955 } 9596 9956 { 9597 - name = "rechoir___rechoir_0.7.0.tgz"; 9957 + name = "rechoir___rechoir_0.7.1.tgz"; 9598 9958 path = fetchurl { 9599 - name = "rechoir___rechoir_0.7.0.tgz"; 9600 - url = "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz"; 9601 - sha512 = "ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q=="; 9959 + name = "rechoir___rechoir_0.7.1.tgz"; 9960 + url = "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.1.tgz"; 9961 + sha512 = "/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg=="; 9602 9962 }; 9603 9963 } 9604 9964 { ··· 9642 10002 }; 9643 10003 } 9644 10004 { 9645 - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; 10005 + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; 9646 10006 path = fetchurl { 9647 - name = "regenerator_runtime___regenerator_runtime_0.13.7.tgz"; 9648 - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; 9649 - sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="; 10007 + name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; 10008 + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 10009 + sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 9650 10010 }; 9651 10011 } 9652 10012 { ··· 9666 10026 }; 9667 10027 } 9668 10028 { 9669 - name = "regexpp___regexpp_3.1.0.tgz"; 10029 + name = "regexpp___regexpp_3.2.0.tgz"; 9670 10030 path = fetchurl { 9671 - name = "regexpp___regexpp_3.1.0.tgz"; 9672 - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 9673 - sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="; 10031 + name = "regexpp___regexpp_3.2.0.tgz"; 10032 + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz"; 10033 + sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 9674 10034 }; 9675 10035 } 9676 10036 { ··· 9850 10210 }; 9851 10211 } 9852 10212 { 9853 - name = "rgb_regex___rgb_regex_1.0.1.tgz"; 9854 - path = fetchurl { 9855 - name = "rgb_regex___rgb_regex_1.0.1.tgz"; 9856 - url = "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz"; 9857 - sha1 = "wODWiC3w4jviVKR16O3UGRX+rrE="; 9858 - }; 9859 - } 9860 - { 9861 - name = "rgba_regex___rgba_regex_1.0.0.tgz"; 9862 - path = fetchurl { 9863 - name = "rgba_regex___rgba_regex_1.0.0.tgz"; 9864 - url = "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz"; 9865 - sha1 = "QzdOLiyglosO8VI0YLfXMP8i7rM="; 9866 - }; 9867 - } 9868 - { 9869 10213 name = "rifm___rifm_0.7.0.tgz"; 9870 10214 path = fetchurl { 9871 10215 name = "rifm___rifm_0.7.0.tgz"; ··· 9930 10306 }; 9931 10307 } 9932 10308 { 9933 - name = "sass_resources_loader___sass_resources_loader_2.2.1.tgz"; 10309 + name = "sass_resources_loader___sass_resources_loader_2.2.4.tgz"; 9934 10310 path = fetchurl { 9935 - name = "sass_resources_loader___sass_resources_loader_2.2.1.tgz"; 9936 - url = "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.2.1.tgz"; 9937 - sha512 = "WlofxbWOVnxad874IHZdWbP9eW1pbyqsTJKBsMbeB+YELvLSrZQNDTpH70s6F19BwtanR3NEFnyGwJ9WyotJTQ=="; 10311 + name = "sass_resources_loader___sass_resources_loader_2.2.4.tgz"; 10312 + url = "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.2.4.tgz"; 10313 + sha512 = "hIQhBygYky+rLf+4cuoGYONZ623CEH4Swo1fs1WRJkukbqdvN1VIu2KCL59du6vX92bNELzNkGPLx+NorN73xA=="; 9938 10314 }; 9939 10315 } 9940 10316 { 9941 - name = "sass___sass_1.32.8.tgz"; 10317 + name = "sass___sass_1.43.4.tgz"; 9942 10318 path = fetchurl { 9943 - name = "sass___sass_1.32.8.tgz"; 9944 - url = "https://registry.yarnpkg.com/sass/-/sass-1.32.8.tgz"; 9945 - sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ=="; 10319 + name = "sass___sass_1.43.4.tgz"; 10320 + url = "https://registry.yarnpkg.com/sass/-/sass-1.43.4.tgz"; 10321 + sha512 = "/ptG7KE9lxpGSYiXn7Ar+lKOv37xfWsZRtFYal2QHNigyVQDx685VFT/h7ejVr+R8w7H4tmUgtulsKl5YpveOg=="; 9946 10322 }; 9947 10323 } 9948 10324 { ··· 9994 10370 }; 9995 10371 } 9996 10372 { 9997 - name = "schema_utils___schema_utils_3.0.0.tgz"; 10373 + name = "schema_utils___schema_utils_3.1.1.tgz"; 9998 10374 path = fetchurl { 9999 - name = "schema_utils___schema_utils_3.0.0.tgz"; 10000 - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz"; 10001 - sha512 = "6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA=="; 10375 + name = "schema_utils___schema_utils_3.1.1.tgz"; 10376 + url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz"; 10377 + sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; 10002 10378 }; 10003 10379 } 10004 10380 { ··· 10058 10434 }; 10059 10435 } 10060 10436 { 10061 - name = "semver___semver_7.3.4.tgz"; 10062 - path = fetchurl { 10063 - name = "semver___semver_7.3.4.tgz"; 10064 - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; 10065 - sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 10066 - }; 10067 - } 10068 - { 10069 10437 name = "semver___semver_7.3.5.tgz"; 10070 10438 path = fetchurl { 10071 10439 name = "semver___semver_7.3.5.tgz"; ··· 10071 10455 name = "serialize_javascript___serialize_javascript_5.0.1.tgz"; 10072 10456 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 10073 10457 sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 10458 + }; 10459 + } 10460 + { 10461 + name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; 10462 + path = fetchurl { 10463 + name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; 10464 + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 10465 + sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 10074 10466 }; 10075 10467 } 10076 10468 { ··· 10162 10538 }; 10163 10539 } 10164 10540 { 10165 - name = "shell_quote___shell_quote_1.7.2.tgz"; 10541 + name = "shell_quote___shell_quote_1.7.3.tgz"; 10166 10542 path = fetchurl { 10167 - name = "shell_quote___shell_quote_1.7.2.tgz"; 10168 - url = "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz"; 10169 - sha512 = "mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="; 10543 + name = "shell_quote___shell_quote_1.7.3.tgz"; 10544 + url = "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz"; 10545 + sha512 = "Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw=="; 10170 10546 }; 10171 10547 } 10172 10548 { ··· 10186 10562 }; 10187 10563 } 10188 10564 { 10189 - name = "signal_exit___signal_exit_3.0.3.tgz"; 10565 + name = "signal_exit___signal_exit_3.0.5.tgz"; 10190 10566 path = fetchurl { 10191 - name = "signal_exit___signal_exit_3.0.3.tgz"; 10192 - url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz"; 10193 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 10567 + name = "signal_exit___signal_exit_3.0.5.tgz"; 10568 + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz"; 10569 + sha512 = "KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ=="; 10194 10570 }; 10195 10571 } 10196 10572 { ··· 10202 10578 }; 10203 10579 } 10204 10580 { 10205 - name = "sirv___sirv_1.0.12.tgz"; 10581 + name = "sirv___sirv_1.0.18.tgz"; 10206 10582 path = fetchurl { 10207 - name = "sirv___sirv_1.0.12.tgz"; 10208 - url = "https://registry.yarnpkg.com/sirv/-/sirv-1.0.12.tgz"; 10209 - sha512 = "+jQoCxndz7L2tqQL4ZyzfDhky0W/4ZJip3XoOuxyQWnAwMxindLl3Xv1qT4x1YX/re0leShvTm8Uk0kQspGhBg=="; 10583 + name = "sirv___sirv_1.0.18.tgz"; 10584 + url = "https://registry.yarnpkg.com/sirv/-/sirv-1.0.18.tgz"; 10585 + sha512 = "f2AOPogZmXgJ9Ma2M22ZEhc1dNtRIzcEkiflMFeVTRq+OViOZMvH1IPMVOwrKaxpSaHioBJiDR0SluRqGa7atA=="; 10210 10586 }; 10211 10587 } 10212 10588 { ··· 10274 10650 }; 10275 10651 } 10276 10652 { 10277 - name = "socket.io_client___socket.io_client_4.1.2.tgz"; 10653 + name = "socket.io_client___socket.io_client_4.3.2.tgz"; 10278 10654 path = fetchurl { 10279 - name = "socket.io_client___socket.io_client_4.1.2.tgz"; 10280 - url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.1.2.tgz"; 10281 - sha512 = "RDpWJP4DQT1XeexmeDyDkm0vrFc0+bUsHDKiVGaNISJvJonhQQOMqV9Vwfg0ZpPJ27LCdan7iqTI92FRSOkFWQ=="; 10655 + name = "socket.io_client___socket.io_client_4.3.2.tgz"; 10656 + url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.3.2.tgz"; 10657 + sha512 = "2B9LqSunN60yV8F7S84CCEEcgbYNfrn7ejIInZtLZ7ppWtiX8rGZAjvdCvbnC8bqo/9RlCNOUsORLyskxSFP1g=="; 10282 10658 }; 10283 10659 } 10284 10660 { ··· 10287 10663 name = "socket.io_parser___socket.io_parser_4.0.4.tgz"; 10288 10664 url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.0.4.tgz"; 10289 10665 sha512 = "t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g=="; 10666 + }; 10667 + } 10668 + { 10669 + name = "socket.io_parser___socket.io_parser_4.1.1.tgz"; 10670 + path = fetchurl { 10671 + name = "socket.io_parser___socket.io_parser_4.1.1.tgz"; 10672 + url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.1.1.tgz"; 10673 + sha512 = "USQVLSkDWE5nbcY760ExdKaJxCE65kcsG/8k5FDGZVVxpD1pA7hABYXYkCUvxUuYYh/+uQw0N/fvBzfT8o07KA=="; 10290 10674 }; 10291 10675 } 10292 10676 { ··· 10362 10730 }; 10363 10731 } 10364 10732 { 10365 - name = "source_map_support___source_map_support_0.5.19.tgz"; 10733 + name = "source_map_js___source_map_js_0.6.2.tgz"; 10366 10734 path = fetchurl { 10367 - name = "source_map_support___source_map_support_0.5.19.tgz"; 10368 - url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 10369 - sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 10735 + name = "source_map_js___source_map_js_0.6.2.tgz"; 10736 + url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz"; 10737 + sha512 = "/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="; 10738 + }; 10739 + } 10740 + { 10741 + name = "source_map_support___source_map_support_0.5.20.tgz"; 10742 + path = fetchurl { 10743 + name = "source_map_support___source_map_support_0.5.20.tgz"; 10744 + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz"; 10745 + sha512 = "n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw=="; 10746 + }; 10747 + } 10748 + { 10749 + name = "source_map_support___source_map_support_0.5.21.tgz"; 10750 + path = fetchurl { 10751 + name = "source_map_support___source_map_support_0.5.21.tgz"; 10752 + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz"; 10753 + sha512 = "uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="; 10370 10754 }; 10371 10755 } 10372 10756 { ··· 10502 10854 path = fetchurl { 10503 10855 name = "streamroller___streamroller_3.0.2.tgz"; 10504 10856 url = "https://registry.yarnpkg.com/streamroller/-/streamroller-3.0.2.tgz"; 10505 - sha1 = "MEGNDu49bJPsiX+JLtCY46geaLc="; 10857 + sha512 = "ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA=="; 10506 10858 }; 10507 10859 } 10508 10860 { ··· 10522 10874 }; 10523 10875 } 10524 10876 { 10525 - name = "string_width___string_width_4.2.2.tgz"; 10877 + name = "string_width___string_width_4.2.3.tgz"; 10526 10878 path = fetchurl { 10527 - name = "string_width___string_width_4.2.2.tgz"; 10528 - url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz"; 10529 - sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA=="; 10879 + name = "string_width___string_width_4.2.3.tgz"; 10880 + url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz"; 10881 + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 10530 10882 }; 10531 10883 } 10532 10884 { ··· 10546 10898 }; 10547 10899 } 10548 10900 { 10549 - name = "string.prototype.matchall___string.prototype.matchall_4.0.5.tgz"; 10901 + name = "string.prototype.matchall___string.prototype.matchall_4.0.6.tgz"; 10550 10902 path = fetchurl { 10551 - name = "string.prototype.matchall___string.prototype.matchall_4.0.5.tgz"; 10552 - url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz"; 10553 - sha512 = "Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q=="; 10903 + name = "string.prototype.matchall___string.prototype.matchall_4.0.6.tgz"; 10904 + url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz"; 10905 + sha512 = "6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg=="; 10554 10906 }; 10555 10907 } 10556 10908 { 10557 - name = "string.prototype.trim___string.prototype.trim_1.2.4.tgz"; 10909 + name = "string.prototype.trim___string.prototype.trim_1.2.5.tgz"; 10558 10910 path = fetchurl { 10559 - name = "string.prototype.trim___string.prototype.trim_1.2.4.tgz"; 10560 - url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.4.tgz"; 10561 - sha512 = "hWCk/iqf7lp0/AgTF7/ddO1IWtSNPASjlzCicV5irAVdE1grjsneK26YG6xACMBEdCvO8fUST0UzDMh/2Qy+9Q=="; 10911 + name = "string.prototype.trim___string.prototype.trim_1.2.5.tgz"; 10912 + url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.5.tgz"; 10913 + sha512 = "Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg=="; 10562 10914 }; 10563 10915 } 10564 10916 { ··· 10610 10962 }; 10611 10963 } 10612 10964 { 10613 - name = "strip_ansi___strip_ansi_6.0.0.tgz"; 10965 + name = "strip_ansi___strip_ansi_6.0.1.tgz"; 10614 10966 path = fetchurl { 10615 - name = "strip_ansi___strip_ansi_6.0.0.tgz"; 10616 - url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz"; 10617 - sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="; 10967 + name = "strip_ansi___strip_ansi_6.0.1.tgz"; 10968 + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; 10969 + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 10618 10970 }; 10619 10971 } 10620 10972 { ··· 10666 11018 }; 10667 11019 } 10668 11020 { 11021 + name = "strnum___strnum_1.0.4.tgz"; 11022 + path = fetchurl { 11023 + name = "strnum___strnum_1.0.4.tgz"; 11024 + url = "https://registry.yarnpkg.com/strnum/-/strnum-1.0.4.tgz"; 11025 + sha512 = "lMzNMfDpaQOLt4B2mEbfzYS0+T7dvCXeojnlGf6f1AygvWDMcWyXYaLbyICfjVu29sErR8fnRagQfBW/N/hGgw=="; 11026 + }; 11027 + } 11028 + { 10669 11029 name = "style_loader___style_loader_2.0.0.tgz"; 10670 11030 path = fetchurl { 10671 11031 name = "style_loader___style_loader_2.0.0.tgz"; ··· 10698 11042 }; 10699 11043 } 10700 11044 { 10701 - name = "styled_components___styled_components_5.2.1.tgz"; 11045 + name = "styled_components___styled_components_5.3.3.tgz"; 10702 11046 path = fetchurl { 10703 - name = "styled_components___styled_components_5.2.1.tgz"; 10704 - url = "https://registry.yarnpkg.com/styled-components/-/styled-components-5.2.1.tgz"; 10705 - sha512 = "sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ=="; 11047 + name = "styled_components___styled_components_5.3.3.tgz"; 11048 + url = "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz"; 11049 + sha512 = "++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw=="; 10706 11050 }; 10707 11051 } 10708 11052 { ··· 10762 11106 }; 10763 11107 } 10764 11108 { 11109 + name = "supports_color___supports_color_8.1.1.tgz"; 11110 + path = fetchurl { 11111 + name = "supports_color___supports_color_8.1.1.tgz"; 11112 + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz"; 11113 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 11114 + }; 11115 + } 11116 + { 10765 11117 name = "svg_parser___svg_parser_2.0.4.tgz"; 10766 11118 path = fetchurl { 10767 11119 name = "svg_parser___svg_parser_2.0.4.tgz"; ··· 10818 11154 }; 10819 11155 } 10820 11156 { 10821 - name = "svgo___svgo_2.7.0.tgz"; 10822 - path = fetchurl { 10823 - name = "svgo___svgo_2.7.0.tgz"; 10824 - url = "https://registry.yarnpkg.com/svgo/-/svgo-2.7.0.tgz"; 10825 - sha512 = "aDLsGkre4fTDCWvolyW+fs8ZJFABpzLXbtdK1y71CKnHzAnpDxKXPj2mNKj+pyOXUCzFHzuxRJ94XOFygOWV3w=="; 10826 - }; 10827 - } 10828 - { 10829 11157 name = "svgo___svgo_2.8.0.tgz"; 10830 11158 path = fetchurl { 10831 11159 name = "svgo___svgo_2.8.0.tgz"; ··· 10834 11178 }; 10835 11179 } 10836 11180 { 10837 - name = "symbol_observable___symbol_observable_1.2.0.tgz"; 10838 - path = fetchurl { 10839 - name = "symbol_observable___symbol_observable_1.2.0.tgz"; 10840 - url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz"; 10841 - sha512 = "e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="; 10842 - }; 10843 - } 10844 - { 10845 11181 name = "syntax_error___syntax_error_1.4.0.tgz"; 10846 11182 path = fetchurl { 10847 11183 name = "syntax_error___syntax_error_1.4.0.tgz"; ··· 10842 11194 }; 10843 11195 } 10844 11196 { 10845 - name = "table___table_6.7.1.tgz"; 11197 + name = "table___table_6.7.3.tgz"; 10846 11198 path = fetchurl { 10847 - name = "table___table_6.7.1.tgz"; 10848 - url = "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz"; 10849 - sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg=="; 11199 + name = "table___table_6.7.3.tgz"; 11200 + url = "https://registry.yarnpkg.com/table/-/table-6.7.3.tgz"; 11201 + sha512 = "5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw=="; 10850 11202 }; 10851 11203 } 10852 11204 { ··· 10858 11210 }; 10859 11211 } 10860 11212 { 10861 - name = "tapable___tapable_2.2.0.tgz"; 11213 + name = "tapable___tapable_2.2.1.tgz"; 10862 11214 path = fetchurl { 10863 - name = "tapable___tapable_2.2.0.tgz"; 10864 - url = "https://registry.yarnpkg.com/tapable/-/tapable-2.2.0.tgz"; 10865 - sha512 = "FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw=="; 11215 + name = "tapable___tapable_2.2.1.tgz"; 11216 + url = "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz"; 11217 + sha512 = "GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="; 10866 11218 }; 10867 11219 } 10868 11220 { ··· 10906 11258 }; 10907 11259 } 10908 11260 { 10909 - name = "tempusdominus_core___tempusdominus_core_5.19.0.tgz"; 11261 + name = "tempusdominus_core___tempusdominus_core_5.19.3.tgz"; 10910 11262 path = fetchurl { 10911 - name = "tempusdominus_core___tempusdominus_core_5.19.0.tgz"; 10912 - url = "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.19.0.tgz"; 10913 - sha512 = "7a4oBQw4cjz6C87BLRg3KHVvzpnPlnRTkuDZ7SwcJayQQ4QgOryX5u6wj0q07TXhgtMQLCntZO6nVhHIKPaeUw=="; 11263 + name = "tempusdominus_core___tempusdominus_core_5.19.3.tgz"; 11264 + url = "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.19.3.tgz"; 11265 + sha512 = "WXBVXcBG/hErB6u9gdUs+vzANvCU1kd1ykzL4kolPB3h1OEv20OKUW5qz1iynxyqRFPa1NWY9gwRu5d+MjXEuQ=="; 10914 11266 }; 10915 11267 } 10916 11268 { 10917 - name = "terser_webpack_plugin___terser_webpack_plugin_5.1.2.tgz"; 11269 + name = "terser_webpack_plugin___terser_webpack_plugin_5.2.4.tgz"; 10918 11270 path = fetchurl { 10919 - name = "terser_webpack_plugin___terser_webpack_plugin_5.1.2.tgz"; 10920 - url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.2.tgz"; 10921 - sha512 = "6QhDaAiVHIQr5Ab3XUWZyDmrIPCHMiqJVljMF91YKyqwKkL5QHnYMkrMBy96v9Z7ev1hGhSEw1HQZc2p/s5Z8Q=="; 11271 + name = "terser_webpack_plugin___terser_webpack_plugin_5.2.4.tgz"; 11272 + url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.2.4.tgz"; 11273 + sha512 = "E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA=="; 10922 11274 }; 10923 11275 } 10924 11276 { 10925 - name = "terser___terser_5.7.0.tgz"; 11277 + name = "terser___terser_5.9.0.tgz"; 10926 11278 path = fetchurl { 10927 - name = "terser___terser_5.7.0.tgz"; 10928 - url = "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz"; 10929 - sha512 = "HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g=="; 11279 + name = "terser___terser_5.9.0.tgz"; 11280 + url = "https://registry.yarnpkg.com/terser/-/terser-5.9.0.tgz"; 11281 + sha512 = "h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ=="; 11282 + }; 11283 + } 11284 + { 11285 + name = "text_segmentation___text_segmentation_1.0.2.tgz"; 11286 + path = fetchurl { 11287 + name = "text_segmentation___text_segmentation_1.0.2.tgz"; 11288 + url = "https://registry.yarnpkg.com/text-segmentation/-/text-segmentation-1.0.2.tgz"; 11289 + sha512 = "uTqvLxdBrVnx/CFQOtnf8tfzSXFm+1Qxau7Xi54j4OPTZokuDOX8qncQzrg2G8ZicAMOM8TgzFAYTb+AqNO4Cw=="; 10930 11290 }; 10931 11291 } 10932 11292 { ··· 11002 11346 }; 11003 11347 } 11004 11348 { 11005 - name = "tippy.js___tippy.js_6.3.1.tgz"; 11349 + name = "tippy.js___tippy.js_6.3.5.tgz"; 11006 11350 path = fetchurl { 11007 - name = "tippy.js___tippy.js_6.3.1.tgz"; 11008 - url = "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.1.tgz"; 11009 - sha512 = "JnFncCq+rF1dTURupoJ4yPie5Cof978inW6/4S6kmWV7LL9YOSEVMifED3KdrVPEG+Z/TFH2CDNJcQEfaeuQww=="; 11351 + name = "tippy.js___tippy.js_6.3.5.tgz"; 11352 + url = "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.5.tgz"; 11353 + sha512 = "B9hAQ5KNF+jDJRg6cRysV6Y3J+5fiNfD60GuXR5TP0sfrcltpgdzVc7f1wMtjQ3W0+Xsy80CDvk0Z+Vr0cM4sQ=="; 11010 11354 }; 11011 11355 } 11012 11356 { ··· 11050 11394 }; 11051 11395 } 11052 11396 { 11053 - name = "toggle_selection___toggle_selection_1.0.6.tgz"; 11054 - path = fetchurl { 11055 - name = "toggle_selection___toggle_selection_1.0.6.tgz"; 11056 - url = "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz"; 11057 - sha1 = "bkWxJj8gF/oKzH2J14sVuL932jI="; 11058 - }; 11059 - } 11060 - { 11061 11397 name = "toidentifier___toidentifier_1.0.0.tgz"; 11062 11398 path = fetchurl { 11063 11399 name = "toidentifier___toidentifier_1.0.0.tgz"; ··· 11090 11442 }; 11091 11443 } 11092 11444 { 11093 - name = "tslib___tslib_2.2.0.tgz"; 11445 + name = "tslib___tslib_2.3.1.tgz"; 11094 11446 path = fetchurl { 11095 - name = "tslib___tslib_2.2.0.tgz"; 11096 - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz"; 11097 - sha512 = "gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w=="; 11447 + name = "tslib___tslib_2.3.1.tgz"; 11448 + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz"; 11449 + sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 11098 11450 }; 11099 11451 } 11100 11452 { ··· 11154 11506 }; 11155 11507 } 11156 11508 { 11157 - name = "type_fest___type_fest_0.8.1.tgz"; 11509 + name = "type_fest___type_fest_0.20.2.tgz"; 11158 11510 path = fetchurl { 11159 - name = "type_fest___type_fest_0.8.1.tgz"; 11160 - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz"; 11161 - sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="; 11511 + name = "type_fest___type_fest_0.20.2.tgz"; 11512 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; 11513 + sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 11162 11514 }; 11163 11515 } 11164 11516 { ··· 11194 11546 }; 11195 11547 } 11196 11548 { 11197 - name = "uglify_js___uglify_js_3.14.2.tgz"; 11549 + name = "uglify_js___uglify_js_3.14.3.tgz"; 11198 11550 path = fetchurl { 11199 - name = "uglify_js___uglify_js_3.14.2.tgz"; 11200 - url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.2.tgz"; 11201 - sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A=="; 11551 + name = "uglify_js___uglify_js_3.14.3.tgz"; 11552 + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.3.tgz"; 11553 + sha512 = "mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g=="; 11202 11554 }; 11203 11555 } 11204 11556 { ··· 11342 11694 path = fetchurl { 11343 11695 name = "universalify___universalify_2.0.0.tgz"; 11344 11696 url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz"; 11345 - sha1 = "daSYTv7cSwiXXFrrc/Uw0C3yVxc="; 11697 + sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; 11346 11698 }; 11347 11699 } 11348 11700 { ··· 11442 11794 }; 11443 11795 } 11444 11796 { 11445 - name = "util___util_0.12.3.tgz"; 11797 + name = "util___util_0.12.4.tgz"; 11446 11798 path = fetchurl { 11447 - name = "util___util_0.12.3.tgz"; 11448 - url = "https://registry.yarnpkg.com/util/-/util-0.12.3.tgz"; 11449 - sha512 = "I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog=="; 11799 + name = "util___util_0.12.4.tgz"; 11800 + url = "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz"; 11801 + sha512 = "bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw=="; 11450 11802 }; 11451 11803 } 11452 11804 { ··· 11455 11807 name = "utils_merge___utils_merge_1.0.1.tgz"; 11456 11808 url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; 11457 11809 sha1 = "n5VxD1CiZ5R7LMwSR0HBAoQn5xM="; 11810 + }; 11811 + } 11812 + { 11813 + name = "utrie___utrie_1.0.1.tgz"; 11814 + path = fetchurl { 11815 + name = "utrie___utrie_1.0.1.tgz"; 11816 + url = "https://registry.yarnpkg.com/utrie/-/utrie-1.0.1.tgz"; 11817 + sha512 = "JPaDXF3vzgZxfeEwutdGzlrNoVFL5UvZcbO6Qo9D4GoahrieUPoMU8GCpVpR7MQqcKhmShIh8VlbEN3PLM3EBg=="; 11458 11818 }; 11459 11819 } 11460 11820 { ··· 11490 11834 }; 11491 11835 } 11492 11836 { 11493 - name = "vanilla_picker___vanilla_picker_2.11.2.tgz"; 11837 + name = "vanilla_picker___vanilla_picker_2.12.1.tgz"; 11494 11838 path = fetchurl { 11495 - name = "vanilla_picker___vanilla_picker_2.11.2.tgz"; 11496 - url = "https://registry.yarnpkg.com/vanilla-picker/-/vanilla-picker-2.11.2.tgz"; 11497 - sha512 = "2cP7LlUnxHxwOf06ReUVtd2RFJMnJGaxN2s0p8wzBH3In5b00Le7fFZ9VrIoBE0svZkSq/BC/Pwq/k/9n+AA2g=="; 11839 + name = "vanilla_picker___vanilla_picker_2.12.1.tgz"; 11840 + url = "https://registry.yarnpkg.com/vanilla-picker/-/vanilla-picker-2.12.1.tgz"; 11841 + sha512 = "2qrEP9VYylKXbyzXKsbu2dferBTvqnlsr29XjHwFE+/MEp0VNj6oEUESLDtKZ7DWzGdSv1x/+ujqFZF+KsO3cg=="; 11498 11842 }; 11499 11843 } 11500 11844 { ··· 11570 11914 }; 11571 11915 } 11572 11916 { 11573 - name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.2.tgz"; 11917 + name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.5.0.tgz"; 11574 11918 path = fetchurl { 11575 - name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.2.tgz"; 11576 - url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.4.2.tgz"; 11577 - sha512 = "PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ=="; 11919 + name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.5.0.tgz"; 11920 + url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz"; 11921 + sha512 = "GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ=="; 11578 11922 }; 11579 11923 } 11580 11924 { 11581 - name = "webpack_cli___webpack_cli_4.7.0.tgz"; 11925 + name = "webpack_cli___webpack_cli_4.9.1.tgz"; 11582 11926 path = fetchurl { 11583 - name = "webpack_cli___webpack_cli_4.7.0.tgz"; 11584 - url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.7.0.tgz"; 11585 - sha512 = "7bKr9182/sGfjFm+xdZSwgQuFjgEcy0iCTIBxRUeteJ2Kr8/Wz0qNJX+jw60LU36jApt4nmMkep6+W5AKhok6g=="; 11927 + name = "webpack_cli___webpack_cli_4.9.1.tgz"; 11928 + url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.9.1.tgz"; 11929 + sha512 = "JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ=="; 11586 11930 }; 11587 11931 } 11588 11932 { ··· 11594 11938 }; 11595 11939 } 11596 11940 { 11597 - name = "webpack_merge___webpack_merge_5.7.3.tgz"; 11941 + name = "webpack_merge___webpack_merge_5.8.0.tgz"; 11598 11942 path = fetchurl { 11599 - name = "webpack_merge___webpack_merge_5.7.3.tgz"; 11600 - url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz"; 11601 - sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA=="; 11943 + name = "webpack_merge___webpack_merge_5.8.0.tgz"; 11944 + url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz"; 11945 + sha512 = "/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q=="; 11602 11946 }; 11603 11947 } 11604 11948 { ··· 11618 11962 }; 11619 11963 } 11620 11964 { 11621 - name = "webpack_sources___webpack_sources_2.3.0.tgz"; 11965 + name = "webpack_sources___webpack_sources_3.2.1.tgz"; 11622 11966 path = fetchurl { 11623 - name = "webpack_sources___webpack_sources_2.3.0.tgz"; 11624 - url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.0.tgz"; 11625 - sha512 = "WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ=="; 11967 + name = "webpack_sources___webpack_sources_3.2.1.tgz"; 11968 + url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.1.tgz"; 11969 + sha512 = "t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA=="; 11626 11970 }; 11627 11971 } 11628 11972 { 11629 - name = "webpack___webpack_5.24.3.tgz"; 11973 + name = "webpack___webpack_5.61.0.tgz"; 11630 11974 path = fetchurl { 11631 - name = "webpack___webpack_5.24.3.tgz"; 11632 - url = "https://registry.yarnpkg.com/webpack/-/webpack-5.24.3.tgz"; 11633 - sha512 = "x7lrWZ7wlWAdyKdML6YPvfVZkhD1ICuIZGODE5SzKJjqI9A4SpqGTjGJTc6CwaHqn19gGaoOR3ONJ46nYsn9rw=="; 11975 + name = "webpack___webpack_5.61.0.tgz"; 11976 + url = "https://registry.yarnpkg.com/webpack/-/webpack-5.61.0.tgz"; 11977 + sha512 = "fPdTuaYZ/GMGFm4WrPi2KRCqS1vDp773kj9S0iI5Uc//5cszsFEDgHNaX4Rj1vobUiU1dFIV3mA9k1eHeluFpw=="; 11634 11978 }; 11635 11979 } 11636 11980 { ··· 11642 11986 }; 11643 11987 } 11644 11988 { 11645 - name = "which_typed_array___which_typed_array_1.1.4.tgz"; 11989 + name = "which_typed_array___which_typed_array_1.1.7.tgz"; 11646 11990 path = fetchurl { 11647 - name = "which_typed_array___which_typed_array_1.1.4.tgz"; 11648 - url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz"; 11649 - sha512 = "49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA=="; 11991 + name = "which_typed_array___which_typed_array_1.1.7.tgz"; 11992 + url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.7.tgz"; 11993 + sha512 = "vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw=="; 11650 11994 }; 11651 11995 } 11652 11996 { ··· 11722 12066 }; 11723 12067 } 11724 12068 { 11725 - name = "ws___ws_7.4.6.tgz"; 12069 + name = "ws___ws_7.5.5.tgz"; 11726 12070 path = fetchurl { 11727 - name = "ws___ws_7.4.6.tgz"; 11728 - url = "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz"; 11729 - sha512 = "YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A=="; 12071 + name = "ws___ws_7.5.5.tgz"; 12072 + url = "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz"; 12073 + sha512 = "BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w=="; 11730 12074 }; 11731 12075 } 11732 12076 { ··· 11746 12090 }; 11747 12091 } 11748 12092 { 12093 + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; 12094 + path = fetchurl { 12095 + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_2.0.0.tgz"; 12096 + url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz"; 12097 + sha512 = "QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A=="; 12098 + }; 12099 + } 12100 + { 11749 12101 name = "xtend___xtend_4.0.2.tgz"; 11750 12102 path = fetchurl { 11751 12103 name = "xtend___xtend_4.0.2.tgz"; ··· 11770 12106 }; 11771 12107 } 11772 12108 { 11773 - name = "xterm_addon_search___xterm_addon_search_0.8.0.tgz"; 12109 + name = "xterm_addon_search___xterm_addon_search_0.8.1.tgz"; 11774 12110 path = fetchurl { 11775 - name = "xterm_addon_search___xterm_addon_search_0.8.0.tgz"; 11776 - url = "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.0.tgz"; 11777 - sha512 = "MPJGPVPpHRUw9cLIuqQbrVepmENMOybVUSxIALz5h1ryyQBrVqVujq2hL5aroX5/dZJoHx9lGHQTVLQ07SKgKA=="; 12111 + name = "xterm_addon_search___xterm_addon_search_0.8.1.tgz"; 12112 + url = "https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.8.1.tgz"; 12113 + sha512 = "OtOaC9gxD2Q4ZnjZrCSRZmKLwwUjXX3gP7mIzq8Rs50317DGRDqgTLuHTYv/Nx/LvI5ceVFRYCxK36Ixs1nXNw=="; 11778 12114 }; 11779 12115 } 11780 12116 { ··· 11786 12122 }; 11787 12123 } 11788 12124 { 11789 - name = "xterm___xterm_4.12.0.tgz"; 12125 + name = "xterm___xterm_4.14.1.tgz"; 11790 12126 path = fetchurl { 11791 - name = "xterm___xterm_4.12.0.tgz"; 11792 - url = "https://registry.yarnpkg.com/xterm/-/xterm-4.12.0.tgz"; 11793 - sha512 = "K5mF/p3txUV18mjiZFlElagoHFpqXrm5OYHeoymeXSu8GG/nMaOO/+NRcNCwfdjzAbdQ5VLF32hEHiWWKKm0bw=="; 12127 + name = "xterm___xterm_4.14.1.tgz"; 12128 + url = "https://registry.yarnpkg.com/xterm/-/xterm-4.14.1.tgz"; 12129 + sha512 = "jgzNg5BuGPwq5/M4dGnmbghZvHx2jaj+9crSEt15bV34Za49VziBmCu7zIy88zUKKiGTxeo7aVzirFSJArIMFw=="; 11794 12130 }; 11795 12131 } 11796 12132 { ··· 11826 12162 }; 11827 12163 } 11828 12164 { 11829 - name = "yargs_parser___yargs_parser_20.2.6.tgz"; 12165 + name = "yargs_parser___yargs_parser_20.2.9.tgz"; 11830 12166 path = fetchurl { 11831 - name = "yargs_parser___yargs_parser_20.2.6.tgz"; 11832 - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz"; 11833 - sha512 = "AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA=="; 12167 + name = "yargs_parser___yargs_parser_20.2.9.tgz"; 12168 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz"; 12169 + sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 11834 12170 }; 11835 12171 } 11836 12172 {
+33 -7
pkgs/tools/admin/turbovnc/default.nix
··· 4 4 , nixosTests 5 5 6 6 # Dependencies 7 + , bzip2 7 8 , cmake 9 + , freetype 10 + , libGL 8 11 , libjpeg_turbo 9 12 , makeWrapper 10 13 , mesa # for built-in 3D software rendering using swrast ··· 17 14 , openssl 18 15 , pam 19 16 , perl 17 + , python3 20 18 , which 21 19 , xkbcomp 22 20 , xkeyboard_config 23 21 , xorg 22 + , xterm 23 + , zlib 24 24 }: 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "turbovnc"; 28 - version = "2.2.7"; 28 + version = "3.0"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "TurboVNC"; 32 32 repo = "turbovnc"; 33 33 rev = version; 34 - sha256 = "sha256-mEdatfTBx4nNmMTgv1Z+xefPFEiE2rCrsxyB7Dd03rg="; 34 + sha256 = "sha256-4/pfKb89ld32LvqTXjVpIJUCCDA+D7CLYMNFYytKVIE="; 35 35 }; 36 36 37 37 # TODO: ··· 53 47 cmake 54 48 makeWrapper 55 49 openjdk_headless 50 + python3 56 51 ]; 57 52 58 53 buildInputs = [ 54 + bzip2 55 + freetype 56 + libGL # for -DTVNC_SYSTEMX11=1 59 57 libjpeg_turbo 60 58 openssl 61 59 pam 62 60 perl 61 + zlib 63 62 ] ++ (with xorg; [ 63 + libfontenc # for -DTVNC_SYSTEMX11=1 64 64 libSM 65 65 libX11 66 + libXdamage # for -DTVNC_SYSTEMX11=1 67 + libXdmcp # for -DTVNC_SYSTEMX11=1 66 68 libXext 69 + libXfont2 # for -DTVNC_SYSTEMX11=1 70 + libxkbfile # for -DTVNC_SYSTEMX11=1 67 71 libXi 72 + mesa # for -DTVNC_SYSTEMX11=1 73 + pixman # for -DTVNC_SYSTEMX11=1 68 74 xorgproto 75 + xtrans # for -DTVNC_SYSTEMX11=1 69 76 ]); 77 + 78 + postPatch = '' 79 + substituteInPlace unix/Xvnc/CMakeLists.txt --replace 'string(REGEX REPLACE "X11" "Xfont2" X11_Xfont2_LIB' 'set(X11_Xfont2_LIB ${xorg.libXfont2}/lib/libXfont2.so) #' 80 + substituteInPlace unix/Xvnc/CMakeLists.txt --replace 'string(REGEX REPLACE "X11" "fontenc" X11_Fontenc_LIB' 'set(X11_Fontenc_LIB ${xorg.libfontenc}/lib/libfontenc.so) #' 81 + substituteInPlace unix/Xvnc/CMakeLists.txt --replace 'string(REGEX REPLACE "X11" "pixman-1" X11_Pixman_LIB' 'set(X11_Pixman_LIB ${xorg.pixman}/lib/libpixman-1.so) #' 82 + ''; 70 83 71 84 cmakeFlags = [ 72 85 # For the 3D software rendering built into TurboVNC, pass the path ··· 98 73 "-DTJPEG_JNILIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" 99 74 "-DXKB_BASE_DIRECTORY=${xkeyboard_config}/share/X11/xkb" 100 75 "-DXKB_BIN_DIRECTORY=${xkbcomp}/bin" 76 + # use system libs 77 + "-DTVNC_SYSTEMLIBS=1" 78 + "-DTVNC_SYSTEMX11=1" 79 + "-DTVNC_DLOPENSSL=0" 101 80 ]; 102 81 103 82 postInstall = '' ··· 114 85 # (This default is written by `vncserver` to `~/.vnc/xstartup.turbovnc`, 115 86 # see https://github.com/TurboVNC/turbovnc/blob/ffdb57d9/unix/vncserver.in#L201.) 116 87 # It checks for it using `which twm`. 88 + # vncserver needs also needs `xauth` and we add in `xterm` for convenience 117 89 wrapProgram $out/bin/vncserver \ 118 - --prefix PATH : ${lib.makeBinPath [ which xorg.twm ]} 90 + --prefix PATH : ${lib.makeBinPath [ which xorg.twm xorg.xauth xterm ]} 119 91 120 92 # Patch /usr/bin/perl 121 93 patchShebangs $out/bin/vncserver 122 - 123 - # vncserver needs `xauth` 124 - wrapProgram $out/bin/vncserver \ 125 - --prefix PATH : ${lib.makeBinPath (with xorg; [ xauth ])} 126 94 127 95 # The viewer is in Java and requires `JAVA_HOME` (which is a single 128 96 # path, cannot be multiple separated paths).
+2 -2
pkgs/tools/filesystems/gcsfuse/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "gcsfuse"; 5 - version = "0.41.0"; 5 + version = "0.41.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "googlecloudplatform"; 9 9 repo = "gcsfuse"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vVmOEiP4oMvs8EmHAmp/xS1RMqs6ESDm4Ov9hAEeWPg="; 11 + sha256 = "sha256-5Kfd033SG1ldF+2QCZ01aa7ts0mA8uPXiLmqZIr94YQ="; 12 12 }; 13 13 14 14 goPackagePath = "github.com/googlecloudplatform/gcsfuse";
+3 -3
pkgs/tools/misc/apkeep/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "apkeep"; 5 - version = "0.12.0"; 5 + version = "0.13.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-SmzsFXS/geFpssy18pIluoCYGsJql9TAgYUNgAZlXmI="; 9 + sha256 = "sha256-wFrpzemqBdhEO8cahSV9Qjw4HxCk+TgAVpGaa/IaO0Q="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-bL79CW6X9pHx/Cn58KDxf8bVDwvrGRKkK9v/+Ygp5D4="; 12 + cargoSha256 = "sha256-6DAzNiNHmzOwg7RlRCorUCW33FTYdfLf6PnTygcL1ok="; 13 13 14 14 prePatch = '' 15 15 rm .cargo/config.toml
+3 -1
pkgs/tools/misc/cloud-sql-proxy/default.nix
··· 15 15 16 16 vendorSha256 = "sha256-yxqLGDqdu9vX3ykHq7Kzf8oBH1ydltZkiWNWWM2l0Aw="; 17 17 18 - checkFlags = [ "-short" ]; 18 + preCheck = '' 19 + buildFlagsArray+="-short" 20 + ''; 19 21 20 22 meta = with lib; { 21 23 description = "An authenticating proxy for Second Generation Google Cloud SQL databases";
+3 -3
pkgs/tools/misc/goreleaser/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "goreleaser"; 5 - version = "1.9.0"; 5 + version = "1.9.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "goreleaser"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-R20mzPpbFDUw/wrif3ZJCt2wgmV+yqSkGaxyuw/9z0E="; 11 + sha256 = "sha256-lr/yTxtWjTZoiZjfqstl53V1CBf16IRkSo7+YkZ6Yxc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-+Rj2hb9Sul5ntVGfuWf7JibKdG03zALiMWaaNTJFC8k="; 14 + vendorSha256 = "sha256-MyhrFXg/A3zb2p/OlJ//lkqjFjNiEP0B0/vO0iuHDRo="; 15 15 16 16 ldflags = [ 17 17 "-s"
+7
pkgs/tools/misc/rockbox-utility/default.nix
··· 43 43 lrelease rbutilqt.pro 44 44 ''; 45 45 46 + # Workaround build failure on -fno-common toolchains like upstream 47 + # gcc-10. Otherwise build fails as: 48 + # ld: libmkimxboot.a(elf.c.o):utils/imxtools/sbtools/misc.h:43: multiple definition of `g_nr_keys'; 49 + # libmkimxboot.a(mkimxboot.c.o):utils/imxtools/sbtools/misc.h:43: first defined here 50 + # TODO: try to remove with 1.5.1 update. 51 + NIX_CFLAGS_COMPILE = "-fcommon"; 52 + 46 53 installPhase = '' 47 54 runHook preInstall 48 55
+2 -2
pkgs/tools/misc/vial/default.nix
··· 1 1 { lib, fetchurl, appimageTools }: 2 2 let 3 3 name = "vial-${version}"; 4 - version = "0.5.2"; 4 + version = "0.6"; 5 5 pname = "Vial"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/vial-kb/vial-gui/releases/download/v${version}/${pname}-v${version}-x86_64.AppImage"; 9 - sha256 = "sha256-wKgkEn2BoJfk3kMXOAKlFvXgCcnwHlgu2VgwL2QM06Q="; 9 + sha256 = "sha256-2EapikmY79KQdoHnz1A7gErVXBN8D80r1GJMKQ5gIM0="; 10 10 }; 11 11 12 12 appimageContents = appimageTools.extractType2 { inherit name src; };
+3 -3
pkgs/tools/networking/dd-agent/datadog-agent.nix
··· 10 10 11 11 in buildGoModule rec { 12 12 pname = "datadog-agent"; 13 - version = "7.35.1"; 13 + version = "7.36.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 inherit owner repo; 17 17 rev = version; 18 - sha256 = "sha256-TvkPw67HBeRkKbbA3O/JVBkEUds36eW4UwKnRvPwAXc="; 18 + sha256 = "sha256-pkbgYE58T9QzV7nCzvfBoTt6Ue8cCMUBSuCBeDtdkzo="; 19 19 }; 20 20 21 - vendorSha256 = "sha256-RmHxjJAMS+2MVoBJMD6FTQLhxDgzH3jtp87474i9ho8="; 21 + vendorSha256 = "sha256-SxdSoZtRAdl3evCpb+3BHWf/uPYJJKgw0CL9scwNfGA="; 22 22 23 23 subPackages = [ 24 24 "cmd/agent"
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.42.1"; 5 + version = "0.43.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-m4Xc5ZorsO6WcbHmJGROJ8SsPCm/KmFapQRQZTZIQKw="; 11 + sha256 = "sha256-rhhfXdtPxNnHqMgkLfm9ZMXWbKHMAPnFzeyMxt3LbeA="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/tools/networking/ssldump/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "ssldump"; 13 - version = "1.4"; 13 + version = "1.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "adulau"; 17 17 repo = "ssldump"; 18 18 rev = "v${version}"; 19 - sha256 = "1xnlfqsl93nxbcv4x4xsgxa6mnhcx37hijrpdb7vzla6q7xvg8qr"; 19 + sha256 = "sha256-nk1sXQN9cPIZD7Xlg8CHmKySfvfWl2j0CGxmIyvA6z4="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/tools/networking/stunnel/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "stunnel"; 5 - version = "5.63"; 5 + version = "5.64"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.stunnel.org/downloads/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-x0xOFRRKOuNLi4kLsxyQkgcwFJC9HlG/qqX/6wqZRhc="; 9 + sha256 = "sha256-7r5T7RFrpDsueGdisMK5FRHnt0hXrUdlgk5xmeb6+IM="; 10 10 # please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256", 11 11 # not the output of `nix-prefetch-url` 12 12 };
+3 -3
pkgs/tools/package-management/cargo-release/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-release"; 5 - version = "0.20.5"; 5 + version = "0.21.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "crate-ci"; 9 9 repo = "cargo-release"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-3UuDo6lW+SG4XhqEKvpe/JeJXwEeYTA0i65yJAjDVHk="; 11 + sha256 = "sha256-QTHevbEifYsf/nCmkarbrHgijjlHragLieCpVZBfKGQ="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-/3gh3NdIuWl0xtbLahNRGBl/BGpVUmR7sHUIX3bttpQ="; 14 + cargoSha256 = "sha256-hEHEcB42mRn6pO5413wQbEWfJNBbiOSUuy9PGjP5EYw="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17
+3 -3
pkgs/tools/package-management/cargo-update/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "cargo-update"; 18 - version = "8.1.2"; 18 + version = "8.1.4"; 19 19 20 20 src = fetchCrate { 21 21 inherit pname version; 22 - sha256 = "sha256-9/4HQbf6wPNzsYqXbtrWoe9n2iKQoNILhjhwrbOY3Z0="; 22 + sha256 = "sha256-Q8Cd//QDQ6kWgp+QEn9/h69jfaUNE1/+oqQne/2wvAg="; 23 23 }; 24 24 25 - cargoSha256 = "sha256-iUJBhBKWYRpzwMcOvMIP8smmw5OnsTv1olv61pel5dY="; 25 + cargoSha256 = "sha256-khJ6EZVJ96geD1VzvR8E2ZgHfxhX/NTPVoVIMhCh+c4="; 26 26 27 27 nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ]; 28 28
+2 -1
pkgs/tools/security/doas/default.nix
··· 37 37 sed -i '/\(chown\|chmod\)/d' GNUmakefile 38 38 ''; 39 39 40 - buildInputs = [ bison pam ]; 40 + nativeBuildInputs = [ bison ]; 41 + buildInputs = [ pam ]; 41 42 42 43 meta = with lib; { 43 44 description = "Executes the given command as another user";
+4 -3
pkgs/tools/security/gpg-tui/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "gpg-tui"; 19 - version = "0.8.3"; 19 + version = "0.9.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "orhun"; 23 23 repo = "gpg-tui"; 24 24 rev = "v${version}"; 25 - hash = "sha256-lqV09FEZAw1ir2cJr8ABhbgSoZoWnxhbxyA1HAufLQA="; 25 + hash = "sha256-iIMpAAIw6djLNP9lnrHV7D198VcHspQP4OHcr2LNKOA="; 26 26 }; 27 27 28 - cargoHash = "sha256-RMF4/WJRcpHuXKMvDYAGaJxUazcpkQCpv//u5XOd9Dg="; 28 + cargoHash = "sha256-xrv1tFzPReHDA+gr/RPCvSM7Sa7v8OKAEY+fSUjPT50="; 29 29 30 30 nativeBuildInputs = [ 31 31 gpgme # for gpgme-config ··· 49 49 meta = with lib; { 50 50 description = "Terminal user interface for GnuPG"; 51 51 homepage = "https://github.com/orhun/gpg-tui"; 52 + changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md"; 52 53 license = licenses.mit; 53 54 maintainers = with maintainers; [ dotlambda ]; 54 55 };
+44 -46
pkgs/tools/security/honggfuzz/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, callPackage, makeWrapper, clang, llvm, libbfd 2 2 , libopcodes, libunwind, libblocksruntime }: 3 3 4 - let 5 - honggfuzz = stdenv.mkDerivation rec { 6 - pname = "honggfuzz"; 7 - version = "2.5"; 4 + stdenv.mkDerivation rec { 5 + pname = "honggfuzz"; 6 + version = "2.5"; 8 7 9 - src = fetchFromGitHub { 10 - owner = "google"; 11 - repo = pname; 12 - rev = version; 13 - sha256 = "sha256-TkyUKmiiSAfCnfQhSOUxuce6+dRyMmHy7vFK59jPIxM="; 14 - }; 15 - 16 - postPatch = '' 17 - substituteInPlace hfuzz_cc/hfuzz-cc.c \ 18 - --replace '"clang' '"${clang}/bin/clang' 19 - ''; 20 - 21 - enableParallelBuilding = true; 22 - 23 - nativeBuildInputs = [ makeWrapper ]; 24 - buildInputs = [ llvm ]; 25 - propagatedBuildInputs = [ libbfd libopcodes libunwind libblocksruntime ]; 26 - 27 - makeFlags = [ "PREFIX=$(out)" ]; 28 - 29 - meta = { 30 - description = 31 - "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer"; 32 - longDescription = '' 33 - Honggfuzz is a security oriented, feedback-driven, evolutionary, 34 - easy-to-use fuzzer with interesting analysis options. It is 35 - multi-process and multi-threaded, blazingly fast when the persistent 36 - fuzzing mode is used and has a solid track record of uncovered security 37 - bugs. 38 - 39 - Honggfuzz uses low-level interfaces to monitor processes and it will 40 - discover and report hijacked/ignored signals from crashes. Feed it 41 - a simple corpus directory (can even be empty for the feedback-driven 42 - fuzzing), and it will work its way up, expanding it by utilizing 43 - feedback-based coverage metrics. 44 - ''; 45 - homepage = "https://honggfuzz.dev/"; 46 - license = lib.licenses.asl20; 47 - platforms = [ "x86_64-linux" ]; 48 - maintainers = with lib.maintainers; [ cpu chivay ]; 49 - }; 8 + src = fetchFromGitHub { 9 + owner = "google"; 10 + repo = pname; 11 + rev = version; 12 + sha256 = "sha256-TkyUKmiiSAfCnfQhSOUxuce6+dRyMmHy7vFK59jPIxM="; 50 13 }; 51 - in honggfuzz 14 + 15 + postPatch = '' 16 + substituteInPlace hfuzz_cc/hfuzz-cc.c \ 17 + --replace '"clang' '"${clang}/bin/clang' 18 + ''; 19 + 20 + enableParallelBuilding = true; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + buildInputs = [ llvm ]; 24 + propagatedBuildInputs = [ libbfd libopcodes libunwind libblocksruntime ]; 25 + 26 + makeFlags = [ "PREFIX=$(out)" ]; 27 + 28 + meta = { 29 + description = 30 + "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer"; 31 + longDescription = '' 32 + Honggfuzz is a security oriented, feedback-driven, evolutionary, 33 + easy-to-use fuzzer with interesting analysis options. It is 34 + multi-process and multi-threaded, blazingly fast when the persistent 35 + fuzzing mode is used and has a solid track record of uncovered security 36 + bugs. 37 + 38 + Honggfuzz uses low-level interfaces to monitor processes and it will 39 + discover and report hijacked/ignored signals from crashes. Feed it 40 + a simple corpus directory (can even be empty for the feedback-driven 41 + fuzzing), and it will work its way up, expanding it by utilizing 42 + feedback-based coverage metrics. 43 + ''; 44 + homepage = "https://honggfuzz.dev/"; 45 + license = lib.licenses.asl20; 46 + platforms = [ "x86_64-linux" ]; 47 + maintainers = with lib.maintainers; [ cpu chivay ]; 48 + }; 49 + }
+3 -3
pkgs/tools/security/step-cli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "step-cli"; 8 - version = "0.19.0"; 8 + version = "0.20.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "smallstep"; 12 12 repo = "cli"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-ZH3OrJGh7TekODW5rh8JShNHKfuxPr5HhVD7wsvi8M0="; 14 + sha256 = "sha256-CCtK7FuOOO6Ht4WjBpFVcfCL4XE3XR52WDahP4JDJ7M="; 15 15 }; 16 16 17 17 ldflags = [ ··· 25 25 rm command/certificate/remote_test.go 26 26 ''; 27 27 28 - vendorSha256 = "sha256-hJEL6kUc6aXKq7X23dRWhAni5oRDJ3CuNTx6JL049gA="; 28 + vendorSha256 = "sha256-O2B8NMsFxyRLsOi8Zznr2NaqktX9k8ZtWPeaFlkNUnE="; 29 29 30 30 meta = with lib; { 31 31 description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
+3 -3
pkgs/tools/text/asciigraph/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "asciigraph"; 5 - version = "0.5.3"; 5 + version = "0.5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "guptarohit"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-GzFJT4LI1QZzghs9g2A+pqkTg68XC+m9F14rYpMxEXM="; 11 + sha256 = "sha256-7sobelRCDY8mC5FYyGZmNsvUsEMxRulqPnUucNRN5J8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 14 + vendorSha256 = null; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+3 -3
pkgs/tools/text/each/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "each"; 8 - version = "0.1.3"; 8 + version = "0.2.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "arraypad"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "04rx8jf871l4darfx6029dhpnbpmzwjgzazayp1qcaadsk8207z5"; 14 + sha256 = "sha256-5Aa/uHWrU4bpWd28Uddnuhmi6guHy09W9AU8sAfea6I="; 15 15 }; 16 16 17 - cargoSha256 = "1r7nzfh7v2mlp0wdrcpqfj68h3zmip2m3d4z2nwxyikmw7c80car"; 17 + cargoSha256 = "sha256-sH9rraPNAIlW2KQVaZfYa10c1HHQpDgedY1+9e94RLE="; 18 18 19 19 meta = with lib; { 20 20 description = " A better way of working with structured data on the command line";
+8 -6
pkgs/top-level/all-packages.nix
··· 15920 15920 jre_headless = jre8_headless; 15921 15921 }; 15922 15922 15923 + nmrpflash = callPackage ../development/embedded/nmrpflash { }; 15924 + 15923 15925 nwjs = callPackage ../development/tools/nwjs { }; 15924 15926 15925 15927 nwjs-sdk = callPackage ../development/tools/nwjs { ··· 18449 18447 libdvdread = callPackage ../development/libraries/libdvdread { }; 18450 18448 libdvdread_4_9_9 = callPackage ../development/libraries/libdvdread/4.9.9.nix { }; 18451 18449 18452 - inherit (callPackage ../development/libraries/libdwarf { }) 18453 - libdwarf dwarfdump; 18450 + libdwarf = callPackage ../development/libraries/libdwarf { }; 18451 + dwarfdump = libdwarf.bin; 18454 18452 libdwarf_0_4 = callPackage ../development/libraries/libdwarf/0.4.nix { }; 18455 18453 18456 18454 libe57format = callPackage ../development/libraries/libe57format { }; ··· 22293 22291 mysql80 = callPackage ../servers/sql/mysql/8.0.x.nix { 22294 22292 inherit (darwin) cctools developer_cmds DarwinTools; 22295 22293 inherit (darwin.apple_sdk.frameworks) CoreServices; 22296 - boost = boost173; # Configure checks for specific version. 22297 - protobuf = protobuf3_11; 22298 - icu = icu67; 22294 + boost = boost177; # Configure checks for specific version. 22295 + protobuf = protobuf3_19; 22296 + icu = icu69; 22299 22297 }; 22300 22298 22301 22299 mysql_jdbc = callPackage ../servers/sql/mysql/jdbc { }; ··· 34255 34253 configuration: 34256 34254 let 34257 34255 c = import (path + "/nixos/lib/eval-config.nix") { 34258 - inherit (stdenv.hostPlatform) system; 34259 34256 modules = 34260 34257 [( 34261 34258 { lib, ... }: { 34262 34259 config.nixpkgs.pkgs = lib.mkDefault pkgs; 34260 + config.nixpkgs.localSystem = lib.mkDefault stdenv.hostPlatform; 34263 34261 } 34264 34262 )] ++ ( 34265 34263 if builtins.isList configuration
+26
pkgs/top-level/python-packages.nix
··· 2135 2135 2136 2136 ddt = callPackage ../development/python-modules/ddt { }; 2137 2137 2138 + deal = callPackage ../development/python-modules/deal { }; 2139 + 2140 + deal-solver = callPackage ../development/python-modules/deal-solver { }; 2141 + 2138 2142 deap = callPackage ../development/python-modules/deap { }; 2139 2143 2140 2144 debian = callPackage ../development/python-modules/debian { }; ··· 2352 2348 2353 2349 django-mailman3 = callPackage ../development/python-modules/django-mailman3 { }; 2354 2350 2351 + django-model-utils = callPackage ../development/python-modules/django-model-utils { }; 2352 + 2355 2353 django-modelcluster = callPackage ../development/python-modules/django_modelcluster { }; 2356 2354 2357 2355 django-multiselectfield = callPackage ../development/python-modules/django-multiselectfield { }; ··· 2365 2359 django_nose = callPackage ../development/python-modules/django_nose { }; 2366 2360 2367 2361 django-oauth-toolkit = callPackage ../development/python-modules/django-oauth-toolkit { }; 2362 + 2363 + django-otp = callPackage ../development/python-modules/django-otp { }; 2368 2364 2369 2365 django-paintstore = callPackage ../development/python-modules/django-paintstore { }; 2370 2366 ··· 2401 2393 djangorestframework-dataclasses = callPackage ../development/python-modules/djangorestframework-dataclasses { }; 2402 2394 2403 2395 djangorestframework-camel-case = callPackage ../development/python-modules/djangorestframework-camel-case { }; 2396 + 2397 + djangorestframework-guardian = callPackage ../development/python-modules/djangorestframework-guardian { }; 2404 2398 2405 2399 djangorestframework-recursive = callPackage ../development/python-modules/djangorestframework-recursive { }; 2406 2400 ··· 2548 2538 2549 2539 dpath = callPackage ../development/python-modules/dpath { }; 2550 2540 2541 + dpcontracts = callPackage ../development/python-modules/dpcontracts { }; 2542 + 2551 2543 dpkt = callPackage ../development/python-modules/dpkt { }; 2552 2544 2553 2545 dragonfly = callPackage ../development/python-modules/dragonfly { }; ··· 2607 2595 duo-client = callPackage ../development/python-modules/duo-client { }; 2608 2596 2609 2597 durus = callPackage ../development/python-modules/durus { }; 2598 + 2599 + dvclive = callPackage ../development/python-modules/dvclive { }; 2600 + 2601 + dvc-render = callPackage ../development/python-modules/dvc-render { }; 2610 2602 2611 2603 dwdwfsapi = callPackage ../development/python-modules/dwdwfsapi { }; 2612 2604 ··· 4108 4092 ics = callPackage ../development/python-modules/ics { }; 4109 4093 4110 4094 idasen = callPackage ../development/python-modules/idasen { }; 4095 + 4096 + icontract = callPackage ../development/python-modules/icontract { }; 4111 4097 4112 4098 identify = callPackage ../development/python-modules/identify { }; 4113 4099 ··· 6535 6517 6536 6518 pysbd = callPackage ../development/python-modules/pysbd { }; 6537 6519 6520 + pyschemes = callPackage ../development/python-modules/pyschemes { }; 6521 + 6538 6522 pyshark = callPackage ../development/python-modules/pyshark { }; 6539 6523 6540 6524 pysiaalarm = callPackage ../development/python-modules/pysiaalarm { }; ··· 8312 8292 pytest-subtests = callPackage ../development/python-modules/pytest-subtests { }; 8313 8293 8314 8294 pytest-sugar = callPackage ../development/python-modules/pytest-sugar { }; 8295 + 8296 + pytest-test-utils = callPackage ../development/python-modules/pytest-test-utils { }; 8315 8297 8316 8298 pytest-testmon = callPackage ../development/python-modules/pytest-testmon { }; 8317 8299 ··· 10845 10823 inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices CoreServices; 10846 10824 }; 10847 10825 10826 + vaa = callPackage ../development/python-modules/vaa { }; 10827 + 10848 10828 validate-email = callPackage ../development/python-modules/validate-email { }; 10849 10829 10850 10830 validators = callPackage ../development/python-modules/validators { }; ··· 11040 11016 webapp2 = callPackage ../development/python-modules/webapp2 { }; 11041 11017 11042 11018 webassets = callPackage ../development/python-modules/webassets { }; 11019 + 11020 + webauthn = callPackage ../development/python-modules/webauthn { }; 11043 11021 11044 11022 web = callPackage ../development/python-modules/web { }; 11045 11023