From 86ac677298c14014d2f463ff9173f5aeadc2eb46 Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Tue, 3 Dec 2024 11:41:17 +0100 Subject: [PATCH 1/9] graph --- .../sae/view/AfficherDonneesController.java | 78 ++++++++++--------- 1 file changed, 40 insertions(+), 38 deletions(-) diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index 4638e5db..b19f8f4d 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -5,6 +5,7 @@ import java.net.URL; import java.nio.file.Paths; import java.util.ArrayList; +import java.util.Set; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; @@ -25,11 +26,16 @@ public class AfficherDonneesController { @FXML private Label titreSalle; + private String numSalle; + @FXML private GridPane gridDynamique; private ArrayList donnees = new ArrayList<>(); + private JSONObject sallesData; // Champ pour stocker les données JSON + + public void setDatas(Stage fenetre, App app) { this.application = app; this.fenetrePrincipale = fenetre; @@ -37,6 +43,7 @@ public void setDatas(Stage fenetre, App app) { public void setSalle(String salle) { this.titreSalle.setText(salle); + this.numSalle = salle; } public void setTab(ArrayList list) { @@ -46,7 +53,6 @@ public void setTab(ArrayList list) { @FXML private void actionAfficher() { System.out.println("A faire !"); - // lecture(); System.out.println(donnees); chargerFichierSalle(); } @@ -64,55 +70,51 @@ public void afficherDonnees() { public void chargerFichierSalle() { - JSONParser parser = new JSONParser(); + JSONParser parser = new JSONParser(); - try { - URL resource = getClass().getClassLoader().getResource("Iot/salles.json"); + try { + // Définir le chemin du fichier salles.json à la racine du projet + File file = new File("Iot/salles.json"); - if (resource == null) { - System.out.println("Le fichier salles.json est introuvable."); - return; - } + if (!file.exists()) { + System.out.println("Le fichier salles.json est introuvable à la racine du projet."); + return; + } - FileReader reader = new FileReader(Paths.get(resource.toURI()).toFile()); - JSONObject jsonObject = (JSONObject) parser.parse(reader); + // Lire et analyser le fichier JSON + FileReader reader = new FileReader(file); + JSONObject json = (JSONObject) parser.parse(reader); - // Test: Afficher le contenu du fichier JSON - System.out.println("Fichier chargé avec succès : "); - // System.out.println(jsonObject.toJSONString()); // Affiche le contenu du JSON - // en format lisible + // Stocker les données dans le champ solarData + this.sallesData = json; - // Recherche de la salle B110 - if (jsonObject.containsKey("E004")) { - JSONObject salleB110 = (JSONObject) jsonObject.get("E004"); - System.out.println(salleB110.toJSONString()); - } else { - System.out.println("La salle E004 n'existe pas dans le fichier JSON."); - } + System.out.println("Données extraites du fichier salles.json " + numSalle + " : "); + //System.out.println(json.toJSONString()); + - } catch (Exception e) { - e.printStackTrace(); - } + if (json.containsKey(numSalle)) { + JSONObject salleChoisi = (JSONObject) json.get(numSalle); + System.out.println(salleChoisi.toJSONString()); - } - - public void modifConfig() { + // Récupérer toutes les valeurs pour cette clé spécifique + Set allKeys = salleChoisi.keySet(); - } + JSONObject dernierClé = (JSONObject) salleChoisi.get( (allKeys.size() - 1) + "" ); + System.out.println( "Dernière clée de la salle : " + (allKeys.size() - 1)); + System.out.println(dernierClé); - public void lecture() { + } else { + System.out.println("La salle " + numSalle + " n'existe pas dans le fichier JSON."); + } - // Chemin relatif du fichier Python - String pythonScriptPath = "main2.py"; // Le fichier Python est dans le même dossier + - // Créer un objet File avec le chemin relatif - File file = new File(pythonScriptPath); + reader.close(); - // Vérifier si le fichier existe - if (file.exists()) - System.out.println("Le fichier Python existe : " + pythonScriptPath); - else - System.out.println("nexiste pas"); + } catch (Exception e) { + System.out.println("Erreur lors du chargement du fichier solar.json : " + e.getMessage()); + e.printStackTrace(); + } } From f1022e9daf74f707b50d782e26d925ad9aa3848e Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Tue, 3 Dec 2024 11:46:54 +0100 Subject: [PATCH 2/9] test --- .../app/src/main/java/sae/view/AfficherDonneesController.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index b19f8f4d..17f4f3a4 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -103,6 +103,8 @@ public void chargerFichierSalle() { System.out.println( "Dernière clée de la salle : " + (allKeys.size() - 1)); System.out.println(dernierClé); + + } else { System.out.println("La salle " + numSalle + " n'existe pas dans le fichier JSON."); } From ab54cbf760340814372a32de3a9567af804bfcdf Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Tue, 3 Dec 2024 15:00:06 +0100 Subject: [PATCH 3/9] =?UTF-8?q?Affichage=20des=20donn=C3=A9es=20par=20sall?= =?UTF-8?q?es=20r=C3=A9ussi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/sae/appli/TypeDonnee.java | 18 +- .../sae/view/AfficherDonneesController.java | 40 +- Iot/alarmes.json | 1088 ++++------------- Iot/config.ini | 2 +- Iot/salles.json | 542 ++++++++ Iot/solar.json | 171 +++ Iot/trigger.flag | 10 +- 7 files changed, 974 insertions(+), 897 deletions(-) diff --git a/Application/app/src/main/java/sae/appli/TypeDonnee.java b/Application/app/src/main/java/sae/appli/TypeDonnee.java index 0ab2add9..1b6b5edf 100644 --- a/Application/app/src/main/java/sae/appli/TypeDonnee.java +++ b/Application/app/src/main/java/sae/appli/TypeDonnee.java @@ -2,14 +2,14 @@ public enum TypeDonnee{ - TEMPERATURE, - HUMIDITY, - CO2, - TVOC, - ACTIVITY, - ILLUMINATION, - INFRARED, - INFRARED_AND_VISIBLE, - PRESSURE; + temperature, + humidity, + co2, + tvoc, + activity, + illumination, + infrared, + infrared_and_visible, + pressure; } \ No newline at end of file diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index 17f4f3a4..8beace3d 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -5,6 +5,8 @@ import java.net.URL; import java.nio.file.Paths; import java.util.ArrayList; +import java.util.HashMap; +import java.util.Map; import java.util.Set; import org.json.simple.JSONObject; @@ -51,10 +53,8 @@ public void setTab(ArrayList list) { } @FXML - private void actionAfficher() { - System.out.println("A faire !"); - System.out.println(donnees); - chargerFichierSalle(); + private void actionAfficher() {; + } @FXML @@ -63,14 +63,21 @@ private void actionRetour() { } public void afficherDonnees() { - for (int i = 0; i < donnees.size(); i++) { - gridDynamique.add(new Label(donnees.get(i) + " :"), 0, i); + Map dicoTypeValeur = chargerFichierSalle(); + System.out.println(dicoTypeValeur); + + System.out.println(donnees); + + for (int i = 0; i < donnees.size(); i++) { + gridDynamique.add(new Label( donnees.get(i).toUpperCase() + " :"), 0, i); + gridDynamique.add(new Label( dicoTypeValeur.get(donnees.get(i)) + "" ), 1, i); } } - public void chargerFichierSalle() { + public Map chargerFichierSalle() { JSONParser parser = new JSONParser(); + Map dicoTypeValeur = new HashMap(); try { // Définir le chemin du fichier salles.json à la racine du projet @@ -78,7 +85,7 @@ public void chargerFichierSalle() { if (!file.exists()) { System.out.println("Le fichier salles.json est introuvable à la racine du projet."); - return; + // return; } // Lire et analyser le fichier JSON @@ -93,31 +100,34 @@ public void chargerFichierSalle() { if (json.containsKey(numSalle)) { - JSONObject salleChoisi = (JSONObject) json.get(numSalle); - System.out.println(salleChoisi.toJSONString()); + JSONObject salleChoisie = (JSONObject) json.get(numSalle); + System.out.println(salleChoisie.toJSONString()); // Récupérer toutes les valeurs pour cette clé spécifique - Set allKeys = salleChoisi.keySet(); + Set allKeys = salleChoisie.keySet(); - JSONObject dernierClé = (JSONObject) salleChoisi.get( (allKeys.size() - 1) + "" ); + JSONObject dernierClé = (JSONObject) salleChoisie.get( (allKeys.size() - 1) + "" ); System.out.println( "Dernière clée de la salle : " + (allKeys.size() - 1)); System.out.println(dernierClé); - + dicoTypeValeur = dernierClé; + } else { System.out.println("La salle " + numSalle + " n'existe pas dans le fichier JSON."); } - - reader.close(); + + } catch (Exception e) { System.out.println("Erreur lors du chargement du fichier solar.json : " + e.getMessage()); e.printStackTrace(); } + return dicoTypeValeur; + } } diff --git a/Iot/alarmes.json b/Iot/alarmes.json index 9746b4be..2d948b9b 100644 --- a/Iot/alarmes.json +++ b/Iot/alarmes.json @@ -1,978 +1,404 @@ { - "C004": { + "E001": { "0": { - "key": "temperature", - "value": 19.3, + "key": "humidity", + "value": 49.5, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:18" + "timestamp": "2024-12-03 14:46:24" }, "1": { "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:18" - }, - "2": { - "key": "tvoc", - "value": 47.0, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:18" - }, - "3": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:18" - }, - "4": { - "key": "pressure", - "value": 999.1, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:18" - }, - "5": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:21:18" - }, - "6": { - "key": "co2", - "value": 1614.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:21:18" - }, - "7": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:41:18" - }, - "8": { - "key": "co2", - "value": 1843.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:41:18" - }, - "9": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:51:18" - }, - "10": { - "key": "co2", - "value": 1729.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:51:18" - }, - "11": { - "key": "co2", - "value": 1729.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:51:18" - }, - "12": { - "key": "temperature", - "value": 19.9, + "value": 49.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 11:01:18" - }, - "13": { - "key": "co2", - "value": 1591.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:01:18" + "timestamp": "2024-12-03 14:56:25" } }, - "Local-velo": { + "C102": { "0": { - "key": "humidity", - "value": 39.5, + "key": "temperature", + "value": 18.2, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:20" + "timestamp": "2024-12-03 14:47:27" }, "1": { - "key": "tvoc", - "value": 56452.0, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:20" + "key": "temperature", + "value": 18.2, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:57:27" }, "2": { - "key": "activity", - "value": 41.0, + "key": "tvoc", + "value": 145.0, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:20" + "timestamp": "2024-12-03 14:57:27" }, "3": { - "key": "illumination", - "value": 974.0, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:20" + "key": "activity", + "value": 42.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:57:27" }, "4": { - "key": "infrared", - "value": 614.0, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:20" - }, - "5": { - "key": "infrared_and_visible", - "value": 1622.0, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:20" - }, - "6": { "key": "pressure", - "value": 997.2, + "value": 997.8, "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:20" - }, - "7": { + "timestamp": "2024-12-03 14:57:27" + } + }, + "E007": { + "0": { "key": "temperature", - "value": 10.9, + "value": 19.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:21:21" + "timestamp": "2024-12-03 14:47:29" }, - "8": { + "1": { "key": "humidity", - "value": 87.5, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:21:21" - }, - "9": { - "key": "temperature", - "value": 11.5, + "value": 49.0, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:41:21" - }, - "10": { - "key": "humidity", - "value": 87.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:41:21" + "timestamp": "2024-12-03 14:47:29" }, - "11": { + "2": { "key": "temperature", - "value": 11.6, + "value": 19.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:51:21" + "timestamp": "2024-12-03 14:57:29" }, - "12": { + "3": { "key": "humidity", - "value": 87.5, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:51:21" + "value": 49.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:57:29" }, - "13": { - "key": "temperature", - "value": 11.7, + "4": { + "key": "activity", + "value": 0.0, "alarm_type": "MIN", - "timestamp": "2024-12-02 11:01:22" + "timestamp": "2024-12-03 14:57:29" }, - "14": { - "key": "humidity", - "value": 87.5, + "5": { + "key": "pressure", + "value": 998.3, "alarm_type": "MAX", - "timestamp": "2024-12-02 11:01:22" + "timestamp": "2024-12-03 14:57:29" } }, - "B202": { + "amphi1": { "0": { "key": "humidity", "value": 49.5, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:22" + "timestamp": "2024-12-03 14:47:57" }, "1": { - "key": "tvoc", - "value": 188.0, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:22" - }, - "2": { - "key": "activity", - "value": 2.0, + "key": "humidity", + "value": 49.5, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:22" - }, - "3": { - "key": "pressure", - "value": 998.5, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:22" - }, - "4": { - "key": "co2", - "value": 1765.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:41:26" - }, - "5": { - "key": "co2", - "value": 1902.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:51:26" - }, - "6": { - "key": "co2", - "value": 2035.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:01:26" + "timestamp": "2024-12-03 14:57:57" } }, - "Foyer-personnels": { + "E208": { "0": { "key": "humidity", - "value": 49.5, + "value": 49.0, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:26" + "timestamp": "2024-12-03 14:47:57" }, "1": { - "key": "activity", - "value": 47.0, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:01:26" - }, - "2": { - "key": "illumination", - "value": 104.0, - "alarm_type": "MAX", - "timestamp": "2024-11-29 14:01:26" - }, - "3": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:21:29" - }, - "4": { "key": "humidity", "value": 49.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:41:29" + "timestamp": "2024-12-03 14:57:57" } }, - "B002": { + "B203": { "0": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-11-29 14:02:23" - }, - "1": { "key": "co2", - "value": 2719.0, + "value": 2348.0, "alarm_type": "MAX", - "timestamp": "2024-11-29 14:02:23" + "timestamp": "2024-12-03 14:47:59" }, - "2": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:22:27" - }, - "3": { - "key": "co2", - "value": 2397.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:22:27" - }, - "4": { - "key": "temperature", - "value": 19.7, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:42:26" - }, - "5": { + "1": { "key": "co2", - "value": 2042.0, + "value": 2233.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:42:26" - }, - "6": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:52:27" - }, - "7": { + "timestamp": "2024-12-03 14:57:59" + } + }, + "B103": { + "0": { "key": "co2", - "value": 2224.0, + "value": 2548.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:52:27" + "timestamp": "2024-12-03 14:48:25" }, - "8": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:02:27" - }, - "9": { + "1": { "key": "co2", - "value": 2385.0, + "value": 2529.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 11:02:27" + "timestamp": "2024-12-03 14:58:25" } }, - "Salle-conseil": { + "E210": { "0": { "key": "humidity", - "value": 35.0, + "value": 47.5, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:02:26" + "timestamp": "2024-12-03 14:48:26" }, "1": { "key": "humidity", - "value": 39.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:22:26" - }, - "2": { - "key": "humidity", - "value": 40.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:42:26" - }, - "3": { - "key": "humidity", - "value": 40.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:52:26" - }, - "4": { - "key": "humidity", - "value": 40.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:02:26" - } - }, - "B111": { - "0": { - "key": "humidity", - "value": 44.5, + "value": 48.0, "alarm_type": "MIN", - "timestamp": "2024-11-29 14:02:51" + "timestamp": "2024-12-03 14:58:26" } }, - "B217": { + "E207": { "0": { "key": "humidity", "value": 48.0, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:15:57" + "timestamp": "2024-12-03 14:48:57" }, "1": { "key": "humidity", "value": 48.0, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:35:56" - }, - "2": { + "timestamp": "2024-12-03 14:58:57" + } + }, + "E101": { + "0": { "key": "humidity", - "value": 48.0, + "value": 48.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:45:57" + "timestamp": "2024-12-03 14:48:58" }, - "3": { + "1": { "key": "humidity", - "value": 48.0, + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:58:58" + } + }, + "C006": { + "0": { + "key": "temperature", + "value": 19.1, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:45:57" + "timestamp": "2024-12-03 14:49:21" }, - "4": { + "1": { + "key": "temperature", + "value": 19.1, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:59:21" + } + }, + "E100": { + "0": { "key": "humidity", - "value": 48.0, + "value": 38.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:45:57" + "timestamp": "2024-12-03 14:49:26" }, - "5": { + "1": { "key": "humidity", - "value": 48.5, + "value": 37.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:55:56" + "timestamp": "2024-12-03 14:59:26" } }, - "B112": { + "hall-amphi": { "0": { "key": "temperature", - "value": 19.7, + "value": 19.3, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:15:59" + "timestamp": "2024-12-03 14:49:30" }, "1": { "key": "temperature", - "value": 19.7, + "value": 19.4, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:36:00" - }, - "2": { + "timestamp": "2024-12-03 14:59:29" + } + }, + "E103": { + "0": { "key": "temperature", - "value": 19.7, + "value": 18.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:45:59" + "timestamp": "2024-12-03 14:49:58" }, - "3": { + "1": { "key": "temperature", - "value": 19.7, + "value": 18.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:55:59" - }, - "4": { + "timestamp": "2024-12-03 15:00:01" + } + }, + "E102": { + "0": { "key": "temperature", - "value": 19.5, + "value": 19.9, "alarm_type": "MIN", - "timestamp": "2024-12-02 13:55:59" + "timestamp": "2024-12-03 14:49:58" } }, - "E001": { + "B110": { "0": { "key": "co2", - "value": 1735.0, + "value": 1701.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:16:28" + "timestamp": "2024-12-03 14:49:58" }, "1": { "key": "co2", - "value": 1507.0, + "value": 1696.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:36:27" + "timestamp": "2024-12-03 15:00:04" } }, - "B108": { + "hall-entr\u00e9e-principale": { "0": { "key": "temperature", - "value": 19.9, + "value": 19.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:16:56" + "timestamp": "2024-12-03 14:49:59" }, "1": { - "key": "co2", - "value": 1587.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:46:56" - }, - "2": { - "key": "co2", - "value": 1672.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:56:56" - } - }, - "C102": { - "0": { "key": "temperature", - "value": 18.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:17:27" - }, - "1": { - "key": "temperature", - "value": 18.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:37:27" - }, - "2": { - "key": "temperature", - "value": 18.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:47:27" - }, - "3": { - "key": "temperature", - "value": 18.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:57:27" - } - }, - "E007": { - "0": { - "key": "temperature", - "value": 19.6, + "value": 19.8, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:17:29" + "timestamp": "2024-12-03 14:59:59" } }, - "E208": { + "B106": { "0": { "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:17:57" - }, - "1": { - "key": "temperature", - "value": 19.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:37:56" - }, - "2": { - "key": "temperature", - "value": 19.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:47:57" - }, - "3": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:57:57" - } - }, - "B203": { - "0": { - "key": "co2", - "value": 1891.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:17:58" - }, - "1": { - "key": "co2", - "value": 1728.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:37:59" - }, - "2": { - "key": "co2", - "value": 1728.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:37:59" - }, - "3": { - "key": "co2", - "value": 1859.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:47:58" - }, - "4": { - "key": "co2", - "value": 1859.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:47:58" - }, - "5": { - "key": "co2", - "value": 2004.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:57:59" - } - }, - "B103": { - "0": { - "key": "humidity", - "value": 47.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:18:25" - }, - "1": { - "key": "co2", - "value": 2469.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:18:25" - }, - "2": { - "key": "humidity", - "value": 47.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:38:25" - }, - "3": { - "key": "co2", - "value": 2390.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:38:25" - }, - "4": { - "key": "humidity", - "value": 47.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:48:25" - }, - "5": { - "key": "co2", - "value": 2400.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:48:25" - }, - "6": { - "key": "humidity", - "value": 47.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:58:26" - }, - "7": { - "key": "co2", - "value": 2466.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:58:26" - }, - "8": { - "key": "humidity", - "value": 47.5, + "value": 19.7, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:58:26" - }, - "9": { - "key": "co2", - "value": 2466.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:58:26" + "timestamp": "2024-12-03 14:50:28" } }, - "E210": { + "E004": { "0": { "key": "humidity", - "value": 49.5, + "value": 48.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:18:27" + "timestamp": "2024-12-03 14:50:56" } }, - "E101": { + "E106": { "0": { "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:18:58" - }, - "1": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:38:58" - }, - "2": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:48:58" - }, - "3": { - "key": "humidity", - "value": 49.5, + "value": 46.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:58:58" + "timestamp": "2024-12-03 14:50:57" } }, - "C006": { + "Local-velo": { "0": { "key": "temperature", - "value": 19.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:21" - }, - "1": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:21" - }, - "2": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:22" - }, - "3": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:21" - }, - "4": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:21" - } - }, - "E100": { - "0": { - "key": "humidity", - "value": 38.0, + "value": 12.7, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:26" + "timestamp": "2024-12-03 14:51:23" }, "1": { "key": "humidity", - "value": 39.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:26" - }, - "2": { - "key": "humidity", - "value": 38.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:26" - }, - "3": { - "key": "humidity", - "value": 40.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:27" + "value": 78.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:51:23" } }, - "hall-amphi": { + "B202": { "0": { - "key": "temperature", - "value": 18.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:29" - }, - "1": { - "key": "temperature", - "value": 18.4, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:29" - }, - "2": { - "key": "temperature", - "value": 18.4, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:30" - }, - "3": { - "key": "temperature", - "value": 18.7, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:29" - }, - "4": { - "key": "temperature", - "value": 18.7, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:29" - }, - "5": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:30" + "key": "co2", + "value": 1863.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:51:26" } }, - "hall-entr\u00e9e-principale": { + "C004": { "0": { "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:58" - }, - "1": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:58" - }, - "2": { - "key": "temperature", - "value": 19.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:58" - }, - "3": { - "key": "temperature", - "value": 19.2, + "value": 19.4, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:59" + "timestamp": "2024-12-03 14:51:29" } }, - "E103": { + "B201": { "0": { - "key": "temperature", - "value": 19.3, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:58" - }, - "1": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:58" - }, - "2": { - "key": "temperature", - "value": 19.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:57" - }, - "3": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:58" + "key": "co2", + "value": 2017.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:51:57" } }, - "B110": { + "C001": { "0": { "key": "humidity", - "value": 49.0, + "value": 43.0, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:19:58" - }, - "1": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:39:57" - }, - "2": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:49:57" - }, - "3": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:59:57" + "timestamp": "2024-12-03 14:51:58" } }, - "E004": { + "B109": { "0": { "key": "co2", - "value": 1600.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:20:55" - }, - "1": { - "key": "co2", - "value": 1673.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:40:56" - }, - "2": { - "key": "co2", - "value": 1694.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:50:55" - }, - "3": { - "key": "co2", - "value": 1694.0, + "value": 1714.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:50:55" - }, - "4": { - "key": "co2", - "value": 1717.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:00:55" + "timestamp": "2024-12-03 14:52:00" } }, - "B109": { + "Salle-conseil": { "0": { "key": "humidity", - "value": 48.0, + "value": 45.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:21:57" + "timestamp": "2024-12-03 14:52:25" }, "1": { "key": "humidity", - "value": 48.0, + "value": 45.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:41:58" - }, - "2": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:51:57" - }, - "3": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:01:58" + "timestamp": "2024-12-03 14:52:25" } }, - "B201": { + "B002": { "0": { - "key": "co2", - "value": 1978.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:21:57" + "key": "temperature", + "value": 19.3, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:52:27" }, "1": { "key": "co2", - "value": 2120.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:41:57" - }, - "2": { - "key": "co2", - "value": 2164.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:51:58" - }, - "3": { - "key": "co2", - "value": 2223.0, + "value": 1708.0, "alarm_type": "MAX", - "timestamp": "2024-12-02 11:01:57" + "timestamp": "2024-12-03 14:52:27" } }, - "C001": { + "B111": { "0": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:21:57" + "key": "co2", + "value": 1606.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:52:49" }, "1": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:41:58" - }, - "2": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:51:58" - }, - "3": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:01:58" + "key": "co2", + "value": 1606.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:52:49" } }, "B105": { "0": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:22:56" - }, - "1": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:42:57" - }, - "2": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:52:56" - }, - "3": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:52:56" - }, - "4": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:02:56" - }, - "5": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-02 11:02:58" + "key": "co2", + "value": 1802.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:52:56" } }, "Foyer-etudiants-entr\u00e9e": { @@ -980,125 +406,53 @@ "key": "temperature", "value": 49.2, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:22:58" + "timestamp": "2024-12-03 14:52:57" }, "1": { "key": "temperature", "value": 49.2, "alarm_type": "MAX", - "timestamp": "2024-12-02 10:23:00" - }, - "2": { - "key": "temperature", - "value": 49.2, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:42:58" - }, - "3": { - "key": "temperature", - "value": 49.2, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:52:58" - }, - "4": { - "key": "temperature", - "value": 49.2, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:53:00" - }, - "5": { - "key": "temperature", - "value": 49.3, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:02:58" - }, - "6": { - "key": "temperature", - "value": 49.3, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:03:00" + "timestamp": "2024-12-03 14:53:00" } }, "B234": { "0": { "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:22:59" - }, - "1": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:42:59" - }, - "2": { - "key": "humidity", - "value": 42.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:52:59" - }, - "3": { - "key": "humidity", - "value": 42.5, + "value": 48.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 11:02:59" + "timestamp": "2024-12-03 14:53:00" } }, - "E006": { + "B113": { "0": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-02 10:23:57" + "key": "co2", + "value": 2498.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:53:52" } }, - "E209": { + "E006": { "0": { "key": "humidity", - "value": 49.5, + "value": 46.5, "alarm_type": "MIN", - "timestamp": "2024-12-02 10:34:26" + "timestamp": "2024-12-03 14:53:57" } }, - "B106": { + "E209": { "0": { - "key": "co2", - "value": 1567.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:40:29" - }, - "1": { - "key": "co2", - "value": 1708.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:50:30" - }, - "2": { - "key": "co2", - "value": 1861.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:00:34" + "key": "humidity", + "value": 49.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:54:25" } }, - "B113": { + "E003": { "0": { - "key": "co2", - "value": 1745.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:43:52" - }, - "1": { - "key": "co2", - "value": 1885.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 10:53:53" - }, - "2": { - "key": "co2", - "value": 1991.0, - "alarm_type": "MAX", - "timestamp": "2024-12-02 11:03:52" + "key": "humidity", + "value": 47.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:54:52" } } } \ No newline at end of file diff --git a/Iot/config.ini b/Iot/config.ini index d3bafa20..2670998a 100644 --- a/Iot/config.ini +++ b/Iot/config.ini @@ -9,7 +9,7 @@ sub_salles = AM107/by-room/+/data sub_panneaux = solaredge/blagnac/overview [data] -donneesSalles=['temperature', 'humidity', 'co2'] +donneesSalles=['temperature', 'humidity', 'co2', 'tvoc', 'activity', 'illumination', 'infrared', 'infrared_and_visible', 'pressure'] donneesSolar=['lastYearData', 'lifeTimeData', 'lastUpdateTime'] [seuil] diff --git a/Iot/salles.json b/Iot/salles.json index 8653779b..70dc128a 100644 --- a/Iot/salles.json +++ b/Iot/salles.json @@ -52,6 +52,21 @@ "temperature": 19.1, "humidity": 55.5, "co2": 1070 + }, + "11": { + "temperature": 19.1, + "humidity": 58.5, + "co2": 1132 + }, + "12": { + "temperature": 19.1, + "humidity": 58.5, + "co2": 1132 + }, + "13": { + "temperature": 19.1, + "humidity": 58.5, + "co2": 1102 } }, "hall-amphi": { @@ -102,6 +117,21 @@ "temperature": 18.8, "humidity": 54, "co2": 597 + }, + "10": { + "temperature": 19.3, + "humidity": 54, + "co2": 747 + }, + "11": { + "temperature": 19.3, + "humidity": 54, + "co2": 747 + }, + "12": { + "temperature": 19.4, + "humidity": 54, + "co2": 734 } }, "E100": { @@ -157,6 +187,21 @@ "temperature": 23, "humidity": 40.5, "co2": 758 + }, + "11": { + "temperature": 24.4, + "humidity": 38.5, + "co2": 531 + }, + "12": { + "temperature": 24.4, + "humidity": 38.5, + "co2": 531 + }, + "13": { + "temperature": 24.9, + "humidity": 37.5, + "co2": 546 } }, "C004": { @@ -210,6 +255,16 @@ "temperature": 19.9, "humidity": 59.5, "co2": 1591 + }, + "9": { + "temperature": 19.4, + "humidity": 57.5, + "co2": 1222 + }, + "10": { + "temperature": 19.4, + "humidity": 57.5, + "co2": 1222 } }, "Local-velo": { @@ -248,6 +303,16 @@ "temperature": 11.7, "humidity": 87.5, "co2": 511 + }, + "6": { + "temperature": 12.7, + "humidity": 78, + "co2": 452 + }, + "7": { + "temperature": 12.7, + "humidity": 78, + "co2": 452 } }, "B202": { @@ -306,6 +371,16 @@ "temperature": 20.6, "humidity": 58.5, "co2": 2035 + }, + "10": { + "temperature": 21.3, + "humidity": 59.5, + "co2": 1863 + }, + "11": { + "temperature": 21.3, + "humidity": 59.5, + "co2": 1863 } }, "B002": { @@ -343,6 +418,16 @@ "temperature": 19.6, "humidity": 54.5, "co2": 2385 + }, + "7": { + "temperature": 19.3, + "humidity": 53, + "co2": 1708 + }, + "8": { + "temperature": 19.3, + "humidity": 53, + "co2": 1708 } }, "Salle-conseil": { @@ -390,6 +475,16 @@ "temperature": 22.9, "humidity": 40, "co2": 595 + }, + "9": { + "temperature": 22.3, + "humidity": 45.5, + "co2": 603 + }, + "10": { + "temperature": 22.3, + "humidity": 45.5, + "co2": 603 } }, "B217": { @@ -442,6 +537,21 @@ "temperature": 20.3, "humidity": 50, "co2": 832 + }, + "10": { + "temperature": 20.7, + "humidity": 54, + "co2": 1188 + }, + "11": { + "temperature": 20.7, + "humidity": 54, + "co2": 1187 + }, + "12": { + "temperature": 20.7, + "humidity": 54, + "co2": 1187 } }, "C002": { @@ -494,6 +604,21 @@ "temperature": 20.9, "humidity": 52, "co2": 834 + }, + "10": { + "temperature": 21.5, + "humidity": 50, + "co2": 955 + }, + "11": { + "temperature": 21.5, + "humidity": 50, + "co2": 990 + }, + "12": { + "temperature": 21.5, + "humidity": 50, + "co2": 990 } }, "B112": { @@ -546,6 +671,21 @@ "temperature": 19.5, "humidity": 53.5, "co2": 553 + }, + "10": { + "temperature": 20.1, + "humidity": 54, + "co2": 1075 + }, + "11": { + "temperature": 20.2, + "humidity": 54.5, + "co2": 1208 + }, + "12": { + "temperature": 20.2, + "humidity": 54.5, + "co2": 1208 } }, "E001": { @@ -583,6 +723,16 @@ "temperature": 20.2, "humidity": 57, "co2": 634 + }, + "7": { + "temperature": 20, + "humidity": 49.5, + "co2": 467 + }, + "8": { + "temperature": 20, + "humidity": 49.5, + "co2": 456 } }, "B108": { @@ -630,6 +780,21 @@ "temperature": 20.1, "humidity": 54.5, "co2": 1672 + }, + "9": { + "temperature": 20.1, + "humidity": 57.5, + "co2": 1444 + }, + "10": { + "temperature": 20.1, + "humidity": 57.5, + "co2": 1444 + }, + "11": { + "temperature": 20.1, + "humidity": 57.5, + "co2": 1442 } }, "C102": { @@ -677,6 +842,32 @@ "temperature": 18.1, "humidity": 51.5, "co2": 547 + }, + "9": { + "temperature": 18.2, + "humidity": 56, + "co2": 575 + }, + "10": { + "temperature": 18.2, + "humidity": 56, + "co2": 575 + }, + "11": { + "temperature": 18.2, + "humidity": 56, + "co2": 580, + "tvoc": 145, + "activity": 42, + "illumination": 36, + "infrared": 6, + "infrared_and_visible": 29, + "pressure": 997.8 + }, + "12": { + "temperature": 18.2, + "humidity": 56, + "co2": 580 } }, "E007": { @@ -724,6 +915,32 @@ "temperature": 20.3, "humidity": 54.5, "co2": 1111 + }, + "9": { + "temperature": 19.8, + "humidity": 49, + "co2": 460 + }, + "10": { + "temperature": 19.8, + "humidity": 49, + "co2": 460 + }, + "11": { + "temperature": 19.8, + "humidity": 49, + "co2": 451 + }, + "12": { + "temperature": 19.8, + "humidity": 49, + "co2": 451, + "tvoc": 229, + "activity": 0, + "illumination": 21, + "infrared": 10, + "infrared_and_visible": 29, + "pressure": 998.3 } }, "E208": { @@ -771,6 +988,21 @@ "temperature": 19.6, "humidity": 52, "co2": 858 + }, + "9": { + "temperature": 20.2, + "humidity": 49, + "co2": 621 + }, + "10": { + "temperature": 20.2, + "humidity": 49, + "co2": 621 + }, + "11": { + "temperature": 20.2, + "humidity": 49.5, + "co2": 666 } }, "B203": { @@ -818,6 +1050,21 @@ "temperature": 21.2, "humidity": 58, "co2": 2004 + }, + "9": { + "temperature": 21.4, + "humidity": 62, + "co2": 2348 + }, + "10": { + "temperature": 21.4, + "humidity": 62, + "co2": 2348 + }, + "11": { + "temperature": 21.3, + "humidity": 61.5, + "co2": 2233 } }, "amphi1": { @@ -865,6 +1112,21 @@ "temperature": 20.5, "humidity": 53.5, "co2": 902 + }, + "9": { + "temperature": 21.4, + "humidity": 49.5, + "co2": 455 + }, + "10": { + "temperature": 21.4, + "humidity": 49.5, + "co2": 455 + }, + "11": { + "temperature": 21.4, + "humidity": 49.5, + "co2": 455 } }, "B103": { @@ -912,6 +1174,16 @@ "temperature": 21.5, "humidity": 47.5, "co2": 2466 + }, + "9": { + "temperature": 21.3, + "humidity": 50, + "co2": 2548 + }, + "10": { + "temperature": 21.2, + "humidity": 50, + "co2": 2529 } }, "E210": { @@ -959,6 +1231,16 @@ "temperature": 20.9, "humidity": 50, "co2": 885 + }, + "9": { + "temperature": 21.1, + "humidity": 47.5, + "co2": 534 + }, + "10": { + "temperature": 21.1, + "humidity": 48, + "co2": 597 } }, "E101": { @@ -1011,6 +1293,21 @@ "temperature": 20, "humidity": 49.5, "co2": 692 + }, + "10": { + "temperature": 20.3, + "humidity": 48.5, + "co2": 676 + }, + "11": { + "temperature": 20.3, + "humidity": 48.5, + "co2": 676 + }, + "12": { + "temperature": 20.4, + "humidity": 48.5, + "co2": 710 } }, "E207": { @@ -1063,6 +1360,21 @@ "temperature": 20.2, "humidity": 50.5, "co2": 923 + }, + "10": { + "temperature": 20.4, + "humidity": 48, + "co2": 604 + }, + "11": { + "temperature": 20.4, + "humidity": 48, + "co2": 604 + }, + "12": { + "temperature": 20.4, + "humidity": 48, + "co2": 589 } }, "E102": { @@ -1115,6 +1427,21 @@ "temperature": 20.8, "humidity": 53.5, "co2": 1281 + }, + "10": { + "temperature": 19.9, + "humidity": 53.5, + "co2": 1175 + }, + "11": { + "temperature": 19.9, + "humidity": 53.5, + "co2": 1175 + }, + "12": { + "temperature": 20.1, + "humidity": 54, + "co2": 1303 } }, "hall-entr\u00e9e-principale": { @@ -1167,6 +1494,21 @@ "temperature": 19.2, "humidity": 52.5, "co2": 564 + }, + "10": { + "temperature": 19.8, + "humidity": 52, + "co2": 704 + }, + "11": { + "temperature": 19.8, + "humidity": 52, + "co2": 704 + }, + "12": { + "temperature": 19.8, + "humidity": 52, + "co2": 690 } }, "E103": { @@ -1219,6 +1561,21 @@ "temperature": 19.6, "humidity": 56, "co2": 1228 + }, + "10": { + "temperature": 18.8, + "humidity": 51, + "co2": 489 + }, + "11": { + "temperature": 18.8, + "humidity": 51, + "co2": 489 + }, + "12": { + "temperature": 18.8, + "humidity": 51, + "co2": 490 } }, "B110": { @@ -1271,6 +1628,21 @@ "temperature": 20.1, "humidity": 49.5, "co2": 683 + }, + "10": { + "temperature": 20.8, + "humidity": 56.5, + "co2": 1701 + }, + "11": { + "temperature": 20.8, + "humidity": 56.5, + "co2": 1701 + }, + "12": { + "temperature": 20.9, + "humidity": 56.5, + "co2": 1696 } }, "B106": { @@ -1323,6 +1695,16 @@ "temperature": 21, "humidity": 55.5, "co2": 1861 + }, + "10": { + "temperature": 19.7, + "humidity": 53, + "co2": 892 + }, + "11": { + "temperature": 19.7, + "humidity": 53, + "co2": 892 } }, "E004": { @@ -1370,6 +1752,16 @@ "temperature": 21.6, "humidity": 56, "co2": 1717 + }, + "9": { + "temperature": 20.5, + "humidity": 48.5, + "co2": 528 + }, + "10": { + "temperature": 20.5, + "humidity": 48.5, + "co2": 528 } }, "E106": { @@ -1422,6 +1814,16 @@ "temperature": 21.1, "humidity": 53, "co2": 1385 + }, + "10": { + "temperature": 20.7, + "humidity": 46.5, + "co2": 509 + }, + "11": { + "temperature": 20.7, + "humidity": 46.5, + "co2": 509 } }, "B001": { @@ -1474,6 +1876,16 @@ "temperature": 21.4, "humidity": 51.5, "co2": 1137 + }, + "10": { + "temperature": 20.5, + "humidity": 50.5, + "co2": 496 + }, + "11": { + "temperature": 20.5, + "humidity": 50.5, + "co2": 496 } }, "Foyer-personnels": { @@ -1521,6 +1933,16 @@ "temperature": 20.7, "humidity": 50, "co2": 978 + }, + "9": { + "temperature": 21, + "humidity": 55, + "co2": 1391 + }, + "10": { + "temperature": 21, + "humidity": 55, + "co2": 1391 } }, "B109": { @@ -1568,6 +1990,16 @@ "temperature": 20.4, "humidity": 48, "co2": 673 + }, + "9": { + "temperature": 21.8, + "humidity": 53.5, + "co2": 1714 + }, + "10": { + "temperature": 21.8, + "humidity": 53.5, + "co2": 1714 } }, "B201": { @@ -1610,6 +2042,16 @@ "temperature": 22.4, "humidity": 56, "co2": 2223 + }, + "8": { + "temperature": 21.9, + "humidity": 57.5, + "co2": 2017 + }, + "9": { + "temperature": 21.9, + "humidity": 57.5, + "co2": 2017 } }, "C001": { @@ -1657,6 +2099,16 @@ "temperature": 22.3, "humidity": 42.5, "co2": 716 + }, + "9": { + "temperature": 22.6, + "humidity": 43, + "co2": 576 + }, + "10": { + "temperature": 22.6, + "humidity": 43, + "co2": 576 } }, "B111": { @@ -1694,6 +2146,16 @@ "temperature": 22.5, "humidity": 51.5, "co2": 1400 + }, + "7": { + "temperature": 21.3, + "humidity": 54.5, + "co2": 1606 + }, + "8": { + "temperature": 21.3, + "humidity": 54.5, + "co2": 1606 } }, "B105": { @@ -1731,6 +2193,16 @@ "temperature": 20.1, "humidity": 49, "co2": 591 + }, + "7": { + "temperature": 21.5, + "humidity": 56.5, + "co2": 1802 + }, + "8": { + "temperature": 21.5, + "humidity": 56.5, + "co2": 1802 } }, "Foyer-etudiants-entr\u00e9e": { @@ -1788,6 +2260,26 @@ "temperature": 49.3, "humidity": 56, "co2": 962 + }, + "11": { + "temperature": 49.2, + "humidity": 55, + "co2": 701 + }, + "12": { + "temperature": 49.2, + "humidity": 55, + "co2": 701 + }, + "13": { + "temperature": 49.2, + "humidity": 55, + "co2": 701 + }, + "14": { + "temperature": 49.2, + "humidity": 55, + "co2": 701 } }, "B234": { @@ -1825,6 +2317,16 @@ "temperature": 23.1, "humidity": 42.5, "co2": 800 + }, + "7": { + "temperature": 23.1, + "humidity": 48.5, + "co2": 1186 + }, + "8": { + "temperature": 23.1, + "humidity": 48.5, + "co2": 1186 } }, "B113": { @@ -1867,6 +2369,16 @@ "temperature": 20.9, "humidity": 59, "co2": 1991 + }, + "8": { + "temperature": 20.8, + "humidity": 66, + "co2": 2498 + }, + "9": { + "temperature": 20.8, + "humidity": 66, + "co2": 2498 } }, "E006": { @@ -1914,6 +2426,16 @@ "temperature": 20.3, "humidity": 55.5, "co2": 1180 + }, + "9": { + "temperature": 21, + "humidity": 46.5, + "co2": 478 + }, + "10": { + "temperature": 21, + "humidity": 46.5, + "co2": 478 } }, "E209": { @@ -1956,6 +2478,16 @@ "temperature": 22.4, "humidity": 50, "co2": 1341 + }, + "8": { + "temperature": 21.7, + "humidity": 49, + "co2": 968 + }, + "9": { + "temperature": 21.7, + "humidity": 49, + "co2": 968 } }, "E003": { @@ -1993,6 +2525,16 @@ "temperature": 20.6, "humidity": 51.5, "co2": 1039 + }, + "7": { + "temperature": 20.8, + "humidity": 47, + "co2": 487 + }, + "8": { + "temperature": 20.8, + "humidity": 47, + "co2": 487 } } } \ No newline at end of file diff --git a/Iot/solar.json b/Iot/solar.json index 7601d299..0e56b93e 100644 --- a/Iot/solar.json +++ b/Iot/solar.json @@ -1385,6 +1385,177 @@ "energy": 3428896 }, "lastUpdateTime": "2024-12-02 20:31:37" + }, + "100": { + "lastYearData": { + "energy": 2952643 + }, + "lifeTimeData": { + "energy": 3433673 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "101": { + "lastYearData": { + "energy": 2952643 + }, + "lifeTimeData": { + "energy": 3433673 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "102": { + "lastYearData": { + "energy": 2952704 + }, + "lifeTimeData": { + "energy": 3433734 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "103": { + "lastYearData": { + "energy": 2952704 + }, + "lifeTimeData": { + "energy": 3433734 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "104": { + "lastYearData": { + "energy": 2952704 + }, + "lifeTimeData": { + "energy": 3433734 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "105": { + "lastYearData": { + "energy": 2952704 + }, + "lifeTimeData": { + "energy": 3433734 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "106": { + "lastYearData": { + "energy": 2952704 + }, + "lifeTimeData": { + "energy": 3433734 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "107": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "108": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "109": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "110": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "111": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:38:56" + }, + "112": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "113": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "114": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "115": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "116": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "117": { + "lastYearData": { + "energy": 2952761 + }, + "lifeTimeData": { + "energy": 3433791 + }, + "lastUpdateTime": "2024-12-03 14:54:33" + }, + "118": { + "lastYearData": { + "energy": 2952811 + }, + "lifeTimeData": { + "energy": 3433841 + }, + "lastUpdateTime": "2024-12-03 14:54:33" } } } \ No newline at end of file diff --git a/Iot/trigger.flag b/Iot/trigger.flag index 40fea419..7c2fe6c3 100644 --- a/Iot/trigger.flag +++ b/Iot/trigger.flag @@ -1,9 +1,9 @@ { - "room": "B112", + "room": "B110", "alarm": { - "key": "temperature", - "value": 19.5, - "alarm_type": "MIN", - "timestamp": "2024-12-02 13:55:59" + "key": "co2", + "value": 1696.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:00:04" } } \ No newline at end of file From 0a2cef7489a9d84b39e9d2ca500a472af4077212 Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Tue, 3 Dec 2024 17:37:30 +0100 Subject: [PATCH 4/9] Ajout d'un graphe --- Application/app/src/main/java/sae/App.java | 30 +- .../sae/view/AfficherDonneesController.java | 20 +- .../main/java/sae/view/GrapheController.java | 79 + .../main/resources/sae/view/grapheSalle.fxml | 38 + Iot/alarmes.json | 1453 ++++++++++++++++- Iot/salles.json | 748 +++++++++ Iot/solar.json | 693 ++++++++ Iot/trigger.flag | 8 +- 8 files changed, 3040 insertions(+), 29 deletions(-) create mode 100644 Application/app/src/main/java/sae/view/GrapheController.java create mode 100644 Application/app/src/main/resources/sae/view/grapheSalle.fxml diff --git a/Application/app/src/main/java/sae/App.java b/Application/app/src/main/java/sae/App.java index 7a5b556a..e9c868f4 100644 --- a/Application/app/src/main/java/sae/App.java +++ b/Application/app/src/main/java/sae/App.java @@ -4,7 +4,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.List; - +import java.util.Map; import javafx.application.Application; import javafx.fxml.FXMLLoader; @@ -18,6 +18,7 @@ import sae.view.AfficherDonneesController; import sae.view.ConfigController; import sae.view.FreqConfigController; +import sae.view.GrapheController; import sae.view.MenuController; import sae.view.ParametrageChoixSalles; import sae.view.ParametrageSolar; @@ -348,4 +349,31 @@ public void loadAlarmes() { public static void main2(String[] args) { Application.launch(args); } + + public void loadGraphe(String numSalle, Map map) { + try { + + FXMLLoader loader = new FXMLLoader(); + loader.setLocation(App.class.getResource("view/grapheSalle.fxml")); + + BorderPane vueListe = loader.load(); + + GrapheController graphe = loader.getController(); + + // Transmission des données nécessaires au contrôleur + graphe.setDatas(stage, this); + graphe.populateHistogram(numSalle, map); + + // Remplacement du contenu central de rootPane par la vue chargée + this.rootPane.setCenter(vueListe); + + } catch (IOException e) { + // Gestion des erreurs si le fichier FXML est introuvable ou mal configuré + System.out.println("Ressource FXML non disponible : grapheSalle.fxml"); + e.printStackTrace(); + System.exit(1); + } + } + + } diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index 8beace3d..e281a06f 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -37,6 +37,9 @@ public class AfficherDonneesController { private JSONObject sallesData; // Champ pour stocker les données JSON + Map dicoTypeValeur ; + Map dicoGraphe ; + public void setDatas(Stage fenetre, App app) { this.application = app; @@ -54,7 +57,7 @@ public void setTab(ArrayList list) { @FXML private void actionAfficher() {; - + application.loadGraphe(numSalle, dicoGraphe); } @FXML @@ -63,21 +66,24 @@ private void actionRetour() { } public void afficherDonnees() { - Map dicoTypeValeur = chargerFichierSalle(); + dicoTypeValeur = chargerFichierSalle(); System.out.println(dicoTypeValeur); - - System.out.println(donnees); + + dicoGraphe = new HashMap(); for (int i = 0; i < donnees.size(); i++) { gridDynamique.add(new Label( donnees.get(i).toUpperCase() + " :"), 0, i); gridDynamique.add(new Label( dicoTypeValeur.get(donnees.get(i)) + "" ), 1, i); + + dicoGraphe.put(donnees.get(i), dicoTypeValeur.get(donnees.get(i))); } + } - public Map chargerFichierSalle() { + public Map chargerFichierSalle() { JSONParser parser = new JSONParser(); - Map dicoTypeValeur = new HashMap(); + Map dicoTypeValeur = new HashMap(); try { // Définir le chemin du fichier salles.json à la racine du projet @@ -111,6 +117,8 @@ public Map chargerFichierSalle() { System.out.println(dernierClé); dicoTypeValeur = dernierClé; + + System.out.println(dernierClé); } else { diff --git a/Application/app/src/main/java/sae/view/GrapheController.java b/Application/app/src/main/java/sae/view/GrapheController.java new file mode 100644 index 00000000..68e14cf1 --- /dev/null +++ b/Application/app/src/main/java/sae/view/GrapheController.java @@ -0,0 +1,79 @@ +package sae.view; + +import java.util.Map; + +import javafx.fxml.FXML; +import javafx.scene.chart.BarChart; +import javafx.scene.chart.CategoryAxis; +import javafx.scene.chart.NumberAxis; +import javafx.scene.chart.XYChart; +import javafx.scene.control.Alert; +import javafx.scene.control.Button; +import javafx.scene.control.Alert.AlertType; +import javafx.stage.Stage; +import sae.App; + +public class GrapheController { + + private Stage fenetrePrincipale; + private App application; + + @FXML + private BarChart graphe; + + @FXML + private CategoryAxis xAxe; + + @FXML + private NumberAxis yAxe; + + @FXML + private Button retour; + + public void setDatas(Stage fenetre, App app) { + this.application = app; + this.fenetrePrincipale = fenetre; + } + + public void populateHistogram(String salle, Map dico) { + // Nettoyer le graphique avant d'ajouter de nouvelles données + graphe.getData().clear(); + xAxe.getCategories().clear(); + + // Créer une série pour le graphique + XYChart.Series series = new XYChart.Series<>(); + series.setName("Données pour " + salle); + + // Ajouter les données depuis le dictionnaire + for (Map.Entry entry : dico.entrySet()) { + String key = entry.getKey(); // Nom de la catégorie (par exemple, "Température") + Double value; + if( entry.getValue() instanceof Double){ + value=(Double)entry.getValue(); + } + else if(entry.getValue() instanceof Long){ + value=Double.parseDouble(Long.toString((Long)entry.getValue())); + } else{ + Alert alert=new Alert(AlertType.ERROR, "Erreur Critique l'application trouve des valeurs innatendues!"); + alert.show(); + value=Double.valueOf(0); + } + + + // Ajouter la catégorie à l'axe X + xAxe.getCategories().add(key); + + // Ajouter la donnée dans la série + series.getData().add(new XYChart.Data<>(key, value)); + } + + // Ajouter la série au graphique + graphe.getData().add(series); + } + + @FXML + private void actionRetour() { + application.loadParametrageSalles(); + } + +} diff --git a/Application/app/src/main/resources/sae/view/grapheSalle.fxml b/Application/app/src/main/resources/sae/view/grapheSalle.fxml new file mode 100644 index 00000000..7bbad022 --- /dev/null +++ b/Application/app/src/main/resources/sae/view/grapheSalle.fxml @@ -0,0 +1,38 @@ + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
diff --git a/Iot/alarmes.json b/Iot/alarmes.json index 2d948b9b..105933b7 100644 --- a/Iot/alarmes.json +++ b/Iot/alarmes.json @@ -11,6 +11,66 @@ "value": 49.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:56:25" + }, + "2": { + "key": "temperature", + "value": 19.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:26" + }, + "3": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:26" + }, + "4": { + "key": "co2", + "value": 439.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:26" + }, + "5": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:26" + }, + "6": { + "key": "pressure", + "value": 998.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:46:26" + }, + "7": { + "key": "temperature", + "value": 19.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:25" + }, + "8": { + "key": "humidity", + "value": 49.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:25" + }, + "9": { + "key": "co2", + "value": 440.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:25" + }, + "10": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:25" + }, + "11": { + "key": "pressure", + "value": 998.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:56:25" } }, "C102": { @@ -43,6 +103,78 @@ "value": 997.8, "alarm_type": "MAX", "timestamp": "2024-12-03 14:57:27" + }, + "5": { + "key": "temperature", + "value": 18.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:28" + }, + "6": { + "key": "tvoc", + "value": 156.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:28" + }, + "7": { + "key": "activity", + "value": 45.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:28" + }, + "8": { + "key": "illumination", + "value": 76.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:28" + }, + "9": { + "key": "infrared_and_visible", + "value": 56.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:28" + }, + "10": { + "key": "pressure", + "value": 997.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:28" + }, + "11": { + "key": "temperature", + "value": 18.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:27" + }, + "12": { + "key": "tvoc", + "value": 155.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:27" + }, + "13": { + "key": "activity", + "value": 4.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:27" + }, + "14": { + "key": "illumination", + "value": 78.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:27" + }, + "15": { + "key": "infrared_and_visible", + "value": 57.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:27" + }, + "16": { + "key": "pressure", + "value": 997.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:27" } }, "E007": { @@ -81,6 +213,66 @@ "value": 998.3, "alarm_type": "MAX", "timestamp": "2024-12-03 14:57:29" + }, + "6": { + "key": "temperature", + "value": 19.6, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:30" + }, + "7": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:30" + }, + "8": { + "key": "co2", + "value": 435.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:30" + }, + "9": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:30" + }, + "10": { + "key": "pressure", + "value": 998.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:30" + }, + "11": { + "key": "temperature", + "value": 19.6, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:29" + }, + "12": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:29" + }, + "13": { + "key": "co2", + "value": 430.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:29" + }, + "14": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:29" + }, + "15": { + "key": "pressure", + "value": 998.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:29" } }, "amphi1": { @@ -95,6 +287,54 @@ "value": 49.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:57:57" + }, + "2": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:58" + }, + "3": { + "key": "tvoc", + "value": 157.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:58" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:58" + }, + "5": { + "key": "pressure", + "value": 997.8, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:58" + }, + "6": { + "key": "humidity", + "value": 48.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:58" + }, + "7": { + "key": "tvoc", + "value": 155.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:58" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:58" + }, + "9": { + "key": "pressure", + "value": 997.8, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:58" } }, "E208": { @@ -109,6 +349,42 @@ "value": 49.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:57:57" + }, + "2": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:00" + }, + "3": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:00" + }, + "4": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:00" + }, + "5": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:00" + }, + "6": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:00" + }, + "7": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:00" } }, "B203": { @@ -123,6 +399,48 @@ "value": 2233.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:57:59" + }, + "2": { + "key": "co2", + "value": 1520.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:58" + }, + "3": { + "key": "tvoc", + "value": 156.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:58" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:47:58" + }, + "5": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:47:58" + }, + "6": { + "key": "tvoc", + "value": 156.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:59" + }, + "7": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:57:59" + }, + "8": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:57:59" } }, "B103": { @@ -137,6 +455,54 @@ "value": 2529.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:58:25" + }, + "2": { + "key": "co2", + "value": 2968.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:26" + }, + "3": { + "key": "tvoc", + "value": 131.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:26" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:26" + }, + "5": { + "key": "pressure", + "value": 997.6, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:26" + }, + "6": { + "key": "co2", + "value": 2941.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:26" + }, + "7": { + "key": "tvoc", + "value": 128.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:26" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:26" + }, + "9": { + "key": "pressure", + "value": 997.7, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:26" } }, "E210": { @@ -151,6 +517,54 @@ "value": 48.0, "alarm_type": "MIN", "timestamp": "2024-12-03 14:58:26" + }, + "2": { + "key": "humidity", + "value": 49.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:22" + }, + "3": { + "key": "tvoc", + "value": 167.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:22" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:22" + }, + "5": { + "key": "pressure", + "value": 996.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:22" + }, + "6": { + "key": "humidity", + "value": 49.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:21" + }, + "7": { + "key": "tvoc", + "value": 172.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:21" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:21" + }, + "9": { + "key": "pressure", + "value": 996.5, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:21" } }, "E207": { @@ -165,6 +579,60 @@ "value": 48.0, "alarm_type": "MIN", "timestamp": "2024-12-03 14:58:57" + }, + "2": { + "key": "illumination", + "value": 125.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:59" + }, + "3": { + "key": "infrared", + "value": 30.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:59" + }, + "4": { + "key": "infrared_and_visible", + "value": 117.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:59" + }, + "5": { + "key": "pressure", + "value": 997.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:59" + }, + "6": { + "key": "activity", + "value": 519.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:59" + }, + "7": { + "key": "illumination", + "value": 107.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:59" + }, + "8": { + "key": "infrared", + "value": 24.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:59" + }, + "9": { + "key": "infrared_and_visible", + "value": 97.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:59" + }, + "10": { + "key": "pressure", + "value": 997.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:59" } }, "E101": { @@ -179,6 +647,36 @@ "value": 48.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:58:58" + }, + "2": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:59" + }, + "3": { + "key": "activity", + "value": 3.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:48:59" + }, + "4": { + "key": "pressure", + "value": 997.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:48:59" + }, + "5": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:58:58" + }, + "6": { + "key": "pressure", + "value": 997.5, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:58:58" } }, "C006": { @@ -193,6 +691,78 @@ "value": 19.1, "alarm_type": "MIN", "timestamp": "2024-12-03 14:59:21" + }, + "2": { + "key": "temperature", + "value": 18.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:22" + }, + "3": { + "key": "tvoc", + "value": 172.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:22" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:22" + }, + "5": { + "key": "pressure", + "value": 998.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:39:22" + }, + "6": { + "key": "temperature", + "value": 18.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:21" + }, + "7": { + "key": "tvoc", + "value": 172.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:21" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:21" + }, + "9": { + "key": "pressure", + "value": 998.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:49:21" + }, + "10": { + "key": "temperature", + "value": 18.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:59:22" + }, + "11": { + "key": "tvoc", + "value": 170.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:59:22" + }, + "12": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:59:22" + }, + "13": { + "key": "pressure", + "value": 998.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:59:22" } }, "E100": { @@ -207,6 +777,54 @@ "value": 37.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:59:26" + }, + "2": { + "key": "humidity", + "value": 37.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:31" + }, + "3": { + "key": "tvoc", + "value": 51.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:31" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:31" + }, + "5": { + "key": "pressure", + "value": 997.7, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:39:31" + }, + "6": { + "key": "humidity", + "value": 37.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:31" + }, + "7": { + "key": "tvoc", + "value": 49.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:31" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:31" + }, + "9": { + "key": "pressure", + "value": 997.7, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:49:31" } }, "hall-amphi": { @@ -221,6 +839,42 @@ "value": 19.4, "alarm_type": "MIN", "timestamp": "2024-12-03 14:59:29" + }, + "2": { + "key": "temperature", + "value": 19.4, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:30" + }, + "3": { + "key": "activity", + "value": 5.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:30" + }, + "4": { + "key": "pressure", + "value": 997.6, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:39:30" + }, + "5": { + "key": "temperature", + "value": 19.4, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:30" + }, + "6": { + "key": "activity", + "value": 24.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:49:30" + }, + "7": { + "key": "pressure", + "value": 997.6, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:49:30" } }, "E103": { @@ -235,6 +889,24 @@ "value": 18.8, "alarm_type": "MIN", "timestamp": "2024-12-03 15:00:01" + }, + "2": { + "key": "temperature", + "value": 18.6, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:59" + }, + "3": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:39:59" + }, + "4": { + "key": "pressure", + "value": 997.8, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:39:59" } }, "E102": { @@ -243,6 +915,18 @@ "value": 19.9, "alarm_type": "MIN", "timestamp": "2024-12-03 14:49:58" + }, + "1": { + "key": "pressure", + "value": 996.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:39:56" + }, + "2": { + "key": "pressure", + "value": 996.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:49:56" } }, "B110": { @@ -257,6 +941,24 @@ "value": 1696.0, "alarm_type": "MAX", "timestamp": "2024-12-03 15:00:04" + }, + "2": { + "key": "co2", + "value": 2531.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:00" + }, + "3": { + "key": "infrared_and_visible", + "value": 41.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:00" + }, + "4": { + "key": "pressure", + "value": 997.7, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:00" } }, "hall-entr\u00e9e-principale": { @@ -271,6 +973,30 @@ "value": 19.8, "alarm_type": "MIN", "timestamp": "2024-12-03 14:59:59" + }, + "2": { + "key": "temperature", + "value": 19.9, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:00" + }, + "3": { + "key": "tvoc", + "value": 448.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:00" + }, + "4": { + "key": "activity", + "value": 14.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:05" + }, + "5": { + "key": "pressure", + "value": 998.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:05" } }, "B106": { @@ -279,6 +1005,24 @@ "value": 19.7, "alarm_type": "MIN", "timestamp": "2024-12-03 14:50:28" + }, + "1": { + "key": "tvoc", + "value": 140.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:28" + }, + "2": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:28" + }, + "3": { + "key": "pressure", + "value": 997.7, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:28" } }, "E004": { @@ -287,6 +1031,36 @@ "value": 48.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:50:56" + }, + "1": { + "key": "temperature", + "value": 19.8, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:00" + }, + "2": { + "key": "humidity", + "value": 48.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:00" + }, + "3": { + "key": "tvoc", + "value": 196.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:00" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:00" + }, + "5": { + "key": "pressure", + "value": 998.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:00" } }, "E106": { @@ -309,30 +1083,150 @@ "value": 78.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:51:23" - } - }, - "B202": { - "0": { - "key": "co2", - "value": 1863.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:51:26" - } - }, - "C004": { - "0": { + }, + "2": { "key": "temperature", - "value": 19.4, + "value": 11.1, "alarm_type": "MIN", - "timestamp": "2024-12-03 14:51:29" - } - }, - "B201": { - "0": { + "timestamp": "2024-12-03 16:41:23" + }, + "3": { + "key": "humidity", + "value": 82.5, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:23" + }, + "4": { + "key": "tvoc", + "value": 49399.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:23" + }, + "5": { + "key": "activity", + "value": 14.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:23" + }, + "6": { + "key": "infrared", + "value": 22.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:23" + }, + "7": { + "key": "infrared_and_visible", + "value": 54.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:23" + }, + "8": { + "key": "pressure", + "value": 998.8, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:23" + } + }, + "B202": { + "0": { + "key": "co2", + "value": 1863.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 14:51:26" + }, + "1": { + "key": "co2", + "value": 2130.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:26" + }, + "2": { + "key": "activity", + "value": 9.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:26" + }, + "3": { + "key": "pressure", + "value": 997.6, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:26" + } + }, + "C004": { + "0": { + "key": "temperature", + "value": 19.4, + "alarm_type": "MIN", + "timestamp": "2024-12-03 14:51:29" + }, + "1": { + "key": "temperature", + "value": 19.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:11:28" + }, + "2": { + "key": "tvoc", + "value": 189.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:11:28" + }, + "3": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:11:28" + }, + "4": { + "key": "pressure", + "value": 998.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:11:28" + }, + "5": { + "key": "temperature", + "value": 19.3, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:29" + }, + "6": { + "key": "tvoc", + "value": 171.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:29" + }, + "7": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:29" + }, + "8": { + "key": "pressure", + "value": 998.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:29" + } + }, + "B201": { + "0": { "key": "co2", "value": 2017.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:51:57" + }, + "1": { + "key": "co2", + "value": 2185.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:57" + }, + "2": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:57" } }, "C001": { @@ -341,6 +1235,36 @@ "value": 43.0, "alarm_type": "MIN", "timestamp": "2024-12-03 14:51:58" + }, + "1": { + "key": "humidity", + "value": 43.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:59" + }, + "2": { + "key": "tvoc", + "value": 123.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:59" + }, + "3": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:59" + }, + "4": { + "key": "infrared", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:59" + }, + "5": { + "key": "pressure", + "value": 998.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:59" } }, "B109": { @@ -349,6 +1273,30 @@ "value": 1714.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:52:00" + }, + "1": { + "key": "co2", + "value": 2636.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:00" + }, + "2": { + "key": "activity", + "value": 548.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:00" + }, + "3": { + "key": "infrared_and_visible", + "value": 44.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:00" + }, + "4": { + "key": "pressure", + "value": 997.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:00" } }, "Salle-conseil": { @@ -363,6 +1311,48 @@ "value": 45.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:52:25" + }, + "2": { + "key": "humidity", + "value": 45.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:26" + }, + "3": { + "key": "tvoc", + "value": 168.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:26" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:26" + }, + "5": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:32:26" + }, + "6": { + "key": "humidity", + "value": 45.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:27" + }, + "7": { + "key": "tvoc", + "value": 167.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:27" + }, + "8": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:27" } }, "B002": { @@ -377,6 +1367,48 @@ "value": 1708.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:52:27" + }, + "2": { + "key": "temperature", + "value": 19.4, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:27" + }, + "3": { + "key": "co2", + "value": 1925.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:32:27" + }, + "4": { + "key": "tvoc", + "value": 133.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:27" + }, + "5": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 15:32:27" + }, + "6": { + "key": "illumination", + "value": 81.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:32:27" + }, + "7": { + "key": "infrared_and_visible", + "value": 60.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:32:27" + }, + "8": { + "key": "pressure", + "value": 997.6, + "alarm_type": "MAX", + "timestamp": "2024-12-03 15:32:27" } }, "B111": { @@ -399,6 +1431,30 @@ "value": 1802.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:52:56" + }, + "1": { + "key": "activity", + "value": 27.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:57" + }, + "2": { + "key": "pressure", + "value": 997.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:57" + }, + "3": { + "key": "activity", + "value": 27.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:59" + }, + "4": { + "key": "pressure", + "value": 997.3, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:59" } }, "Foyer-etudiants-entr\u00e9e": { @@ -413,6 +1469,24 @@ "value": 49.2, "alarm_type": "MAX", "timestamp": "2024-12-03 14:53:00" + }, + "2": { + "key": "temperature", + "value": 49.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:58" + }, + "3": { + "key": "activity", + "value": 33.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:42:58" + }, + "4": { + "key": "pressure", + "value": 998.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:42:58" } }, "B234": { @@ -421,6 +1495,30 @@ "value": 48.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:53:00" + }, + "1": { + "key": "humidity", + "value": 48.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:43:00" + }, + "2": { + "key": "tvoc", + "value": 157.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:43:00" + }, + "3": { + "key": "activity", + "value": 501.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:43:00" + }, + "4": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:43:00" } }, "B113": { @@ -429,6 +1527,30 @@ "value": 2498.0, "alarm_type": "MAX", "timestamp": "2024-12-03 14:53:52" + }, + "1": { + "key": "co2", + "value": 3120.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:13:52" + }, + "2": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:13:52" + }, + "3": { + "key": "co2", + "value": 3167.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:43:53" + }, + "4": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:43:53" } }, "E006": { @@ -437,6 +1559,42 @@ "value": 46.5, "alarm_type": "MIN", "timestamp": "2024-12-03 14:53:57" + }, + "1": { + "key": "humidity", + "value": 46.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:13:57" + }, + "2": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:13:57" + }, + "3": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:13:57" + }, + "4": { + "key": "humidity", + "value": 46.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:43:58" + }, + "5": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:43:58" + }, + "6": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:43:58" } }, "E209": { @@ -445,6 +1603,24 @@ "value": 49.0, "alarm_type": "MIN", "timestamp": "2024-12-03 14:54:25" + }, + "1": { + "key": "humidity", + "value": 47.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:44:23" + }, + "2": { + "key": "tvoc", + "value": 163.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:44:23" + }, + "3": { + "key": "pressure", + "value": 997.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:44:23" } }, "E003": { @@ -453,6 +1629,247 @@ "value": 47.0, "alarm_type": "MIN", "timestamp": "2024-12-03 14:54:52" + }, + "1": { + "key": "humidity", + "value": 46.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:44:50" + }, + "2": { + "key": "humidity", + "value": 46.5, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:54:52" + }, + "3": { + "key": "tvoc", + "value": 172.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:54:52" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:54:53" + }, + "5": { + "key": "pressure", + "value": 998.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:54:53" + } + }, + "Foyer-personnels": { + "0": { + "key": "activity", + "value": 10.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:11:31" + }, + "1": { + "key": "pressure", + "value": 996.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:11:31" + }, + "2": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:29" + }, + "3": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:41:29" + }, + "4": { + "key": "pressure", + "value": 997.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:41:29" + } + }, + "B001": { + "0": { + "key": "tvoc", + "value": 77.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:58" + }, + "1": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:58" + }, + "2": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:40:58" + }, + "3": { + "key": "pressure", + "value": 997.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:40:58" + } + }, + "B217": { + "0": { + "key": "tvoc", + "value": 160.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:45:57" + }, + "1": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:45:57" + }, + "2": { + "key": "pressure", + "value": 997.1, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:45:57" + }, + "3": { + "key": "tvoc", + "value": 158.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:55:57" + }, + "4": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:55:57" + }, + "5": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:55:57" + } + }, + "C002": { + "0": { + "key": "tvoc", + "value": 160.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:00" + }, + "1": { + "key": "activity", + "value": 4.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:00" + }, + "2": { + "key": "pressure", + "value": 997.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:46:00" + }, + "3": { + "key": "tvoc", + "value": 161.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:00" + }, + "4": { + "key": "activity", + "value": 59.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:00" + }, + "5": { + "key": "pressure", + "value": 997.9, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:56:00" + } + }, + "B112": { + "0": { + "key": "co2", + "value": 2465.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:46:02" + }, + "1": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:46:02" + }, + "2": { + "key": "co2", + "value": 2550.0, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:56:02" + }, + "3": { + "key": "pressure", + "value": 997.2, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:56:02" + } + }, + "B108": { + "0": { + "key": "tvoc", + "value": 167.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:57" + }, + "1": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:57" + }, + "2": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:46:57" + }, + "3": { + "key": "pressure", + "value": 997.4, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:46:57" + }, + "4": { + "key": "tvoc", + "value": 166.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:56" + }, + "5": { + "key": "activity", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:56" + }, + "6": { + "key": "illumination", + "value": 0.0, + "alarm_type": "MIN", + "timestamp": "2024-12-03 16:56:56" + }, + "7": { + "key": "pressure", + "value": 997.5, + "alarm_type": "MAX", + "timestamp": "2024-12-03 16:56:56" } } +} } \ No newline at end of file diff --git a/Iot/salles.json b/Iot/salles.json index 70dc128a..a17a1ed7 100644 --- a/Iot/salles.json +++ b/Iot/salles.json @@ -67,6 +67,39 @@ "temperature": 19.1, "humidity": 58.5, "co2": 1102 + }, + "14": { + "temperature": 18.8, + "humidity": 57.5, + "co2": 912, + "tvoc": 172, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 998.1 + }, + "15": { + "temperature": 18.8, + "humidity": 57.5, + "co2": 893, + "tvoc": 172, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 998.2 + }, + "16": { + "temperature": 18.8, + "humidity": 57.5, + "co2": 886, + "tvoc": 170, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 998.2 } }, "hall-amphi": { @@ -132,6 +165,28 @@ "temperature": 19.4, "humidity": 54, "co2": 734 + }, + "13": { + "temperature": 19.4, + "humidity": 54.5, + "co2": 829, + "tvoc": 348, + "activity": 5, + "illumination": 7, + "infrared": 4, + "infrared_and_visible": 11, + "pressure": 997.6 + }, + "14": { + "temperature": 19.4, + "humidity": 54.5, + "co2": 815, + "tvoc": 348, + "activity": 24, + "illumination": 7, + "infrared": 4, + "infrared_and_visible": 11, + "pressure": 997.6 } }, "E100": { @@ -202,6 +257,28 @@ "temperature": 24.9, "humidity": 37.5, "co2": 546 + }, + "14": { + "temperature": 25, + "humidity": 37.5, + "co2": 614, + "tvoc": 51, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.7 + }, + "15": { + "temperature": 25.2, + "humidity": 37, + "co2": 619, + "tvoc": 49, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.7 } }, "C004": { @@ -265,6 +342,28 @@ "temperature": 19.4, "humidity": 57.5, "co2": 1222 + }, + "11": { + "temperature": 19.5, + "humidity": 58, + "co2": 1275, + "tvoc": 189, + "activity": 0, + "illumination": 2, + "infrared": 2, + "infrared_and_visible": 5, + "pressure": 998.1 + }, + "12": { + "temperature": 19.3, + "humidity": 57.5, + "co2": 1118, + "tvoc": 171, + "activity": 0, + "illumination": 2, + "infrared": 1, + "infrared_and_visible": 3, + "pressure": 998.1 } }, "Local-velo": { @@ -313,6 +412,17 @@ "temperature": 12.7, "humidity": 78, "co2": 452 + }, + "8": { + "temperature": 11.1, + "humidity": 82.5, + "co2": 458, + "tvoc": 49399, + "activity": 14, + "illumination": 26, + "infrared": 22, + "infrared_and_visible": 54, + "pressure": 998.8 } }, "B202": { @@ -381,6 +491,17 @@ "temperature": 21.3, "humidity": 59.5, "co2": 1863 + }, + "12": { + "temperature": 22, + "humidity": 61, + "co2": 2130, + "tvoc": 293, + "activity": 9, + "illumination": 19, + "infrared": 4, + "infrared_and_visible": 17, + "pressure": 997.6 } }, "B002": { @@ -428,6 +549,17 @@ "temperature": 19.3, "humidity": 53, "co2": 1708 + }, + "9": { + "temperature": 19.4, + "humidity": 53.5, + "co2": 1925, + "tvoc": 133, + "activity": 0, + "illumination": 81, + "infrared": 11, + "infrared_and_visible": 60, + "pressure": 997.6 } }, "Salle-conseil": { @@ -485,6 +617,17 @@ "temperature": 22.3, "humidity": 45.5, "co2": 603 + }, + "11": { + "temperature": 22.4, + "humidity": 45, + "co2": 613, + "tvoc": 168, + "activity": 0, + "illumination": 18, + "infrared": 8, + "infrared_and_visible": 24, + "pressure": 997.2 } }, "B217": { @@ -552,6 +695,28 @@ "temperature": 20.7, "humidity": 54, "co2": 1187 + }, + "13": { + "temperature": 20.6, + "humidity": 53.5, + "co2": 1163, + "tvoc": 160, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.1 + }, + "14": { + "temperature": 20.6, + "humidity": 53.5, + "co2": 1164, + "tvoc": 158, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.2 } }, "C002": { @@ -619,6 +784,28 @@ "temperature": 21.5, "humidity": 50, "co2": 990 + }, + "13": { + "temperature": 21.6, + "humidity": 50, + "co2": 1045, + "tvoc": 160, + "activity": 4, + "illumination": 30, + "infrared": 5, + "infrared_and_visible": 24, + "pressure": 997.9 + }, + "14": { + "temperature": 21.6, + "humidity": 50, + "co2": 1051, + "tvoc": 161, + "activity": 59, + "illumination": 30, + "infrared": 5, + "infrared_and_visible": 24, + "pressure": 997.9 } }, "B112": { @@ -686,6 +873,28 @@ "temperature": 20.2, "humidity": 54.5, "co2": 1208 + }, + "13": { + "temperature": 20.9, + "humidity": 57.5, + "co2": 2465, + "tvoc": 229, + "activity": 138, + "illumination": 32, + "infrared": 6, + "infrared_and_visible": 27, + "pressure": 997.2 + }, + "14": { + "temperature": 20.9, + "humidity": 58, + "co2": 2550, + "tvoc": 233, + "activity": 180, + "illumination": 34, + "infrared": 5, + "infrared_and_visible": 26, + "pressure": 997.2 } }, "E001": { @@ -733,6 +942,28 @@ "temperature": 20, "humidity": 49.5, "co2": 456 + }, + "9": { + "temperature": 19.8, + "humidity": 48.5, + "co2": 439, + "tvoc": 204, + "activity": 0, + "illumination": 1, + "infrared": 2, + "infrared_and_visible": 4, + "pressure": 998.2 + }, + "10": { + "temperature": 19.8, + "humidity": 49, + "co2": 440, + "tvoc": 215, + "activity": 0, + "illumination": 2, + "infrared": 1, + "infrared_and_visible": 3, + "pressure": 998.3 } }, "B108": { @@ -795,6 +1026,28 @@ "temperature": 20.1, "humidity": 57.5, "co2": 1442 + }, + "12": { + "temperature": 20, + "humidity": 56.5, + "co2": 1310, + "tvoc": 167, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997.4 + }, + "13": { + "temperature": 20, + "humidity": 56, + "co2": 1290, + "tvoc": 166, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997.5 } }, "C102": { @@ -868,6 +1121,28 @@ "temperature": 18.2, "humidity": 56, "co2": 580 + }, + "13": { + "temperature": 18.5, + "humidity": 55.5, + "co2": 628, + "tvoc": 156, + "activity": 45, + "illumination": 76, + "infrared": 10, + "infrared_and_visible": 56, + "pressure": 997.9 + }, + "14": { + "temperature": 18.5, + "humidity": 55.5, + "co2": 620, + "tvoc": 155, + "activity": 4, + "illumination": 78, + "infrared": 10, + "infrared_and_visible": 57, + "pressure": 997.9 } }, "E007": { @@ -941,6 +1216,28 @@ "infrared": 10, "infrared_and_visible": 29, "pressure": 998.3 + }, + "13": { + "temperature": 19.6, + "humidity": 48.5, + "co2": 435, + "tvoc": 217, + "activity": 0, + "illumination": 4, + "infrared": 3, + "infrared_and_visible": 8, + "pressure": 998.4 + }, + "14": { + "temperature": 19.6, + "humidity": 48.5, + "co2": 430, + "tvoc": 215, + "activity": 0, + "illumination": 6, + "infrared": 2, + "infrared_and_visible": 7, + "pressure": 998.4 } }, "E208": { @@ -1003,6 +1300,28 @@ "temperature": 20.2, "humidity": 49.5, "co2": 666 + }, + "12": { + "temperature": 20.4, + "humidity": 50, + "co2": 785, + "tvoc": 213, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997.1 + }, + "13": { + "temperature": 20.4, + "humidity": 50, + "co2": 770, + "tvoc": 208, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997.1 } }, "B203": { @@ -1065,6 +1384,28 @@ "temperature": 21.3, "humidity": 61.5, "co2": 2233 + }, + "12": { + "temperature": 20.5, + "humidity": 58.5, + "co2": 1520, + "tvoc": 156, + "activity": 0, + "illumination": 1, + "infrared": 2, + "infrared_and_visible": 4, + "pressure": 997.1 + }, + "13": { + "temperature": 20.4, + "humidity": 58.5, + "co2": 1489, + "tvoc": 156, + "activity": 0, + "illumination": 2, + "infrared": 1, + "infrared_and_visible": 3, + "pressure": 997.2 } }, "amphi1": { @@ -1127,6 +1468,28 @@ "temperature": 21.4, "humidity": 49.5, "co2": 455 + }, + "12": { + "temperature": 21.6, + "humidity": 48.5, + "co2": 451, + "tvoc": 157, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.8 + }, + "13": { + "temperature": 21.6, + "humidity": 48, + "co2": 450, + "tvoc": 155, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.8 } }, "B103": { @@ -1184,6 +1547,39 @@ "temperature": 21.2, "humidity": 50, "co2": 2529 + }, + "11": { + "temperature": 21.2, + "humidity": 51, + "co2": 2968, + "tvoc": 131, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.6 + }, + "12": { + "temperature": 21.2, + "humidity": 51, + "co2": 2941, + "tvoc": 128, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.7 + }, + "13": { + "temperature": 21.2, + "humidity": 51, + "co2": 2941, + "tvoc": 128, + "activity": 0, + "illumination": 1, + "infrared": 1, + "infrared_and_visible": 1, + "pressure": 997.7 } }, "E210": { @@ -1241,6 +1637,39 @@ "temperature": 21.1, "humidity": 48, "co2": 597 + }, + "11": { + "temperature": 21, + "humidity": 49.5, + "co2": 773, + "tvoc": 167, + "activity": 0, + "illumination": 27, + "infrared": 9, + "infrared_and_visible": 30, + "pressure": 996.4 + }, + "12": { + "temperature": 20.9, + "humidity": 49.5, + "co2": 771, + "tvoc": 172, + "activity": 0, + "illumination": 20, + "infrared": 7, + "infrared_and_visible": 23, + "pressure": 996.5 + }, + "13": { + "temperature": 20.9, + "humidity": 49.5, + "co2": 771, + "tvoc": 172, + "activity": 0, + "illumination": 20, + "infrared": 7, + "infrared_and_visible": 23, + "pressure": 996.5 } }, "E101": { @@ -1308,6 +1737,39 @@ "temperature": 20.4, "humidity": 48.5, "co2": 710 + }, + "13": { + "temperature": 20.7, + "humidity": 48.5, + "co2": 825, + "tvoc": 239, + "activity": 3, + "illumination": 13, + "infrared": 3, + "infrared_and_visible": 12, + "pressure": 997.4 + }, + "14": { + "temperature": 20.7, + "humidity": 48.5, + "co2": 820, + "tvoc": 237, + "activity": 102, + "illumination": 11, + "infrared": 3, + "infrared_and_visible": 11, + "pressure": 997.5 + }, + "15": { + "temperature": 20.7, + "humidity": 48.5, + "co2": 820, + "tvoc": 237, + "activity": 102, + "illumination": 11, + "infrared": 3, + "infrared_and_visible": 11, + "pressure": 997.5 } }, "E207": { @@ -1375,6 +1837,39 @@ "temperature": 20.4, "humidity": 48, "co2": 589 + }, + "13": { + "temperature": 20.7, + "humidity": 50, + "co2": 994, + "tvoc": 237, + "activity": 243, + "illumination": 125, + "infrared": 30, + "infrared_and_visible": 117, + "pressure": 997.3 + }, + "14": { + "temperature": 20.9, + "humidity": 51, + "co2": 1158, + "tvoc": 259, + "activity": 519, + "illumination": 107, + "infrared": 24, + "infrared_and_visible": 97, + "pressure": 997.3 + }, + "15": { + "temperature": 20.9, + "humidity": 51, + "co2": 1158, + "tvoc": 259, + "activity": 519, + "illumination": 107, + "infrared": 24, + "infrared_and_visible": 97, + "pressure": 997.3 } }, "E102": { @@ -1442,6 +1937,28 @@ "temperature": 20.1, "humidity": 54, "co2": 1303 + }, + "13": { + "temperature": 21.2, + "humidity": 52.5, + "co2": 1382, + "tvoc": 281, + "activity": 212, + "illumination": 34, + "infrared": 6, + "infrared_and_visible": 28, + "pressure": 996.9 + }, + "14": { + "temperature": 21.3, + "humidity": 52.5, + "co2": 1402, + "tvoc": 285, + "activity": 196, + "illumination": 36, + "infrared": 6, + "infrared_and_visible": 29, + "pressure": 996.9 } }, "hall-entr\u00e9e-principale": { @@ -1509,6 +2026,17 @@ "temperature": 19.8, "humidity": 52, "co2": 690 + }, + "13": { + "temperature": 19.9, + "humidity": 52.5, + "co2": 781, + "tvoc": 448, + "activity": 14, + "illumination": 2, + "infrared": 4, + "infrared_and_visible": 8, + "pressure": 998.3 } }, "E103": { @@ -1576,6 +2104,17 @@ "temperature": 18.8, "humidity": 51, "co2": 490 + }, + "13": { + "temperature": 18.6, + "humidity": 51, + "co2": 485, + "tvoc": 256, + "activity": 0, + "illumination": 14, + "infrared": 7, + "infrared_and_visible": 20, + "pressure": 997.8 } }, "B110": { @@ -1643,6 +2182,17 @@ "temperature": 20.9, "humidity": 56.5, "co2": 1696 + }, + "13": { + "temperature": 22.1, + "humidity": 58, + "co2": 2531, + "tvoc": 241, + "activity": 255, + "illumination": 53, + "infrared": 8, + "infrared_and_visible": 41, + "pressure": 997.7 } }, "B106": { @@ -1705,6 +2255,17 @@ "temperature": 19.7, "humidity": 53, "co2": 892 + }, + "12": { + "temperature": 20.2, + "humidity": 56, + "co2": 1485, + "tvoc": 140, + "activity": 0, + "illumination": 2, + "infrared": 1, + "infrared_and_visible": 3, + "pressure": 997.7 } }, "E004": { @@ -1762,6 +2323,17 @@ "temperature": 20.5, "humidity": 48.5, "co2": 528 + }, + "11": { + "temperature": 19.8, + "humidity": 48.5, + "co2": 463, + "tvoc": 196, + "activity": 0, + "illumination": 9, + "infrared": 5, + "infrared_and_visible": 14, + "pressure": 998.3 } }, "E106": { @@ -1886,6 +2458,17 @@ "temperature": 20.5, "humidity": 50.5, "co2": 496 + }, + "12": { + "temperature": 20.5, + "humidity": 50.5, + "co2": 659, + "tvoc": 77, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997.9 } }, "Foyer-personnels": { @@ -1943,6 +2526,28 @@ "temperature": 21, "humidity": 55, "co2": 1391 + }, + "11": { + "temperature": 20.9, + "humidity": 54.5, + "co2": 1320, + "tvoc": 281, + "activity": 10, + "illumination": 48, + "infrared": 6, + "infrared_and_visible": 35, + "pressure": 996.9 + }, + "12": { + "temperature": 20.8, + "humidity": 54.5, + "co2": 1270, + "tvoc": 275, + "activity": 0, + "illumination": 0, + "infrared": 1, + "infrared_and_visible": 2, + "pressure": 997 } }, "B109": { @@ -2000,6 +2605,17 @@ "temperature": 21.8, "humidity": 53.5, "co2": 1714 + }, + "11": { + "temperature": 23.5, + "humidity": 55, + "co2": 2636, + "tvoc": 252, + "activity": 548, + "illumination": 59, + "infrared": 8, + "infrared_and_visible": 44, + "pressure": 997.4 } }, "B201": { @@ -2052,6 +2668,17 @@ "temperature": 21.9, "humidity": 57.5, "co2": 2017 + }, + "10": { + "temperature": 22.6, + "humidity": 57.5, + "co2": 2185, + "tvoc": 243, + "activity": 210, + "illumination": 42, + "infrared": 6, + "infrared_and_visible": 32, + "pressure": 997.1 } }, "C001": { @@ -2109,6 +2736,17 @@ "temperature": 22.6, "humidity": 43, "co2": 576 + }, + "11": { + "temperature": 22.5, + "humidity": 43, + "co2": 598, + "tvoc": 123, + "activity": 0, + "illumination": 2, + "infrared": 0, + "infrared_and_visible": 1, + "pressure": 998.1 } }, "B111": { @@ -2203,6 +2841,28 @@ "temperature": 21.5, "humidity": 56.5, "co2": 1802 + }, + "9": { + "temperature": 20.9, + "humidity": 50, + "co2": 856, + "tvoc": 232, + "activity": 27, + "illumination": 31, + "infrared": 4, + "infrared_and_visible": 23, + "pressure": 997.3 + }, + "10": { + "temperature": 20.9, + "humidity": 50, + "co2": 856, + "tvoc": 232, + "activity": 27, + "illumination": 31, + "infrared": 4, + "infrared_and_visible": 23, + "pressure": 997.3 } }, "Foyer-etudiants-entr\u00e9e": { @@ -2280,6 +2940,17 @@ "temperature": 49.2, "humidity": 55, "co2": 701 + }, + "15": { + "temperature": 49.1, + "humidity": 55, + "co2": 803, + "tvoc": 228, + "activity": 33, + "illumination": 43, + "infrared": 7, + "infrared_and_visible": 34, + "pressure": 998.2 } }, "B234": { @@ -2327,6 +2998,17 @@ "temperature": 23.1, "humidity": 48.5, "co2": 1186 + }, + "9": { + "temperature": 23.2, + "humidity": 48, + "co2": 1336, + "tvoc": 157, + "activity": 501, + "illumination": 38, + "infrared": 6, + "infrared_and_visible": 30, + "pressure": 997.1 } }, "B113": { @@ -2379,6 +3061,28 @@ "temperature": 20.8, "humidity": 66, "co2": 2498 + }, + "10": { + "temperature": 21.5, + "humidity": 67.5, + "co2": 3120, + "tvoc": 349, + "activity": 217, + "illumination": 45, + "infrared": 8, + "infrared_and_visible": 37, + "pressure": 997.1 + }, + "11": { + "temperature": 21.5, + "humidity": 67.5, + "co2": 3167, + "tvoc": 350, + "activity": 180, + "illumination": 45, + "infrared": 7, + "infrared_and_visible": 35, + "pressure": 997.2 } }, "E006": { @@ -2436,6 +3140,28 @@ "temperature": 21, "humidity": 46.5, "co2": 478 + }, + "11": { + "temperature": 20.7, + "humidity": 46.5, + "co2": 456, + "tvoc": 239, + "activity": 0, + "illumination": 16, + "infrared": 7, + "infrared_and_visible": 21, + "pressure": 997.2 + }, + "12": { + "temperature": 20.6, + "humidity": 46.5, + "co2": 464, + "tvoc": 237, + "activity": 0, + "illumination": 7, + "infrared": 4, + "infrared_and_visible": 11, + "pressure": 997.2 } }, "E209": { @@ -2488,6 +3214,17 @@ "temperature": 21.7, "humidity": 49, "co2": 968 + }, + "10": { + "temperature": 22.5, + "humidity": 47, + "co2": 1032, + "tvoc": 163, + "activity": 431, + "illumination": 45, + "infrared": 7, + "infrared_and_visible": 35, + "pressure": 997 } }, "E003": { @@ -2535,6 +3272,17 @@ "temperature": 20.8, "humidity": 47, "co2": 487 + }, + "9": { + "temperature": 20.6, + "humidity": 46.5, + "co2": 462, + "tvoc": 172, + "activity": 0, + "illumination": 2, + "infrared": 1, + "infrared_and_visible": 3, + "pressure": 998 } } } \ No newline at end of file diff --git a/Iot/solar.json b/Iot/solar.json index 0e56b93e..62c945cb 100644 --- a/Iot/solar.json +++ b/Iot/solar.json @@ -1556,6 +1556,699 @@ "energy": 3433841 }, "lastUpdateTime": "2024-12-03 14:54:33" + }, + "119": { + "lastYearData": { + "energy": 2952974 + }, + "lifeTimeData": { + "energy": 3434004 + }, + "lastUpdateTime": "2024-12-03 15:17:33" + }, + "120": { + "lastYearData": { + "energy": 2953082 + }, + "lifeTimeData": { + "energy": 3434112 + }, + "lastUpdateTime": "2024-12-03 16:02:46" + }, + "121": { + "lastYearData": { + "energy": 2953099 + }, + "lifeTimeData": { + "energy": 3434129 + }, + "lastUpdateTime": "2024-12-03 16:02:46" + }, + "122": { + "lastYearData": { + "energy": 2953099 + }, + "lifeTimeData": { + "energy": 3434129 + }, + "lastUpdateTime": "2024-12-03 16:02:46" + }, + "123": { + "lastYearData": { + "energy": 2953117 + }, + "lifeTimeData": { + "energy": 3434147 + }, + "lastUpdateTime": "2024-12-03 16:18:11" + }, + "124": { + "lastYearData": { + "energy": 2953134 + }, + "lifeTimeData": { + "energy": 3434164 + }, + "lastUpdateTime": "2024-12-03 16:18:11" + }, + "125": { + "lastYearData": { + "energy": 2953145 + }, + "lifeTimeData": { + "energy": 3434175 + }, + "lastUpdateTime": "2024-12-03 16:18:11" + }, + "126": { + "lastYearData": { + "energy": 2953151 + }, + "lifeTimeData": { + "energy": 3434181 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "127": { + "lastYearData": { + "energy": 2953156 + }, + "lifeTimeData": { + "energy": 3434186 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "128": { + "lastYearData": { + "energy": 2953156 + }, + "lifeTimeData": { + "energy": 3434186 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "129": { + "lastYearData": { + "energy": 2953156 + }, + "lifeTimeData": { + "energy": 3434186 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "130": { + "lastYearData": { + "energy": 2953161 + }, + "lifeTimeData": { + "energy": 3434191 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "131": { + "lastYearData": { + "energy": 2953161 + }, + "lifeTimeData": { + "energy": 3434191 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "132": { + "lastYearData": { + "energy": 2953161 + }, + "lifeTimeData": { + "energy": 3434191 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "133": { + "lastYearData": { + "energy": 2953167 + }, + "lifeTimeData": { + "energy": 3434197 + }, + "lastUpdateTime": "2024-12-03 16:31:10" + }, + "134": { + "lastYearData": { + "energy": 2953167 + }, + "lifeTimeData": { + "energy": 3434197 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "135": { + "lastYearData": { + "energy": 2953173 + }, + "lifeTimeData": { + "energy": 3434203 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "136": { + "lastYearData": { + "energy": 2953173 + }, + "lifeTimeData": { + "energy": 3434203 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "137": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "138": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "139": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "140": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "141": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "142": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "143": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "144": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "145": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "146": { + "lastYearData": { + "energy": 2953179 + }, + "lifeTimeData": { + "energy": 3434209 + }, + "lastUpdateTime": "2024-12-03 16:47:33" + }, + "147": { + "lastYearData": { + "energy": 2953183 + }, + "lifeTimeData": { + "energy": 3434213 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "148": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "149": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "150": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "151": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "152": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "153": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "154": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "155": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "156": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "157": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "158": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "159": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "160": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "161": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "162": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "163": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "164": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "165": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "166": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "167": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "168": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "169": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:03:18" + }, + "170": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "171": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "172": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "173": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "174": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "175": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "176": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "177": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "178": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "179": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "180": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "181": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "182": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "183": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "184": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "185": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "186": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "187": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "188": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "189": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "190": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:18:26" + }, + "191": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:33:26" + }, + "192": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:33:26" + }, + "193": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:33:26" + }, + "194": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:36:26" + }, + "195": { + "lastYearData": { + "energy": 2953185 + }, + "lifeTimeData": { + "energy": 3434215 + }, + "lastUpdateTime": "2024-12-03 17:36:26" } } } \ No newline at end of file diff --git a/Iot/trigger.flag b/Iot/trigger.flag index 7c2fe6c3..24676d3d 100644 --- a/Iot/trigger.flag +++ b/Iot/trigger.flag @@ -1,9 +1,9 @@ { - "room": "B110", + "room": "C006", "alarm": { - "key": "co2", - "value": 1696.0, + "key": "pressure", + "value": 998.2, "alarm_type": "MAX", - "timestamp": "2024-12-03 15:00:04" + "timestamp": "2024-12-03 16:59:22" } } \ No newline at end of file From 4bcd88874c03932fda3b771ff65ec5f37024432d Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Wed, 4 Dec 2024 11:53:34 +0100 Subject: [PATCH 5/9] =?UTF-8?q?avancement=20sur=20la=20fonctionnalit=C3=A9?= =?UTF-8?q?=20des=20graphes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/app/src/main/java/sae/App.java | 25 + .../sae/view/AfficherDonneesController.java | 32 +- .../main/java/sae/view/GrapheController.java | 65 + .../sae/view/grapheEvolutifSalle.fxml | 38 + Iot/alarmes.json | 1875 ----------------- Iot/config.ini | 4 +- Iot/trigger.flag | 9 - 7 files changed, 158 insertions(+), 1890 deletions(-) create mode 100644 Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml delete mode 100644 Iot/alarmes.json delete mode 100644 Iot/trigger.flag diff --git a/Application/app/src/main/java/sae/App.java b/Application/app/src/main/java/sae/App.java index e9c868f4..2cd02c48 100644 --- a/Application/app/src/main/java/sae/App.java +++ b/Application/app/src/main/java/sae/App.java @@ -375,5 +375,30 @@ public void loadGraphe(String numSalle, Map map) { } } + public void loadGraphe2(String numSalle, Map map) { + try { + + FXMLLoader loader = new FXMLLoader(); + loader.setLocation(App.class.getResource("view/grapheEvolutifSalle.fxml")); + + BorderPane vueListe = loader.load(); + + GrapheController graphe = loader.getController(); + + // Transmission des données nécessaires au contrôleur + graphe.setDatas(stage, this); + graphe.lignePts(numSalle, map); + + // Remplacement du contenu central de rootPane par la vue chargée + this.rootPane.setCenter(vueListe); + + } catch (IOException e) { + // Gestion des erreurs si le fichier FXML est introuvable ou mal configuré + System.out.println("Ressource FXML non disponible : grapheEvolutifSalle.fxml"); + e.printStackTrace(); + System.exit(1); + } + } + } diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index e281a06f..52d861a9 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -37,8 +37,11 @@ public class AfficherDonneesController { private JSONObject sallesData; // Champ pour stocker les données JSON - Map dicoTypeValeur ; - Map dicoGraphe ; + Map dicoTypeValeur ; //recupere toutes les valeurs du config.ini + Map dicoGraphe ; //recupere seulement les données selectionnées + + Map > dicoHist ; //recupere l'gistorique des données + Map > dicoGrapheHist ; //recupere l'gistorique des données pour le graphe public void setDatas(Stage fenetre, App app) { @@ -56,8 +59,10 @@ public void setTab(ArrayList list) { } @FXML - private void actionAfficher() {; + private void actionAfficher() { + System.out.println(dicoHist); application.loadGraphe(numSalle, dicoGraphe); + application.loadGraphe2(numSalle, dicoGraphe); } @FXML @@ -67,17 +72,35 @@ private void actionRetour() { public void afficherDonnees() { dicoTypeValeur = chargerFichierSalle(); - System.out.println(dicoTypeValeur); + //System.out.println(dicoTypeValeur); dicoGraphe = new HashMap(); + dicoGrapheHist = new HashMap >(); + + System.out.println("------------------------------------------------"); + System.out.println(dicoHist); + for (int i = 0; i < donnees.size(); i++) { gridDynamique.add(new Label( donnees.get(i).toUpperCase() + " :"), 0, i); gridDynamique.add(new Label( dicoTypeValeur.get(donnees.get(i)) + "" ), 1, i); dicoGraphe.put(donnees.get(i), dicoTypeValeur.get(donnees.get(i))); + + for (Map.Entry> entry1 : dicoHist.entrySet()) { + Map dico2 = entry1.getValue(); + + for (Map.Entry> entry2 : dicoHist.entrySet()) { + dico2.put(donnees.get(i), dicoTypeValeur.get(donnees.get(i))); + } + + } + } + System.out.println("------------------------------------------------"); + System.out.println(dicoHist); + } public Map chargerFichierSalle() { @@ -108,6 +131,7 @@ public Map chargerFichierSalle() { if (json.containsKey(numSalle)) { JSONObject salleChoisie = (JSONObject) json.get(numSalle); System.out.println(salleChoisie.toJSONString()); + this.dicoHist = salleChoisie; // Récupérer toutes les valeurs pour cette clé spécifique Set allKeys = salleChoisie.keySet(); diff --git a/Application/app/src/main/java/sae/view/GrapheController.java b/Application/app/src/main/java/sae/view/GrapheController.java index 68e14cf1..45bac893 100644 --- a/Application/app/src/main/java/sae/view/GrapheController.java +++ b/Application/app/src/main/java/sae/view/GrapheController.java @@ -3,8 +3,10 @@ import java.util.Map; import javafx.fxml.FXML; +import javafx.scene.Scene; import javafx.scene.chart.BarChart; import javafx.scene.chart.CategoryAxis; +import javafx.scene.chart.LineChart; import javafx.scene.chart.NumberAxis; import javafx.scene.chart.XYChart; import javafx.scene.control.Alert; @@ -30,6 +32,9 @@ public class GrapheController { @FXML private Button retour; + @FXML + private LineChart lineChart; + public void setDatas(Stage fenetre, App app) { this.application = app; this.fenetrePrincipale = fenetre; @@ -76,4 +81,64 @@ private void actionRetour() { application.loadParametrageSalles(); } + public void lignePts(String salle, Map dico) { + + lineChart.getData().clear(); + + final CategoryAxis xAxis = new CategoryAxis(); + final NumberAxis yAxis = new NumberAxis(); + //xAxis.setLabel("Month"); + + lineChart.setTitle("Historique de : " + salle); + + XYChart.Series series1 = new XYChart.Series(); + series1.setName("Portfolio 1"); + + series1.getData().add(new XYChart.Data("Jan", 23)); + series1.getData().add(new XYChart.Data("Feb", 14)); + series1.getData().add(new XYChart.Data("Mar", 15)); + series1.getData().add(new XYChart.Data("Apr", 24)); + series1.getData().add(new XYChart.Data("May", 34)); + series1.getData().add(new XYChart.Data("Jun", 36)); + series1.getData().add(new XYChart.Data("Jul", 22)); + series1.getData().add(new XYChart.Data("Aug", 45)); + series1.getData().add(new XYChart.Data("Sep", 43)); + series1.getData().add(new XYChart.Data("Oct", 17)); + series1.getData().add(new XYChart.Data("Nov", 29)); + series1.getData().add(new XYChart.Data("Dec", 25)); + + XYChart.Series series2 = new XYChart.Series(); + series2.setName("Portfolio 2"); + series2.getData().add(new XYChart.Data("Jan", 33)); + series2.getData().add(new XYChart.Data("Feb", 34)); + series2.getData().add(new XYChart.Data("Mar", 25)); + series2.getData().add(new XYChart.Data("Apr", 44)); + series2.getData().add(new XYChart.Data("May", 39)); + series2.getData().add(new XYChart.Data("Jun", 16)); + series2.getData().add(new XYChart.Data("Jul", 55)); + series2.getData().add(new XYChart.Data("Aug", 54)); + series2.getData().add(new XYChart.Data("Sep", 48)); + series2.getData().add(new XYChart.Data("Oct", 27)); + series2.getData().add(new XYChart.Data("Nov", 37)); + series2.getData().add(new XYChart.Data("Dec", 29)); + + XYChart.Series series3 = new XYChart.Series(); + series3.setName("Portfolio 3"); + series3.getData().add(new XYChart.Data("Jan", 44)); + series3.getData().add(new XYChart.Data("Feb", 35)); + series3.getData().add(new XYChart.Data("Mar", 36)); + series3.getData().add(new XYChart.Data("Apr", 33)); + series3.getData().add(new XYChart.Data("May", 31)); + series3.getData().add(new XYChart.Data("Jun", 26)); + series3.getData().add(new XYChart.Data("Jul", 22)); + series3.getData().add(new XYChart.Data("Aug", 25)); + series3.getData().add(new XYChart.Data("Sep", 43)); + series3.getData().add(new XYChart.Data("Oct", 44)); + series3.getData().add(new XYChart.Data("Nov", 45)); + series3.getData().add(new XYChart.Data("Dec", 44)); + + lineChart.getData().addAll(series1, series2, series3); + + } + } diff --git a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml new file mode 100644 index 00000000..67cb9337 --- /dev/null +++ b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml @@ -0,0 +1,38 @@ + + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
diff --git a/Iot/alarmes.json b/Iot/alarmes.json deleted file mode 100644 index 105933b7..00000000 --- a/Iot/alarmes.json +++ /dev/null @@ -1,1875 +0,0 @@ -{ - "E001": { - "0": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:46:24" - }, - "1": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:56:25" - }, - "2": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:26" - }, - "3": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:26" - }, - "4": { - "key": "co2", - "value": 439.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:26" - }, - "5": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:26" - }, - "6": { - "key": "pressure", - "value": 998.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:46:26" - }, - "7": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:25" - }, - "8": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:25" - }, - "9": { - "key": "co2", - "value": 440.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:25" - }, - "10": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:25" - }, - "11": { - "key": "pressure", - "value": 998.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:56:25" - } - }, - "C102": { - "0": { - "key": "temperature", - "value": 18.2, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:47:27" - }, - "1": { - "key": "temperature", - "value": 18.2, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:27" - }, - "2": { - "key": "tvoc", - "value": 145.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:27" - }, - "3": { - "key": "activity", - "value": 42.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:27" - }, - "4": { - "key": "pressure", - "value": 997.8, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:57:27" - }, - "5": { - "key": "temperature", - "value": 18.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:28" - }, - "6": { - "key": "tvoc", - "value": 156.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:28" - }, - "7": { - "key": "activity", - "value": 45.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:28" - }, - "8": { - "key": "illumination", - "value": 76.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:28" - }, - "9": { - "key": "infrared_and_visible", - "value": 56.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:28" - }, - "10": { - "key": "pressure", - "value": 997.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:28" - }, - "11": { - "key": "temperature", - "value": 18.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:27" - }, - "12": { - "key": "tvoc", - "value": 155.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:27" - }, - "13": { - "key": "activity", - "value": 4.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:27" - }, - "14": { - "key": "illumination", - "value": 78.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:27" - }, - "15": { - "key": "infrared_and_visible", - "value": 57.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:27" - }, - "16": { - "key": "pressure", - "value": 997.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:27" - } - }, - "E007": { - "0": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:47:29" - }, - "1": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:47:29" - }, - "2": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:29" - }, - "3": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:29" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:29" - }, - "5": { - "key": "pressure", - "value": 998.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:57:29" - }, - "6": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:30" - }, - "7": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:30" - }, - "8": { - "key": "co2", - "value": 435.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:30" - }, - "9": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:30" - }, - "10": { - "key": "pressure", - "value": 998.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:30" - }, - "11": { - "key": "temperature", - "value": 19.6, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:29" - }, - "12": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:29" - }, - "13": { - "key": "co2", - "value": 430.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:29" - }, - "14": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:29" - }, - "15": { - "key": "pressure", - "value": 998.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:29" - } - }, - "amphi1": { - "0": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:47:57" - }, - "1": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:57" - }, - "2": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:58" - }, - "3": { - "key": "tvoc", - "value": 157.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:58" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:58" - }, - "5": { - "key": "pressure", - "value": 997.8, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:58" - }, - "6": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:58" - }, - "7": { - "key": "tvoc", - "value": 155.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:58" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:58" - }, - "9": { - "key": "pressure", - "value": 997.8, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:58" - } - }, - "E208": { - "0": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:47:57" - }, - "1": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:57:57" - }, - "2": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:00" - }, - "3": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:00" - }, - "4": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:00" - }, - "5": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:00" - }, - "6": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:00" - }, - "7": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:00" - } - }, - "B203": { - "0": { - "key": "co2", - "value": 2348.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:47:59" - }, - "1": { - "key": "co2", - "value": 2233.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:57:59" - }, - "2": { - "key": "co2", - "value": 1520.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:58" - }, - "3": { - "key": "tvoc", - "value": 156.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:58" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:47:58" - }, - "5": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:47:58" - }, - "6": { - "key": "tvoc", - "value": 156.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:59" - }, - "7": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:57:59" - }, - "8": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:57:59" - } - }, - "B103": { - "0": { - "key": "co2", - "value": 2548.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:48:25" - }, - "1": { - "key": "co2", - "value": 2529.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:58:25" - }, - "2": { - "key": "co2", - "value": 2968.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:26" - }, - "3": { - "key": "tvoc", - "value": 131.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:26" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:26" - }, - "5": { - "key": "pressure", - "value": 997.6, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:26" - }, - "6": { - "key": "co2", - "value": 2941.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:26" - }, - "7": { - "key": "tvoc", - "value": 128.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:26" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:26" - }, - "9": { - "key": "pressure", - "value": 997.7, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:26" - } - }, - "E210": { - "0": { - "key": "humidity", - "value": 47.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:48:26" - }, - "1": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:58:26" - }, - "2": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:22" - }, - "3": { - "key": "tvoc", - "value": 167.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:22" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:22" - }, - "5": { - "key": "pressure", - "value": 996.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:22" - }, - "6": { - "key": "humidity", - "value": 49.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:21" - }, - "7": { - "key": "tvoc", - "value": 172.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:21" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:21" - }, - "9": { - "key": "pressure", - "value": 996.5, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:21" - } - }, - "E207": { - "0": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:48:57" - }, - "1": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:58:57" - }, - "2": { - "key": "illumination", - "value": 125.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:59" - }, - "3": { - "key": "infrared", - "value": 30.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:59" - }, - "4": { - "key": "infrared_and_visible", - "value": 117.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:59" - }, - "5": { - "key": "pressure", - "value": 997.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:59" - }, - "6": { - "key": "activity", - "value": 519.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:59" - }, - "7": { - "key": "illumination", - "value": 107.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:59" - }, - "8": { - "key": "infrared", - "value": 24.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:59" - }, - "9": { - "key": "infrared_and_visible", - "value": 97.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:59" - }, - "10": { - "key": "pressure", - "value": 997.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:59" - } - }, - "E101": { - "0": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:48:58" - }, - "1": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:58:58" - }, - "2": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:59" - }, - "3": { - "key": "activity", - "value": 3.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:48:59" - }, - "4": { - "key": "pressure", - "value": 997.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:48:59" - }, - "5": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:58:58" - }, - "6": { - "key": "pressure", - "value": 997.5, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:58:58" - } - }, - "C006": { - "0": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:21" - }, - "1": { - "key": "temperature", - "value": 19.1, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:59:21" - }, - "2": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:22" - }, - "3": { - "key": "tvoc", - "value": 172.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:22" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:22" - }, - "5": { - "key": "pressure", - "value": 998.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:39:22" - }, - "6": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:21" - }, - "7": { - "key": "tvoc", - "value": 172.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:21" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:21" - }, - "9": { - "key": "pressure", - "value": 998.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:49:21" - }, - "10": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:59:22" - }, - "11": { - "key": "tvoc", - "value": 170.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:59:22" - }, - "12": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:59:22" - }, - "13": { - "key": "pressure", - "value": 998.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:59:22" - } - }, - "E100": { - "0": { - "key": "humidity", - "value": 38.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:26" - }, - "1": { - "key": "humidity", - "value": 37.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:59:26" - }, - "2": { - "key": "humidity", - "value": 37.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:31" - }, - "3": { - "key": "tvoc", - "value": 51.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:31" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:31" - }, - "5": { - "key": "pressure", - "value": 997.7, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:39:31" - }, - "6": { - "key": "humidity", - "value": 37.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:31" - }, - "7": { - "key": "tvoc", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:31" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:31" - }, - "9": { - "key": "pressure", - "value": 997.7, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:49:31" - } - }, - "hall-amphi": { - "0": { - "key": "temperature", - "value": 19.3, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:30" - }, - "1": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:59:29" - }, - "2": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:30" - }, - "3": { - "key": "activity", - "value": 5.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:30" - }, - "4": { - "key": "pressure", - "value": 997.6, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:39:30" - }, - "5": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:30" - }, - "6": { - "key": "activity", - "value": 24.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:49:30" - }, - "7": { - "key": "pressure", - "value": 997.6, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:49:30" - } - }, - "E103": { - "0": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:58" - }, - "1": { - "key": "temperature", - "value": 18.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:00:01" - }, - "2": { - "key": "temperature", - "value": 18.6, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:59" - }, - "3": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:39:59" - }, - "4": { - "key": "pressure", - "value": 997.8, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:39:59" - } - }, - "E102": { - "0": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:58" - }, - "1": { - "key": "pressure", - "value": 996.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:39:56" - }, - "2": { - "key": "pressure", - "value": 996.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:49:56" - } - }, - "B110": { - "0": { - "key": "co2", - "value": 1701.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:49:58" - }, - "1": { - "key": "co2", - "value": 1696.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:00:04" - }, - "2": { - "key": "co2", - "value": 2531.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:00" - }, - "3": { - "key": "infrared_and_visible", - "value": 41.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:00" - }, - "4": { - "key": "pressure", - "value": 997.7, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:00" - } - }, - "hall-entr\u00e9e-principale": { - "0": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:49:59" - }, - "1": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:59:59" - }, - "2": { - "key": "temperature", - "value": 19.9, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:00" - }, - "3": { - "key": "tvoc", - "value": 448.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:00" - }, - "4": { - "key": "activity", - "value": 14.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:05" - }, - "5": { - "key": "pressure", - "value": 998.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:05" - } - }, - "B106": { - "0": { - "key": "temperature", - "value": 19.7, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:50:28" - }, - "1": { - "key": "tvoc", - "value": 140.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:28" - }, - "2": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:28" - }, - "3": { - "key": "pressure", - "value": 997.7, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:28" - } - }, - "E004": { - "0": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:50:56" - }, - "1": { - "key": "temperature", - "value": 19.8, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:00" - }, - "2": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:00" - }, - "3": { - "key": "tvoc", - "value": 196.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:00" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:00" - }, - "5": { - "key": "pressure", - "value": 998.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:00" - } - }, - "E106": { - "0": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:50:57" - } - }, - "Local-velo": { - "0": { - "key": "temperature", - "value": 12.7, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:51:23" - }, - "1": { - "key": "humidity", - "value": 78.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:51:23" - }, - "2": { - "key": "temperature", - "value": 11.1, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:23" - }, - "3": { - "key": "humidity", - "value": 82.5, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:23" - }, - "4": { - "key": "tvoc", - "value": 49399.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:23" - }, - "5": { - "key": "activity", - "value": 14.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:23" - }, - "6": { - "key": "infrared", - "value": 22.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:23" - }, - "7": { - "key": "infrared_and_visible", - "value": 54.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:23" - }, - "8": { - "key": "pressure", - "value": 998.8, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:23" - } - }, - "B202": { - "0": { - "key": "co2", - "value": 1863.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:51:26" - }, - "1": { - "key": "co2", - "value": 2130.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:26" - }, - "2": { - "key": "activity", - "value": 9.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:26" - }, - "3": { - "key": "pressure", - "value": 997.6, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:26" - } - }, - "C004": { - "0": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:51:29" - }, - "1": { - "key": "temperature", - "value": 19.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:11:28" - }, - "2": { - "key": "tvoc", - "value": 189.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:11:28" - }, - "3": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:11:28" - }, - "4": { - "key": "pressure", - "value": 998.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:11:28" - }, - "5": { - "key": "temperature", - "value": 19.3, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:29" - }, - "6": { - "key": "tvoc", - "value": 171.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:29" - }, - "7": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:29" - }, - "8": { - "key": "pressure", - "value": 998.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:29" - } - }, - "B201": { - "0": { - "key": "co2", - "value": 2017.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:51:57" - }, - "1": { - "key": "co2", - "value": 2185.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:57" - }, - "2": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:57" - } - }, - "C001": { - "0": { - "key": "humidity", - "value": 43.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:51:58" - }, - "1": { - "key": "humidity", - "value": 43.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:59" - }, - "2": { - "key": "tvoc", - "value": 123.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:59" - }, - "3": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:59" - }, - "4": { - "key": "infrared", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:59" - }, - "5": { - "key": "pressure", - "value": 998.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:59" - } - }, - "B109": { - "0": { - "key": "co2", - "value": 1714.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:00" - }, - "1": { - "key": "co2", - "value": 2636.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:00" - }, - "2": { - "key": "activity", - "value": 548.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:00" - }, - "3": { - "key": "infrared_and_visible", - "value": 44.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:00" - }, - "4": { - "key": "pressure", - "value": 997.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:00" - } - }, - "Salle-conseil": { - "0": { - "key": "humidity", - "value": 45.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:52:25" - }, - "1": { - "key": "humidity", - "value": 45.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:52:25" - }, - "2": { - "key": "humidity", - "value": 45.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:26" - }, - "3": { - "key": "tvoc", - "value": 168.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:26" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:26" - }, - "5": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:32:26" - }, - "6": { - "key": "humidity", - "value": 45.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:27" - }, - "7": { - "key": "tvoc", - "value": 167.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:27" - }, - "8": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:27" - } - }, - "B002": { - "0": { - "key": "temperature", - "value": 19.3, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:52:27" - }, - "1": { - "key": "co2", - "value": 1708.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:27" - }, - "2": { - "key": "temperature", - "value": 19.4, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:27" - }, - "3": { - "key": "co2", - "value": 1925.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:32:27" - }, - "4": { - "key": "tvoc", - "value": 133.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:27" - }, - "5": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 15:32:27" - }, - "6": { - "key": "illumination", - "value": 81.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:32:27" - }, - "7": { - "key": "infrared_and_visible", - "value": 60.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:32:27" - }, - "8": { - "key": "pressure", - "value": 997.6, - "alarm_type": "MAX", - "timestamp": "2024-12-03 15:32:27" - } - }, - "B111": { - "0": { - "key": "co2", - "value": 1606.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:49" - }, - "1": { - "key": "co2", - "value": 1606.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:49" - } - }, - "B105": { - "0": { - "key": "co2", - "value": 1802.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:56" - }, - "1": { - "key": "activity", - "value": 27.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:57" - }, - "2": { - "key": "pressure", - "value": 997.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:57" - }, - "3": { - "key": "activity", - "value": 27.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:59" - }, - "4": { - "key": "pressure", - "value": 997.3, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:59" - } - }, - "Foyer-etudiants-entr\u00e9e": { - "0": { - "key": "temperature", - "value": 49.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:52:57" - }, - "1": { - "key": "temperature", - "value": 49.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:53:00" - }, - "2": { - "key": "temperature", - "value": 49.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:58" - }, - "3": { - "key": "activity", - "value": 33.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:42:58" - }, - "4": { - "key": "pressure", - "value": 998.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:42:58" - } - }, - "B234": { - "0": { - "key": "humidity", - "value": 48.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:53:00" - }, - "1": { - "key": "humidity", - "value": 48.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:43:00" - }, - "2": { - "key": "tvoc", - "value": 157.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:43:00" - }, - "3": { - "key": "activity", - "value": 501.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:43:00" - }, - "4": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:43:00" - } - }, - "B113": { - "0": { - "key": "co2", - "value": 2498.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 14:53:52" - }, - "1": { - "key": "co2", - "value": 3120.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:13:52" - }, - "2": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:13:52" - }, - "3": { - "key": "co2", - "value": 3167.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:43:53" - }, - "4": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:43:53" - } - }, - "E006": { - "0": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:53:57" - }, - "1": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:13:57" - }, - "2": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:13:57" - }, - "3": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:13:57" - }, - "4": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:43:58" - }, - "5": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:43:58" - }, - "6": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:43:58" - } - }, - "E209": { - "0": { - "key": "humidity", - "value": 49.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:54:25" - }, - "1": { - "key": "humidity", - "value": 47.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:44:23" - }, - "2": { - "key": "tvoc", - "value": 163.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:44:23" - }, - "3": { - "key": "pressure", - "value": 997.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:44:23" - } - }, - "E003": { - "0": { - "key": "humidity", - "value": 47.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 14:54:52" - }, - "1": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:44:50" - }, - "2": { - "key": "humidity", - "value": 46.5, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:54:52" - }, - "3": { - "key": "tvoc", - "value": 172.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:54:52" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:54:53" - }, - "5": { - "key": "pressure", - "value": 998.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:54:53" - } - }, - "Foyer-personnels": { - "0": { - "key": "activity", - "value": 10.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:11:31" - }, - "1": { - "key": "pressure", - "value": 996.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:11:31" - }, - "2": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:29" - }, - "3": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:41:29" - }, - "4": { - "key": "pressure", - "value": 997.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:41:29" - } - }, - "B001": { - "0": { - "key": "tvoc", - "value": 77.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:58" - }, - "1": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:58" - }, - "2": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:40:58" - }, - "3": { - "key": "pressure", - "value": 997.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:40:58" - } - }, - "B217": { - "0": { - "key": "tvoc", - "value": 160.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:45:57" - }, - "1": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:45:57" - }, - "2": { - "key": "pressure", - "value": 997.1, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:45:57" - }, - "3": { - "key": "tvoc", - "value": 158.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:55:57" - }, - "4": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:55:57" - }, - "5": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:55:57" - } - }, - "C002": { - "0": { - "key": "tvoc", - "value": 160.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:00" - }, - "1": { - "key": "activity", - "value": 4.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:00" - }, - "2": { - "key": "pressure", - "value": 997.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:46:00" - }, - "3": { - "key": "tvoc", - "value": 161.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:00" - }, - "4": { - "key": "activity", - "value": 59.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:00" - }, - "5": { - "key": "pressure", - "value": 997.9, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:56:00" - } - }, - "B112": { - "0": { - "key": "co2", - "value": 2465.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:46:02" - }, - "1": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:46:02" - }, - "2": { - "key": "co2", - "value": 2550.0, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:56:02" - }, - "3": { - "key": "pressure", - "value": 997.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:56:02" - } - }, - "B108": { - "0": { - "key": "tvoc", - "value": 167.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:57" - }, - "1": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:57" - }, - "2": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:46:57" - }, - "3": { - "key": "pressure", - "value": 997.4, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:46:57" - }, - "4": { - "key": "tvoc", - "value": 166.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:56" - }, - "5": { - "key": "activity", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:56" - }, - "6": { - "key": "illumination", - "value": 0.0, - "alarm_type": "MIN", - "timestamp": "2024-12-03 16:56:56" - }, - "7": { - "key": "pressure", - "value": 997.5, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:56:56" - } - } -} -} \ No newline at end of file diff --git a/Iot/config.ini b/Iot/config.ini index 2670998a..d033ebbe 100644 --- a/Iot/config.ini +++ b/Iot/config.ini @@ -13,8 +13,8 @@ donneesSalles=['temperature', 'humidity', 'co2', 'tvoc', 'activity', 'illuminati donneesSolar=['lastYearData', 'lifeTimeData', 'lastUpdateTime'] [seuil] -seuil_max = [30, 70, 1500, 400, 500, 60, 15, 40, 990] -seuil_min = [20, 50, 450, 200, 100, 1, 1, 1, 980] +seuil_max = [3000, 7000, 150000, 40000, 50000, 6000, 1500, 4000, 99000] +seuil_min = [2000, 5000, 45000, 20000, 10000, 100, 100, 100, 98000] [frequence] frequence=2 diff --git a/Iot/trigger.flag b/Iot/trigger.flag deleted file mode 100644 index 24676d3d..00000000 --- a/Iot/trigger.flag +++ /dev/null @@ -1,9 +0,0 @@ -{ - "room": "C006", - "alarm": { - "key": "pressure", - "value": 998.2, - "alarm_type": "MAX", - "timestamp": "2024-12-03 16:59:22" - } -} \ No newline at end of file From cbfec603d2338a74805b4a5328fb0aea6712b045 Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Wed, 4 Dec 2024 15:47:53 +0100 Subject: [PATCH 6/9] ajout des graphes des evolutions --- Application/app/src/main/java/sae/App.java | 11 +- .../sae/view/AfficherDonneesController.java | 72 +++------ .../sae/view/EvolutionGrapheController.java | 48 ++++++ .../main/java/sae/view/GrapheController.java | 144 ------------------ .../java/sae/view/GrapheSalleController.java | 136 +++++++++++++++++ .../sae/view/grapheEvolutifSalle.fxml | 34 ++--- .../main/resources/sae/view/grapheSalle.fxml | 2 +- 7 files changed, 229 insertions(+), 218 deletions(-) create mode 100644 Application/app/src/main/java/sae/view/EvolutionGrapheController.java delete mode 100644 Application/app/src/main/java/sae/view/GrapheController.java create mode 100644 Application/app/src/main/java/sae/view/GrapheSalleController.java diff --git a/Application/app/src/main/java/sae/App.java b/Application/app/src/main/java/sae/App.java index 2cd02c48..500da10d 100644 --- a/Application/app/src/main/java/sae/App.java +++ b/Application/app/src/main/java/sae/App.java @@ -17,8 +17,9 @@ import sae.view.AppState; import sae.view.AfficherDonneesController; import sae.view.ConfigController; +import sae.view.EvolutionGrapheController; import sae.view.FreqConfigController; -import sae.view.GrapheController; +import sae.view.GrapheSalleController; import sae.view.MenuController; import sae.view.ParametrageChoixSalles; import sae.view.ParametrageSolar; @@ -358,7 +359,7 @@ public void loadGraphe(String numSalle, Map map) { BorderPane vueListe = loader.load(); - GrapheController graphe = loader.getController(); + GrapheSalleController graphe = loader.getController(); // Transmission des données nécessaires au contrôleur graphe.setDatas(stage, this); @@ -375,7 +376,7 @@ public void loadGraphe(String numSalle, Map map) { } } - public void loadGraphe2(String numSalle, Map map) { + public void loadGraphe2(String numSalle, Map< String, Map > map) { try { FXMLLoader loader = new FXMLLoader(); @@ -383,11 +384,11 @@ public void loadGraphe2(String numSalle, Map map) { BorderPane vueListe = loader.load(); - GrapheController graphe = loader.getController(); + EvolutionGrapheController graphe = loader.getController(); // Transmission des données nécessaires au contrôleur graphe.setDatas(stage, this); - graphe.lignePts(numSalle, map); + //graphe.lignePts(numSalle, map); // Remplacement du contenu central de rootPane par la vue chargée this.rootPane.setCenter(vueListe); diff --git a/Application/app/src/main/java/sae/view/AfficherDonneesController.java b/Application/app/src/main/java/sae/view/AfficherDonneesController.java index 52d861a9..5096c364 100644 --- a/Application/app/src/main/java/sae/view/AfficherDonneesController.java +++ b/Application/app/src/main/java/sae/view/AfficherDonneesController.java @@ -13,6 +13,8 @@ import org.json.simple.parser.JSONParser; import javafx.fxml.FXML; +import javafx.scene.control.Alert; +import javafx.scene.control.Alert.AlertType; import javafx.scene.control.Label; import javafx.scene.layout.GridPane; import javafx.stage.Stage; @@ -40,8 +42,7 @@ public class AfficherDonneesController { Map dicoTypeValeur ; //recupere toutes les valeurs du config.ini Map dicoGraphe ; //recupere seulement les données selectionnées - Map > dicoHist ; //recupere l'gistorique des données - Map > dicoGrapheHist ; //recupere l'gistorique des données pour le graphe + Map > dicoHist ; //recupere l'historique des données public void setDatas(Stage fenetre, App app) { @@ -62,7 +63,7 @@ public void setTab(ArrayList list) { private void actionAfficher() { System.out.println(dicoHist); application.loadGraphe(numSalle, dicoGraphe); - application.loadGraphe2(numSalle, dicoGraphe); + application.loadGraphe2(numSalle, dicoHist); } @FXML @@ -71,95 +72,68 @@ private void actionRetour() { } public void afficherDonnees() { - dicoTypeValeur = chargerFichierSalle(); - //System.out.println(dicoTypeValeur); - + chargerFichierSalle(); dicoGraphe = new HashMap(); - dicoGrapheHist = new HashMap >(); - - System.out.println("------------------------------------------------"); - System.out.println(dicoHist); - for (int i = 0; i < donnees.size(); i++) { gridDynamique.add(new Label( donnees.get(i).toUpperCase() + " :"), 0, i); gridDynamique.add(new Label( dicoTypeValeur.get(donnees.get(i)) + "" ), 1, i); dicoGraphe.put(donnees.get(i), dicoTypeValeur.get(donnees.get(i))); - - for (Map.Entry> entry1 : dicoHist.entrySet()) { - Map dico2 = entry1.getValue(); - - for (Map.Entry> entry2 : dicoHist.entrySet()) { - dico2.put(donnees.get(i), dicoTypeValeur.get(donnees.get(i))); - } - - } - + } + + for (Map.Entry> entry1 : dicoHist.entrySet()) { + entry1.getValue().entrySet().removeIf((entry) -> { + return !donnees.contains(entry.getKey()); + }); //retire les valeurs qui n'existe pas dans le tableau } - System.out.println("------------------------------------------------"); - System.out.println(dicoHist); } - public Map chargerFichierSalle() { + public void chargerFichierSalle() { JSONParser parser = new JSONParser(); - Map dicoTypeValeur = new HashMap(); try { - // Définir le chemin du fichier salles.json à la racine du projet File file = new File("Iot/salles.json"); if (!file.exists()) { - System.out.println("Le fichier salles.json est introuvable à la racine du projet."); - // return; + Alert alert = new Alert(AlertType.ERROR, "Erreur : Le fichier salles.json est introuvable !"); + alert.show(); } // Lire et analyser le fichier JSON FileReader reader = new FileReader(file); JSONObject json = (JSONObject) parser.parse(reader); - // Stocker les données dans le champ solarData - this.sallesData = json; - - System.out.println("Données extraites du fichier salles.json " + numSalle + " : "); - //System.out.println(json.toJSONString()); - + // Stocker les données dans la variable + this.sallesData = json; if (json.containsKey(numSalle)) { JSONObject salleChoisie = (JSONObject) json.get(numSalle); - System.out.println(salleChoisie.toJSONString()); - this.dicoHist = salleChoisie; + this.dicoHist = salleChoisie; + //attribut toutes les données existantes dans un dictionnaire // Récupérer toutes les valeurs pour cette clé spécifique Set allKeys = salleChoisie.keySet(); JSONObject dernierClé = (JSONObject) salleChoisie.get( (allKeys.size() - 1) + "" ); - System.out.println( "Dernière clée de la salle : " + (allKeys.size() - 1)); - System.out.println(dernierClé); - - dicoTypeValeur = dernierClé; - - System.out.println(dernierClé); - + this.dicoTypeValeur = dernierClé; + //récupère les dernières données de la salle et les attributs à un dictionnaire } else { - System.out.println("La salle " + numSalle + " n'existe pas dans le fichier JSON."); + Alert alert = new Alert(AlertType.ERROR, "Erreur : La salle n'existe pas !"); + alert.show(); } reader.close(); - - } catch (Exception e) { - System.out.println("Erreur lors du chargement du fichier solar.json : " + e.getMessage()); + System.out.println("Erreur lors du chargement du fichier salles.json : " + e.getMessage()); e.printStackTrace(); } - return dicoTypeValeur; - } } diff --git a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java new file mode 100644 index 00000000..be535cda --- /dev/null +++ b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java @@ -0,0 +1,48 @@ +package sae.view; + +import java.util.Map; + +import javafx.fxml.FXML; +import javafx.scene.Scene; +import javafx.scene.control.Button; +import javafx.scene.control.Label; +import javafx.scene.layout.BorderPane; +import javafx.scene.layout.GridPane; +import javafx.stage.Stage; +import sae.App; + +public class EvolutionGrapheController { + + private Stage fenetrePrincipale; + private App application; + + @FXML + private BorderPane pane; + @FXML + private GridPane gridDynamique; + @FXML + private Button retour; + + @FXML + private Label titreSalle; + + public void setDatas(Stage fenetre, App app) { + this.application = app; + this.fenetrePrincipale = fenetre; + Scene scene = new Scene(pane); + fenetrePrincipale.setScene(scene); + fenetrePrincipale.setResizable(true); + this.fenetrePrincipale.setMaximized(true); + } + + @FXML + private void actionRetour() { + application.loadParametrageSalles(); + } + + public void afficherGraphes(String salle, Map> dico){ + + } + + +} \ No newline at end of file diff --git a/Application/app/src/main/java/sae/view/GrapheController.java b/Application/app/src/main/java/sae/view/GrapheController.java deleted file mode 100644 index 45bac893..00000000 --- a/Application/app/src/main/java/sae/view/GrapheController.java +++ /dev/null @@ -1,144 +0,0 @@ -package sae.view; - -import java.util.Map; - -import javafx.fxml.FXML; -import javafx.scene.Scene; -import javafx.scene.chart.BarChart; -import javafx.scene.chart.CategoryAxis; -import javafx.scene.chart.LineChart; -import javafx.scene.chart.NumberAxis; -import javafx.scene.chart.XYChart; -import javafx.scene.control.Alert; -import javafx.scene.control.Button; -import javafx.scene.control.Alert.AlertType; -import javafx.stage.Stage; -import sae.App; - -public class GrapheController { - - private Stage fenetrePrincipale; - private App application; - - @FXML - private BarChart graphe; - - @FXML - private CategoryAxis xAxe; - - @FXML - private NumberAxis yAxe; - - @FXML - private Button retour; - - @FXML - private LineChart lineChart; - - public void setDatas(Stage fenetre, App app) { - this.application = app; - this.fenetrePrincipale = fenetre; - } - - public void populateHistogram(String salle, Map dico) { - // Nettoyer le graphique avant d'ajouter de nouvelles données - graphe.getData().clear(); - xAxe.getCategories().clear(); - - // Créer une série pour le graphique - XYChart.Series series = new XYChart.Series<>(); - series.setName("Données pour " + salle); - - // Ajouter les données depuis le dictionnaire - for (Map.Entry entry : dico.entrySet()) { - String key = entry.getKey(); // Nom de la catégorie (par exemple, "Température") - Double value; - if( entry.getValue() instanceof Double){ - value=(Double)entry.getValue(); - } - else if(entry.getValue() instanceof Long){ - value=Double.parseDouble(Long.toString((Long)entry.getValue())); - } else{ - Alert alert=new Alert(AlertType.ERROR, "Erreur Critique l'application trouve des valeurs innatendues!"); - alert.show(); - value=Double.valueOf(0); - } - - - // Ajouter la catégorie à l'axe X - xAxe.getCategories().add(key); - - // Ajouter la donnée dans la série - series.getData().add(new XYChart.Data<>(key, value)); - } - - // Ajouter la série au graphique - graphe.getData().add(series); - } - - @FXML - private void actionRetour() { - application.loadParametrageSalles(); - } - - public void lignePts(String salle, Map dico) { - - lineChart.getData().clear(); - - final CategoryAxis xAxis = new CategoryAxis(); - final NumberAxis yAxis = new NumberAxis(); - //xAxis.setLabel("Month"); - - lineChart.setTitle("Historique de : " + salle); - - XYChart.Series series1 = new XYChart.Series(); - series1.setName("Portfolio 1"); - - series1.getData().add(new XYChart.Data("Jan", 23)); - series1.getData().add(new XYChart.Data("Feb", 14)); - series1.getData().add(new XYChart.Data("Mar", 15)); - series1.getData().add(new XYChart.Data("Apr", 24)); - series1.getData().add(new XYChart.Data("May", 34)); - series1.getData().add(new XYChart.Data("Jun", 36)); - series1.getData().add(new XYChart.Data("Jul", 22)); - series1.getData().add(new XYChart.Data("Aug", 45)); - series1.getData().add(new XYChart.Data("Sep", 43)); - series1.getData().add(new XYChart.Data("Oct", 17)); - series1.getData().add(new XYChart.Data("Nov", 29)); - series1.getData().add(new XYChart.Data("Dec", 25)); - - XYChart.Series series2 = new XYChart.Series(); - series2.setName("Portfolio 2"); - series2.getData().add(new XYChart.Data("Jan", 33)); - series2.getData().add(new XYChart.Data("Feb", 34)); - series2.getData().add(new XYChart.Data("Mar", 25)); - series2.getData().add(new XYChart.Data("Apr", 44)); - series2.getData().add(new XYChart.Data("May", 39)); - series2.getData().add(new XYChart.Data("Jun", 16)); - series2.getData().add(new XYChart.Data("Jul", 55)); - series2.getData().add(new XYChart.Data("Aug", 54)); - series2.getData().add(new XYChart.Data("Sep", 48)); - series2.getData().add(new XYChart.Data("Oct", 27)); - series2.getData().add(new XYChart.Data("Nov", 37)); - series2.getData().add(new XYChart.Data("Dec", 29)); - - XYChart.Series series3 = new XYChart.Series(); - series3.setName("Portfolio 3"); - series3.getData().add(new XYChart.Data("Jan", 44)); - series3.getData().add(new XYChart.Data("Feb", 35)); - series3.getData().add(new XYChart.Data("Mar", 36)); - series3.getData().add(new XYChart.Data("Apr", 33)); - series3.getData().add(new XYChart.Data("May", 31)); - series3.getData().add(new XYChart.Data("Jun", 26)); - series3.getData().add(new XYChart.Data("Jul", 22)); - series3.getData().add(new XYChart.Data("Aug", 25)); - series3.getData().add(new XYChart.Data("Sep", 43)); - series3.getData().add(new XYChart.Data("Oct", 44)); - series3.getData().add(new XYChart.Data("Nov", 45)); - series3.getData().add(new XYChart.Data("Dec", 44)); - - lineChart.getData().addAll(series1, series2, series3); - - } - -} diff --git a/Application/app/src/main/java/sae/view/GrapheSalleController.java b/Application/app/src/main/java/sae/view/GrapheSalleController.java new file mode 100644 index 00000000..d1b4c14e --- /dev/null +++ b/Application/app/src/main/java/sae/view/GrapheSalleController.java @@ -0,0 +1,136 @@ +package sae.view; + +import java.util.HashMap; +import java.util.Map; + +import javafx.fxml.FXML; +import javafx.scene.Scene; +import javafx.scene.chart.BarChart; +import javafx.scene.chart.CategoryAxis; +import javafx.scene.chart.LineChart; +import javafx.scene.chart.NumberAxis; +import javafx.scene.chart.XYChart; +import javafx.scene.control.Alert; +import javafx.scene.control.Button; +import javafx.scene.control.Alert.AlertType; +import javafx.stage.Stage; +import sae.App; + +public class GrapheSalleController { + + private Stage fenetrePrincipale; + private App application; + + @FXML + private BarChart graphe; + + @FXML + private CategoryAxis xAxe; + + @FXML + private NumberAxis yAxe; + + @FXML + private Button retour; + + @FXML + private LineChart lineChart; + + public void setDatas(Stage fenetre, App app) { + this.application = app; + this.fenetrePrincipale = fenetre; + } + + public void populateHistogram(String salle, Map dico) { + // Nettoyer le graphique avant d'ajouter de nouvelles données + graphe.getData().clear(); + xAxe.getCategories().clear(); + + // Créer une série pour le graphique + XYChart.Series series = new XYChart.Series<>(); + series.setName("Données pour " + salle); + + // Ajouter les données depuis le dictionnaire + for (Map.Entry entry : dico.entrySet()) { + String key = entry.getKey(); // Nom de la catégorie (par exemple, "Température") + Double value; + if( entry.getValue() instanceof Double){ + value=(Double)entry.getValue(); + } + else if(entry.getValue() instanceof Long){ + value=Double.parseDouble(Long.toString((Long)entry.getValue())); + } else{ + Alert alert=new Alert(AlertType.ERROR, "Erreur Critique l'application trouve des valeurs innatendues!"); + alert.show(); + value=Double.valueOf(0); + } + + + // Ajouter la catégorie à l'axe X + xAxe.getCategories().add(key); + + // Ajouter la donnée dans la série + series.getData().add(new XYChart.Data<>(key, value)); + } + + // Ajouter la série au graphique + graphe.getData().add(series); + } + + @FXML + private void actionRetour() { + application.loadParametrageSalles(); + } + + public void lignePts(String salle, Map> dico) { + lineChart.getData().clear(); + + final CategoryAxis xAxis = new CategoryAxis(); + final NumberAxis yAxis = new NumberAxis(); + lineChart.setTitle("Historique de : " + salle); + + // Un map pour stocker les séries par type de donnée (par exemple temperature, humidity, etc.) + Map seriesMap = new HashMap<>(); + + for (Map.Entry> entry : dico.entrySet()) { + String mois = entry.getKey(); + Map data = entry.getValue(); // La valeur contient les données pour chaque type (par ex. temperature, humidity) + + // Parcours des sous-dictionnaires de chaque mois (par exemple, "temperature", "humidity") + for (Map.Entry dataEntry : data.entrySet()) { + String category = dataEntry.getKey(); // La clé dans ce sous-dictionnaire (par exemple "temperature", "humidity") + Double value = getConvertedValue(dataEntry.getValue()); + + // Si la série pour cette catégorie n'existe pas encore, on la crée + if (!seriesMap.containsKey(category)) { + XYChart.Series series = new XYChart.Series(); + series.setName(category); // Le nom de la série sera le nom de la catégorie (par exemple "temperature") + seriesMap.put(category, series); + } + + // Ajouter la donnée à la série appropriée + seriesMap.get(category).getData().add(new XYChart.Data(mois, value)); + } + } + + // Ajoute toutes les séries au graphique + lineChart.getData().addAll(seriesMap.values()); + } + + // Méthode pour convertir les valeurs en Double + private Double getConvertedValue(Object value) { + if (value instanceof Double) { + return (Double) value; + } else if (value instanceof Long) { + return ((Long) value).doubleValue(); + } else { + // Gestion d'erreur si la valeur n'est ni un Long ni un Double + Alert alert=new Alert(AlertType.ERROR, "Erreur Critique l'application trouve des valeurs innatendues!"); + alert.show(); + return 0.0; // Retourne une valeur par défaut en cas d'erreur + } + } + + + +} diff --git a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml index 67cb9337..f08e75d5 100644 --- a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml +++ b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml @@ -1,37 +1,33 @@ - - - + - +
- - - + + + - - - + + + -
diff --git a/Application/app/src/main/resources/sae/view/grapheSalle.fxml b/Application/app/src/main/resources/sae/view/grapheSalle.fxml index 7bbad022..2c617943 100644 --- a/Application/app/src/main/resources/sae/view/grapheSalle.fxml +++ b/Application/app/src/main/resources/sae/view/grapheSalle.fxml @@ -9,7 +9,7 @@ - +
From 91a6baf58ca05b41d64f3ca1e853be0fb8e528bd Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Wed, 4 Dec 2024 15:51:05 +0100 Subject: [PATCH 7/9] Maximisation de la page automatiquement --- .../sae/view/EvolutionGrapheController.java | 5 - .../sae/view/grapheEvolutifSalle.fxml | 2 +- hs_err_pid2476.log | 851 ++ replay_pid2476.log | 8663 +++++++++++++++++ 4 files changed, 9515 insertions(+), 6 deletions(-) create mode 100644 hs_err_pid2476.log create mode 100644 replay_pid2476.log diff --git a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java index be535cda..7343a7db 100644 --- a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java +++ b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java @@ -16,8 +16,6 @@ public class EvolutionGrapheController { private Stage fenetrePrincipale; private App application; - @FXML - private BorderPane pane; @FXML private GridPane gridDynamique; @FXML @@ -29,9 +27,6 @@ public class EvolutionGrapheController { public void setDatas(Stage fenetre, App app) { this.application = app; this.fenetrePrincipale = fenetre; - Scene scene = new Scene(pane); - fenetrePrincipale.setScene(scene); - fenetrePrincipale.setResizable(true); this.fenetrePrincipale.setMaximized(true); } diff --git a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml index f08e75d5..f0320637 100644 --- a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml +++ b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml @@ -7,7 +7,7 @@ - +
diff --git a/hs_err_pid2476.log b/hs_err_pid2476.log new file mode 100644 index 00000000..9e32d198 --- /dev/null +++ b/hs_err_pid2476.log @@ -0,0 +1,851 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 32744 bytes. Error detail: ChunkPool::allocate +# Possible reasons: +# The system is out of physical RAM or swap space +# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# JVM is running with Unscaled Compressed Oops mode in which the Java heap is +# placed in the first 4GB address space. The Java Heap base address is the +# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress +# to set the Java Heap base and to place the Java Heap above 4GB virtual address. +# This output file may be truncated or incomplete. +# +# Out of Memory Error (arena.cpp:79), pid=2476, tid=11360 +# +# JRE version: OpenJDK Runtime Environment Temurin-17.0.13+11 (17.0.13+11) (build 17.0.13+11) +# Java VM: OpenJDK 64-Bit Server VM Temurin-17.0.13+11 (17.0.13+11, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64) +# No core dump will be written. Minidumps are not enabled by default on client versions of Windows +# + +--------------- S U M M A R Y ------------ + +Command Line: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\lombok\lombok-1.18.34.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\Etudiant\AppData\Roaming\Code\User\workspaceStorage\d72c4c4d11149fdf8fe94e6dc181c0e4\redhat.java -Daether.dependencyCollector.impl=bf c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\Etudiant\AppData\Roaming\Code\User\globalStorage\redhat.java\1.38.2024120308\config_win -data c:\Users\Etudiant\AppData\Roaming\Code\User\workspaceStorage\d72c4c4d11149fdf8fe94e6dc181c0e4\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-14eeeadf8092bf9644c203aa7ae19dcb-sock + +Host: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, 8 cores, 7G, Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +Time: Wed Dec 4 15:49:16 2024 Paris, Madrid elapsed time: 69.665642 seconds (0d 0h 1m 9s) + +--------------- T H R E A D --------------- + +Current thread (0x0000017677bda4d0): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=11360, stack(0x0000006098800000,0x0000006098900000)] + + +Current CompileTask: +C2: 69665 14044 4 org.eclipse.jdt.internal.compiler.parser.Parser::consumeToken (2233 bytes) + +Stack: [0x0000006098800000,0x0000006098900000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x682a19] +V [jvm.dll+0x839538] +V [jvm.dll+0x83afe3] +V [jvm.dll+0x83b653] +V [jvm.dll+0x24704f] +V [jvm.dll+0xad03c] +V [jvm.dll+0xad4cc] +V [jvm.dll+0x36ab1d] +V [jvm.dll+0x56a066] +V [jvm.dll+0x32fc07] +V [jvm.dll+0x32f05a] +V [jvm.dll+0x21804f] +V [jvm.dll+0x21748f] +V [jvm.dll+0x1a3070] +V [jvm.dll+0x22788c] +V [jvm.dll+0x2259eb] +V [jvm.dll+0x7eec98] +V [jvm.dll+0x7e8ffc] +V [jvm.dll+0x6818f7] +C [ucrtbase.dll+0x21bb2] +C [KERNEL32.DLL+0x17034] +C [ntdll.dll+0x52651] + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x000001766b0abe00, length=69, elements={ +0x000001764fefab90, 0x0000017669044740, 0x0000017669047340, 0x0000017663d93c80, +0x0000017663d94900, 0x0000017663d95d20, 0x000001766907a930, 0x000001766907cb30, +0x000001766907e560, 0x0000017663d99720, 0x000001764ffb9650, 0x00000176693dd840, +0x000001766a828510, 0x000001766a8d1680, 0x000001766a8d0240, 0x000001766a8d1170, +0x000001766a8d25b0, 0x000001766a8d2ac0, 0x000001766a8d34e0, 0x000001766a8cfd30, +0x000001766b276200, 0x000001766b2752d0, 0x000001766b2757e0, 0x000001766b273e90, +0x000001766b272a50, 0x000001766b2743a0, 0x000001766b275cf0, 0x000001766b2748b0, +0x000001766b272f60, 0x000001766b273470, 0x000001766b273980, 0x000001766b274dc0, +0x000001766a8d0c60, 0x000001766a8d1b90, 0x000001766d73ef30, 0x000001766d73c6b0, +0x000001766d73daf0, 0x000001766d73b780, 0x000001766d739410, 0x000001766d73a340, +0x000001766d7389f0, 0x000001766d73c1a0, 0x000001766d73b270, 0x000001766d73d0d0, +0x000001766d73ea20, 0x000001766d739920, 0x000001766d737fd0, 0x000001766d7384e0, +0x000001766d739e30, 0x000001766d73a850, 0x000001766d73ad60, 0x000001766d73bc90, +0x000001766d73d5e0, 0x000001766a8d2fd0, 0x000001766aa4bcd0, 0x000001766aa4c6f0, +0x000001766aa4b2b0, 0x000001766aa4d620, 0x000001766aa503b0, 0x000001766aa508c0, +0x000001766aa4ea60, 0x000001766aa4f480, 0x000001766aa4f990, 0x000001766aa4a380, +0x000001766aa4a890, 0x000001766aa4ada0, 0x000001766d73e000, 0x000001766d73e510, +0x0000017677bda4d0 +} + +Java Threads: ( => current thread ) + 0x000001764fefab90 JavaThread "main" [_thread_blocked, id=4656, stack(0x0000006097300000,0x0000006097400000)] + 0x0000017669044740 JavaThread "Reference Handler" daemon [_thread_blocked, id=8208, stack(0x0000006097600000,0x0000006097700000)] + 0x0000017669047340 JavaThread "Finalizer" daemon [_thread_blocked, id=14256, stack(0x0000006097700000,0x0000006097800000)] + 0x0000017663d93c80 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9332, stack(0x0000006097800000,0x0000006097900000)] + 0x0000017663d94900 JavaThread "Attach Listener" daemon [_thread_blocked, id=13740, stack(0x0000006097900000,0x0000006097a00000)] + 0x0000017663d95d20 JavaThread "Service Thread" daemon [_thread_blocked, id=4664, stack(0x0000006097a00000,0x0000006097b00000)] + 0x000001766907a930 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=4288, stack(0x0000006097b00000,0x0000006097c00000)] + 0x000001766907cb30 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=6804, stack(0x0000006097c00000,0x0000006097d00000)] + 0x000001766907e560 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=13916, stack(0x0000006097d00000,0x0000006097e00000)] + 0x0000017663d99720 JavaThread "Sweeper thread" daemon [_thread_blocked, id=13524, stack(0x0000006097e00000,0x0000006097f00000)] + 0x000001764ffb9650 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=13572, stack(0x0000006097f00000,0x0000006098000000)] + 0x00000176693dd840 JavaThread "Notification Thread" daemon [_thread_blocked, id=9888, stack(0x0000006098100000,0x0000006098200000)] + 0x000001766a828510 JavaThread "Active Thread: Equinox Container: 8d3e75ee-bb9b-46f8-94f7-86f42cee4a71" [_thread_blocked, id=8496, stack(0x0000006098e00000,0x0000006098f00000)] + 0x000001766a8d1680 JavaThread "Framework Event Dispatcher: Equinox Container: 8d3e75ee-bb9b-46f8-94f7-86f42cee4a71" daemon [_thread_blocked, id=2728, stack(0x0000006098700000,0x0000006098800000)] + 0x000001766a8d0240 JavaThread "Start Level: Equinox Container: 8d3e75ee-bb9b-46f8-94f7-86f42cee4a71" daemon [_thread_blocked, id=12056, stack(0x0000006098f00000,0x0000006099000000)] + 0x000001766a8d1170 JavaThread "Refresh Thread: Equinox Container: 8d3e75ee-bb9b-46f8-94f7-86f42cee4a71" daemon [_thread_blocked, id=13708, stack(0x0000006099300000,0x0000006099400000)] + 0x000001766a8d25b0 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=9416, stack(0x0000006099000000,0x0000006099100000)] + 0x000001766a8d2ac0 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=6296, stack(0x0000006099600000,0x0000006099700000)] + 0x000001766a8d34e0 JavaThread "Worker-JM" [_thread_blocked, id=1568, stack(0x0000006099900000,0x0000006099a00000)] + 0x000001766a8cfd30 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=9068, stack(0x0000006099a00000,0x0000006099b00000)] + 0x000001766b276200 JavaThread "Worker-0" [_thread_blocked, id=5944, stack(0x0000006099800000,0x0000006099900000)] + 0x000001766b2752d0 JavaThread "Worker-1" [_thread_blocked, id=6008, stack(0x0000006099b00000,0x0000006099c00000)] + 0x000001766b2757e0 JavaThread "Java indexing" daemon [_thread_blocked, id=4932, stack(0x0000006098a00000,0x0000006098b00000)] + 0x000001766b273e90 JavaThread "Worker-2" [_thread_blocked, id=7956, stack(0x0000006098b00000,0x0000006098c00000)] + 0x000001766b272a50 JavaThread "Thread-2" daemon [_thread_in_native, id=6272, stack(0x0000006099400000,0x0000006099500000)] + 0x000001766b2743a0 JavaThread "Thread-3" daemon [_thread_in_native, id=3388, stack(0x0000006099500000,0x0000006099600000)] + 0x000001766b275cf0 JavaThread "Thread-4" daemon [_thread_in_native, id=7960, stack(0x0000006099c00000,0x0000006099d00000)] + 0x000001766b2748b0 JavaThread "Thread-5" daemon [_thread_in_native, id=3920, stack(0x0000006099d00000,0x0000006099e00000)] + 0x000001766b272f60 JavaThread "Thread-6" daemon [_thread_in_native, id=696, stack(0x0000006099e00000,0x0000006099f00000)] + 0x000001766b273470 JavaThread "Thread-7" daemon [_thread_in_native, id=9660, stack(0x0000006099f00000,0x000000609a000000)] + 0x000001766b273980 JavaThread "Thread-8" daemon [_thread_in_native, id=6352, stack(0x000000609a000000,0x000000609a100000)] + 0x000001766b274dc0 JavaThread "Thread-9" daemon [_thread_in_native, id=11896, stack(0x000000609a100000,0x000000609a200000)] + 0x000001766a8d0c60 JavaThread "Thread-10" daemon [_thread_in_native, id=8304, stack(0x000000609a200000,0x000000609a300000)] + 0x000001766a8d1b90 JavaThread "pool-2-thread-1" [_thread_blocked, id=11608, stack(0x000000609a300000,0x000000609a400000)] + 0x000001766d73ef30 JavaThread "Worker-3" [_thread_blocked, id=8576, stack(0x000000609a400000,0x000000609a500000)] + 0x000001766d73c6b0 JavaThread "Worker-4" [_thread_blocked, id=7300, stack(0x000000609a500000,0x000000609a600000)] + 0x000001766d73daf0 JavaThread "Worker-5" [_thread_blocked, id=13344, stack(0x000000609a600000,0x000000609a700000)] + 0x000001766d73b780 JavaThread "WorkspaceEventsHandler" [_thread_blocked, id=13180, stack(0x000000609a700000,0x000000609a800000)] + 0x000001766d739410 JavaThread "pool-1-thread-1" [_thread_blocked, id=1928, stack(0x000000609a800000,0x000000609a900000)] + 0x000001766d73a340 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=8560, stack(0x000000609aa00000,0x000000609ab00000)] + 0x000001766d7389f0 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=6604, stack(0x000000609ab00000,0x000000609ac00000)] + 0x000001766d73c1a0 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=11964, stack(0x000000609ac00000,0x000000609ad00000)] + 0x000001766d73b270 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=2760, stack(0x000000609ad00000,0x000000609ae00000)] + 0x000001766d73d0d0 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=10496, stack(0x000000609ae00000,0x000000609af00000)] + 0x000001766d73ea20 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=13684, stack(0x000000609af00000,0x000000609b000000)] + 0x000001766d739920 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=11684, stack(0x000000609b000000,0x000000609b100000)] + 0x000001766d737fd0 JavaThread "LocalFile Deleter" daemon [_thread_blocked, id=7332, stack(0x000000609b100000,0x000000609b200000)] + 0x000001766d7384e0 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=1584, stack(0x000000609b200000,0x000000609b300000)] + 0x000001766d739e30 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=6680, stack(0x000000609b300000,0x000000609b400000)] + 0x000001766d73a850 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=10224, stack(0x000000609b400000,0x000000609b500000)] + 0x000001766d73ad60 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=10356, stack(0x000000609b500000,0x000000609b600000)] + 0x000001766d73bc90 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=2156, stack(0x000000609b600000,0x000000609b700000)] + 0x000001766d73d5e0 JavaThread "Compiler Source File Reader" daemon [_thread_blocked, id=5556, stack(0x000000609b700000,0x000000609b800000)] + 0x000001766a8d2fd0 JavaThread "Compiler Processing Task" daemon [_thread_blocked, id=3480, stack(0x0000006099700000,0x0000006099800000)] + 0x000001766aa4bcd0 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=10460, stack(0x000000609b900000,0x000000609ba00000)] + 0x000001766aa4c6f0 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=14084, stack(0x000000609ba00000,0x000000609bb00000)] + 0x000001766aa4b2b0 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=11128, stack(0x000000609bb00000,0x000000609bc00000)] + 0x000001766aa4d620 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=2316, stack(0x000000609bc00000,0x000000609bd00000)] + 0x000001766aa503b0 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=8952, stack(0x000000609bd00000,0x000000609be00000)] + 0x000001766aa508c0 JavaThread "Compiler Class File Writer" daemon [_thread_blocked, id=2736, stack(0x000000609be00000,0x000000609bf00000)] + 0x000001766aa4ea60 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_blocked, id=9036, stack(0x000000609bf00000,0x000000609c000000)] + 0x000001766aa4f480 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=1312, stack(0x000000609c000000,0x000000609c100000)] + 0x000001766aa4f990 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=2444, stack(0x000000609c100000,0x000000609c200000)] + 0x000001766aa4a380 JavaThread "ForkJoinPool.commonPool-worker-4" daemon [_thread_blocked, id=5204, stack(0x000000609c200000,0x000000609c300000)] + 0x000001766aa4a890 JavaThread "ForkJoinPool.commonPool-worker-5" daemon [_thread_blocked, id=10524, stack(0x000000609c300000,0x000000609c400000)] + 0x000001766aa4ada0 JavaThread "ForkJoinPool.commonPool-worker-6" daemon [_thread_blocked, id=9876, stack(0x000000609cc00000,0x000000609cd00000)] + 0x000001766d73e000 JavaThread "ForkJoinPool.commonPool-worker-7" daemon [_thread_blocked, id=6292, stack(0x000000609cd00000,0x000000609ce00000)] + 0x000001766d73e510 JavaThread "Cleaner-0" daemon [_thread_blocked, id=7368, stack(0x000000609b800000,0x000000609b900000)] +=>0x0000017677bda4d0 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=11360, stack(0x0000006098800000,0x0000006098900000)] + +Other Threads: + 0x0000017669030c20 VMThread "VM Thread" [stack: 0x0000006097500000,0x0000006097600000] [id=14304] + 0x000001766a088780 WatcherThread [stack: 0x0000006098200000,0x0000006098300000] [id=1308] + 0x000001764ff08e50 GCTaskThread "GC Thread#0" [stack: 0x0000006097400000,0x0000006097500000] [id=3304] + 0x000001766a087e70 GCTaskThread "GC Thread#1" [stack: 0x0000006098000000,0x0000006098100000] [id=12352] + 0x000001766a7eec50 GCTaskThread "GC Thread#2" [stack: 0x0000006098300000,0x0000006098400000] [id=13136] + 0x00000176693b2860 GCTaskThread "GC Thread#3" [stack: 0x0000006098400000,0x0000006098500000] [id=7516] + 0x00000176693b2b20 GCTaskThread "GC Thread#4" [stack: 0x0000006098500000,0x0000006098600000] [id=3140] + 0x00000176693b2de0 GCTaskThread "GC Thread#5" [stack: 0x0000006098600000,0x0000006098700000] [id=3120] + 0x000001766a429ad0 GCTaskThread "GC Thread#6" [stack: 0x0000006099100000,0x0000006099200000] [id=12212] + 0x000001766a429d90 GCTaskThread "GC Thread#7" [stack: 0x0000006099200000,0x0000006099300000] [id=988] + +Threads with active compile tasks: +C2 CompilerThread0 69721 14039 4 org.eclipse.jdt.internal.compiler.parser.Scanner::getNextToken (166 bytes) +C2 CompilerThread1 69721 14044 4 org.eclipse.jdt.internal.compiler.parser.Parser::consumeToken (2233 bytes) + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit + +CDS archive(s) not mapped +Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824 +Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000 + +GC Precious Log: + CPUs: 8 total, 8 available + Memory: 8067M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (32-bit) + Alignments: Space 512K, Generation 512K, Heap 2M + Heap Min Capacity: 100M + Heap Initial Capacity: 100M + Heap Max Capacity: 1G + Pre-touch: Disabled + Parallel Workers: 8 + +Heap: + PSYoungGen total 7168K, used 2833K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 46% used [0x00000000eab00000,0x00000000eacdc418,0x00000000eaf00000) + from space 3072K, 30% used [0x00000000eb880000,0x00000000eb968020,0x00000000ebb80000) + to space 1536K, 0% used [0x00000000ebd00000,0x00000000ebd00000,0x00000000ebe80000) + ParOldGen total 325632K, used 251280K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 77% used [0x00000000c0000000,0x00000000cf5640e0,0x00000000d3e00000) + Metaspace used 82789K, committed 84352K, reserved 1179648K + class space used 8796K, committed 9472K, reserved 1048576K + +Card table byte_map: [0x000001764f8a0000,0x000001764fab0000] _byte_map_base: 0x000001764f2a0000 + +Marking Bits: (ParMarkBitMap*) 0x00007ffe486b6940 + Begin Bits: [0x0000017661ba0000, 0x0000017662ba0000) + End Bits: [0x0000017662ba0000, 0x0000017663ba0000) + +Polling page: 0x000001764de60000 + +Metaspace: + +Usage: + Non-class: 72.26 MB used. + Class: 8.59 MB used. + Both: 80.85 MB used. + +Virtual space: + Non-class space: 128.00 MB reserved, 73.12 MB ( 57%) committed, 2 nodes. + Class space: 1.00 GB reserved, 9.25 MB ( <1%) committed, 1 nodes. + Both: 1.12 GB reserved, 82.38 MB ( 7%) committed. + +Chunk freelists: + Non-Class: 6.58 MB + Class: 6.72 MB + Both: 13.30 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 135.88 MB +CDS: off +MetaspaceReclaimPolicy: balanced + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - new_chunks_are_fully_committed: 0. + - uncommit_free_chunks: 1. + - use_allocation_guard: 0. + - handle_deallocations: 1. + + +Internal statistics: + +num_allocs_failed_limit: 9. +num_arena_births: 1094. +num_arena_deaths: 30. +num_vsnodes_births: 3. +num_vsnodes_deaths: 0. +num_space_committed: 1318. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 47. +num_chunks_taken_from_freelist: 4700. +num_chunk_merges: 21. +num_chunk_splits: 2791. +num_chunks_enlarged: 1416. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=120000Kb used=8173Kb max_used=8181Kb free=111827Kb + bounds [0x000001765a670000, 0x000001765ae80000, 0x0000017661ba0000] +CodeHeap 'profiled nmethods': size=120000Kb used=21196Kb max_used=21361Kb free=98803Kb + bounds [0x0000017652ba0000, 0x0000017654090000, 0x000001765a0d0000] +CodeHeap 'non-nmethods': size=5760Kb used=1446Kb max_used=1572Kb free=4313Kb + bounds [0x000001765a0d0000, 0x000001765a340000, 0x000001765a670000] + total_blobs=11618 nmethods=10818 adapters=713 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 69.435 Thread 0x000001766907e560 14093 3 org.eclipse.jdt.internal.core.ImportDeclarationElementInfo::getModifiers (5 bytes) +Event: 69.435 Thread 0x000001766907e560 nmethod 14093 0x0000017652cee390 code [0x0000017652cee520, 0x0000017652cee638] +Event: 69.435 Thread 0x000001766907e560 14094 3 org.eclipse.jdt.internal.core.SourceRefElement::getAnnotations (13 bytes) +Event: 69.435 Thread 0x000001766907e560 nmethod 14094 0x0000017652d1d010 code [0x0000017652d1d1c0, 0x0000017652d1d468] +Event: 69.435 Thread 0x000001766907e560 14095 3 org.eclipse.jdt.internal.core.JavaElement::getSourceMapper (8 bytes) +Event: 69.435 Thread 0x000001766907e560 nmethod 14095 0x0000017652c0bb90 code [0x0000017652c0bd40, 0x0000017652c0bfa8] +Event: 69.435 Thread 0x000001766907e560 14097 3 org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding::isSealed (15 bytes) +Event: 69.435 Thread 0x000001766907e560 nmethod 14097 0x0000017652d40590 code [0x0000017652d40720, 0x0000017652d40898] +Event: 69.435 Thread 0x000001766907e560 14098 1 org.eclipse.jdt.internal.compiler.lookup.Binding::isTaggedRepeatable (2 bytes) +Event: 69.436 Thread 0x000001766907e560 nmethod 14098 0x000001765ac21310 code [0x000001765ac214a0, 0x000001765ac21578] +Event: 69.436 Thread 0x000001766907e560 14100 ! 3 org.eclipse.jdt.internal.compiler.lookup.Scope::getBinding (1578 bytes) +Event: 69.452 Thread 0x000001766907e560 nmethod 14100 0x000001765407d390 code [0x000001765407dbe0, 0x0000017654084798] +Event: 69.452 Thread 0x000001766907e560 14102 3 java.util.concurrent.CompletableFuture::postFire (69 bytes) +Event: 69.453 Thread 0x000001766907e560 nmethod 14102 0x0000017652bcb690 code [0x0000017652bcb860, 0x0000017652bcbc68] +Event: 69.453 Thread 0x000001766907e560 14101 3 java.nio.charset.Charset::lookup2 (78 bytes) +Event: 69.453 Thread 0x000001766907e560 nmethod 14101 0x0000017652c66b10 code [0x0000017652c66d60, 0x0000017652c67748] +Event: 69.472 Thread 0x0000017677bda4d0 nmethod 14041 0x000001765ae6d610 code [0x000001765ae6df80, 0x000001765ae72540] +Event: 69.473 Thread 0x0000017677bda4d0 14052 4 org.eclipse.jdt.internal.compiler.util.HashtableOfObjectToInt::put (104 bytes) +Event: 69.502 Thread 0x0000017677bda4d0 nmethod 14052 0x000001765ac87890 code [0x000001765ac87ac0, 0x000001765ac889a8] +Event: 69.502 Thread 0x0000017677bda4d0 14044 4 org.eclipse.jdt.internal.compiler.parser.Parser::consumeToken (2233 bytes) + +GC Heap History (20 events): +Event: 62.394 GC heap before +{Heap before GC invocations=206 (full 14): + PSYoungGen total 22528K, used 2048K [0x00000000eab00000, 0x00000000ed580000, 0x0000000100000000) + eden space 2048K, 100% used [0x00000000eab00000,0x00000000ead00000,0x00000000ead00000) + from space 20480K, 0% used [0x00000000ead00000,0x00000000ead00000,0x00000000ec100000) + to space 20480K, 0% used [0x00000000ec180000,0x00000000ec180000,0x00000000ed580000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81891K, committed 83456K, reserved 1179648K + class space used 8714K, committed 9408K, reserved 1048576K +} +Event: 62.397 GC heap after +{Heap after GC invocations=206 (full 14): + PSYoungGen total 3072K, used 544K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000) + eden space 2048K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ead00000) + from space 1024K, 53% used [0x00000000ec180000,0x00000000ec208038,0x00000000ec280000) + to space 7680K, 0% used [0x00000000eb380000,0x00000000eb380000,0x00000000ebb00000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81891K, committed 83456K, reserved 1179648K + class space used 8714K, committed 9408K, reserved 1048576K +} +Event: 62.432 GC heap before +{Heap before GC invocations=207 (full 14): + PSYoungGen total 3072K, used 2592K [0x00000000eab00000, 0x00000000ec280000, 0x0000000100000000) + eden space 2048K, 100% used [0x00000000eab00000,0x00000000ead00000,0x00000000ead00000) + from space 1024K, 53% used [0x00000000ec180000,0x00000000ec208038,0x00000000ec280000) + to space 7680K, 0% used [0x00000000eb380000,0x00000000eb380000,0x00000000ebb00000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81907K, committed 83456K, reserved 1179648K + class space used 8717K, committed 9408K, reserved 1048576K +} +Event: 62.434 GC heap after +{Heap after GC invocations=207 (full 14): + PSYoungGen total 9728K, used 544K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000) + eden space 2048K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ead00000) + from space 7680K, 7% used [0x00000000eb380000,0x00000000eb408010,0x00000000ebb00000) + to space 2048K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec200000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81907K, committed 83456K, reserved 1179648K + class space used 8717K, committed 9408K, reserved 1048576K +} +Event: 62.460 GC heap before +{Heap before GC invocations=208 (full 14): + PSYoungGen total 9728K, used 2592K [0x00000000eab00000, 0x00000000ec200000, 0x0000000100000000) + eden space 2048K, 100% used [0x00000000eab00000,0x00000000ead00000,0x00000000ead00000) + from space 7680K, 7% used [0x00000000eb380000,0x00000000eb408010,0x00000000ebb00000) + to space 2048K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec200000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81937K, committed 83520K, reserved 1179648K + class space used 8719K, committed 9408K, reserved 1048576K +} +Event: 62.462 GC heap after +{Heap after GC invocations=208 (full 14): + PSYoungGen total 3072K, used 864K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000) + eden space 2048K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ead00000) + from space 1024K, 84% used [0x00000000ec000000,0x00000000ec0d8010,0x00000000ec100000) + to space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81937K, committed 83520K, reserved 1179648K + class space used 8719K, committed 9408K, reserved 1048576K +} +Event: 62.484 GC heap before +{Heap before GC invocations=209 (full 14): + PSYoungGen total 3072K, used 2912K [0x00000000eab00000, 0x00000000ec100000, 0x0000000100000000) + eden space 2048K, 100% used [0x00000000eab00000,0x00000000ead00000,0x00000000ead00000) + from space 1024K, 84% used [0x00000000ec000000,0x00000000ec0d8010,0x00000000ec100000) + to space 1024K, 0% used [0x00000000ebf00000,0x00000000ebf00000,0x00000000ec000000) + ParOldGen total 325632K, used 246304K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf088070,0x00000000d3e00000) + Metaspace used 81976K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 62.486 GC heap after +{Heap after GC invocations=209 (full 14): + PSYoungGen total 3584K, used 997K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 2560K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ead80000) + from space 1024K, 97% used [0x00000000ebf00000,0x00000000ebff9770,0x00000000ec000000) + to space 512K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec080000) + ParOldGen total 325632K, used 246792K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf102070,0x00000000d3e00000) + Metaspace used 81976K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 62.499 GC heap before +{Heap before GC invocations=210 (full 14): + PSYoungGen total 3584K, used 3557K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 2560K, 100% used [0x00000000eab00000,0x00000000ead80000,0x00000000ead80000) + from space 1024K, 97% used [0x00000000ebf00000,0x00000000ebff9770,0x00000000ec000000) + to space 512K, 0% used [0x00000000ec000000,0x00000000ec000000,0x00000000ec080000) + ParOldGen total 325632K, used 246792K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 75% used [0x00000000c0000000,0x00000000cf102070,0x00000000d3e00000) + Metaspace used 81977K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 62.502 GC heap after +{Heap after GC invocations=210 (full 14): + PSYoungGen total 3584K, used 512K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 3072K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eae00000) + from space 512K, 100% used [0x00000000ec000000,0x00000000ec080000,0x00000000ec080000) + to space 3584K, 0% used [0x00000000eb980000,0x00000000eb980000,0x00000000ebd00000) + ParOldGen total 325632K, used 249269K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36d7c0,0x00000000d3e00000) + Metaspace used 81977K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 62.541 GC heap before +{Heap before GC invocations=211 (full 14): + PSYoungGen total 3584K, used 3584K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 3072K, 100% used [0x00000000eab00000,0x00000000eae00000,0x00000000eae00000) + from space 512K, 100% used [0x00000000ec000000,0x00000000ec080000,0x00000000ec080000) + to space 3584K, 0% used [0x00000000eb980000,0x00000000eb980000,0x00000000ebd00000) + ParOldGen total 325632K, used 249269K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36d7c0,0x00000000d3e00000) + Metaspace used 81987K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 62.545 GC heap after +{Heap after GC invocations=211 (full 14): + PSYoungGen total 7168K, used 1984K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 3584K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eae80000) + from space 3584K, 55% used [0x00000000eb980000,0x00000000ebb70000,0x00000000ebd00000) + to space 2560K, 0% used [0x00000000ebe00000,0x00000000ebe00000,0x00000000ec080000) + ParOldGen total 325632K, used 249269K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36d7c0,0x00000000d3e00000) + Metaspace used 81987K, committed 83520K, reserved 1179648K + class space used 8723K, committed 9408K, reserved 1048576K +} +Event: 64.003 GC heap before +{Heap before GC invocations=212 (full 14): + PSYoungGen total 7168K, used 5568K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 3584K, 100% used [0x00000000eab00000,0x00000000eae80000,0x00000000eae80000) + from space 3584K, 55% used [0x00000000eb980000,0x00000000ebb70000,0x00000000ebd00000) + to space 2560K, 0% used [0x00000000ebe00000,0x00000000ebe00000,0x00000000ec080000) + ParOldGen total 325632K, used 249269K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36d7c0,0x00000000d3e00000) + Metaspace used 82089K, committed 83648K, reserved 1179648K + class space used 8731K, committed 9408K, reserved 1048576K +} +Event: 64.008 GC heap after +{Heap after GC invocations=212 (full 14): + PSYoungGen total 6656K, used 2448K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 4096K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eaf00000) + from space 2560K, 95% used [0x00000000ebe00000,0x00000000ec064010,0x00000000ec080000) + to space 2560K, 0% used [0x00000000ebb80000,0x00000000ebb80000,0x00000000ebe00000) + ParOldGen total 325632K, used 249277K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36f7c0,0x00000000d3e00000) + Metaspace used 82089K, committed 83648K, reserved 1179648K + class space used 8731K, committed 9408K, reserved 1048576K +} +Event: 69.228 GC heap before +{Heap before GC invocations=213 (full 14): + PSYoungGen total 6656K, used 6544K [0x00000000eab00000, 0x00000000ec080000, 0x0000000100000000) + eden space 4096K, 100% used [0x00000000eab00000,0x00000000eaf00000,0x00000000eaf00000) + from space 2560K, 95% used [0x00000000ebe00000,0x00000000ec064010,0x00000000ec080000) + to space 2560K, 0% used [0x00000000ebb80000,0x00000000ebb80000,0x00000000ebe00000) + ParOldGen total 325632K, used 249277K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf36f7c0,0x00000000d3e00000) + Metaspace used 82132K, committed 83712K, reserved 1179648K + class space used 8731K, committed 9408K, reserved 1048576K +} +Event: 69.231 GC heap after +{Heap after GC invocations=213 (full 14): + PSYoungGen total 6656K, used 2112K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eaf00000) + from space 2560K, 82% used [0x00000000ebb80000,0x00000000ebd90020,0x00000000ebe00000) + to space 512K, 0% used [0x00000000ebe00000,0x00000000ebe00000,0x00000000ebe80000) + ParOldGen total 325632K, used 249285K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf3717c0,0x00000000d3e00000) + Metaspace used 82132K, committed 83712K, reserved 1179648K + class space used 8731K, committed 9408K, reserved 1048576K +} +Event: 69.310 GC heap before +{Heap before GC invocations=214 (full 14): + PSYoungGen total 6656K, used 6208K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 100% used [0x00000000eab00000,0x00000000eaf00000,0x00000000eaf00000) + from space 2560K, 82% used [0x00000000ebb80000,0x00000000ebd90020,0x00000000ebe00000) + to space 512K, 0% used [0x00000000ebe00000,0x00000000ebe00000,0x00000000ebe80000) + ParOldGen total 325632K, used 249285K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 76% used [0x00000000c0000000,0x00000000cf3717c0,0x00000000d3e00000) + Metaspace used 82416K, committed 83968K, reserved 1179648K + class space used 8757K, committed 9408K, reserved 1048576K +} +Event: 69.313 GC heap after +{Heap after GC invocations=214 (full 14): + PSYoungGen total 4608K, used 512K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eaf00000) + from space 512K, 100% used [0x00000000ebe00000,0x00000000ebe80000,0x00000000ebe80000) + to space 3072K, 0% used [0x00000000eb880000,0x00000000eb880000,0x00000000ebb80000) + ParOldGen total 325632K, used 251272K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 77% used [0x00000000c0000000,0x00000000cf5620e0,0x00000000d3e00000) + Metaspace used 82416K, committed 83968K, reserved 1179648K + class space used 8757K, committed 9408K, reserved 1048576K +} +Event: 69.418 GC heap before +{Heap before GC invocations=215 (full 14): + PSYoungGen total 4608K, used 4608K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 100% used [0x00000000eab00000,0x00000000eaf00000,0x00000000eaf00000) + from space 512K, 100% used [0x00000000ebe00000,0x00000000ebe80000,0x00000000ebe80000) + to space 3072K, 0% used [0x00000000eb880000,0x00000000eb880000,0x00000000ebb80000) + ParOldGen total 325632K, used 251272K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 77% used [0x00000000c0000000,0x00000000cf5620e0,0x00000000d3e00000) + Metaspace used 82774K, committed 84352K, reserved 1179648K + class space used 8796K, committed 9472K, reserved 1048576K +} +Event: 69.420 GC heap after +{Heap after GC invocations=215 (full 14): + PSYoungGen total 7168K, used 928K [0x00000000eab00000, 0x00000000ebe80000, 0x0000000100000000) + eden space 4096K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000eaf00000) + from space 3072K, 30% used [0x00000000eb880000,0x00000000eb968020,0x00000000ebb80000) + to space 1536K, 0% used [0x00000000ebd00000,0x00000000ebd00000,0x00000000ebe80000) + ParOldGen total 325632K, used 251280K [0x00000000c0000000, 0x00000000d3e00000, 0x00000000eab00000) + object space 325632K, 77% used [0x00000000c0000000,0x00000000cf5640e0,0x00000000d3e00000) + Metaspace used 82774K, committed 84352K, reserved 1179648K + class space used 8796K, committed 9472K, reserved 1048576K +} + +Dll operation events (12 events): +Event: 0.167 Loaded shared library c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\java.dll +Event: 0.549 Loaded shared library c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\zip.dll +Event: 0.553 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\instrument.dll +Event: 0.580 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\net.dll +Event: 0.589 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\nio.dll +Event: 0.598 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\zip.dll +Event: 0.620 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\jimage.dll +Event: 0.706 Loaded shared library c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\verify.dll +Event: 10.998 Loaded shared library C:\Users\Etudiant\AppData\Roaming\Code\User\globalStorage\redhat.java\1.38.2024120308\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll +Event: 20.936 Loaded shared library C:\Users\Etudiant\AppData\Local\Temp\jna--983739012\jna16136454296790665935.dll +Event: 25.191 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\sunmscapi.dll +Event: 25.316 Loaded shared library C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\extnet.dll + +Deoptimization events (20 events): +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001765ae146a0 relative=0x0000000000000ae0 +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001765ae146a0 method=org.eclipse.jdt.internal.compiler.parser.Parser.fetchNextToken()I @ 4 c2 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT PACKING pc=0x000001765ae146a0 sp=0x000000609ccfead0 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT UNPACKING pc=0x000001765a1266a3 sp=0x000000609ccfea10 mode 2 +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001765ae574a0 relative=0x0000000000001d60 +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001765ae574a0 method=org.eclipse.jdt.internal.compiler.parser.Scanner.jumpOverMethodBody()V @ 2409 c2 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT PACKING pc=0x000001765ae574a0 sp=0x000000609ccfe8a0 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT UNPACKING pc=0x000001765a1266a3 sp=0x000000609ccfe840 mode 2 +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001765ae574a0 relative=0x0000000000001d60 +Event: 69.417 Thread 0x000001766aa4ada0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001765ae574a0 method=org.eclipse.jdt.internal.compiler.parser.Scanner.jumpOverMethodBody()V @ 2409 c2 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT PACKING pc=0x000001765ae574a0 sp=0x000000609ccfe8a0 +Event: 69.417 Thread 0x000001766aa4ada0 DEOPT UNPACKING pc=0x000001765a1266a3 sp=0x000000609ccfe840 mode 2 +Event: 69.436 Thread 0x000001766aa4ada0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001765ac0dab0 relative=0x0000000000000670 +Event: 69.436 Thread 0x000001766aa4ada0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001765ac0dab0 method=org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.storeAnnotationHolder(Lorg/eclipse/jdt/internal/compiler/lookup/Binding;Lorg/eclipse/jdt/internal/compiler/look +Event: 69.436 Thread 0x000001766aa4ada0 DEOPT PACKING pc=0x000001765ac0dab0 sp=0x000000609ccfe610 +Event: 69.436 Thread 0x000001766aa4ada0 DEOPT UNPACKING pc=0x000001765a1266a3 sp=0x000000609ccfe5c8 mode 2 +Event: 69.436 Thread 0x000001766aa4ada0 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001765ac0dab0 relative=0x0000000000000670 +Event: 69.436 Thread 0x000001766aa4ada0 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001765ac0dab0 method=org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding.storeAnnotationHolder(Lorg/eclipse/jdt/internal/compiler/lookup/Binding;Lorg/eclipse/jdt/internal/compiler/look +Event: 69.437 Thread 0x000001766aa4ada0 DEOPT PACKING pc=0x000001765ac0dab0 sp=0x000000609ccfe610 +Event: 69.437 Thread 0x000001766aa4ada0 DEOPT UNPACKING pc=0x000001765a1266a3 sp=0x000000609ccfe5c8 mode 2 + +Classes loaded (20 events): +Event: 37.577 Loading class java/util/stream/ReduceOps$2ReducingSink +Event: 37.577 Loading class java/util/stream/ReduceOps$2ReducingSink done +Event: 37.705 Loading class jdk/internal/ref/CleanerImpl$InnocuousThreadFactory +Event: 37.705 Loading class jdk/internal/ref/CleanerImpl$InnocuousThreadFactory done +Event: 50.322 Loading class java/util/stream/DistinctOps +Event: 50.323 Loading class java/util/stream/DistinctOps done +Event: 50.323 Loading class java/util/stream/DistinctOps$1 +Event: 50.323 Loading class java/util/stream/DistinctOps$1 done +Event: 50.327 Loading class java/util/stream/DistinctOps$1$2 +Event: 50.328 Loading class java/util/stream/DistinctOps$1$2 done +Event: 50.360 Loading class org/xml/sax/SAXNotRecognizedException +Event: 50.360 Loading class org/xml/sax/SAXNotRecognizedException done +Event: 50.360 Loading class org/xml/sax/SAXNotSupportedException +Event: 50.360 Loading class org/xml/sax/SAXNotSupportedException done +Event: 50.361 Loading class com/sun/org/apache/xerces/internal/util/URI +Event: 50.363 Loading class com/sun/org/apache/xerces/internal/util/URI done +Event: 50.364 Loading class com/sun/org/apache/xerces/internal/xni/XNIException +Event: 50.364 Loading class com/sun/org/apache/xerces/internal/xni/XNIException done +Event: 50.364 Loading class com/sun/org/apache/xerces/internal/xni/parser/XMLParseException +Event: 50.364 Loading class com/sun/org/apache/xerces/internal/xni/parser/XMLParseException done + +Classes unloaded (15 events): +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025c000 'java/lang/invoke/LambdaForm$MH+0x000000010025c000' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025bc00 'java/lang/invoke/LambdaForm$MH+0x000000010025bc00' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025b800 'java/lang/invoke/LambdaForm$MH+0x000000010025b800' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025b400 'java/lang/invoke/LambdaForm$MH+0x000000010025b400' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025b000 'java/lang/invoke/LambdaForm$BMH+0x000000010025b000' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x000000010025ac00 'java/lang/invoke/LambdaForm$DMH+0x000000010025ac00' +Event: 22.518 Thread 0x0000017669030c20 Unloading class 0x0000000100258400 'java/lang/invoke/LambdaForm$DMH+0x0000000100258400' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x00000001007a4800 'java/lang/invoke/LambdaForm$MH+0x00000001007a4800' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x00000001007a4c00 'java/lang/invoke/LambdaForm$MH+0x00000001007a4c00' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x00000001007a4400 'java/lang/invoke/LambdaForm$MH+0x00000001007a4400' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x000000010079d400 'java/lang/invoke/LambdaForm$DMH+0x000000010079d400' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x000000010079d000 'java/lang/invoke/LambdaForm$DMH+0x000000010079d000' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x000000010079cc00 'java/lang/invoke/LambdaForm$DMH+0x000000010079cc00' +Event: 30.478 Thread 0x0000017669030c20 Unloading class 0x000000010079c800 'java/lang/invoke/LambdaForm$DMH+0x000000010079c800' +Event: 37.155 Thread 0x0000017669030c20 Unloading class 0x000000010085c000 'java/lang/invoke/LambdaForm$DMH+0x000000010085c000' + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 44.617 Thread 0x000001766b2757e0 Exception (0x00000000eb1ec8d0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 44.634 Thread 0x000001766b2757e0 Exception (0x00000000eab0c0e0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 44.825 Thread 0x000001766b2757e0 Exception (0x00000000ead2c230) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 44.833 Thread 0x000001766b2757e0 Exception (0x00000000ead35da8) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 44.985 Thread 0x000001766b2757e0 Exception (0x00000000eb114fe0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 44.992 Thread 0x000001766b2757e0 Exception (0x00000000eb11eaa0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.056 Thread 0x000001766b2757e0 Exception (0x00000000eaf203c0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.093 Thread 0x000001766b2757e0 Implicit null exception at 0x000001765a87a8c0 to 0x000001765a87b485 +Event: 45.361 Thread 0x000001766b2757e0 Exception (0x00000000eb241c48) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.397 Thread 0x000001766b2757e0 Exception (0x00000000eb4cdd40) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.492 Thread 0x000001766b2757e0 Exception (0x00000000eb5c95b8) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.511 Thread 0x000001766b2757e0 Exception (0x00000000eab62010) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.574 Thread 0x000001766b2757e0 Exception (0x00000000eb33f140) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.594 Thread 0x000001766b2757e0 Exception (0x00000000eb3f1bb8) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 45.652 Thread 0x000001766b2757e0 Exception (0x00000000eada3b48) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 62.048 Thread 0x000001766b2757e0 Implicit null exception at 0x000001765ad04fa9 to 0x000001765ad070a8 +Event: 62.565 Thread 0x000001766b2757e0 Exception (0x00000000eabb63d0) +thrown [s\src\hotspot\share\prims\jni.cpp, line 516] +Event: 62.594 Thread 0x000001766b2757e0 Implicit null exception at 0x000001765ab25233 to 0x000001765ab280c8 +Event: 69.316 Thread 0x000001766aa4ada0 Implicit null exception at 0x000001765ac14296 to 0x000001765ac14d10 +Event: 69.317 Thread 0x000001766aa4ada0 Implicit null exception at 0x000001765ab1bfa2 to 0x000001765ab1c170 + +VM Operations (20 events): +Event: 62.498 Executing VM operation: ParallelGCFailedAllocation +Event: 62.502 Executing VM operation: ParallelGCFailedAllocation done +Event: 62.541 Executing VM operation: ParallelGCFailedAllocation +Event: 62.545 Executing VM operation: ParallelGCFailedAllocation done +Event: 63.545 Executing VM operation: Cleanup +Event: 63.545 Executing VM operation: Cleanup done +Event: 64.002 Executing VM operation: ParallelGCFailedAllocation +Event: 64.009 Executing VM operation: ParallelGCFailedAllocation done +Event: 65.014 Executing VM operation: Cleanup +Event: 65.015 Executing VM operation: Cleanup done +Event: 69.228 Executing VM operation: ParallelGCFailedAllocation +Event: 69.231 Executing VM operation: ParallelGCFailedAllocation done +Event: 69.302 Executing VM operation: HandshakeAllThreads +Event: 69.302 Executing VM operation: HandshakeAllThreads done +Event: 69.310 Executing VM operation: ParallelGCFailedAllocation +Event: 69.313 Executing VM operation: ParallelGCFailedAllocation done +Event: 69.418 Executing VM operation: ParallelGCFailedAllocation +Event: 69.420 Executing VM operation: ParallelGCFailedAllocation done +Event: 69.428 Executing VM operation: HandshakeAllThreads +Event: 69.428 Executing VM operation: HandshakeAllThreads done + +Memory protections (0 events): +No events + +Nmethod flushes (20 events): +Event: 69.448 Thread 0x0000017663d99720 flushing nmethod 0x0000017653587990 +Event: 69.448 Thread 0x0000017663d99720 flushing nmethod 0x00000176535ff990 +Event: 69.449 Thread 0x0000017663d99720 flushing nmethod 0x000001765364cb90 +Event: 69.449 Thread 0x0000017663d99720 flushing nmethod 0x0000017653652b10 +Event: 69.449 Thread 0x0000017663d99720 flushing nmethod 0x000001765369a690 +Event: 69.449 Thread 0x0000017663d99720 flushing nmethod 0x000001765369aa10 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x00000176537f0790 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x0000017653800590 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x000001765380d010 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x0000017653823c10 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x000001765383c090 +Event: 69.451 Thread 0x0000017663d99720 flushing nmethod 0x0000017653877790 +Event: 69.453 Thread 0x0000017663d99720 flushing nmethod 0x000001765391e390 +Event: 69.455 Thread 0x0000017663d99720 flushing nmethod 0x0000017653a07190 +Event: 69.459 Thread 0x0000017663d99720 flushing nmethod 0x0000017653b61110 +Event: 69.459 Thread 0x0000017663d99720 flushing nmethod 0x0000017653b8de90 +Event: 69.461 Thread 0x0000017663d99720 flushing nmethod 0x0000017653ca5290 +Event: 69.462 Thread 0x0000017663d99720 flushing nmethod 0x0000017653e11f10 +Event: 69.462 Thread 0x0000017663d99720 flushing nmethod 0x0000017653e20990 +Event: 69.463 Thread 0x0000017663d99720 flushing nmethod 0x0000017653f20790 + +Events (20 events): +Event: 53.121 Thread 0x000001766907e560 Thread added: 0x0000017677bd84f0 +Event: 57.181 Thread 0x0000017677bd84f0 Thread exited: 0x0000017677bd84f0 +Event: 57.181 Thread 0x0000017677bd7500 Thread exited: 0x0000017677bd7500 +Event: 59.303 Thread 0x000001766907e560 Thread added: 0x0000017677bd8f90 +Event: 59.303 Thread 0x000001766907e560 Thread added: 0x0000017677bd94e0 +Event: 60.277 Thread 0x0000017677bd94e0 Thread exited: 0x0000017677bd94e0 +Event: 60.277 Thread 0x0000017677bd8f90 Thread exited: 0x0000017677bd8f90 +Event: 60.297 Thread 0x000001766907e560 Thread added: 0x0000017677bd7500 +Event: 60.300 Thread 0x000001766907e560 Thread added: 0x0000017677bd8f90 +Event: 61.490 Thread 0x0000017677bd8f90 Thread exited: 0x0000017677bd8f90 +Event: 61.490 Thread 0x0000017677bd7500 Thread exited: 0x0000017677bd7500 +Event: 61.501 Thread 0x000001766907e560 Thread added: 0x0000017677bd7a50 +Event: 61.518 Thread 0x000001766907e560 Thread added: 0x0000017677bd8f90 +Event: 61.938 Thread 0x0000017677bd8f90 Thread exited: 0x0000017677bd8f90 +Event: 61.978 Thread 0x000001766907e560 Thread added: 0x0000017677bd94e0 +Event: 63.958 Thread 0x0000017677bd94e0 Thread exited: 0x0000017677bd94e0 +Event: 63.958 Thread 0x0000017677bd7a50 Thread exited: 0x0000017677bd7a50 +Event: 63.997 Thread 0x000001766907e560 Thread added: 0x0000017677bd94e0 +Event: 69.222 Thread 0x0000017677bd94e0 Thread exited: 0x0000017677bd94e0 +Event: 69.235 Thread 0x000001766907e560 Thread added: 0x0000017677bda4d0 + + +Dynamic libraries: +0x00007ff6e0000000 - 0x00007ff6e000e000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\java.exe +0x00007ffebe9d0000 - 0x00007ffebebc8000 C:\Windows\SYSTEM32\ntdll.dll +0x00007ffebcf80000 - 0x00007ffebd03d000 C:\Windows\System32\KERNEL32.DLL +0x00007ffebc680000 - 0x00007ffebc94e000 C:\Windows\System32\KERNELBASE.dll +0x00007ffebc140000 - 0x00007ffebc240000 C:\Windows\System32\ucrtbase.dll +0x00007ffe90c40000 - 0x00007ffe90c57000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\jli.dll +0x00007ffe8e0d0000 - 0x00007ffe8e0ee000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\VCRUNTIME140.dll +0x00007ffebcde0000 - 0x00007ffebcf80000 C:\Windows\System32\USER32.dll +0x00007ffebc350000 - 0x00007ffebc372000 C:\Windows\System32\win32u.dll +0x00007ffe921b0000 - 0x00007ffe9244a000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll +0x00007ffebe1a0000 - 0x00007ffebe1ca000 C:\Windows\System32\GDI32.dll +0x00007ffebdec0000 - 0x00007ffebdf5e000 C:\Windows\System32\msvcrt.dll +0x00007ffebc240000 - 0x00007ffebc34b000 C:\Windows\System32\gdi32full.dll +0x00007ffebc380000 - 0x00007ffebc41d000 C:\Windows\System32\msvcp_win.dll +0x00007ffebe170000 - 0x00007ffebe1a0000 C:\Windows\System32\IMM32.DLL +0x00007ffeac7e0000 - 0x00007ffeac7ec000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\vcruntime140_1.dll +0x00007ffe804d0000 - 0x00007ffe8055d000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\msvcp140.dll +0x00007ffe47b10000 - 0x00007ffe4877b000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\server\jvm.dll +0x00007ffebcb80000 - 0x00007ffebcc2e000 C:\Windows\System32\ADVAPI32.dll +0x00007ffebd3a0000 - 0x00007ffebd43c000 C:\Windows\System32\sechost.dll +0x00007ffebe860000 - 0x00007ffebe985000 C:\Windows\System32\RPCRT4.dll +0x00007ffebe640000 - 0x00007ffebe6ab000 C:\Windows\System32\WS2_32.dll +0x00007ffebbeb0000 - 0x00007ffebbefb000 C:\Windows\SYSTEM32\POWRPROF.dll +0x00007ffeb6c10000 - 0x00007ffeb6c1a000 C:\Windows\SYSTEM32\VERSION.dll +0x00007ffea6450000 - 0x00007ffea6477000 C:\Windows\SYSTEM32\WINMM.dll +0x00007ffebbe90000 - 0x00007ffebbea2000 C:\Windows\SYSTEM32\UMPDC.dll +0x00007ffeb9fd0000 - 0x00007ffeb9fe2000 C:\Windows\SYSTEM32\kernel.appcore.dll +0x00007ffeab450000 - 0x00007ffeab45a000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\jimage.dll +0x00007ffea64a0000 - 0x00007ffea6684000 C:\Windows\SYSTEM32\DBGHELP.DLL +0x00007ffea62d0000 - 0x00007ffea62fc000 C:\Windows\SYSTEM32\dbgcore.DLL +0x00007ffebc490000 - 0x00007ffebc512000 C:\Windows\System32\bcryptPrimitives.dll +0x00007ffeab370000 - 0x00007ffeab37e000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\instrument.dll +0x00007ffe804a0000 - 0x00007ffe804c5000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\java.dll +0x00007ffe8dec0000 - 0x00007ffe8ded8000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\zip.dll +0x00007ffebd6e0000 - 0x00007ffebde24000 C:\Windows\System32\SHELL32.dll +0x00007ffeba1d0000 - 0x00007ffeba964000 C:\Windows\SYSTEM32\windows.storage.dll +0x00007ffebd040000 - 0x00007ffebd394000 C:\Windows\System32\combase.dll +0x00007ffebb9a0000 - 0x00007ffebb9d0000 C:\Windows\SYSTEM32\Wldp.dll +0x00007ffebd620000 - 0x00007ffebd6cd000 C:\Windows\System32\SHCORE.dll +0x00007ffebde60000 - 0x00007ffebdeb5000 C:\Windows\System32\shlwapi.dll +0x00007ffebc030000 - 0x00007ffebc04f000 C:\Windows\SYSTEM32\profapi.dll +0x00007ffe8c3e0000 - 0x00007ffe8c3f9000 C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\net.dll +0x00007ffeb6410000 - 0x00007ffeb651a000 C:\Windows\SYSTEM32\WINHTTP.dll +0x00007ffebb780000 - 0x00007ffebb7ea000 C:\Windows\system32\mswsock.dll +0x00007ffe88370000 - 0x00007ffe88386000 C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\nio.dll +0x00007ffeab150000 - 0x00007ffeab160000 c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\verify.dll +0x00007ffe7f7e0000 - 0x00007ffe7f825000 C:\Users\Etudiant\AppData\Roaming\Code\User\globalStorage\redhat.java\1.38.2024120308\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106\eclipse_11904.dll +0x00007ffebd4f0000 - 0x00007ffebd61a000 C:\Windows\System32\ole32.dll +0x00007ffebb9e0000 - 0x00007ffebb9f8000 C:\Windows\SYSTEM32\CRYPTSP.dll +0x00007ffebb120000 - 0x00007ffebb154000 C:\Windows\system32\rsaenh.dll +0x00007ffebca00000 - 0x00007ffebca27000 C:\Windows\System32\bcrypt.dll +0x00007ffebbfb0000 - 0x00007ffebbfde000 C:\Windows\SYSTEM32\USERENV.dll +0x00007ffebb910000 - 0x00007ffebb91c000 C:\Windows\SYSTEM32\CRYPTBASE.dll +0x00007ffebb490000 - 0x00007ffebb4cb000 C:\Windows\SYSTEM32\IPHLPAPI.DLL +0x00007ffebde30000 - 0x00007ffebde38000 C:\Windows\System32\NSI.dll +0x00007ffeb63a0000 - 0x00007ffeb63b7000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL +0x00007ffeb6380000 - 0x00007ffeb639d000 C:\Windows\SYSTEM32\dhcpcsvc.DLL +0x00007ffebb4d0000 - 0x00007ffebb59b000 C:\Windows\SYSTEM32\DNSAPI.dll +0x00007ffe7efd0000 - 0x00007ffe7f019000 C:\Users\Etudiant\AppData\Local\Temp\jna--983739012\jna16136454296790665935.dll +0x00007ffebd6d0000 - 0x00007ffebd6d8000 C:\Windows\System32\PSAPI.DLL +0x00007ffea90a0000 - 0x00007ffea90ae000 C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\sunmscapi.dll +0x00007ffebc520000 - 0x00007ffebc676000 C:\Windows\System32\CRYPT32.dll +0x00007ffebbaf0000 - 0x00007ffebbb17000 C:\Windows\SYSTEM32\ncrypt.dll +0x00007ffebbab0000 - 0x00007ffebbaeb000 C:\Windows\SYSTEM32\NTASN1.dll +0x00007ffeb1f50000 - 0x00007ffeb1f5a000 C:\Windows\System32\rasadhlp.dll +0x00007ffeb20b0000 - 0x00007ffeb2130000 C:\Windows\System32\fwpuclnt.dll +0x00007ffea82d0000 - 0x00007ffea82d9000 C:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\extnet.dll +0x00007ffebadb0000 - 0x00007ffebade3000 C:\Windows\SYSTEM32\ntmarta.dll +0x00007ffe87fc0000 - 0x00007ffe87fda000 C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24090.11-0\MpDetoursCopyAccelerator.dll + +dbghelp: loaded successfully - version: 4.0.5 - missing functions: none +symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e;c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\jre\17.0.13-win32-x86_64\bin\server;C:\Users\Etudiant\AppData\Roaming\Code\User\globalStorage\redhat.java\1.38.2024120308\config_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1100.v20240722-2106;C:\Users\Etudiant\AppData\Local\Temp\jna--983739012;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.24090.11-0 + +VM Arguments: +jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\lombok\lombok-1.18.34.jar -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=c:\Users\Etudiant\AppData\Roaming\Code\User\workspaceStorage\d72c4c4d11149fdf8fe94e6dc181c0e4\redhat.java -Daether.dependencyCollector.impl=bf +java_command: c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar -configuration c:\Users\Etudiant\AppData\Roaming\Code\User\globalStorage\redhat.java\1.38.2024120308\config_win -data c:\Users\Etudiant\AppData\Roaming\Code\User\workspaceStorage\d72c4c4d11149fdf8fe94e6dc181c0e4\redhat.java\jdt_ws --pipe=\\.\pipe\lsp-14eeeadf8092bf9644c203aa7ae19dcb-sock +java_class_path (initial): c:\Users\Etudiant\.vscode\extensions\redhat.java-1.38.2024120308-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar +Launcher Type: SUN_STANDARD + +[Global flags] + uintx AdaptiveSizePolicyWeight = 90 {product} {command line} + intx CICompilerCount = 4 {product} {ergonomic} + uintx GCTimeRatio = 4 {product} {command line} + bool HeapDumpOnOutOfMemoryError = true {manageable} {command line} + ccstr HeapDumpPath = c:\Users\Etudiant\AppData\Roaming\Code\User\workspaceStorage\d72c4c4d11149fdf8fe94e6dc181c0e4\redhat.java {manageable} {command line} + size_t InitialHeapSize = 104857600 {product} {command line} + size_t MaxHeapSize = 1073741824 {product} {command line} + size_t MaxNewSize = 357564416 {product} {ergonomic} + size_t MinHeapDeltaBytes = 524288 {product} {ergonomic} + size_t MinHeapSize = 104857600 {product} {command line} + size_t NewSize = 34603008 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + size_t OldSize = 70254592 {product} {ergonomic} + uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic} + bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic} + bool UseParallelGC = true {product} {command line} + +Logging: +Log output configuration: + #0: stdout all=off uptime,level,tags + #1: stderr all=off uptime,level,tags + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk-21 +PATH=C:\Python312\Scripts\;C:\Python312\;C:\app\Etudiant\product\21c\dbhomeXE\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Python310\Scripts\;C:\Program Files\Python310\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files\Microsoft VS Code\bin;C:\ProgramData\chocolatey\bin;C:\Program Files\Java\jdk-17.0.3.1\bin;C:\apache-ant-1.10.7\bin;C:\apache-maven-3.6.2\bin;C:\GnuCobol3.1\bin;C:\Gradle\bin;C:\Program Files\Graphviz\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\TortoiseGit\bin;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;C:\bin;C:\src\flutter\bin;C:\tools\dart-sdk\bin;C:\Program Files\Php;C:\Program Files\PowerShell\7\;C:\Program Files\nodejs\;C:\Users\Etudiant\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Oracle\VirtualBox;C:\Users\Etudiant\AppData\Roaming\npm;C:\Users\Etudiant\AppData\Local\GitHubDesktop\bin;C:\Users\Etudiant\AppData\Local\Programs\Git\cmd +USERNAME=Etudiant +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel +TMP=C:\Users\Etudiant\AppData\Local\Temp +TEMP=C:\Users\Etudiant\AppData\Local\Temp + + + +Periodic native trim disabled + + +--------------- S Y S T E M --------------- + +OS: + Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +OS uptime: 0 days 3:14 hours +Hyper-V role detected + +CPU: total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 94 stepping 3 microcode 0xf0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv +Processor Information for all 8 processors : + Max Mhz: 3408, Current Mhz: 3408, Mhz Limit: 3408 + +Memory: 4k page, system-wide physical 8067M (507M free) +TotalPageFile size 11011M (AvailPageFile size 4M) +current process WorkingSet (physical memory assigned to process): 730M, peak: 835M +current process commit charge ("private bytes"): 627M, peak: 770M + +vm_info: OpenJDK 64-Bit Server VM (17.0.13+11) for windows-amd64 JRE (17.0.13+11), built on Oct 16 2024 00:10:08 by "admin" with MS VC++ 17.7 (VS2022) + +END. diff --git a/replay_pid2476.log b/replay_pid2476.log new file mode 100644 index 00000000..4d82a386 --- /dev/null +++ b/replay_pid2476.log @@ -0,0 +1,8663 @@ +JvmtiExport can_access_local_variables 0 +JvmtiExport can_hotswap_or_post_breakpoint 1 +JvmtiExport can_post_on_exceptions 0 +# 306 ciObject found +instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser +instanceKlass com/overzealous/remark/convert/AbstractNodeHandler +instanceKlass com/overzealous/remark/convert/TextCleaner$Escape +instanceKlass com/overzealous/remark/convert/TextCleaner +instanceKlass com/overzealous/remark/convert/NodeHandler +instanceKlass com/overzealous/remark/convert/DocumentConverter +instanceKlass org/jsoup/select/NodeVisitor +instanceKlass org/jsoup/nodes/Node +instanceKlass org/jsoup/safety/Cleaner +instanceKlass org/jsoup/safety/Safelist$TypedValue +instanceKlass org/jsoup/helper/Validate +instanceKlass org/jsoup/safety/Safelist +instanceKlass com/overzealous/remark/Remark +instanceKlass com/overzealous/remark/Options +instanceKlass org/eclipse/jdt/ls/core/internal/javadoc/AbstractJavaDocConverter +instanceKlass lombok/permit/Permit$Fake +instanceKlass lombok/permit/Permit +instanceKlass lombok/core/FieldAugment +instanceKlass lombok/eclipse/EcjAugments +instanceKlass lombok/eclipse/agent/PatchJavadoc +instanceKlass lombok/core/LombokNode +instanceKlass lombok/core/DiagnosticsReceiver +instanceKlass lombok/launch/PatchFixesHider$Util +instanceKlass lombok/launch/PatchFixesHider$Javadoc +instanceKlass org/eclipse/jdt/internal/corext/util/MethodOverrideTester +instanceKlass org/eclipse/jdt/internal/corext/util/SuperTypeHierarchyCache$HierarchyCacheEntry +instanceKlass org/eclipse/jdt/core/ITypeHierarchyChangedListener +instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyType +instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyBinaryType +instanceKlass org/eclipse/jdt/internal/core/Region$Node +instanceKlass org/eclipse/jdt/internal/core/Region +instanceKlass org/eclipse/jdt/internal/core/hierarchy/BindingMap +instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyResolver +instanceKlass org/eclipse/jdt/internal/core/IPathRequestor +instanceKlass org/eclipse/jdt/internal/corext/util/SuperTypeHierarchyCache +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/InheritDocVisitor$2 +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/InheritDocVisitor$1 +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/InheritDocVisitor +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/JavadocLookup$DescriptionGetter +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/CoreJavaDocSnippetStringEvaluator +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/CoreJavadocAccessImpl +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/JavadocLookup$1 +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/JavadocLookup +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/CoreJavadocContentAccessUtility +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/IJavadocContentFactory$IJavadocAccess +instanceKlass org/eclipse/jdt/ls/core/internal/javadoc/JavadocContentAccess2$1 +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/CoreJavadocAccess +instanceKlass org/eclipse/jdt/core/manipulation/internal/javadoc/IJavadocContentFactory +instanceKlass org/eclipse/jdt/ls/core/internal/javadoc/JavadocContentAccess2 +instanceKlass org/eclipse/jdt/internal/core/jdom/CompilationUnit +instanceKlass org/eclipse/jdt/internal/core/search/indexing/SourceIndexerRequestor +instanceKlass lombok/bytecode/ClassFileMetaData +instanceKlass lombok/bytecode/SneakyThrowsRemover +instanceKlass org/lombokweb/asm/ClassVisitor +instanceKlass lombok/bytecode/PreventNullAnalysisRemover +instanceKlass lombok/core/SpiLoadUtil$1$1 +instanceKlass lombok/core/SpiLoadUtil$1 +instanceKlass lombok/core/SpiLoadUtil +instanceKlass lombok/core/PostCompilerTransformation +instanceKlass lombok/core/PostCompiler +instanceKlass lombok/core/DiagnosticsReceiver$1 +instanceKlass lombok/eclipse/agent/PatchFixesShadowLoaded +instanceKlass lombok/launch/PatchFixesHider$LombokDeps +instanceKlass org/eclipse/jdt/apt/core/internal/util/TestCodeUtil +instanceKlass org/eclipse/jdt/internal/core/manipulation/JavaElementLabelComposerCore$FlexibleBufferCore +instanceKlass org/eclipse/jdt/internal/core/manipulation/JavaElementLabelComposerCore +instanceKlass org/eclipse/jdt/internal/core/manipulation/JavaElementLabelsCore +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/RenameUnusedLocalVariableCleanup +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/OrganizeImportsCleanup +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/LambdaExpressionAndMethodRefCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/TryWithResourceCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/LambdaExpressionCleanup +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/InstanceofPatternMatch +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/SwitchExpressionCleanup +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/VariableDeclarationFixCleanup +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/InvertEqualsCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/StringConcatToTextBlockCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/AddDeprecatedAnnotationCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/AddOverrideAnnotationCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/StaticAccessUsesClassNameCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/MemberAccessUsesThisCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/ISimpleCleanUp +instanceKlass org/eclipse/jdt/ls/core/internal/cleanup/CleanUpRegistry +instanceKlass org/eclipse/jdt/ls/core/internal/commands/OrganizeImportsCommand +instanceKlass org/eclipse/lsp4j/TextDocumentContentChangeEvent +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FindLinksHandler +instanceKlass org/eclipse/lsp4j/MarkedString +instanceKlass org/eclipse/lsp4j/adapters/HoverTypeAdapter$Factory +instanceKlass org/eclipse/jdt/internal/core/util/HandleFactory +instanceKlass org/eclipse/jdt/internal/core/SelectionRequestor +instanceKlass org/eclipse/jdt/ls/core/internal/HoverInfoProvider +instanceKlass org/eclipse/jdt/internal/corext/refactoring/surround/ExceptionAnalyzer$ExceptionComparator +instanceKlass org/eclipse/jdt/core/dom/BindingComparator +instanceKlass org/eclipse/jdt/internal/corext/refactoring/code/SnippetFinder$Match +instanceKlass org/eclipse/jdt/core/dom/ASTMatcher +instanceKlass org/eclipse/jdt/internal/corext/dom/ASTNodeFactory +instanceKlass org/eclipse/jdt/internal/corext/codemanipulation/RedundantNullnessTypeAnnotationsFilter +instanceKlass org/eclipse/jdt/internal/corext/refactoring/ParameterInfo +instanceKlass org/eclipse/jdt/internal/corext/refactoring/code/flow/FlowInfo +instanceKlass org/eclipse/jdt/internal/corext/refactoring/code/flow/FlowContext$Enum +instanceKlass org/eclipse/jdt/internal/corext/refactoring/code/flow/FlowContext +instanceKlass org/eclipse/jdt/internal/corext/refactoring/util/CommentAnalyzer +instanceKlass org/eclipse/jdt/internal/corext/dom/TokenScanner +instanceKlass org/eclipse/jdt/core/dom/rewrite/ImportRewrite +instanceKlass org/eclipse/jdt/core/manipulation/CodeStyleConfiguration +instanceKlass org/eclipse/core/expressions/EvaluationResult +instanceKlass org/eclipse/core/expressions/EvaluationContext +instanceKlass org/eclipse/core/internal/expressions/Expressions +instanceKlass org/eclipse/core/expressions/Expression +instanceKlass org/eclipse/core/expressions/ElementHandler +instanceKlass org/eclipse/core/expressions/ExpressionConverter +instanceKlass org/eclipse/core/expressions/IEvaluationContext +instanceKlass org/eclipse/core/internal/resources/mapping/ModelProviderDescriptor +instanceKlass org/eclipse/core/resources/mapping/IModelProviderDescriptor +instanceKlass org/eclipse/core/internal/resources/mapping/ModelProviderManager +instanceKlass org/eclipse/core/internal/resources/mapping/ChangeDescription +instanceKlass org/eclipse/core/internal/resources/mapping/ResourceChangeDescriptionFactory +instanceKlass org/eclipse/core/resources/mapping/IResourceChangeDescriptionFactory +instanceKlass org/eclipse/core/resources/mapping/ResourceChangeValidator +instanceKlass org/eclipse/ltk/core/refactoring/participants/ResourceChangeChecker +instanceKlass org/eclipse/ltk/core/refactoring/participants/IConditionChecker +instanceKlass org/eclipse/jdt/internal/ui/util/Progress +instanceKlass org/eclipse/core/resources/ResourceAttributes +instanceKlass org/eclipse/jdt/internal/corext/util/Resources +instanceKlass org/eclipse/jdt/internal/ui/util/ResourcesUtility +instanceKlass org/eclipse/jdt/internal/corext/refactoring/util/ResourceUtil +instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/ResourceDeltaScanner$1 +instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/EclipseIncrementalBuildContext +instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/EclipseResourceBuildDelta +instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$ProjectBuildStateDelta +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileManager$GeneratedPackageFragmentRoot +instanceKlass org/eclipse/jdt/apt/core/internal/util/ManyToMany +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/WorkingCopyCleanupListener +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/CompilationUnitHelper +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileManager +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedSourceFolderManager +instanceKlass org/eclipse/jdt/apt/core/internal/AptProject +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener$PreBuildVisitor +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceFactoryUse$2 +instanceKlass org/eclipse/core/runtime/content/XMLRootElementContentDescriber2$QualifiedElement +instanceKlass com/sun/org/apache/xerces/internal/util/URI +instanceKlass org/eclipse/m2e/core/internal/content/TextContentDescriber +instanceKlass java/util/stream/DistinctOps +instanceKlass org/eclipse/lsp4j/FileEvent +instanceKlass org/eclipse/jdt/internal/core/index/IndexQualifier +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexManager$MetaIndexUpdateRequest +instanceKlass com/microsoft/java/debug/plugin/internal/ResolveMainMethodHandler +instanceKlass com/microsoft/java/debug/plugin/internal/LogUtils +instanceKlass com/microsoft/java/debug/plugin/internal/JavaDebuggerServerPlugin +instanceKlass com/microsoft/java/debug/plugin/internal/JavaDebugDelegateCommandHandler +instanceKlass org/eclipse/jdt/internal/core/index/DiskIndex$IntList +instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/PartialSortMembersOperation +instanceKlass org/eclipse/lsp4j/ChangeAnnotation +instanceKlass org/eclipse/lsp4j/RenameFileOptions +instanceKlass org/eclipse/lsp4j/DeleteFileOptions +instanceKlass org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessorUtil +instanceKlass org/eclipse/lsp4j/CreateFileOptions +instanceKlass org/eclipse/lsp4j/adapters/ResourceOperationTypeAdapter +instanceKlass org/eclipse/lsp4j/adapters/VersionedTextDocumentIdentifierTypeAdapter$Factory +instanceKlass org/eclipse/lsp4j/adapters/DocumentChangeListAdapter +instanceKlass org/eclipse/lsp4j/ResourceOperation +instanceKlass org/eclipse/lsp4j/TextDocumentEdit +instanceKlass org/eclipse/lsp4j/CodeActionDisabled +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ResponseStore$ResponseItem +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/SourceModifier +instanceKlass org/eclipse/jdt/internal/formatter/linewrap/WrapExecutor$WrapResult +instanceKlass org/eclipse/jdt/internal/formatter/linewrap/WrapExecutor$WrapInfo +instanceKlass org/eclipse/jdt/internal/formatter/linewrap/WrapExecutor +instanceKlass org/eclipse/jdt/internal/formatter/Token$WrapPolicy +instanceKlass org/eclipse/jdt/internal/formatter/linewrap/Aligner +instanceKlass org/eclipse/jdt/internal/core/util/RecordedParsingInformation +instanceKlass org/eclipse/jdt/internal/compiler/batch/CompilationUnit +instanceKlass org/eclipse/jdt/internal/core/util/CodeSnippetParsingUtil +instanceKlass org/eclipse/jdt/internal/formatter/Token +instanceKlass org/eclipse/jdt/internal/formatter/TokenManager +instanceKlass org/eclipse/jface/text/Region +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/TokenScanner +instanceKlass org/eclipse/jdt/core/dom/rewrite/TargetSourceRangeComputer$SourceRange +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/LineCommentEndOffsets +instanceKlass org/eclipse/jdt/core/formatter/IndentManipulation +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$BlockFormattingPrefix +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$BlockFormattingPrefixSuffix +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$FormattingPrefix +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$ConstPrefix +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$BlockContext +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter$Prefix +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteFormatter +instanceKlass org/eclipse/text/edits/ISourceModifier +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/ASTRewriteAnalyzer$ListRewriter +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/LineInformation +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore$ParentIterator +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore$EventHolder +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore$CopySourceInfo +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore$PropertyLocation +instanceKlass org/eclipse/jdt/core/dom/rewrite/ListRewrite +instanceKlass org/eclipse/jdt/core/util/CompilationUnitSorter +instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/DefaultJavaElementComparator +instanceKlass org/eclipse/jdt/internal/corext/fix/LinkedProposalModelCore +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateDelegateMethodsHandler +instanceKlass org/eclipse/jdt/internal/codeassist/impl/AssistOptions +instanceKlass org/eclipse/jdt/internal/core/InternalNamingConventions +instanceKlass org/eclipse/jdt/core/NamingConventions +instanceKlass org/eclipse/jdt/internal/corext/codemanipulation/GetterSetterUtil +instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/GenerateGetterSetterOperation +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionProposal +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/CodeActionComparator +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/JdtDomModels$LspVariableBinding +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/JdtDomModels +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/JdtDomModels$LspMethodBinding +instanceKlass org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2Core +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateConstructorsHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler$CodeActionData +instanceKlass org/eclipse/osgi/util/TextProcessor +instanceKlass org/eclipse/jdt/internal/core/manipulation/util/Strings +instanceKlass org/eclipse/jface/text/TreeLineTracker$Node +instanceKlass org/eclipse/jface/text/TreeLineTracker +instanceKlass org/eclipse/text/edits/UndoCollector +instanceKlass org/eclipse/text/edits/TextEditProcessor +instanceKlass org/eclipse/text/edits/TextEdit$InsertionComparator +instanceKlass org/eclipse/jface/text/templates/TemplateBuffer +instanceKlass org/eclipse/jface/text/TextUtilities +instanceKlass org/eclipse/jface/text/templates/TemplateVariableType +instanceKlass org/eclipse/jface/text/templates/TemplateVariable +instanceKlass org/eclipse/jface/text/templates/TemplateTranslator$VariableDescription +instanceKlass org/eclipse/jface/text/templates/TemplateTranslator +instanceKlass org/eclipse/jface/text/templates/TemplateContext +instanceKlass org/eclipse/jdt/internal/core/manipulation/ProjectTemplateStore +instanceKlass org/eclipse/jdt/internal/core/manipulation/StubUtility +instanceKlass org/eclipse/jdt/core/manipulation/CodeGeneration +instanceKlass org/eclipse/jdt/internal/ui/text/correction/ProblemLocation +instanceKlass org/eclipse/jdt/internal/ui/text/correction/JavadocTagsBaseSubProcessor +instanceKlass org/eclipse/jdt/internal/corext/fix/CompilationUnitRewriteOperationsFixCore$CompilationUnitRewriteOperation +instanceKlass org/eclipse/jdt/internal/corext/fix/AbstractFixCore +instanceKlass org/eclipse/jdt/internal/corext/fix/ILinkedFix +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/CodeActionUtility +instanceKlass org/eclipse/ltk/core/refactoring/RefactoringStatus +instanceKlass org/eclipse/jdt/internal/corext/refactoring/Checks +instanceKlass jdk/internal/ref/CleanerImpl$InnocuousThreadFactory +instanceKlass org/eclipse/ltk/core/refactoring/GroupCategory +instanceKlass org/eclipse/ltk/core/refactoring/GroupCategorySet +instanceKlass org/eclipse/jdt/internal/corext/refactoring/changes/WorkspaceTracker$Listener +instanceKlass org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeConstraintsSolver +instanceKlass org/eclipse/jdt/internal/corext/util/CodeFormatterUtil +instanceKlass org/eclipse/jdt/internal/corext/codemanipulation/CodeGenerationSettings +instanceKlass org/eclipse/jdt/internal/corext/dom/Bindings +instanceKlass org/eclipse/jdt/internal/corext/dom/Selection +instanceKlass java/util/stream/ReduceOps$2ReducingSink +instanceKlass org/eclipse/jdt/core/dom/rewrite/TargetSourceRangeComputer +instanceKlass org/eclipse/ltk/core/refactoring/ChangeDescriptor +instanceKlass org/eclipse/jdt/internal/core/manipulation/dom/ASTResolving +instanceKlass org/eclipse/jdt/internal/corext/util/JavaModelUtil +instanceKlass org/eclipse/jdt/internal/core/MemberValuePair +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/ProposalKindWrapper +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/RefactorProposalUtility$MoveMemberInfo +instanceKlass org/eclipse/text/edits/TextEditVisitor +instanceKlass org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTesterCore +instanceKlass org/eclipse/jdt/internal/corext/util/JdtFlags +instanceKlass org/eclipse/jdt/ls/core/internal/Messages +instanceKlass org/eclipse/jdt/internal/corext/refactoring/tagging/IDelegateUpdating +instanceKlass org/eclipse/lsp4j/MarkupContent +instanceKlass org/eclipse/lsp4j/InlayHintLabelPart +instanceKlass org/eclipse/jdt/internal/compiler/ast/CaseStatement$ResolvedCase +instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement$NodeVisitor +instanceKlass org/eclipse/lsp4j/RelativePattern +instanceKlass org/eclipse/lsp4j/DidChangeWatchedFilesRegistrationOptions +instanceKlass org/eclipse/lsp4j/FileSystemWatcher +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$BuildJobMatcher +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/IndexUtils +instanceKlass org/eclipse/jdt/internal/codeassist/impl/Keywords +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintFilterManager$InstanceHolder +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintFilterManager +instanceKlass org/eclipse/jdt/internal/core/SourceMapper$LocalVariableElementKey +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$TypeParameterInfo +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/RefactorProposalUtility +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/NodeInfoStore$PlaceholderData +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/NodeInfoStore +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FoldingRangeHandler +instanceKlass org/eclipse/jdt/core/dom/rewrite/ITrackedNodePosition +instanceKlass org/eclipse/jdt/core/dom/rewrite/ASTRewrite +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/InvertBooleanUtility$SimpleNameRenameProvider +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/InvertBooleanUtility +instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/SemanticTokensVisitor$ScannerTokenVisitor +instanceKlass org/eclipse/jdt/core/dom/PackageBinding +instanceKlass org/eclipse/jdt/core/dom/NodeFinder +instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/SemanticTokensVisitor$SemanticToken +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler$ChangeCorrectionProposalComparator +instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/SemanticTokensVisitor$NodeVisitor +instanceKlass org/eclipse/jdt/ui/text/java/IProblemLocation +instanceKlass org/eclipse/jdt/internal/core/util/PublicScanner +instanceKlass org/eclipse/jdt/core/compiler/ITerminalSymbols +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/InnovationContext +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/DiagnosticsHelper +instanceKlass org/eclipse/jdt/core/util/ClassFileBytesDisassembler +instanceKlass org/eclipse/jdt/core/util/IClassFileDisassembler +instanceKlass org/eclipse/jdt/core/ICodeFormatter +instanceKlass org/eclipse/jdt/core/compiler/IScanner +instanceKlass org/eclipse/jdt/core/util/IClassFileReader +instanceKlass org/eclipse/jdt/core/dom/DefaultBindingResolver$1 +instanceKlass org/eclipse/jdt/core/ToolFactory +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/JsonRpcHelpers +instanceKlass org/eclipse/jdt/core/dom/ASTNode$NodeList$Cursor +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfObjectToIntArray +instanceKlass org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor +instanceKlass org/eclipse/jdt/core/dom/PrefixExpression$Operator +instanceKlass org/eclipse/jdt/internal/corext/dom/ASTNodes +instanceKlass org/eclipse/jdt/core/dom/DefaultCommentMapper +instanceKlass org/eclipse/jdt/core/dom/TypeBinding +instanceKlass org/eclipse/jdt/core/dom/MethodBinding +instanceKlass org/eclipse/jdt/internal/core/ReconcileWorkingCopyOperation$1 +instanceKlass org/eclipse/jdt/core/compiler/ReconcileContext +instanceKlass lombok/eclipse/agent/PatchValEclipse +instanceKlass lombok/eclipse/agent/PatchValEclipsePortal$Reflection +instanceKlass lombok/eclipse/agent/PatchValEclipsePortal +instanceKlass lombok/launch/PatchFixesHider$ValPortal +instanceKlass org/eclipse/jdt/core/dom/Assignment$Operator +instanceKlass org/eclipse/jdt/core/dom/AnnotationBinding +instanceKlass sun/security/ssl/Alert$AlertConsumer +instanceKlass org/eclipse/jdt/core/dom/DefaultBindingResolver$AnnotationIdentityBinding +instanceKlass org/eclipse/jdt/core/dom/VariableBinding +instanceKlass lombok/eclipse/agent/PatchDiagnostics +instanceKlass lombok/eclipse/EcjAugments +instanceKlass org/eclipse/jdt/core/dom/Message +instanceKlass org/eclipse/jdt/core/dom/IModuleBinding +instanceKlass org/eclipse/jdt/core/dom/IVariableBinding +instanceKlass org/eclipse/jdt/core/dom/IPackageBinding +instanceKlass org/eclipse/jdt/core/dom/IMemberValuePairBinding +instanceKlass org/eclipse/jdt/core/dom/IAnnotationBinding +instanceKlass org/eclipse/jdt/core/dom/IMethodBinding +instanceKlass org/eclipse/jdt/internal/core/util/Util$BindingsToNodesMap +instanceKlass org/eclipse/jdt/core/dom/ITypeBinding +instanceKlass org/eclipse/jdt/core/dom/DefaultBindingResolver$BindingTables +instanceKlass lombok/launch/PatchFixesHider$PatchFixes +instanceKlass org/eclipse/jdt/internal/compiler/parser/TypeConverter +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ElementValuePair$UnresolvedEnumConstant +instanceKlass lombok/eclipse/EcjAugments$EclipseAugments +instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob$IndexMatch +instanceKlass org/eclipse/jdt/internal/core/index/EntryResult +instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob$IndexResult +instanceKlass org/eclipse/jdt/internal/compiler/env/AccessRuleSet +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$18 +instanceKlass org/eclipse/jdt/internal/core/NameLookup$Answer +instanceKlass org/eclipse/jdt/internal/core/NameLookup$IPrefixMatcherCharArray +instanceKlass org/eclipse/jdt/core/dom/CompilationUnitResolver$2 +instanceKlass org/eclipse/jdt/core/dom/CompilationUnitResolver$1 +instanceKlass org/eclipse/jdt/internal/core/CompilationUnitProblemFinder$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseDocumentLifeCycleHandler$DocumentMonitor +instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryTypeDescriptor +instanceKlass org/eclipse/jdt/internal/core/nd/util/CharArrayUtils +instanceKlass org/eclipse/jdt/internal/core/JavadocContents +instanceKlass org/eclipse/jdt/internal/core/IJavadocContents +instanceKlass org/eclipse/jdt/internal/core/ExternalJavadocSupport +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ExternalAnnotationDecorator$ZipFileProducer +instanceKlass org/eclipse/jdt/internal/core/SingleTypeRequestor +instanceKlass org/eclipse/jdt/internal/core/JavaElementRequestor +instanceKlass org/eclipse/jdt/internal/core/util/HashtableOfArrayToObject +instanceKlass org/eclipse/jdt/internal/core/JavaProjectElementInfo$ProjectCache +instanceKlass com/microsoft/jdtls/intellicode/core/pythia/PythiaModel +instanceKlass com/google/gson/internal/$Gson$Types$GenericArrayTypeImpl +instanceKlass org/eclipse/jdt/internal/core/JavaElementDeltaBuilder$ListItem +instanceKlass org/eclipse/jdt/internal/core/JavaElementDeltaBuilder +instanceKlass org/eclipse/jdt/internal/core/util/HashSetOfArray +instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessConstructorRequestor +instanceKlass java/util/regex/Pattern$1 +instanceKlass org/eclipse/jdt/internal/core/SearchableEnvironment +instanceKlass org/eclipse/jdt/core/search/IJavaSearchConstants +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionContributionService +instanceKlass com/microsoft/jdtls/intellicode/core/ModelBasedRankingProvider +instanceKlass com/microsoft/jdtls/intellicode/core/pythia/PythiaModelLoader +instanceKlass com/microsoft/jdtls/intellicode/core/utils/StringUtils +instanceKlass org/eclipse/jdt/ls/core/contentassist/ICompletionRankingProvider +instanceKlass com/microsoft/jdtls/intellicode/core/IntelliCodeActivator +instanceKlass com/microsoft/jdtls/intellicode/core/CommandHandler +instanceKlass com/google/gson/internal/ConstructorConstructor$19 +instanceKlass com/microsoft/java/test/plugin/util/ProjectTestUtils$TestSourcePath +instanceKlass com/microsoft/java/test/plugin/util/ProjectTestUtils +instanceKlass java/lang/invoke/MethodHandleImpl$CountingWrapper$1 +instanceKlass com/microsoft/java/test/plugin/handler/ClasspathUpdateHandler +instanceKlass com/microsoft/java/test/plugin/util/JUnitPlugin +instanceKlass com/google/gson/internal/bind/NumberTypeAdapter$2 +instanceKlass org/eclipse/jdt/ls/core/internal/JDTDelegateCommandHandler +instanceKlass com/microsoft/java/test/plugin/handler/TestDelegateCommandHandler +instanceKlass org/eclipse/jdt/internal/compiler/batch/FileSystem$Classpath +instanceKlass org/eclipse/jdt/internal/compiler/batch/Main$ResourceBundleFactory +instanceKlass org/eclipse/jdt/internal/compiler/batch/Main$Logger +instanceKlass org/eclipse/lsp4j/ConfigurationItem +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ConfigurationHandler +instanceKlass org/eclipse/jdt/internal/compiler/batch/FileSystem$ClasspathSectionProblemReporter +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/NonProjectFixProcessor +instanceKlass org/eclipse/jdt/internal/compiler/batch/Main +instanceKlass org/eclipse/jdt/internal/core/BasicCompilationUnit +instanceKlass org/eclipse/jdt/core/JavaCore$JavaCallable +instanceKlass org/eclipse/jdt/core/manipulation/CoreASTProvider$1 +instanceKlass org/eclipse/jdt/core/dom/CompilationUnitResolver$ECJCompilationUnitResolver +instanceKlass org/eclipse/jdt/internal/core/INameEnvironmentWithProgress +instanceKlass org/eclipse/jdt/internal/compiler/env/INameEnvironmentExtension +instanceKlass org/eclipse/jdt/internal/core/dom/ICompilationUnitResolver +instanceKlass org/eclipse/jdt/core/dom/CompilationUnitResolverDiscovery +instanceKlass org/eclipse/jdt/internal/core/dom/util/DOMASTUtil +instanceKlass org/eclipse/jdt/core/dom/ASTParser +instanceKlass org/eclipse/jdt/core/dom/NodeEventHandler +instanceKlass org/eclipse/jdt/core/dom/BindingResolver +instanceKlass org/eclipse/jdt/internal/corext/dom/IASTSharedValues +instanceKlass org/eclipse/m2e/jdt/internal/InternalModuleInfo +instanceKlass org/eclipse/jdt/internal/compiler/env/AutomaticModuleNaming +instanceKlass org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate$ProjectTestAttributes +instanceKlass org/eclipse/jdt/ui/cleanup/ICleanUp +instanceKlass org/eclipse/m2e/jdt/internal/ClasspathEntryDescriptor +instanceKlass org/eclipse/m2e/jdt/internal/ClasspathDescriptor +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/RefactorProcessor +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectFacadeAdapterFactory +instanceKlass org/eclipse/core/internal/adapter/AdapterFactoryProxy +instanceKlass org/eclipse/ltk/core/refactoring/Change +instanceKlass org/eclipse/core/internal/runtime/AdapterManager$AdapterLookup +instanceKlass org/eclipse/core/runtime/Adapters +instanceKlass org/eclipse/jdt/launching/IRuntimeContainerComparator +instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntry2 +instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathEntry +instanceKlass org/eclipse/jdt/internal/launching/JRERuntimeClasspathEntryResolver +instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathEntryResolver +instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntryResolver2 +instanceKlass org/eclipse/jdt/internal/launching/RuntimeClasspathProvider +instanceKlass org/eclipse/jdt/launching/IJavaLaunchConfigurationConstants +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintsHandler +instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathResult +instanceKlass org/eclipse/debug/core/model/IBreakpoint +instanceKlass org/eclipse/debug/core/sourcelookup/ISourceLookupDirector +instanceKlass org/eclipse/debug/core/sourcelookup/IPersistableSourceLocator2 +instanceKlass org/eclipse/jdt/core/dom/rewrite/ImportRewrite$ImportRewriteContext +instanceKlass org/eclipse/debug/core/model/IPersistableSourceLocator +instanceKlass org/eclipse/debug/core/model/LaunchConfigurationDelegate +instanceKlass org/eclipse/debug/core/model/ILaunchConfigurationDelegate2 +instanceKlass org/eclipse/debug/core/model/ILaunchConfigurationDelegate +instanceKlass com/microsoft/java/maven/ArtifactSearcher +instanceKlass com/microsoft/java/maven/PluginActivator +instanceKlass com/microsoft/java/maven/handler/DelegateCommandHandler +instanceKlass org/eclipse/jdt/ls/core/internal/IDelegateCommandHandler +instanceKlass org/eclipse/debug/internal/core/LaunchDelegate +instanceKlass org/eclipse/debug/core/ILaunchConfigurationType +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/QuickAssistProcessor +instanceKlass org/eclipse/jdt/internal/corext/fix/IProposableFix +instanceKlass org/eclipse/jdt/ui/cleanup/ICleanUpFix +instanceKlass org/eclipse/jdt/core/manipulation/ICleanUpFixCore +instanceKlass org/eclipse/debug/internal/core/LaunchConfigurationInfo +instanceKlass org/eclipse/text/edits/TextEditGroup +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/SourceAssistProcessor +instanceKlass org/eclipse/debug/core/ILaunchConfigurationWorkingCopy +instanceKlass org/eclipse/jdt/internal/ui/text/correction/UnInitializedFinalFieldBaseSubProcessor +instanceKlass org/eclipse/jdt/core/manipulation/ICUCorrectionProposal +instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand +instanceKlass org/eclipse/jdt/core/manipulation/ChangeCorrectionProposalCore +instanceKlass org/eclipse/jdt/ls/core/internal/commands/ProjectCommand$ClasspathOptions +instanceKlass org/eclipse/jdt/ls/core/internal/framework/android/AndroidSupport +instanceKlass org/eclipse/jdt/ls/core/internal/framework/protobuf/ProtobufSupport +instanceKlass org/eclipse/jdt/ls/core/internal/corrections/QuickFixProcessor +instanceKlass org/eclipse/lsp4j/DiagnosticRelatedInformation +instanceKlass org/eclipse/lsp4j/DiagnosticCodeDescription +instanceKlass org/eclipse/lsp4j/Diagnostic +instanceKlass org/eclipse/lsp4j/CodeActionContext +instanceKlass org/eclipse/lsp4j/Position +instanceKlass com/google/gson/JsonParser +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager$1 +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$3 +instanceKlass org/eclipse/jface/text/Line +instanceKlass org/eclipse/jface/text/DocumentEvent +instanceKlass org/eclipse/core/filebuffers/IDocumentSetupParticipant +instanceKlass org/eclipse/jface/text/Position +instanceKlass org/eclipse/jface/text/DefaultPositionUpdater +instanceKlass org/eclipse/jface/text/AbstractLineTracker$DelimiterInfo +instanceKlass org/eclipse/jface/text/AbstractLineTracker$SessionData +instanceKlass org/eclipse/jface/text/ListLineTracker +instanceKlass org/eclipse/jface/text/AbstractLineTracker +instanceKlass org/eclipse/jface/text/ILineTrackerExtension +instanceKlass org/eclipse/jface/text/CopyOnWriteTextStore$StringTextStore +instanceKlass org/eclipse/jface/text/GapTextStore +instanceKlass org/eclipse/jface/text/CopyOnWriteTextStore +instanceKlass org/eclipse/jface/text/ILineTracker +instanceKlass org/eclipse/jface/text/ITextStore +instanceKlass org/eclipse/jface/text/IPositionUpdater +instanceKlass org/eclipse/jface/text/ITypedRegion +instanceKlass org/eclipse/jface/text/AbstractDocument +instanceKlass org/eclipse/jface/text/IRepairableDocumentExtension +instanceKlass org/eclipse/jface/text/IRepairableDocument +instanceKlass org/eclipse/jface/text/IDocumentExtension4 +instanceKlass org/eclipse/jface/text/IDocumentExtension3 +instanceKlass org/eclipse/jface/text/IDocumentExtension2 +instanceKlass org/eclipse/jface/text/IDocumentExtension +instanceKlass org/eclipse/jface/text/ISynchronizable +instanceKlass org/eclipse/core/internal/filebuffers/ExtensionsRegistry$ContentTypeAdapter +instanceKlass org/eclipse/core/internal/filebuffers/ResourceFileBuffer$SafeFileChange +instanceKlass org/eclipse/core/internal/filebuffers/ResourceFileBuffer$FileSynchronizer +instanceKlass org/eclipse/core/internal/filebuffers/ResourceTextFileBuffer$DocumentListener +instanceKlass org/eclipse/core/filebuffers/LocationKind +instanceKlass org/eclipse/core/internal/filebuffers/ExtensionsRegistry +instanceKlass org/eclipse/core/filebuffers/ITextFileBuffer +instanceKlass org/eclipse/core/internal/filebuffers/AbstractFileBuffer +instanceKlass org/eclipse/core/filebuffers/IStateValidationSupport +instanceKlass org/eclipse/core/filebuffers/IFileBuffer +instanceKlass org/eclipse/core/internal/filebuffers/TextFileBufferManager +instanceKlass org/eclipse/core/internal/filebuffers/FileBuffersPlugin +instanceKlass org/eclipse/core/filebuffers/ITextFileBufferManager +instanceKlass org/eclipse/core/filebuffers/IFileBufferManager +instanceKlass org/eclipse/core/filebuffers/FileBuffers +instanceKlass org/eclipse/jdt/ls/core/internal/DocumentAdapter$NullBuffer +instanceKlass org/eclipse/jdt/ls/core/internal/DocumentAdapter +instanceKlass org/eclipse/jface/text/IDocumentListener +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$PerWorkingCopyInfo +instanceKlass lombok/eclipse/Eclipse +instanceKlass lombok/core/AST +instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil +instanceKlass lombok/core/FieldAugment +instanceKlass lombok/eclipse/EcjAugments$EclipseAugments +instanceKlass lombok/eclipse/agent/PatchDelegate$EclipseOnlyMethods +instanceKlass lombok/eclipse/agent/PatchDelegatePortal$Reflection +instanceKlass org/eclipse/jdt/internal/core/Buffer$1 +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$ParameterInfo +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$MethodInfo +instanceKlass lombok/permit/Permit$Fake +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ResponseStore +instanceKlass org/eclipse/jdt/ui/text/java/IInvocationContext +instanceKlass lombok/permit/Permit +instanceKlass lombok/launch/PatchFixesHider$FieldInitializer +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$FieldInfo +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor$TypeInfo +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceImport +instanceKlass org/eclipse/jdt/internal/compiler/SourceElementNotifier +instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistorySerializer +instanceKlass org/eclipse/core/commands/operations/IUndoableOperation +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfObjectToInt +instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$1 +instanceKlass org/eclipse/core/commands/operations/DefaultOperationHistory +instanceKlass org/eclipse/core/commands/operations/IOperationHistory +instanceKlass org/eclipse/core/commands/operations/OperationHistoryFactory +instanceKlass org/eclipse/core/commands/operations/OperationHistoryEvent +instanceKlass org/eclipse/core/commands/operations/IOperationHistoryListener +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceMethod +instanceKlass org/eclipse/jdt/core/IMemberValuePair +instanceKlass org/eclipse/jdt/core/IInitializer +instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringHistoryService +instanceKlass org/eclipse/ltk/core/refactoring/history/IRefactoringHistoryService +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceField +instanceKlass org/eclipse/ltk/core/refactoring/RefactoringDescriptor +instanceKlass org/eclipse/ltk/internal/core/refactoring/history/RefactoringContributionManager +instanceKlass org/eclipse/core/commands/operations/IUndoContext +instanceKlass org/eclipse/jdt/internal/core/Buffer +instanceKlass org/eclipse/ltk/core/refactoring/IUndoManager +instanceKlass org/eclipse/ltk/core/refactoring/history/IRefactoringHistoryListener +instanceKlass org/eclipse/jdt/internal/core/BufferManager$1 +instanceKlass org/eclipse/jdt/ls/core/internal/contentassist/CompletionProposalUtils +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler$2 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler$1 +instanceKlass org/eclipse/core/runtime/URIUtil +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionHandler +instanceKlass org/eclipse/jdt/ls/core/internal/JDTUtils +instanceKlass org/eclipse/lsp4j/Registration +instanceKlass org/eclipse/lsp4j/TextDocumentItem +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SourceAttachUpdateHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ClasspathUpdateHandler +instanceKlass java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceDiagnosticsHandler +instanceKlass org/eclipse/lsp4j/jsonrpc/CompletableFutures$FutureCancelChecker +instanceKlass org/eclipse/lsp4j/jsonrpc/CompletableFutures +instanceKlass org/springframework/tooling/jdt/ls/commons/classpath/ClasspathListenerManager$MyListener +instanceKlass org/springframework/tooling/jdt/ls/commons/BootProjectTracker$1 +instanceKlass org/springframework/tooling/jdt/ls/commons/classpath/ClasspathListenerManager +instanceKlass org/springframework/tooling/jdt/ls/commons/classpath/ClasspathListenerManager$ClasspathListener +instanceKlass org/springframework/tooling/jdt/ls/commons/BootProjectTracker +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintsPreferenceChangeListener +instanceKlass org/eclipse/jdt/ls/core/internal/managers/StandardProjectsManager$3 +instanceKlass org/eclipse/m2e/core/project/AbstractProjectScanner +instanceKlass org/eclipse/jdt/internal/launching/JREPreferenceModifyListener$Visitor +instanceKlass org/eclipse/debug/internal/core/PreferredDelegateModifyListener$Visitor +instanceKlass org/eclipse/core/runtime/ISafeRunnableWithResult +instanceKlass org/eclipse/core/runtime/preferences/PreferenceModifyListener +instanceKlass java/nio/file/FileTreeWalker$1 +instanceKlass org/eclipse/jdt/ls/core/internal/managers/BasicFileDetector +instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradleUtils +instanceKlass org/eclipse/buildship/core/internal/util/gradle/GradleVersion +instanceKlass org/eclipse/jdt/ls/core/internal/AbstractProjectImporter +instanceKlass org/eclipse/jdt/ls/core/internal/IProjectImporter +instanceKlass com/microsoft/gradle/bs/importer/Utils +instanceKlass java/util/TreeMap$TreeMapSpliterator +instanceKlass com/microsoft/java/builder/BuildStateManager +instanceKlass ch/epfl/scala/bsp4j/BuildServer +instanceKlass com/microsoft/gradle/bs/importer/GradleBuildServerBuildSupport +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$InitializeJobMatcher +instanceKlass org/eclipse/jdt/ls/core/internal/managers/InvisibleProjectPreferenceChangeListener +instanceKlass org/eclipse/jdt/ls/core/internal/managers/EclipseBuildSupport +instanceKlass org/eclipse/jdt/ls/core/internal/managers/MavenBuildSupport +instanceKlass org/eclipse/lsp4j/FileOperationPatternOptions +instanceKlass org/eclipse/lsp4j/FileOperationPattern +instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradlePreferenceChangeListener +instanceKlass org/eclipse/lsp4j/FileOperationFilter +instanceKlass org/eclipse/lsp4j/FileOperationOptions +instanceKlass org/eclipse/jdt/ls/core/internal/managers/GradleBuildSupport +instanceKlass org/eclipse/lsp4j/FileOperationsServerCapabilities +instanceKlass org/eclipse/jdt/ls/core/internal/ExtensionsExtractor +instanceKlass org/eclipse/jdt/ls/core/internal/managers/IBuildSupport +instanceKlass org/eclipse/jdt/ls/core/internal/managers/BuildSupportManager +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$RepositoryRegistryUpdateJobMatcher +instanceKlass org/eclipse/jdt/ls/internal/gradle/checksums/WrapperValidator +instanceKlass org/eclipse/lsp4j/CompletionItemOptions +instanceKlass org/eclipse/lsp4j/NotebookSelectorCell +instanceKlass org/eclipse/lsp4j/NotebookDocumentFilter +instanceKlass com/google/gson/annotations/Expose +instanceKlass org/eclipse/lsp4j/NotebookSelector +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ProgressReporterManager$MulticastProgressReporter +instanceKlass org/eclipse/lsp4j/DocumentOnTypeFormattingOptions +instanceKlass org/eclipse/lsp4j/NotebookDocumentSyncRegistrationOptions +instanceKlass org/eclipse/lsp4j/ServerInfo +instanceKlass org/eclipse/jdt/core/dom/IBinding +instanceKlass org/eclipse/lsp4j/SemanticTokensLegend +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SemanticTokensHandler +instanceKlass org/eclipse/lsp4j/DocumentFilter +instanceKlass org/eclipse/lsp4j/SemanticTokensServerFull +instanceKlass org/eclipse/lsp4j/TextDocumentRegistrationOptions +instanceKlass org/eclipse/lsp4j/WorkspaceFoldersOptions +instanceKlass org/eclipse/lsp4j/WorkspaceServerCapabilities +instanceKlass org/eclipse/lsp4j/SaveOptions +instanceKlass org/eclipse/lsp4j/TextDocumentSyncOptions +instanceKlass org/eclipse/lsp4j/AbstractWorkDoneProgressOptions +instanceKlass org/eclipse/lsp4j/WorkDoneProgressOptions +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$DelegateCommandHandlerDescriptor +instanceKlass org/apache/commons/lang3/BooleanUtils +instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile$CacheInfo +instanceKlass org/eclipse/lsp4j/ServerCapabilities +instanceKlass sun/nio/cs/Surrogate +instanceKlass sun/nio/cs/Surrogate$Parser +instanceKlass org/eclipse/osgi/storagemanager/StorageManager$Entry +instanceKlass org/eclipse/osgi/container/ModuleDatabase$Persistence +instanceKlass org/springframework/tooling/jdt/ls/extension/JdtLsExtensionPlugin$1 +instanceKlass org/springframework/tooling/jdt/ls/commons/Logger$1 +instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo$TZCanonicalIDMapHolder +instanceKlass sun/util/resources/provider/NonBaseLocaleDataMetaInfo +instanceKlass sun/util/locale/provider/BaseLocaleDataMetaInfo +instanceKlass sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter +instanceKlass sun/util/locale/provider/TimeZoneNameUtility +instanceKlass org/springframework/tooling/jdt/ls/commons/Logger$DefaultLogger +instanceKlass org/springframework/tooling/jdt/ls/commons/Logger +instanceKlass org/eclipse/m2e/core/project/MavenProjectUtils +instanceKlass org/eclipse/core/resources/filtermatchers/AbstractFileInfoMatcher +instanceKlass org/eclipse/core/internal/resources/Filter +instanceKlass org/apache/maven/plugins/resources/TestResourcesMojo$$FastClassByGuice$$210371906 +instanceKlass org/sonatype/plexus/build/incremental/EmptyScanner +instanceKlass java/nio/file/attribute/PosixFileAttributes +instanceKlass org/apache/maven/shared/filtering/FilteringUtils +instanceKlass org/apache/commons/io/FilenameUtils +instanceKlass org/codehaus/plexus/util/SelectorUtils +instanceKlass org/codehaus/plexus/util/MatchPattern +instanceKlass org/codehaus/plexus/util/MatchPatterns +instanceKlass org/codehaus/plexus/util/AbstractScanner +instanceKlass org/codehaus/plexus/interpolation/RecursionInterceptor +instanceKlass org/codehaus/plexus/interpolation/AbstractValueSource +instanceKlass org/apache/maven/plugins/resources/MavenBuildTimestamp +instanceKlass org/apache/maven/shared/filtering/FilterWrapper +instanceKlass org/apache/commons/lang3/StringUtils +instanceKlass org/codehaus/plexus/util/introspection/MethodMap +instanceKlass org/codehaus/plexus/util/introspection/ClassMap$CacheMiss +instanceKlass org/codehaus/plexus/util/introspection/ClassMap +instanceKlass org/codehaus/plexus/util/introspection/ReflectionValueExtractor$Tokenizer +instanceKlass org/codehaus/plexus/util/introspection/ReflectionValueExtractor +instanceKlass org/eclipse/sisu/plexus/TypeArguments +instanceKlass org/eclipse/sisu/plexus/CompositeBeanHelper$1 +instanceKlass org/eclipse/sisu/plexus/CompositeBeanHelper +instanceKlass org/apache/maven/plugin/internal/ValidatingConfigurationListener +instanceKlass org/apache/maven/plugin/DebugConfigurationListener +instanceKlass org/codehaus/plexus/component/configurator/expression/DefaultExpressionEvaluator +instanceKlass org/codehaus/plexus/component/configurator/BasicComponentConfigurator$$FastClassByGuice$$208988377 +instanceKlass org/apache/maven/plugin/PluginParameterExpressionEvaluator +instanceKlass org/codehaus/plexus/component/configurator/expression/TypeAwareExpressionEvaluator +instanceKlass org/apache/maven/monitor/logging/DefaultLog +instanceKlass org/apache/maven/plugins/resources/ResourcesMojo$$FastClassByGuice$$208344600 +instanceKlass org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering$$FastClassByGuice$$207478368 +instanceKlass org/apache/maven/shared/filtering/DefaultMavenReaderFilter$$FastClassByGuice$$205743705 +instanceKlass org/apache/maven/shared/filtering/DefaultMavenFileFilter$$FastClassByGuice$$205276856 +instanceKlass com/google/inject/internal/Messages$Converter +instanceKlass com/google/inject/internal/Messages +instanceKlass org/codehaus/plexus/interpolation/Interpolator +instanceKlass org/codehaus/plexus/interpolation/BasicInterpolator +instanceKlass org/codehaus/plexus/interpolation/ValueSource +instanceKlass org/apache/maven/shared/filtering/AbstractMavenFilteringRequest +instanceKlass org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering +instanceKlass org/apache/maven/shared/filtering/MavenResourcesFiltering +instanceKlass org/apache/maven/shared/filtering/MavenReaderFilter +instanceKlass org/apache/maven/shared/filtering/BaseFilter +instanceKlass org/apache/maven/shared/filtering/MavenFileFilter +instanceKlass org/apache/maven/shared/filtering/DefaultFilterInfo +instanceKlass org/eclipse/sisu/space/FileEntryIterator +instanceKlass org/eclipse/sisu/space/ResourceEnumeration +instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule$PlexusDescriptorBeanSource +instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule$ComponentMetadata +instanceKlass org/apache/maven/plugin/AbstractMojo +instanceKlass org/apache/maven/plugin/ContextEnabled +instanceKlass org/apache/maven/plugin/Mojo +instanceKlass org/eclipse/sisu/plexus/ComponentDescriptorBeanModule +instanceKlass org/apache/maven/classrealm/ArtifactClassRealmConstituent +instanceKlass org/eclipse/core/internal/registry/RegistryChangeEvent +instanceKlass org/eclipse/core/runtime/IRegistryChangeEvent +instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry$1 +instanceKlass org/eclipse/core/internal/registry/osgi/ExtensionEventDispatcherJob$1 +instanceKlass org/eclipse/core/internal/registry/RegistryDelta +instanceKlass org/eclipse/core/internal/registry/ExtensionDelta +instanceKlass org/eclipse/aether/util/graph/visitor/FilteringDependencyVisitor +instanceKlass org/eclipse/osgi/compatibility/state/ReadOnlyState +instanceKlass org/apache/maven/model/merge/ModelMerger$NotifierKeyComputer +instanceKlass org/eclipse/aether/collection/DependencyManagement +instanceKlass org/apache/maven/plugin/internal/WagonExcluder +instanceKlass org/eclipse/aether/util/filter/ScopeDependencyFilter +instanceKlass org/eclipse/aether/util/filter/AndDependencyFilter +instanceKlass org/apache/maven/plugin/CacheUtils +instanceKlass org/apache/maven/plugin/DefaultPluginRealmCache$CacheKey +instanceKlass org/apache/maven/project/artifact/DefaultProjectArtifactsCache$CacheKey +instanceKlass java/util/LinkedList$LLSpliterator +instanceKlass org/eclipse/m2e/core/internal/embedder/MavenProjectMutableState +instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/AbstractEclipseBuildContext +instanceKlass org/eclipse/m2e/core/internal/builder/BuildResultCollector +instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$ProjectBuildState +instanceKlass org/eclipse/m2e/apt/internal/AnnotationProcessorConfiguration +instanceKlass org/eclipse/m2e/apt/internal/utils/PluginDependencyResolver +instanceKlass org/eclipse/m2e/apt/internal/AbstractAptConfiguratorDelegate +instanceKlass org/eclipse/m2e/apt/internal/preferences/PreferencesManager +instanceKlass org/eclipse/m2e/apt/preferences/IPreferencesManager +instanceKlass org/eclipse/m2e/apt/MavenJdtAptPlugin +instanceKlass org/eclipse/m2e/core/internal/builder/InternalBuildParticipant +instanceKlass org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator$$FastClassByGuice$$204372235 +instanceKlass org/apache/maven/lifecycle/internal/ExecutionPlanItem +instanceKlass org/apache/maven/plugin/MavenPluginValidator +instanceKlass org/codehaus/plexus/component/repository/ComponentDependency +instanceKlass org/codehaus/plexus/component/repository/ComponentRequirement +instanceKlass org/codehaus/plexus/configuration/DefaultPlexusConfiguration +instanceKlass org/apache/maven/model/Notifier +instanceKlass org/apache/maven/model/Site +instanceKlass org/eclipse/m2e/core/internal/project/registry/EclipseWorkspaceArtifactRepository$Disabled +instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache$CacheKey +instanceKlass org/apache/maven/lifecycle/internal/GoalTask +instanceKlass org/apache/maven/lifecycle/internal/LifecycleTask +instanceKlass org/apache/maven/project/artifact/DefaultProjectArtifactsCache$$FastClassByGuice$$203141614 +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate$$FastClassByGuice$$201530919 +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator$$FastClassByGuice$$200396049 +instanceKlass org/apache/maven/lifecycle/DefaultLifecycleExecutor$$FastClassByGuice$$199928110 +instanceKlass org/codehaus/plexus/util/dag/TopologicalSorter +instanceKlass org/codehaus/plexus/util/dag/CycleDetector +instanceKlass org/codehaus/plexus/util/dag/Vertex +instanceKlass org/codehaus/plexus/util/dag/DAG +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/ProjectConfigurationElementSorter +instanceKlass org/eclipse/m2e/apt/internal/AptConfiguratorDelegate +instanceKlass org/eclipse/m2e/core/project/configurator/AbstractProjectConfigurator +instanceKlass org/eclipse/m2e/jdt/IJavaProjectConfigurator +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/DefaultPluginExecutionMetadata +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingResult +instanceKlass org/eclipse/m2e/core/project/configurator/AbstractLifecycleMapping +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory +instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox$2 +instanceKlass org/apache/maven/project/DefaultProjectBuildingResult +instanceKlass org/eclipse/aether/util/graph/visitor/TreeDependencyVisitor +instanceKlass org/eclipse/aether/internal/impl/ArtifactRequestBuilder +instanceKlass org/eclipse/aether/util/graph/transformer/NearestVersionSelector$ConflictGroup +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ConflictItem +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$NodeInfo +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeContext +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ConflictContext +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$State +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter$RootQueue +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter$ConflictId +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker$ConflictGroup +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker$Key +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictMarker +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictIdSorter +instanceKlass org/eclipse/aether/util/graph/transformer/TransformationContextKeys +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyGraphTransformationContext +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$Coordinate +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DependencyResolutionResult +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$GraphKey +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCycle +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Descriptor +instanceKlass org/apache/maven/repository/internal/DefaultModelCache$Key +instanceKlass org/apache/maven/model/building/ModelCacheTag$2 +instanceKlass org/apache/maven/model/building/ModelCacheTag$1 +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader$1 +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader$ContentTransformer +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3Reader +instanceKlass org/apache/maven/repository/internal/DefaultModelResolver +instanceKlass org/apache/maven/repository/internal/DefaultModelCache +instanceKlass org/eclipse/aether/repository/LocalArtifactRequest +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher$1 +instanceKlass com/google/common/collect/LinkedHashMultimap$ValueSet$1 +instanceKlass com/google/common/collect/AbstractMapBasedMultimap$WrappedCollection$WrappedIterator +instanceKlass com/google/common/collect/SortedSetMultimap +instanceKlass com/google/common/collect/Multimaps +instanceKlass com/google/common/collect/MultimapBuilder$ArrayListSupplier +instanceKlass com/google/common/collect/MultimapBuilder$MultimapBuilderWithKeys +instanceKlass com/google/common/collect/MultimapBuilder +instanceKlass org/eclipse/aether/RepositoryEvent$Builder +instanceKlass org/eclipse/aether/internal/impl/filter/RemoteRepositoryFilterSourceSupport$SimpleResult +instanceKlass org/eclipse/aether/named/support/Retry$DoNotRetry +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapter$AdaptedLockSyncContext +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/GAVNameMapper +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NameMappers +instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver$Key +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Constraint$VersionRepo +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$Constraint +instanceKlass org/eclipse/aether/util/version/GenericVersion$Item +instanceKlass org/eclipse/aether/util/version/GenericVersion$Tokenizer +instanceKlass org/eclipse/aether/util/version/GenericVersion +instanceKlass org/eclipse/aether/util/version/GenericVersionConstraint +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$ConstraintKey +instanceKlass org/eclipse/aether/util/artifact/ArtifactIdUtils +instanceKlass org/eclipse/aether/util/graph/manager/ClassicDependencyManager$Key +instanceKlass org/eclipse/aether/internal/impl/collect/CollectStepDataImpl +instanceKlass org/eclipse/aether/collection/CollectStepData +instanceKlass org/eclipse/aether/util/concurrency/WorkerThreadFactory +instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$ParallelDescriptorResolver +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CoordinateManager +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper$DefaultDependencyResolutionSkipper$CacheManager +instanceKlass org/eclipse/aether/util/concurrency/ExecutorUtils +instanceKlass org/eclipse/aether/graph/DependencyCycle +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$HardInternPool +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$WeakInternPool +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool$InternPool +instanceKlass org/eclipse/aether/internal/impl/collect/CachingArtifactTypeRegistry +instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter$NamedEntry +instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter$NamedIterator +instanceKlass org/apache/maven/model/Exclusion +instanceKlass org/eclipse/aether/artifact/AbstractArtifact +instanceKlass org/apache/maven/project/DefaultDependencyResolutionRequest +instanceKlass org/apache/maven/lifecycle/Lifecycle$__sisu8$$FastClassByGuice$$198560568 +instanceKlass org/apache/maven/lifecycle/Lifecycle$__sisu7$$FastClassByGuice$$197627653 +instanceKlass org/apache/maven/lifecycle/mapping/LifecycleMojo +instanceKlass org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping$__sisu1$$FastClassByGuice$$197046604 +instanceKlass org/apache/maven/lifecycle/mapping/Lifecycle +instanceKlass org/apache/maven/model/building/DefaultModelBuildingEvent +instanceKlass org/apache/maven/model/building/ModelBuildingEventCatapult$1 +instanceKlass org/apache/maven/project/ReactorModelPool$CacheKey +instanceKlass org/apache/maven/project/DefaultProjectBuilder$InterimResult +instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$__sisu13$$FastClassByGuice$$196041009 +instanceKlass org/apache/maven/artifact/versioning/Restriction +instanceKlass org/apache/maven/artifact/ArtifactUtils +instanceKlass org/apache/maven/artifact/DefaultArtifact +instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler$__sisu9$$FastClassByGuice$$194825767 +instanceKlass org/apache/maven/model/Extension +instanceKlass org/codehaus/plexus/interpolation/util/StringUtils +instanceKlass org/apache/maven/model/DistributionManagement +instanceKlass org/apache/maven/model/DependencyManagement +instanceKlass org/apache/maven/model/IssueManagement +instanceKlass org/apache/maven/model/CiManagement +instanceKlass org/apache/maven/model/Scm +instanceKlass org/apache/maven/model/Prerequisites +instanceKlass org/apache/maven/model/License +instanceKlass org/apache/maven/model/MailingList +instanceKlass org/apache/maven/model/Organization +instanceKlass org/apache/maven/model/Parent +instanceKlass org/codehaus/plexus/interpolation/reflection/MethodMap +instanceKlass org/codehaus/plexus/interpolation/reflection/ClassMap$CacheMiss +instanceKlass org/codehaus/plexus/interpolation/reflection/ClassMap +instanceKlass org/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer +instanceKlass org/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor +instanceKlass org/codehaus/plexus/interpolation/util/ValueSourceUtils +instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$ModelVisitor +instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$1 +instanceKlass org/codehaus/plexus/interpolation/PrefixAwareRecursionInterceptor +instanceKlass org/codehaus/plexus/interpolation/StringSearchInterpolator +instanceKlass org/apache/maven/model/interpolation/UrlNormalizingPostProcessor +instanceKlass org/apache/maven/model/interpolation/PathTranslatingPostProcessor +instanceKlass org/apache/maven/model/interpolation/MavenBuildTimestamp +instanceKlass org/codehaus/plexus/interpolation/PrefixedValueSourceWrapper +instanceKlass org/codehaus/plexus/interpolation/FeedbackEnabledValueSource +instanceKlass org/codehaus/plexus/interpolation/AbstractDelegatingValueSource +instanceKlass org/codehaus/plexus/interpolation/QueryEnabledValueSource +instanceKlass org/apache/maven/model/merge/ModelMerger$ExtensionKeyComputer +instanceKlass org/apache/maven/model/merge/ModelMerger$ResourceKeyComputer +instanceKlass org/apache/maven/model/merge/ModelMerger$SourceDominant +instanceKlass org/apache/maven/model/merge/ModelMerger$DependencyKeyComputer +instanceKlass org/apache/maven/repository/internal/ArtifactDescriptorUtils +instanceKlass org/apache/maven/model/ActivationProperty +instanceKlass org/apache/maven/model/building/ModelProblemUtils +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$Xpp3DomBuilderInputLocationBuilder +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$1 +instanceKlass org/codehaus/plexus/util/xml/Xpp3DomBuilder$InputLocationBuilder +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx$ContentTransformer +instanceKlass org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx +instanceKlass org/apache/maven/building/FileSource +instanceKlass org/apache/maven/model/building/ModelSource2 +instanceKlass org/apache/maven/model/building/DefaultModelBuildingResult +instanceKlass org/apache/maven/model/building/AbstractModelBuildingListener +instanceKlass org/apache/maven/project/ProjectModelResolver +instanceKlass org/apache/maven/model/building/DefaultModelBuildingRequest +instanceKlass org/apache/maven/artifact/repository/LegacyLocalRepositoryManager +instanceKlass org/apache/maven/project/ReactorModelCache +instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox$1 +instanceKlass org/eclipse/m2e/core/internal/IMavenToolbox +instanceKlass org/apache/maven/project/DefaultProjectBuildingRequest +instanceKlass org/eclipse/aether/version/VersionRange +instanceKlass org/eclipse/aether/version/VersionConstraint +instanceKlass org/eclipse/aether/util/version/GenericVersionScheme +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager$Context +instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager$PlexusComponentLookup +instanceKlass org/eclipse/m2e/core/internal/project/ResolverConfigurationIO +instanceKlass org/eclipse/m2e/core/internal/ExtensionReader +instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildContext +instanceKlass org/eclipse/m2e/core/internal/builder/plexusbuildapi/PlexusBuildAPI +instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework +instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildDelta +instanceKlass org/eclipse/m2e/core/internal/builder/IIncrementalBuildFramework$BuildResultCollector +instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl +instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilder$BuildMethod +instanceKlass org/eclipse/m2e/core/internal/builder/DeltaProvider +instanceKlass org/eclipse/jdt/internal/compiler/codegen/DoubleCache +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$SuspendedInferenceRecord +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$InferenceOperation +instanceKlass org/eclipse/jdt/internal/compiler/flow/LoopingFlowContext$EscapingExceptionCatchSite +instanceKlass org/eclipse/jdt/internal/compiler/ast/NullAnnotationMatching +instanceKlass org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$IteratorForReporting +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding$1 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$3 +instanceKlass org/eclipse/core/runtime/SlicedProgressMonitor +instanceKlass org/eclipse/jdt/internal/core/builder/NameSet +instanceKlass org/eclipse/jdt/internal/core/builder/QualifiedNameSet +instanceKlass org/eclipse/jdt/internal/compiler/ClassFile$1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/FunctionalExpression$1BridgeCollector +instanceKlass org/eclipse/jdt/internal/compiler/codegen/LongCache +instanceKlass org/eclipse/jdt/internal/compiler/ClassFile$3 +instanceKlass org/eclipse/jdt/internal/compiler/codegen/VerificationTypeInfo +instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrame +instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$ExceptionMarker +instanceKlass org/eclipse/jdt/internal/compiler/codegen/StackMapFrameCodeStream$FramePosition +instanceKlass org/eclipse/jdt/internal/compiler/codegen/CachedIndexEntry +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfInteger +instanceKlass org/eclipse/jdt/internal/compiler/codegen/CharArrayCache +instanceKlass org/eclipse/jdt/internal/compiler/codegen/OperandStack +instanceKlass org/eclipse/jdt/internal/compiler/ast/UnlikelyArgumentCheck +instanceKlass org/eclipse/jdt/internal/compiler/codegen/ObjectCache +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$3 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$2 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/BoundSet$ThreeSets +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceVariable$InferenceVarKey +instanceKlass org/eclipse/jdt/internal/compiler/lookup/BoundSet +instanceKlass lombok/eclipse/agent/PatchExtensionMethod$Reflection +instanceKlass lombok/eclipse/agent/PatchExtensionMethod$PostponedError +instanceKlass lombok/eclipse/agent/PatchExtensionMethod +instanceKlass lombok/launch/PatchFixesHider$ExtensionMethod +instanceKlass lombok/launch/PatchFixesHider$Val +instanceKlass org/eclipse/jdt/internal/compiler/util/Sorting +instanceKlass lombok/var +instanceKlass lombok/val +instanceKlass java/util/stream/Nodes$IntArrayNode +instanceKlass java/util/stream/Node$Builder$OfInt +instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$Goal +instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$5 +instanceKlass lombok/eclipse/agent/PatchVal +instanceKlass org/eclipse/jdt/internal/compiler/ProcessTaskManager +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeBinding$1 +instanceKlass lombok/eclipse/agent/PatchDelegate$EclipseOnlyMethods +instanceKlass lombok/eclipse/agent/PatchDelegatePortal$Reflection +instanceKlass lombok/eclipse/agent/PatchDelegate$BindingTuple +instanceKlass lombok/eclipse/agent/PatchDelegate +instanceKlass lombok/eclipse/agent/PatchDelegatePortal +instanceKlass lombok/launch/PatchFixesHider$Delegate +instanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationHolder +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBindingSetWrapper +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/TypeAnnotationWalker +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SignatureWrapper +instanceKlass org/eclipse/jdt/internal/compiler/env/ITypeAnnotationWalker$1 +instanceKlass org/eclipse/jdt/internal/compiler/env/ITypeAnnotationWalker +instanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$VariableBindingInitialization +instanceKlass java/nio/file/Files$2 +instanceKlass org/eclipse/jdt/internal/core/builder/ModulePathEntry +instanceKlass org/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer +instanceKlass org/eclipse/jdt/internal/compiler/util/CharArray +instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayHashMap +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceModule +instanceKlass org/eclipse/jdt/internal/compiler/parser/NullMarkdownHelper +instanceKlass org/eclipse/jdt/internal/compiler/parser/IMarkdownCommentHelper +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18 +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfType +instanceKlass org/eclipse/jdt/internal/compiler/util/SortedCharArrays +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SortedCompoundNameVector +instanceKlass lombok/core/TypeResolver +instanceKlass lombok/core/AST$FieldAccess +instanceKlass lombok/core/LombokImmutableList$1 +instanceKlass org/eclipse/jdt/internal/compiler/codegen/AnnotationContext +instanceKlass lombok/eclipse/EclipseAstProblemView +instanceKlass lombok/eclipse/EclipseAST$EcjReflectionCheck +instanceKlass org/eclipse/jdt/internal/compiler/codegen/CodeStream +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener$PostChangeVisitor +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState$1 +instanceKlass lombok/eclipse/handlers/EclipseHandlerUtil +instanceKlass lombok/eclipse/EclipseImportList +instanceKlass lombok/core/debug/DebugSnapshotStore +instanceKlass lombok/core/configuration/FileSystemSourceCache$Content +instanceKlass lombok/core/configuration/ConfigurationFile +instanceKlass lombok/core/configuration/BubblingConfigurationResolver +instanceKlass lombok/core/LombokConfiguration$3 +instanceKlass lombok/core/configuration/FileSystemSourceCache$1 +instanceKlass lombok/core/configuration/ConfigurationProblemReporter$1 +instanceKlass lombok/core/configuration/ConfigurationProblemReporter +instanceKlass lombok/core/configuration/ConfigurationParser +instanceKlass lombok/core/configuration/ConfigurationFileToSource +instanceKlass lombok/core/configuration/FileSystemSourceCache +instanceKlass lombok/core/LombokConfiguration$1 +instanceKlass lombok/core/configuration/ConfigurationResolverFactory +instanceKlass lombok/core/configuration/ConfigurationResolver +instanceKlass lombok/core/LombokConfiguration +instanceKlass lombok/eclipse/EclipseAST$EclipseWorkspaceBasedFileResolver +instanceKlass lombok/core/ImportList +instanceKlass lombok/core/FieldAugment +instanceKlass lombok/eclipse/EcjAugments +instanceKlass lombok/patcher/Symbols +instanceKlass lombok/core/AST +instanceKlass org/eclipse/jdt/internal/compiler/util/HashSetOfInt +instanceKlass org/eclipse/jdt/internal/compiler/parser/NLSTag +instanceKlass lombok/eclipse/HandlerLibrary$VisitorContainer +instanceKlass lombok/experimental/WithBy +instanceKlass lombok/With +instanceKlass lombok/Value +instanceKlass lombok/eclipse/EclipseASTAdapter +instanceKlass lombok/experimental/UtilityClass +instanceKlass lombok/ToString +instanceKlass lombok/Synchronized +instanceKlass lombok/experimental/SuperBuilder +instanceKlass lombok/eclipse/handlers/EclipseSingularsRecipes$StatementMaker +instanceKlass lombok/eclipse/handlers/EclipseSingularsRecipes$TypeReferenceMaker +instanceKlass lombok/eclipse/handlers/HandleBuilder$BuilderJob +instanceKlass lombok/experimental/StandardException +instanceKlass lombok/SneakyThrows +instanceKlass lombok/Setter +instanceKlass lombok/core/PrintAST +instanceKlass lombok/NonNull +instanceKlass lombok/extern/slf4j/XSlf4j +instanceKlass lombok/extern/slf4j/Slf4j +instanceKlass lombok/extern/log4j/Log4j +instanceKlass lombok/extern/log4j/Log4j2 +instanceKlass lombok/extern/java/Log +instanceKlass lombok/extern/jbosslog/JBossLog +instanceKlass lombok/extern/flogger/Flogger +instanceKlass lombok/CustomLog +instanceKlass lombok/extern/apachecommons/CommonsLog +instanceKlass lombok/Locked$Write +instanceKlass lombok/Locked$Read +instanceKlass lombok/Locked +instanceKlass lombok/extern/jackson/Jacksonized +instanceKlass lombok/experimental/Helper +instanceKlass lombok/Getter +instanceKlass lombok/experimental/FieldNameConstants +instanceKlass lombok/core/LombokImmutableList +instanceKlass lombok/core/JavaIdentifiers +instanceKlass lombok/experimental/ExtensionMethod +instanceKlass lombok/EqualsAndHashCode +instanceKlass lombok/experimental/Delegate +instanceKlass lombok/Data +instanceKlass org/eclipse/jdt/internal/compiler/codegen/Label +instanceKlass lombok/eclipse/Eclipse +instanceKlass lombok/RequiredArgsConstructor +instanceKlass lombok/NoArgsConstructor +instanceKlass lombok/AllArgsConstructor +instanceKlass lombok/Cleanup +instanceKlass lombok/Builder$Default +instanceKlass lombok/Builder +instanceKlass lombok/eclipse/handlers/HandleConstructor +instanceKlass lombok/core/LombokInternalAliasing +instanceKlass lombok/core/HandlerPriority +instanceKlass lombok/eclipse/DeferUntilPostDiet +instanceKlass lombok/eclipse/HandlerLibrary$AnnotationHandlerContainer +instanceKlass lombok/experimental/Accessors +instanceKlass lombok/eclipse/EclipseAnnotationHandler +instanceKlass lombok/core/SpiLoadUtil$1$1 +instanceKlass lombok/core/SpiLoadUtil$1 +instanceKlass lombok/core/SpiLoadUtil +instanceKlass lombok/core/configuration/ConfigurationKeysLoader +instanceKlass lombok/core/configuration/CheckerFrameworkVersion +instanceKlass lombok/core/configuration/TypeName +instanceKlass lombok/core/configuration/LogDeclaration +instanceKlass lombok/core/configuration/IdentifierName +instanceKlass lombok/core/configuration/ConfigurationDataType$6 +instanceKlass lombok/core/configuration/ConfigurationDataType$7 +instanceKlass lombok/core/configuration/NullAnnotationLibrary +instanceKlass lombok/core/configuration/ConfigurationValueType +instanceKlass lombok/core/configuration/ConfigurationDataType$5 +instanceKlass lombok/core/configuration/ConfigurationDataType$4 +instanceKlass lombok/core/configuration/ConfigurationDataType$3 +instanceKlass lombok/core/configuration/ConfigurationDataType$2 +instanceKlass lombok/core/configuration/ConfigurationDataType$1 +instanceKlass java/util/stream/MatchOps$BooleanTerminalSink +instanceKlass java/util/stream/MatchOps$MatchOp +instanceKlass java/util/stream/MatchOps +instanceKlass lombok/core/configuration/ConfigurationValueParser +instanceKlass org/apache/commons/codec/CharEncoding +instanceKlass org/apache/commons/codec/binary/Hex +instanceKlass org/apache/commons/codec/BinaryDecoder +instanceKlass org/apache/commons/codec/Decoder +instanceKlass lombok/core/configuration/ConfigurationDataType +instanceKlass org/apache/commons/codec/BinaryEncoder +instanceKlass org/apache/commons/codec/Encoder +instanceKlass sun/security/provider/ByteArrayAccess$LE +instanceKlass org/apache/commons/codec/binary/StringUtils +instanceKlass org/apache/commons/codec/digest/DigestUtils +instanceKlass org/eclipse/m2e/core/internal/embedder/ReadonlyMavenExecutionRequest +instanceKlass org/eclipse/m2e/core/internal/embedder/AbstractTransferListenerAdapter +instanceKlass org/apache/maven/session/scope/internal/SessionScope$CachingProvider +instanceKlass org/apache/maven/settings/RuntimeInfo +instanceKlass org/apache/maven/execution/DefaultMavenExecutionResult +instanceKlass org/eclipse/aether/AbstractForwardingRepositorySystemSession +instanceKlass org/eclipse/aether/internal/impl/Utils +instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactorySupport$LocalPathPrefixComposerSupport +instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManager +instanceKlass org/eclipse/aether/internal/impl/PrioritizedComponent +instanceKlass org/eclipse/sisu/wire/EntrySetAdapter$ValueIterator +instanceKlass org/eclipse/aether/internal/impl/PrioritizedComponents +instanceKlass org/eclipse/aether/repository/RemoteRepository$Builder +instanceKlass org/eclipse/aether/util/ConfigUtils +instanceKlass org/eclipse/aether/util/repository/DefaultAuthenticationSelector +instanceKlass org/eclipse/aether/util/repository/DefaultProxySelector +instanceKlass org/eclipse/aether/util/repository/DefaultMirrorSelector +instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecryptionResult +instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest +instanceKlass org/apache/maven/RepositoryUtils$MavenArtifactTypeRegistry +instanceKlass org/apache/maven/RepositoryUtils +instanceKlass org/eclipse/aether/util/repository/SimpleResolutionErrorPolicy +instanceKlass org/eclipse/aether/util/repository/SimpleArtifactDescriptorPolicy +instanceKlass org/eclipse/aether/artifact/DefaultArtifactType +instanceKlass org/eclipse/aether/util/artifact/SimpleArtifactTypeRegistry +instanceKlass org/eclipse/aether/util/graph/transformer/JavaDependencyContextRefiner +instanceKlass org/eclipse/aether/util/graph/transformer/ChainedDependencyGraphTransformer +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver +instanceKlass org/eclipse/aether/graph/Exclusion +instanceKlass org/eclipse/aether/util/graph/selector/ExclusionDependencySelector +instanceKlass org/eclipse/aether/util/graph/selector/OptionalDependencySelector +instanceKlass org/eclipse/aether/util/graph/selector/ScopeDependencySelector +instanceKlass org/eclipse/aether/util/graph/selector/AndDependencySelector +instanceKlass org/eclipse/aether/util/graph/manager/ClassicDependencyManager +instanceKlass org/eclipse/aether/util/graph/traverser/FatArtifactTraverser +instanceKlass org/eclipse/aether/DefaultSessionData +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullFileTransformerManager +instanceKlass org/eclipse/aether/transform/FileTransformerManager +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullArtifactTypeRegistry +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullAuthenticationSelector +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullProxySelector +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession$NullMirrorSelector +instanceKlass org/eclipse/aether/SessionData +instanceKlass org/eclipse/aether/artifact/ArtifactTypeRegistry +instanceKlass org/apache/maven/repository/internal/MavenRepositorySystemUtils +instanceKlass org/apache/maven/graph/DefaultGraphBuilder$$FastClassByGuice$$193577867 +instanceKlass org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver$$FastClassByGuice$$192071863 +instanceKlass org/apache/maven/plugin/CompoundMojoExecutionListener +instanceKlass org/apache/maven/plugin/DefaultBuildPluginManager$$FastClassByGuice$$191090078 +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator$$FastClassByGuice$$190261666 +instanceKlass org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult$$FastClassByGuice$$189695266 +instanceKlass org/apache/maven/project/DefaultProjectDependenciesResolver$$FastClassByGuice$$188710714 +instanceKlass org/apache/maven/project/RepositorySessionDecorator +instanceKlass lombok/core/configuration/ConfigurationKey +instanceKlass com/google/inject/internal/DelegatingInvocationHandler +instanceKlass org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader$$FastClassByGuice$$187400705 +instanceKlass lombok/ConfigurationKeys +instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$$FastClassByGuice$$186608086 +instanceKlass lombok/core/configuration/ConfigurationKeysLoader$LoaderLoader +instanceKlass org/apache/maven/rtinfo/internal/DefaultRuntimeInformation$$FastClassByGuice$$184753600 +instanceKlass lombok/core/TypeLibrary +instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache$$FastClassByGuice$$183861369 +instanceKlass org/apache/maven/plugin/internal/DefaultMavenPluginManager$$FastClassByGuice$$182743698 +instanceKlass lombok/eclipse/HandlerLibrary +instanceKlass org/codehaus/plexus/classworlds/realm/Entry +instanceKlass org/apache/maven/classrealm/DefaultClassRealmRequest +instanceKlass lombok/eclipse/EclipseASTVisitor +instanceKlass org/eclipse/sisu/wire/EntryListAdapter$ValueIterator +instanceKlass lombok/eclipse/TransformEclipseAST +instanceKlass org/apache/maven/project/DefaultProjectBuildingHelper$$FastClassByGuice$$182338467 +instanceKlass org/apache/maven/project/DefaultProjectBuilder$$FastClassByGuice$$181229941 +instanceKlass org/apache/maven/DefaultMaven$$FastClassByGuice$$179810374 +instanceKlass lombok/launch/PackageShader +instanceKlass org/apache/maven/properties/internal/SystemProperties +instanceKlass org/codehaus/plexus/util/Os +instanceKlass org/apache/maven/properties/internal/EnvironmentUtils +instanceKlass org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout2 +instanceKlass org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout$$FastClassByGuice$$179242276 +instanceKlass org/apache/maven/repository/DefaultMirrorSelector$$FastClassByGuice$$177841613 +instanceKlass org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory$$FastClassByGuice$$177196667 +instanceKlass org/eclipse/aether/artifact/ArtifactType +instanceKlass lombok/launch/Main +instanceKlass lombok/launch/PatchFixesHider$Transform +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer$$FastClassByGuice$$175342792 +instanceKlass org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector$$FastClassByGuice$$174337034 +instanceKlass org/apache/maven/model/Contributor +instanceKlass org/apache/maven/model/PatternSet +instanceKlass org/apache/maven/model/merge/ModelMerger$KeyComputer +instanceKlass org/apache/maven/model/merge/ModelMerger$Remapping +instanceKlass org/eclipse/sisu/wire/NamedIterableAdapter +instanceKlass org/eclipse/jdt/core/dom/ModuleModifier$ModuleModifierKeyword +instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager$1 +instanceKlass org/eclipse/jdt/core/dom/PrimitiveType$Code +instanceKlass org/eclipse/jdt/core/dom/InfixExpression$Operator +instanceKlass org/apache/maven/repository/legacy/DefaultUpdateCheckManager$$FastClassByGuice$$173116833 +instanceKlass org/eclipse/jdt/core/dom/ASTConverter$ISetJavaDoc +instanceKlass org/eclipse/jdt/core/dom/ASTConverter$IGetJavaDoc +instanceKlass org/apache/maven/repository/legacy/DefaultWagonManager$$FastClassByGuice$$172931354 +instanceKlass org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager$$FastClassByGuice$$171817423 +instanceKlass org/apache/maven/project/artifact/DefaultMetadataSource$$FastClassByGuice$$170352620 +instanceKlass org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler$$FastClassByGuice$$169377481 +instanceKlass org/apache/maven/plugin/internal/DefaultLegacySupport$$FastClassByGuice$$168477966 +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver$$FastClassByGuice$$167049971 +instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactCollector$$FastClassByGuice$$166208591 +instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver$DaemonThreadCreator +instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver$$FastClassByGuice$$165130623 +instanceKlass org/apache/maven/artifact/factory/DefaultArtifactFactory$$FastClassByGuice$$164515835 +instanceKlass org/apache/maven/repository/legacy/LegacyRepositorySystem$$FastClassByGuice$$163458618 +instanceKlass org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager$$FastClassByGuice$$161524647 +instanceKlass org/eclipse/sisu/inject/Guice4$2 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BundleUtils$BundleInfo +instanceKlass org/eclipse/aether/DefaultRepositoryCache +instanceKlass org/eclipse/aether/RepositoryCache +instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequest +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BundleUtils +instanceKlass org/apache/maven/shared/utils/StringUtils +instanceKlass org/apache/maven/settings/building/DefaultSettingsBuildingResult +instanceKlass org/codehaus/plexus/util/xml/pull/EntityReplacementMap +instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader$1 +instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader$ContentTransformer +instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Reader +instanceKlass org/codehaus/plexus/interpolation/SimpleRecursionInterceptor +instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder$1 +instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils$DefaultEnvVarSource +instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils$EnvVarSource +instanceKlass org/codehaus/plexus/interpolation/os/OperatingSystemUtils +instanceKlass org/codehaus/plexus/interpolation/AbstractValueSource +instanceKlass org/codehaus/plexus/interpolation/RegexBasedInterpolator +instanceKlass org/codehaus/plexus/util/xml/pull/MXSerializer +instanceKlass org/apache/maven/settings/io/xpp3/SettingsXpp3Writer +instanceKlass org/codehaus/plexus/util/StringUtils +instanceKlass org/eclipse/sisu/inject/LazyBeanEntry$JsrNamed +instanceKlass org/eclipse/sisu/inject/LazyBeanEntry +instanceKlass javax/annotation/Priority +instanceKlass org/eclipse/sisu/inject/Implementations +instanceKlass org/eclipse/sisu/plexus/LazyPlexusBean +instanceKlass org/eclipse/sisu/inject/RankedSequence$Itr +instanceKlass org/eclipse/sisu/inject/RankedBindings$Itr +instanceKlass org/eclipse/sisu/inject/LocatedBeans$Itr +instanceKlass org/eclipse/sisu/plexus/RealmFilteredBeans$FilteredItr +instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeans$Itr +instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeans +instanceKlass org/eclipse/sisu/plexus/RealmFilteredBeans +instanceKlass org/eclipse/sisu/inject/BeanCache +instanceKlass org/eclipse/sisu/inject/LocatedBeans +instanceKlass org/eclipse/sisu/inject/MildElements$Indexable +instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager$2 +instanceKlass org/eclipse/m2e/core/internal/embedder/LifecycleManagerDisposer +instanceKlass com/google/inject/internal/ProviderInternalFactory$1 +instanceKlass com/google/inject/internal/ConstructorInjector$1 +instanceKlass org/eclipse/jdt/core/dom/ASTConverter +instanceKlass org/eclipse/sisu/inject/WatchedBeans +instanceKlass org/eclipse/sisu/inject/MildValues$ValueItr +instanceKlass org/eclipse/sisu/inject/InjectorBindings +instanceKlass com/google/inject/spi/ProvisionListener$ProvisionInvocation +instanceKlass com/google/inject/internal/MembersInjectorImpl$1 +instanceKlass com/google/inject/internal/InternalContext +instanceKlass com/google/inject/internal/Initializer$1 +instanceKlass com/google/common/collect/AbstractMapBasedMultimap$AsMap$AsMapIterator +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$$FastClassByGuice$$160513778 +instanceKlass org/eclipse/sisu/wire/TypeConverterCache$$FastClassByGuice$$159598196 +instanceKlass com/google/inject/internal/SingleMethodInjector$1 +instanceKlass org/eclipse/sisu/inject/DefaultBeanLocator$$FastClassByGuice$$159169382 +instanceKlass com/google/inject/internal/InjectorImpl$MethodInvoker +instanceKlass com/google/inject/internal/SingleMethodInjector +instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanConverter$$FastClassByGuice$$157637865 +instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseRepositoryListener$$FastClassByGuice$$156257566 +instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseClassRealmManagerDelegate$$FastClassByGuice$$155361935 +instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseBuildContext$$FastClassByGuice$$154251267 +instanceKlass org/eclipse/m2e/core/internal/project/registry/EclipsePluginDependenciesResolver$$FastClassByGuice$$153405166 +instanceKlass org/eclipse/m2e/core/internal/project/EclipsePluginArtifactsCache$$FastClassByGuice$$152325745 +instanceKlass org/eclipse/m2e/core/internal/project/EclipsePluginRealmCache$$FastClassByGuice$$151372779 +instanceKlass org/eclipse/m2e/core/internal/project/EclipseProjectRealmCache$$FastClassByGuice$$150333917 +instanceKlass org/eclipse/m2e/core/internal/project/EclipseExtensionRealmCache$$FastClassByGuice$$149772018 +instanceKlass org/eclipse/m2e/core/internal/project/EclipseMavenMetadataCache$$FastClassByGuice$$148125361 +instanceKlass org/sonatype/plexus/components/sec/dispatcher/DefaultSecDispatcher$$FastClassByGuice$$147187494 +instanceKlass org/sonatype/plexus/components/cipher/DefaultPlexusCipher$$FastClassByGuice$$146247639 +instanceKlass com/google/gson/internal/ConstructorConstructor$13 +instanceKlass org/apache/maven/settings/validation/DefaultSettingsValidator$$FastClassByGuice$$145710036 +instanceKlass org/apache/maven/settings/io/DefaultSettingsWriter$$FastClassByGuice$$144346099 +instanceKlass org/apache/maven/settings/io/DefaultSettingsReader$$FastClassByGuice$$142966739 +instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecrypter$$FastClassByGuice$$141860203 +instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder$$FastClassByGuice$$141518238 +instanceKlass org/eclipse/aether/transport/wagon/WagonTransporterFactory$$FastClassByGuice$$139515360 +instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonProvider$$FastClassByGuice$$138988981 +instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonConfigurator$$FastClassByGuice$$138072792 +instanceKlass org/eclipse/aether/transport/http/XChecksumChecksumExtractor$$FastClassByGuice$$136569508 +instanceKlass org/eclipse/aether/transport/http/Nexus2ChecksumExtractor$$FastClassByGuice$$136287635 +instanceKlass org/eclipse/aether/transport/http/HttpTransporterFactory$$FastClassByGuice$$135075289 +instanceKlass org/eclipse/aether/transport/file/FileTransporterFactory$$FastClassByGuice$$133356899 +instanceKlass org/apache/maven/repository/internal/VersionsMetadataGeneratorFactory$$FastClassByGuice$$132830780 +instanceKlass org/apache/maven/repository/internal/SnapshotMetadataGeneratorFactory$$FastClassByGuice$$131263602 +instanceKlass com/google/common/io/Closer$Suppressor +instanceKlass com/google/common/io/Closer +instanceKlass org/apache/maven/repository/internal/PluginsMetadataGeneratorFactory$$FastClassByGuice$$130361948 +instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver$$FastClassByGuice$$129429134 +instanceKlass com/google/common/io/CharSink +instanceKlass org/apache/maven/repository/internal/DefaultVersionRangeResolver$$FastClassByGuice$$128828371 +instanceKlass com/google/common/io/Files$2 +instanceKlass com/google/common/io/LineProcessor +instanceKlass org/apache/maven/repository/internal/DefaultModelCacheFactory$$FastClassByGuice$$127144999 +instanceKlass com/google/common/io/ByteSink +instanceKlass org/apache/maven/repository/internal/DefaultArtifactDescriptorReader$$FastClassByGuice$$126302239 +instanceKlass org/eclipse/aether/named/providers/NoopNamedLockFactory$$FastClassByGuice$$124840354 +instanceKlass org/eclipse/aether/named/providers/LocalSemaphoreNamedLockFactory$$FastClassByGuice$$124448623 +instanceKlass org/eclipse/aether/named/providers/LocalReadWriteLockNamedLockFactory$$FastClassByGuice$$123191608 +instanceKlass com/google/common/graph/SuccessorsFunction +instanceKlass org/eclipse/aether/named/providers/FileLockNamedLockFactory$$FastClassByGuice$$121859326 +instanceKlass com/google/common/io/Files +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/StaticNameMapperProvider$$FastClassByGuice$$121466921 +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/GAVNameMapperProvider$$FastClassByGuice$$119819787 +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileStaticNameMapperProvider$$FastClassByGuice$$118491343 +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileHashingGAVNameMapperProvider$$FastClassByGuice$$118045916 +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileGAVNameMapperProvider$$FastClassByGuice$$116771478 +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/DiscriminatingNameMapperProvider$$FastClassByGuice$$115728590 +instanceKlass com/google/common/base/AbstractIterator +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl$$FastClassByGuice$$114591852 +instanceKlass com/google/common/base/Splitter$3 +instanceKlass com/google/common/base/CommonMatcher +instanceKlass org/eclipse/aether/internal/impl/synccontext/legacy/DefaultSyncContextFactory$$FastClassByGuice$$113352746 +instanceKlass com/google/common/base/Splitter$Strategy +instanceKlass com/google/common/base/Splitter +instanceKlass org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory$$FastClassByGuice$$112684469 +instanceKlass org/eclipse/aether/internal/impl/slf4j/Slf4jLoggerFactory$$FastClassByGuice$$111574406 +instanceKlass org/eclipse/aether/internal/impl/resolution/TrustedChecksumsArtifactResolverPostProcessor$$FastClassByGuice$$110752982 +instanceKlass org/eclipse/aether/internal/impl/filter/PrefixesRemoteRepositoryFilterSource$$FastClassByGuice$$109770066 +instanceKlass org/eclipse/aether/internal/impl/filter/GroupIdRemoteRepositoryFilterSource$$FastClassByGuice$$108601963 +instanceKlass org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager$$FastClassByGuice$$107525444 +instanceKlass org/eclipse/aether/internal/impl/collect/df/DfDependencyCollector$$FastClassByGuice$$106306660 +instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$$FastClassByGuice$$105665383 +instanceKlass com/google/common/io/ByteSource +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector$$FastClassByGuice$$103869112 +instanceKlass org/eclipse/aether/internal/impl/checksum/TrustedToProvidedChecksumsSourceAdapter$$FastClassByGuice$$103421239 +instanceKlass org/eclipse/aether/internal/impl/checksum/SummaryFileTrustedChecksumsSource$$FastClassByGuice$$102739388 +instanceKlass com/google/common/io/CharSource +instanceKlass org/eclipse/aether/internal/impl/checksum/SparseDirectoryTrustedChecksumsSource$$FastClassByGuice$$101098005 +instanceKlass org/eclipse/aether/internal/impl/checksum/Sha512ChecksumAlgorithmFactory$$FastClassByGuice$$100509684 +instanceKlass org/eclipse/aether/internal/impl/checksum/Sha256ChecksumAlgorithmFactory$$FastClassByGuice$$98610773 +instanceKlass org/eclipse/aether/internal/impl/checksum/Sha1ChecksumAlgorithmFactory$$FastClassByGuice$$98235280 +instanceKlass org/eclipse/aether/internal/impl/checksum/Md5ChecksumAlgorithmFactory$$FastClassByGuice$$97384602 +instanceKlass org/eclipse/aether/internal/impl/checksum/DefaultChecksumAlgorithmFactorySelector$$FastClassByGuice$$95708558 +instanceKlass com/google/common/io/Closeables +instanceKlass sun/net/www/http/KeepAliveEntry +instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManagerFactory$$FastClassByGuice$$94649250 +instanceKlass sun/net/www/http/KeepAliveCache$1 +instanceKlass org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory$$FastClassByGuice$$93506179 +instanceKlass org/eclipse/aether/internal/impl/LoggerFactoryProvider$$FastClassByGuice$$92845935 +instanceKlass org/eclipse/aether/internal/impl/EnhancedLocalRepositoryManagerFactory$$FastClassByGuice$$92211611 +instanceKlass org/eclipse/aether/internal/impl/DefaultUpdatePolicyAnalyzer$$FastClassByGuice$$90328710 +instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager$$FastClassByGuice$$89264968 +instanceKlass org/eclipse/aether/internal/impl/DefaultTransporterProvider$$FastClassByGuice$$88271712 +instanceKlass org/eclipse/aether/internal/impl/DefaultTrackingFileManager$$FastClassByGuice$$87502688 +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystemLifecycle$$FastClassByGuice$$86227729 +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystem$$FastClassByGuice$$85092942 +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryLayoutProvider$$FastClassByGuice$$84415024 +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher$$FastClassByGuice$$83371253 +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryConnectorProvider$$FastClassByGuice$$82689339 +instanceKlass org/eclipse/aether/internal/impl/DefaultRemoteRepositoryManager$$FastClassByGuice$$81303760 +instanceKlass org/eclipse/aether/internal/impl/DefaultOfflineController$$FastClassByGuice$$80475113 +instanceKlass org/eclipse/aether/internal/impl/DefaultMetadataResolver$$FastClassByGuice$$78900829 +instanceKlass org/eclipse/aether/internal/impl/DefaultLocalRepositoryProvider$$FastClassByGuice$$77749798 +instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathPrefixComposerFactory$$FastClassByGuice$$77592847 +instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathComposer$$FastClassByGuice$$75521695 +instanceKlass lombok/eclipse/agent/PatchValEclipse$Reflection +instanceKlass org/eclipse/aether/internal/impl/DefaultInstaller$$FastClassByGuice$$74837179 +instanceKlass org/eclipse/aether/internal/impl/DefaultFileProcessor$$FastClassByGuice$$74447264 +instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer$$FastClassByGuice$$72846539 +instanceKlass org/eclipse/aether/internal/impl/DefaultChecksumPolicyProvider$$FastClassByGuice$$71683603 +instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver$$FastClassByGuice$$70335257 +instanceKlass org/eclipse/aether/connector/basic/BasicRepositoryConnectorFactory$$FastClassByGuice$$69927911 +instanceKlass org/apache/maven/model/validation/DefaultModelValidator$$FastClassByGuice$$68687941 +instanceKlass org/apache/maven/model/superpom/DefaultSuperPomProvider$$FastClassByGuice$$68020039 +instanceKlass org/apache/maven/model/profile/activation/PropertyProfileActivator$$FastClassByGuice$$66676858 +instanceKlass org/apache/maven/model/profile/activation/OperatingSystemProfileActivator$$FastClassByGuice$$65743424 +instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator$$FastClassByGuice$$64667185 +instanceKlass org/apache/maven/model/profile/activation/FileProfileActivator$$FastClassByGuice$$63232843 +instanceKlass org/eclipse/jdt/core/dom/Modifier$ModifierKeyword +instanceKlass org/eclipse/jdt/core/dom/IExtendedModifier +instanceKlass org/apache/maven/model/profile/DefaultProfileSelector$$FastClassByGuice$$62004706 +instanceKlass org/apache/maven/model/profile/DefaultProfileInjector$$FastClassByGuice$$61113268 +instanceKlass org/eclipse/jdt/core/dom/AST +instanceKlass org/apache/maven/model/plugin/DefaultReportingConverter$$FastClassByGuice$$60406537 +instanceKlass org/apache/maven/model/plugin/DefaultReportConfigurationExpander$$FastClassByGuice$$59449521 +instanceKlass com/google/common/io/CharStreams +instanceKlass org/apache/maven/model/plugin/DefaultPluginConfigurationExpander$$FastClassByGuice$$58627675 +instanceKlass org/apache/maven/model/path/ProfileActivationFilePathInterpolator$$FastClassByGuice$$57606698 +instanceKlass org/apache/maven/model/path/DefaultUrlNormalizer$$FastClassByGuice$$56097581 +instanceKlass org/apache/maven/model/path/DefaultPathTranslator$$FastClassByGuice$$55075480 +instanceKlass com/google/common/base/Charsets +instanceKlass sun/net/www/http/KeepAliveStreamCleaner$2 +instanceKlass org/apache/maven/model/path/DefaultModelUrlNormalizer$$FastClassByGuice$$53683126 +instanceKlass sun/net/www/http/KeepAliveStreamCleaner$1 +instanceKlass org/apache/maven/model/path/DefaultModelPathTranslator$$FastClassByGuice$$53197014 +instanceKlass sun/net/www/http/Hurryable +instanceKlass sun/net/www/HeaderParser +instanceKlass org/apache/maven/model/normalization/DefaultModelNormalizer$$FastClassByGuice$$51564307 +instanceKlass org/apache/maven/model/management/DefaultPluginManagementInjector$$FastClassByGuice$$50994650 +instanceKlass org/apache/maven/model/management/DefaultDependencyManagementInjector$$FastClassByGuice$$49675836 +instanceKlass org/apache/maven/model/locator/DefaultModelLocator$$FastClassByGuice$$48332851 +instanceKlass org/apache/maven/model/io/DefaultModelWriter$$FastClassByGuice$$48128884 +instanceKlass org/apache/maven/model/io/DefaultModelReader$$FastClassByGuice$$47143539 +instanceKlass lombok/eclipse/agent/PatchValEclipse +instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$$FastClassByGuice$$45291541 +instanceKlass org/apache/maven/model/interpolation/DefaultModelVersionProcessor$$FastClassByGuice$$44342838 +instanceKlass lombok/eclipse/agent/PatchValEclipsePortal$Reflection +instanceKlass lombok/eclipse/agent/PatchValEclipsePortal +instanceKlass org/apache/maven/model/inheritance/DefaultInheritanceAssembler$$FastClassByGuice$$43854613 +instanceKlass lombok/core/LombokNode +instanceKlass org/apache/maven/model/composition/DefaultDependencyManagementImporter$$FastClassByGuice$$42810577 +instanceKlass lombok/core/DiagnosticsReceiver +instanceKlass org/apache/maven/model/building/DefaultModelProcessor$$FastClassByGuice$$41033446 +instanceKlass sun/security/ssl/TransportContext$NotifyHandshake$1 +instanceKlass org/apache/maven/model/building/DefaultModelBuilder$$FastClassByGuice$$40661004 +instanceKlass lombok/launch/PatchFixesHider$ValPortal +instanceKlass sun/net/www/protocol/http/AuthCacheImpl +instanceKlass sun/net/www/protocol/http/AuthCache +instanceKlass sun/net/www/protocol/http/AuthCacheValue +instanceKlass sun/net/DefaultProgressMeteringPolicy +instanceKlass sun/net/ProgressMeteringPolicy +instanceKlass sun/net/ProgressMonitor +instanceKlass sun/security/ssl/TransportContext$NotifyHandshake +instanceKlass org/apache/maven/cli/internal/BootstrapCoreExtensionManager$$FastClassByGuice$$39039608 +instanceKlass org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor$$FastClassByGuice$$38059749 +instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsWriter$$FastClassByGuice$$37460587 +instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsReader$$FastClassByGuice$$35901076 +instanceKlass org/eclipse/core/internal/content/TextContentDescriber +instanceKlass org/eclipse/core/runtime/content/ITextContentDescriber +instanceKlass org/eclipse/core/runtime/content/IContentDescriber +instanceKlass org/eclipse/core/internal/content/ContentTypeCatalog$1 +instanceKlass org/apache/maven/toolchain/building/DefaultToolchainsBuilder$$FastClassByGuice$$35452696 +instanceKlass org/apache/maven/plugin/internal/ReadOnlyPluginParametersValidator$$FastClassByGuice$$34261670 +instanceKlass org/eclipse/core/internal/content/ContentTypeVisitor +instanceKlass org/apache/maven/plugin/internal/PlexusContainerDefaultDependenciesValidator$$FastClassByGuice$$33160123 +instanceKlass com/sun/crypto/provider/GaloisCounterMode$GCTRGHASH +instanceKlass org/apache/maven/plugin/internal/MavenScopeDependenciesValidator$$FastClassByGuice$$31485328 +instanceKlass com/sun/crypto/provider/GHASH +instanceKlass org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration$1 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$Substitutor +instanceKlass com/sun/crypto/provider/GCM +instanceKlass org/apache/maven/plugin/internal/MavenMixedDependenciesValidator$$FastClassByGuice$$30626556 +instanceKlass com/sun/crypto/provider/GaloisCounterMode$GCMEngine +instanceKlass org/eclipse/core/internal/resources/ProjectContentTypes$ProjectContentTypeSelectionPolicy +instanceKlass org/eclipse/jdt/internal/compiler/CompilationResult$1 +instanceKlass org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator$$FastClassByGuice$$29866244 +instanceKlass javax/crypto/spec/GCMParameterSpec +instanceKlass sun/security/ssl/ChangeCipherSpec$T13ChangeCipherSpecConsumer +instanceKlass org/apache/maven/plugin/internal/Maven2DependenciesValidator$$FastClassByGuice$$28702588 +instanceKlass sun/security/ssl/ChangeCipherSpec$T10ChangeCipherSpecProducer +instanceKlass sun/security/ssl/ChangeCipherSpec$T10ChangeCipherSpecConsumer +instanceKlass sun/security/ssl/ChangeCipherSpec +instanceKlass org/eclipse/jdt/internal/compiler/ReadManager +instanceKlass org/apache/maven/plugin/internal/DeprecatedPluginValidator$$FastClassByGuice$$27503724 +instanceKlass sun/security/internal/spec/TlsPrfParameterSpec +instanceKlass sun/security/ssl/Finished$1 +instanceKlass org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator$$FastClassByGuice$$26488806 +instanceKlass sun/security/ssl/Finished$T13VerifyDataGenerator +instanceKlass sun/security/ssl/Finished$T12VerifyDataGenerator +instanceKlass sun/security/ssl/Finished$T10VerifyDataGenerator +instanceKlass sun/security/ssl/Finished$S30VerifyDataGenerator +instanceKlass sun/security/ssl/Finished$VerifyDataGenerator +instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$$FastClassByGuice$$25445347 +instanceKlass sun/security/internal/spec/TlsKeyMaterialSpec +instanceKlass org/eclipse/jdt/internal/compiler/util/Messages +instanceKlass javax/crypto/spec/IvParameterSpec +instanceKlass org/apache/maven/plugin/DefaultMojosExecutionStrategy$$FastClassByGuice$$24742574 +instanceKlass sun/security/internal/spec/TlsKeyMaterialParameterSpec +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$LegacyTrafficKeyDerivation +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$1 +instanceKlass org/apache/maven/lifecycle/internal/LifecycleDependencyResolver$$FastClassByGuice$$23487762 +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T13TrafficKeyDerivationGenerator +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T12TrafficKeyDerivationGenerator +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$T10TrafficKeyDerivationGenerator +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation$S30TrafficKeyDerivationGenerator +instanceKlass com/sun/crypto/provider/TlsMasterSecretGenerator$TlsMasterSecretKey +instanceKlass sun/security/internal/interfaces/TlsMasterSecret +instanceKlass sun/security/internal/spec/TlsMasterSecretParameterSpec +instanceKlass sun/security/ssl/SSLMasterKeyDerivation$LegacyMasterKeyDerivation +instanceKlass org/eclipse/jdt/internal/core/builder/SourceFile +instanceKlass sun/security/ssl/SSLMasterKeyDerivation$1 +instanceKlass sun/security/ssl/SSLKeyDerivationGenerator +instanceKlass javax/crypto/spec/SecretKeySpec$1 +instanceKlass jdk/internal/access/JavaxCryptoSpecAccess +instanceKlass org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory$$FastClassByGuice$$22860941 +instanceKlass org/eclipse/core/internal/utils/BitMask +instanceKlass javax/crypto/spec/SecretKeySpec +instanceKlass org/eclipse/jdt/internal/core/builder/AbstractImageBuilder$1 +instanceKlass org/apache/maven/internal/aether/ResolverLifecycle$$FastClassByGuice$$21731109 +instanceKlass org/eclipse/jdt/internal/core/builder/BatchImageBuilder$3 +instanceKlass com/google/inject/internal/InjectorImpl$SyntheticProviderBindingImpl$1 +instanceKlass com/google/inject/internal/InjectorImpl$1 +instanceKlass javax/crypto/KeyAgreementSpi +instanceKlass sun/security/ssl/KAKeyDerivation +instanceKlass sun/security/ssl/ECDHKeyExchange$1 +instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory$$FastClassByGuice$$20511805 +instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHEClientKeyExchangeProducer +instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHEClientKeyExchangeConsumer +instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHClientKeyExchangeProducer +instanceKlass sun/security/ssl/ECDHClientKeyExchange$ECDHClientKeyExchangeConsumer +instanceKlass com/google/inject/internal/SingleFieldInjector +instanceKlass sun/security/ssl/ECDHClientKeyExchange +instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory$1 +instanceKlass java/util/concurrent/ForkJoinTask$Aux +instanceKlass org/apache/maven/extension/internal/CoreExportsProvider$$FastClassByGuice$$19721988 +instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequestPopulator$$FastClassByGuice$$18595605 +instanceKlass org/apache/maven/classrealm/DefaultClassRealmManager$$FastClassByGuice$$16822650 +instanceKlass org/apache/maven/ReactorReader$$FastClassByGuice$$16168983 +instanceKlass org/eclipse/core/internal/filesystem/local/InfiniteProgress +instanceKlass org/apache/maven/DefaultArtifactFilterManager$$FastClassByGuice$$15286412 +instanceKlass org/eclipse/core/internal/localstore/DeleteVisitor +instanceKlass org/eclipse/core/internal/localstore/UnifiedTreeNode +instanceKlass com/google/inject/internal/SingleParameterInjector +instanceKlass org/eclipse/core/internal/localstore/UnifiedTree +instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$$FastClassByGuice$$14513636 +instanceKlass org/apache/maven/eventspy/internal/EventSpyDispatcher$$FastClassByGuice$$13393229 +instanceKlass org/eclipse/sisu/PreDestroy +instanceKlass org/eclipse/sisu/PostConstruct +instanceKlass org/apache/maven/lifecycle/internal/LifecycleStarter$$FastClassByGuice$$11718529 +instanceKlass org/eclipse/core/internal/resources/MoveDeleteHook +instanceKlass java/security/spec/XECPublicKeySpec +instanceKlass sun/security/ssl/XDHKeyExchange$XDHECredentials +instanceKlass sun/security/ssl/NamedGroupCredentials +instanceKlass org/eclipse/core/internal/resources/ResourceTree +instanceKlass sun/security/ssl/ECDHServerKeyExchange$ECDHServerKeyExchangeProducer +instanceKlass sun/security/ssl/ECDHServerKeyExchange$ECDHServerKeyExchangeConsumer +instanceKlass org/apache/maven/lifecycle/DefaultLifecycles$$FastClassByGuice$$11196588 +instanceKlass sun/security/ssl/ECDHServerKeyExchange +instanceKlass org/apache/maven/lifecycle/internal/MojoExecutor$$FastClassByGuice$$10256235 +instanceKlass sun/security/util/DomainName$RegisteredDomainImpl +instanceKlass sun/security/util/DomainName$CommonMatch +instanceKlass sun/security/util/DomainName$Match +instanceKlass sun/security/util/DomainName$1 +instanceKlass org/apache/maven/bridge/MavenRepositorySystem$$FastClassByGuice$$9234786 +instanceKlass java/util/LinkedList$DescendingIterator +instanceKlass sun/security/util/DomainName$Rule +instanceKlass sun/security/util/DomainName$Rules$RuleSet +instanceKlass org/apache/maven/lifecycle/Lifecycle$$FastClassByGuice$$7372420 +instanceKlass org/eclipse/core/internal/resources/MarkerDelta +instanceKlass org/eclipse/sisu/plexus/PlexusConfigurations$ConfigurationProvider +instanceKlass org/apache/maven/lifecycle/internal/LifecycleDebugLogger$$FastClassByGuice$$6364358 +instanceKlass org/apache/maven/lifecycle/internal/BuildListCalculator$$FastClassByGuice$$5413988 +instanceKlass org/apache/maven/lifecycle/internal/LifecyclePluginResolver$$FastClassByGuice$$4382012 +instanceKlass org/apache/maven/lifecycle/internal/MojoDescriptorCreator$$FastClassByGuice$$3717570 +instanceKlass jdk/internal/math/FDBigInteger +instanceKlass org/apache/maven/lifecycle/internal/LifecycleModuleBuilder$$FastClassByGuice$$2695083 +instanceKlass org/eclipse/sisu/bean/BeanPropertySetter +instanceKlass org/eclipse/jdt/internal/core/builder/WorkQueue +instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderCommon$$FastClassByGuice$$1517778 +instanceKlass org/eclipse/jdt/internal/compiler/ast/IJavadocTypeReference +instanceKlass com/google/inject/internal/ProxyFactory +instanceKlass com/google/common/collect/TransformedIterator +instanceKlass com/google/inject/spi/InterceptorBinding +instanceKlass com/google/inject/internal/MethodAspect +instanceKlass com/google/inject/internal/MembersInjectorImpl +instanceKlass org/eclipse/sisu/bean/BeanInjector +instanceKlass org/eclipse/sisu/plexus/PlexusLifecycleManager$2 +instanceKlass org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser +instanceKlass org/eclipse/sisu/bean/PropertyBinder$1 +instanceKlass org/eclipse/sisu/plexus/ProvidedPropertyBinding +instanceKlass org/eclipse/sisu/plexus/PlexusRequirements$AbstractRequirementProvider +instanceKlass org/eclipse/sisu/bean/BeanPropertyField +instanceKlass org/eclipse/sisu/bean/DeclaredMembers$MemberIterator +instanceKlass org/eclipse/sisu/bean/BeanPropertyIterator +instanceKlass org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants +instanceKlass org/eclipse/sisu/bean/DeclaredMembers +instanceKlass org/eclipse/sisu/bean/IgnoreSetters +instanceKlass org/eclipse/sisu/bean/BeanProperties +instanceKlass org/eclipse/sisu/plexus/PlexusRequirements +instanceKlass org/eclipse/sisu/plexus/PlexusConfigurations +instanceKlass sun/security/util/DomainName$Rules$1 +instanceKlass org/eclipse/sisu/plexus/PlexusPropertyBinder +instanceKlass org/eclipse/sisu/bean/BeanLifecycle +instanceKlass sun/security/util/DomainName$Rules +instanceKlass sun/security/util/DomainName +instanceKlass sun/security/util/RegisteredDomain +instanceKlass sun/security/util/HostnameChecker +instanceKlass com/google/inject/internal/EncounterImpl +instanceKlass lombok/permit/Permit$Fake +instanceKlass lombok/permit/Permit +instanceKlass lombok/launch/PatchFixesHider$Util +instanceKlass lombok/launch/PatchFixesHider$ModuleClassLoading +instanceKlass sun/security/util/AnchorCertificates$1 +instanceKlass sun/security/util/AnchorCertificates +instanceKlass sun/security/validator/EntrustTLSPolicy +instanceKlass sun/security/validator/SymantecTLSPolicy +instanceKlass sun/security/validator/CADistrustPolicy$3 +instanceKlass java/util/Vector$Itr +instanceKlass java/security/cert/PKIXCertPathValidatorResult +instanceKlass java/security/cert/CertPathValidatorResult +instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$2 +instanceKlass com/google/inject/internal/ProviderInternalFactory +instanceKlass com/google/inject/internal/InternalProviderInstanceBindingImpl$Factory +instanceKlass com/google/inject/internal/FactoryProxy +instanceKlass com/google/inject/internal/InternalFactoryToProviderAdapter +instanceKlass com/google/inject/internal/ConstructionContext +instanceKlass com/google/inject/internal/SingletonScope$1 +instanceKlass com/google/inject/internal/ProviderToInternalFactoryAdapter +instanceKlass com/google/inject/internal/CycleDetectingLock$CycleDetectingLockFactory$ReentrantCycleDetectingLock +instanceKlass com/google/inject/internal/Initializer$InjectableReference +instanceKlass com/google/inject/internal/ProvisionListenerStackCallback +instanceKlass com/google/inject/internal/ProvisionListenerCallbackStore$KeyBinding +instanceKlass com/google/inject/internal/util/Classes +instanceKlass com/google/inject/spi/ExposedBinding +instanceKlass com/google/inject/internal/CreationListener +instanceKlass com/google/inject/internal/InjectorShell$LoggerFactory +instanceKlass com/google/inject/internal/InjectorShell$InjectorFactory +instanceKlass com/google/inject/internal/Initializables$1 +instanceKlass com/google/inject/internal/Initializables +instanceKlass com/google/inject/internal/ConstantFactory +instanceKlass com/google/inject/internal/InjectorShell +instanceKlass com/google/inject/internal/ProvisionListenerCallbackStore +instanceKlass com/google/inject/spi/TypeEncounter +instanceKlass com/google/inject/internal/SingleMemberInjector +instanceKlass com/google/inject/internal/MembersInjectorStore +instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$4 +instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$2 +instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$1 +instanceKlass com/google/inject/internal/TypeConverterBindingProcessor$5 +instanceKlass com/google/inject/internal/FailableCache +instanceKlass com/google/inject/internal/ConstructorInjectorStore +instanceKlass com/google/inject/internal/DeferredLookups +instanceKlass com/google/inject/spi/ProviderBinding +instanceKlass com/google/inject/spi/ConvertedConstantBinding +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredElement +instanceKlass sun/security/ec/ECDSAOperations +instanceKlass com/google/inject/internal/InjectorImpl +instanceKlass java/security/interfaces/DSAPublicKey +instanceKlass java/security/interfaces/DSAKey +instanceKlass sun/security/provider/certpath/CertPathConstraintsParameters +instanceKlass sun/security/provider/certpath/PKIXMasterCertPathValidator +instanceKlass com/google/inject/internal/Lookups +instanceKlass sun/security/provider/certpath/PolicyNodeImpl +instanceKlass java/security/cert/PolicyNode +instanceKlass com/google/inject/internal/InjectorImpl$InjectorOptions +instanceKlass sun/security/util/UntrustedCertificates$1 +instanceKlass sun/security/util/UntrustedCertificates +instanceKlass java/security/cert/X509CertSelector +instanceKlass java/security/cert/CertSelector +instanceKlass com/google/inject/internal/ProvisionListenerStackCallback$ProvisionCallback +instanceKlass com/google/inject/internal/ConstructorInjector +instanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerStats +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfModule +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeSystem$HashedParameterizedTypes +instanceKlass com/google/inject/internal/DefaultConstructionProxyFactory$FastClassProxy +instanceKlass sun/security/provider/certpath/PKIX$ValidatorParams +instanceKlass sun/security/provider/certpath/PKIX +instanceKlass java/security/cert/CertPathValidatorSpi +instanceKlass java/security/cert/CertPathValidator +instanceKlass com/google/inject/internal/aop/ImmutableStringTrie +instanceKlass java/util/function/ToIntFunction +instanceKlass org/eclipse/jdt/internal/compiler/ClassFile +instanceKlass sun/security/util/DisabledAlgorithmConstraints$CertPathHolder +instanceKlass org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver$$FastClassByGuice$$376525 +instanceKlass java/security/cert/PKIXCertPathChecker +instanceKlass java/security/cert/CertPathChecker +instanceKlass com/google/inject/internal/aop/GeneratedClassDefiner +instanceKlass com/google/inject/internal/aop/UnsafeClassDefiner$ClassLoaderDefineClassHolder +instanceKlass com/google/inject/internal/asm/$Handler +instanceKlass sun/security/ssl/SSLAlgorithmConstraints$SupportedSignatureAlgorithmConstraints +instanceKlass jdk/internal/icu/impl/NormalizerImpl$ReorderingBuffer +instanceKlass jdk/internal/icu/impl/NormalizerImpl$UTF16Plus +instanceKlass org/eclipse/jdt/internal/compiler/ClassFilePool +instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayMap +instanceKlass com/google/inject/internal/asm/$Attribute +instanceKlass java/security/cert/PKIXParameters +instanceKlass java/security/cert/CertPathParameters +instanceKlass org/eclipse/jdt/internal/compiler/util/CharDelegateMap +instanceKlass sun/security/provider/certpath/CertPathHelper +instanceKlass java/security/cert/TrustAnchor +instanceKlass com/google/inject/internal/aop/BytecodeTasks +instanceKlass org/eclipse/jdt/internal/compiler/util/CharArrayMapper +instanceKlass sun/security/validator/EndEntityChecker +instanceKlass sun/security/validator/Validator +instanceKlass javax/net/ssl/SSLEngine +instanceKlass sun/security/ssl/X509Authentication$X509Credentials +instanceKlass com/google/inject/internal/asm/$Handle +instanceKlass sun/security/ssl/SSLAuthentication +instanceKlass com/google/inject/internal/asm/$Label +instanceKlass sun/security/ssl/SSLKeyExchange$SSLKeyExECDHEECDSA +instanceKlass sun/security/ssl/SSLKeyExchange$1 +instanceKlass sun/security/ssl/SessionTicketExtension$SessionTicketSpec +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ImplicitNullAnnotationVerifier +instanceKlass sun/security/ssl/ServerNameExtension$SHServerNamesSpec +instanceKlass com/google/inject/internal/asm/$Frame +instanceKlass sun/security/ssl/RenegoInfoExtension$RenegotiationInfoSpec +instanceKlass sun/security/ssl/HandshakeHash$CloneableHash +instanceKlass sun/security/ssl/HandshakeHash$T12HandshakeHash +instanceKlass sun/security/util/ByteArrays +instanceKlass sun/security/ssl/TransportContext$1 +instanceKlass sun/security/ssl/Plaintext +instanceKlass com/google/inject/internal/asm/$ByteVector +instanceKlass com/google/inject/internal/asm/$Symbol +instanceKlass com/google/inject/internal/asm/$SymbolTable +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeSystem +instanceKlass org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment +instanceKlass com/google/inject/internal/asm/$MethodVisitor +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ProblemReasons +instanceKlass sun/security/ssl/OutputRecord$T13PaddingHolder +instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareSpec +instanceKlass com/google/inject/internal/asm/$FieldVisitor +instanceKlass sun/security/util/ArrayUtil +instanceKlass com/google/inject/internal/asm/$ModuleVisitor +instanceKlass java/security/interfaces/ECPrivateKey +instanceKlass com/google/inject/internal/asm/$AnnotationVisitor +instanceKlass com/google/inject/internal/asm/$RecordComponentVisitor +instanceKlass com/google/inject/internal/asm/$ClassVisitor +instanceKlass com/google/inject/internal/aop/AbstractGlueGenerator +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfInt +instanceKlass com/google/inject/internal/asm/$Type +instanceKlass com/google/inject/internal/aop/HiddenClassDefiner +instanceKlass org/eclipse/jdt/core/compiler/CategorizedProblem +instanceKlass org/eclipse/jdt/internal/compiler/problem/DefaultProblemFactory +instanceKlass sun/security/ec/ECOperations +instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies$4 +instanceKlass org/eclipse/jdt/internal/compiler/IErrorHandlingPolicy +instanceKlass org/eclipse/jdt/internal/compiler/DefaultErrorHandlingPolicies +instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEPossession +instanceKlass sun/security/ssl/KeyShareExtension$KeyShareEntry +instanceKlass com/google/inject/internal/aop/AnonymousClassDefiner +instanceKlass sun/security/ssl/XDHKeyExchange$1 +instanceKlass org/eclipse/jdt/internal/compiler/DefaultCompilerFactory +instanceKlass com/google/inject/internal/aop/UnsafeClassDefiner +instanceKlass java/security/interfaces/XECPrivateKey +instanceKlass org/eclipse/jdt/internal/core/builder/ReferenceCollection +instanceKlass com/google/inject/internal/aop/ClassDefining$ClassDefinerHolder +instanceKlass java/security/interfaces/XECPublicKey +instanceKlass com/google/inject/internal/aop/ClassDefiner +instanceKlass java/security/KeyPair +instanceKlass com/google/inject/internal/aop/ClassDefining +instanceKlass org/eclipse/jdt/internal/core/builder/State +instanceKlass com/google/inject/internal/BytecodeGen$EnhancerBuilder +instanceKlass com/google/inject/internal/aop/ClassBuilding +instanceKlass org/eclipse/core/resources/IResourceVisitor +instanceKlass org/eclipse/jdt/internal/compiler/ICompilerFactory +instanceKlass sun/security/util/math/MutableIntegerModuloP +instanceKlass org/eclipse/jdt/core/compiler/BuildContext +instanceKlass sun/security/jca/JCAUtil$CachedSecureRandomHolder +instanceKlass org/eclipse/jdt/internal/core/builder/AbstractImageBuilder +instanceKlass org/eclipse/jdt/internal/core/builder/ICompilationUnitLocator +instanceKlass sun/security/ec/XECOperations +instanceKlass com/google/common/collect/MapMakerInternalMap$StrongValueEntry +instanceKlass com/google/common/collect/MapMakerInternalMap$WeakKeyStrongValueEntry$Helper +instanceKlass sun/security/ec/XECParameters +instanceKlass com/google/common/collect/MapMakerInternalMap$InternalEntry +instanceKlass com/google/common/collect/MapMakerInternalMap$1 +instanceKlass com/google/common/collect/MapMakerInternalMap$InternalEntryHelper +instanceKlass com/google/common/collect/MapMakerInternalMap$WeakValueReference +instanceKlass sun/security/ssl/XDHKeyExchange$XDHEPossession +instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEXDHKAGenerator +instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEKAGenerator +instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHKAGenerator +instanceKlass sun/security/ssl/ECDHKeyExchange$ECDHEPossessionGenerator +instanceKlass lombok/patcher/scripts/WrapMethodCallScript$1 +instanceKlass sun/security/ssl/ECDHKeyExchange +instanceKlass sun/security/ssl/DHKeyExchange$DHEKAGenerator +instanceKlass sun/security/ssl/DHKeyExchange$DHEPossessionGenerator +instanceKlass sun/security/ssl/DHKeyExchange +instanceKlass sun/security/ssl/RSAKeyExchange$RSAKAGenerator +instanceKlass sun/security/ssl/RSAKeyExchange$EphemeralRSAPossessionGenerator +instanceKlass sun/security/ssl/RSAKeyExchange +instanceKlass sun/security/ssl/SSLKeyExchange$T13KeyAgreement +instanceKlass sun/security/ssl/SSLKeyAgreement +instanceKlass sun/security/ssl/SSLPossessionGenerator +instanceKlass sun/security/ssl/SSLKeyExchange +instanceKlass sun/security/ssl/SSLHandshakeBinding +instanceKlass sun/security/ssl/SSLKeyAgreementGenerator +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesSpec +instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsSpec +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$SignatureSchemesSpec +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$ExtendedMasterSecretSpec +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestV2Spec +instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormatsSpec +instanceKlass com/google/common/collect/MapMaker +instanceKlass sun/security/ssl/SupportedGroupsExtension$SupportedGroupsSpec +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequest +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestSpec +instanceKlass sun/security/ssl/ServerNameExtension$CHServerNamesSpec +instanceKlass sun/security/ssl/SSLExtension$SSLExtensionSpec +instanceKlass com/google/inject/internal/BytecodeGen +instanceKlass sun/security/ssl/SSLExtension$ClientExtensions +instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyStringizer +instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule$UpdatesByKind +instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyAbsence +instanceKlass com/google/inject/internal/ConstructionProxy +instanceKlass com/google/inject/internal/DefaultConstructionProxyFactory +instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyConsumer +instanceKlass com/google/inject/internal/ConstructionProxyFactory +instanceKlass sun/security/ssl/PreSharedKeyExtension$SHPreSharedKeyProducer +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyStringizer +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyOnTradeAbsence +instanceKlass com/google/inject/internal/ConstructorBindingImpl$Factory +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyUpdate +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyOnLoadAbsence +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyConsumer +instanceKlass sun/security/ssl/PreSharedKeyExtension$CHPreSharedKeyProducer +instanceKlass sun/security/ssl/PreSharedKeyExtension +instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathJrt$1 +instanceKlass org/eclipse/sisu/inject/TypeArguments$Implicit +instanceKlass sun/security/ssl/RenegoInfoExtension$RenegotiationInfoStringizer +instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoAbsence +instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoConsumer +instanceKlass sun/security/ssl/RenegoInfoExtension$SHRenegotiationInfoProducer +instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoAbsence +instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoConsumer +instanceKlass org/eclipse/sisu/wire/BeanProviders$3 +instanceKlass sun/security/ssl/RenegoInfoExtension$CHRenegotiationInfoProducer +instanceKlass sun/security/ssl/RenegoInfoExtension +instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareStringizer +instanceKlass org/sonatype/inject/BeanEntry +instanceKlass org/eclipse/sisu/BeanEntry +instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareReproducer +instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareConsumer +instanceKlass sun/security/ssl/KeyShareExtension$HRRKeyShareProducer +instanceKlass org/eclipse/sisu/wire/BeanProviders$4 +instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareStringizer +instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareAbsence +instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareConsumer +instanceKlass org/eclipse/jdt/internal/core/builder/ModuleEntryProcessor +instanceKlass sun/security/ssl/KeyShareExtension$SHKeyShareProducer +instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareStringizer +instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareOnTradeAbsence +instanceKlass org/eclipse/jdt/internal/core/ModuleUpdater +instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareConsumer +instanceKlass sun/security/ssl/KeyShareExtension$CHKeyShareProducer +instanceKlass sun/security/ssl/KeyShareExtension +instanceKlass org/eclipse/sisu/wire/PlaceholderBeanProvider +instanceKlass sun/security/ssl/CertSignAlgsExtension$CertSignatureSchemesStringizer +instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesUpdate +instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesConsumer +instanceKlass sun/security/ssl/CertSignAlgsExtension$CRCertSignatureSchemesProducer +instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesUpdate +instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesConsumer +instanceKlass org/eclipse/sisu/wire/BeanProviders$7 +instanceKlass sun/security/ssl/CertSignAlgsExtension$CHCertSignatureSchemesProducer +instanceKlass sun/security/ssl/CertSignAlgsExtension +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CertificateAuthoritiesStringizer +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CRCertificateAuthoritiesConsumer +instanceKlass org/eclipse/sisu/wire/BeanProviders$6 +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CRCertificateAuthoritiesProducer +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CHCertificateAuthoritiesConsumer +instanceKlass org/eclipse/jdt/internal/compiler/env/IMultiModuleEntry +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension$CHCertificateAuthoritiesProducer +instanceKlass sun/security/ssl/CertificateAuthoritiesExtension +instanceKlass org/eclipse/sisu/wire/BeanProviders$1 +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesStringizer +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesOnTradeAbsence +instanceKlass com/google/inject/spi/ProviderLookup$1 +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesOnLoadAbsence +instanceKlass org/eclipse/jdt/internal/core/builder/NameEnvironment +instanceKlass com/google/inject/spi/ProviderWithDependencies +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesConsumer +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeModesProducer +instanceKlass com/google/inject/spi/ProviderLookup +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension +instanceKlass sun/security/ssl/CookieExtension$CookieStringizer +instanceKlass sun/security/ssl/CookieExtension$HRRCookieReproducer +instanceKlass org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment +instanceKlass sun/security/ssl/CookieExtension$HRRCookieConsumer +instanceKlass sun/security/ssl/CookieExtension$HRRCookieProducer +instanceKlass sun/security/ssl/CookieExtension$CHCookieUpdate +instanceKlass sun/security/ssl/CookieExtension$CHCookieConsumer +instanceKlass org/eclipse/sisu/wire/BeanProviders +instanceKlass sun/security/ssl/CookieExtension$CHCookieProducer +instanceKlass sun/security/ssl/CookieExtension +instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsReproducer +instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsConsumer +instanceKlass sun/security/ssl/SupportedVersionsExtension$HRRSupportedVersionsProducer +instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsStringizer +instanceKlass org/eclipse/sisu/inject/HiddenSource +instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsConsumer +instanceKlass sun/security/ssl/SupportedVersionsExtension$SHSupportedVersionsProducer +instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsStringizer +instanceKlass org/eclipse/sisu/wire/LocatorWiring +instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsConsumer +instanceKlass org/eclipse/jdt/apt/core/util/AptPreferenceConstants +instanceKlass sun/security/ssl/SupportedVersionsExtension$CHSupportedVersionsProducer +instanceKlass sun/security/ssl/SupportedVersionsExtension +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$SignatureSchemesStringizer +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesUpdate +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesAbsence +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesConsumer +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CRSignatureSchemesProducer +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesOnTradeAbsence +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesUpdate +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesOnLoadAbsence +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesConsumer +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension$CHSignatureSchemesProducer +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedResourceChangeListener +instanceKlass sun/security/ssl/SignatureAlgorithmsExtension +instanceKlass sun/security/ssl/SessionTicketExtension$SessionTicketStringizer +instanceKlass sun/security/ssl/SessionTicketExtension$T12SHSessionTicketConsumer +instanceKlass org/eclipse/jdt/apt/core/util/IFactoryPath +instanceKlass sun/security/ssl/SessionTicketExtension$T12CHSessionTicketConsumer +instanceKlass org/eclipse/jdt/apt/core/util/AptConfig +instanceKlass com/google/inject/ProvidedBy +instanceKlass com/google/inject/ImplementedBy +instanceKlass sun/security/ssl/SessionTicketExtension +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$ExtendedMasterSecretStringizer +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretAbsence +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretConsumer +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$SHExtendedMasterSecretProducer +instanceKlass javax/annotation/processing/Processor +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretAbsence +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretConsumer +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension$CHExtendedMasterSecretProducer +instanceKlass sun/security/ssl/ExtendedMasterSecretExtension +instanceKlass sun/security/ssl/AlpnExtension$AlpnStringizer +instanceKlass org/sonatype/plexus/components/cipher/PBECipher +instanceKlass sun/security/ssl/AlpnExtension$SHAlpnAbsence +instanceKlass sun/security/ssl/AlpnExtension$SHAlpnConsumer +instanceKlass sun/security/ssl/AlpnExtension$SHAlpnProducer +instanceKlass sun/security/ssl/AlpnExtension$CHAlpnAbsence +instanceKlass org/eclipse/jdt/apt/core/internal/AptCompilationParticipantExtensionFactory +instanceKlass sun/security/ssl/AlpnExtension$CHAlpnConsumer +instanceKlass sun/security/ssl/AlpnExtension$CHAlpnProducer +instanceKlass sun/security/ssl/AlpnExtension +instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormatsStringizer +instanceKlass org/apache/maven/settings/crypto/SettingsDecryptionResult +instanceKlass sun/security/ssl/ECPointFormatsExtension$SHECPointFormatsConsumer +instanceKlass sun/security/ssl/ECPointFormatsExtension$CHECPointFormatsConsumer +instanceKlass sun/security/ssl/ECPointFormatsExtension$CHECPointFormatsProducer +instanceKlass org/apache/maven/settings/building/DefaultSettingsProblemCollector +instanceKlass sun/security/ssl/ECPointFormatsExtension +instanceKlass sun/security/ssl/SupportedGroupsExtension$EESupportedGroupsConsumer +instanceKlass sun/security/ssl/SupportedGroupsExtension$SupportedGroupsStringizer +instanceKlass org/apache/maven/settings/merge/MavenSettingsMerger +instanceKlass sun/security/ssl/SupportedGroupsExtension$CHSupportedGroupsOnTradeAbsence +instanceKlass sun/security/ssl/SupportedGroupsExtension$CHSupportedGroupsConsumer +instanceKlass sun/security/ssl/SupportedGroupsExtension +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRespStringizer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants$1 +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestsStringizer +instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqV2Consumer +instanceKlass org/apache/maven/settings/building/SettingsBuildingResult +instanceKlass org/eclipse/jdt/core/compiler/CompilationParticipant +instanceKlass org/apache/maven/settings/building/SettingsProblemCollector +instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqV2Producer +instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqV2Consumer +instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqV2Producer +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestStringizer +instanceKlass sun/security/ssl/CertStatusExtension$CTCertStatusResponseConsumer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants$2 +instanceKlass sun/security/ssl/CertStatusExtension$CTCertStatusResponseProducer +instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqConsumer +instanceKlass sun/security/ssl/CertStatusExtension$SHCertStatusReqProducer +instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqConsumer +instanceKlass sun/security/ssl/CertStatusExtension$CHCertStatusReqProducer +instanceKlass sun/security/ssl/CertStatusExtension +instanceKlass sun/security/ssl/MaxFragExtension$MaxFragLenStringizer +instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthUpdate +instanceKlass org/eclipse/jdt/internal/core/builder/BuildNotifier +instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthConsumer +instanceKlass sun/security/ssl/MaxFragExtension$EEMaxFragmentLengthProducer +instanceKlass org/eclipse/core/internal/events/BuildManager$2 +instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthUpdate +instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthConsumer +instanceKlass org/eclipse/aether/impl/MetadataGenerator +instanceKlass sun/security/ssl/MaxFragExtension$SHMaxFragmentLengthProducer +instanceKlass sun/security/ssl/MaxFragExtension$CHMaxFragmentLengthConsumer +instanceKlass sun/security/ssl/MaxFragExtension$CHMaxFragmentLengthProducer +instanceKlass sun/security/ssl/MaxFragExtension +instanceKlass org/eclipse/core/internal/events/BuildManager$1 +instanceKlass sun/security/ssl/ServerNameExtension$EEServerNameConsumer +instanceKlass sun/security/ssl/ServerNameExtension$EEServerNameProducer +instanceKlass org/eclipse/core/internal/events/BuildContext +instanceKlass sun/security/ssl/ServerNameExtension$SHServerNamesStringizer +instanceKlass sun/security/ssl/ServerNameExtension$SHServerNameConsumer +instanceKlass org/eclipse/core/internal/resources/Workspace$ProjectBuildConfigOrder +instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$VertexOrder +instanceKlass sun/security/ssl/ServerNameExtension$SHServerNameProducer +instanceKlass org/apache/maven/model/Relocation +instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$Digraph$Vertex +instanceKlass sun/security/ssl/ServerNameExtension$CHServerNamesStringizer +instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder$Digraph +instanceKlass sun/security/ssl/ServerNameExtension$CHServerNameConsumer +instanceKlass sun/security/ssl/SSLExtension$ExtensionConsumer +instanceKlass sun/security/ssl/ServerNameExtension$CHServerNameProducer +instanceKlass sun/security/ssl/ServerNameExtension +instanceKlass sun/security/ssl/SSLStringizer +instanceKlass org/eclipse/core/internal/resources/ComputeProjectOrder +instanceKlass org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate +instanceKlass sun/security/ssl/SSLExtensions +instanceKlass sun/security/ssl/SSLHandshake$HandshakeMessage +instanceKlass org/eclipse/jdt/internal/core/DynamicProjectReferences +instanceKlass org/eclipse/core/resources/IDynamicReferenceProvider +instanceKlass org/eclipse/aether/named/support/AdaptedSemaphoreNamedLock$AdaptedSemaphore +instanceKlass org/eclipse/core/internal/resources/Workspace$BuildConfigurationComparator +instanceKlass sun/security/ssl/RandomCookie +instanceKlass sun/security/ssl/SupportedGroupsExtension$SupportedGroups +instanceKlass sun/security/ssl/SSLKeyDerivation +instanceKlass sun/security/ssl/SSLCredentials +instanceKlass sun/security/ssl/NamedGroupPossession +instanceKlass sun/security/ssl/SSLPossession +instanceKlass sun/security/ssl/HandshakeContext +instanceKlass org/eclipse/aether/named/support/NamedLockFactorySupport$NamedLockHolder +instanceKlass sun/security/ssl/SSLConfiguration$1 +instanceKlass javax/net/ssl/SSLParameters +instanceKlass org/eclipse/aether/named/support/NamedLockSupport +instanceKlass sun/net/www/protocol/http/AuthenticatorKeys +instanceKlass sun/nio/ch/ExtendedSocketOption$1 +instanceKlass sun/nio/ch/ExtendedSocketOption +instanceKlass sun/nio/ch/OptionKey +instanceKlass sun/nio/ch/SocketOptionRegistry$LazyInitialization +instanceKlass sun/nio/ch/SocketOptionRegistry$RegistryKey +instanceKlass sun/nio/ch/SocketOptionRegistry +instanceKlass java/net/StandardSocketOptions$StdSocketOption +instanceKlass java/net/StandardSocketOptions +instanceKlass org/eclipse/aether/named/NamedLock +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapter +instanceKlass jdk/internal/icu/impl/Trie2$UTrie2Header +instanceKlass jdk/internal/icu/impl/Trie2$1 +instanceKlass jdk/internal/icu/impl/Trie2$ValueMapper +instanceKlass jdk/internal/icu/impl/Trie2 +instanceKlass jdk/internal/icu/impl/UCharacterProperty$IsAcceptable +instanceKlass org/eclipse/aether/spi/log/Logger +instanceKlass jdk/internal/icu/impl/UCharacterProperty$IntProperty +instanceKlass jdk/internal/icu/impl/UCharacterProperty +instanceKlass org/eclipse/aether/internal/impl/filter/PrefixesRemoteRepositoryFilterSource$Node +instanceKlass jdk/internal/icu/lang/UCharacter +instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilter$Result +instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilter +instanceKlass jdk/internal/icu/impl/Trie +instanceKlass jdk/internal/icu/text/StringPrep$StringPrepTrieImpl +instanceKlass jdk/internal/icu/impl/Trie$DataManipulate +instanceKlass org/eclipse/aether/collection/DependencyTraverser +instanceKlass jdk/internal/icu/impl/StringPrepDataReader +instanceKlass org/eclipse/aether/collection/DependencyManager +instanceKlass org/eclipse/aether/internal/impl/collect/df/DfDependencyCollector$Args +instanceKlass jdk/internal/icu/text/StringPrep +instanceKlass java/net/IDN +instanceKlass javax/net/ssl/SNIServerName +instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$DescriptorResolutionResult +instanceKlass org/eclipse/aether/internal/impl/collect/bf/BfDependencyCollector$Args +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyProcessingContext +instanceKlass org/eclipse/aether/internal/impl/collect/bf/DependencyResolutionSkipper +instanceKlass org/eclipse/aether/collection/VersionFilter +instanceKlass org/eclipse/aether/graph/DefaultDependencyNode +instanceKlass org/eclipse/aether/version/Version +instanceKlass org/eclipse/aether/internal/impl/collect/PremanagedDependency +instanceKlass org/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate$Results +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultVersionFilterContext +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollectionContext +instanceKlass org/eclipse/aether/collection/DependencyCollectionContext +instanceKlass org/eclipse/aether/internal/impl/collect/DataPool +instanceKlass org/eclipse/aether/collection/VersionFilter$VersionFilterContext +instanceKlass org/eclipse/aether/collection/DependencyGraphTransformationContext +instanceKlass org/eclipse/aether/spi/connector/Transfer +instanceKlass org/eclipse/aether/internal/impl/checksum/SummaryFileTrustedChecksumsSource$SummaryFileWriter +instanceKlass org/eclipse/aether/internal/impl/checksum/SparseDirectoryTrustedChecksumsSource$SparseDirectoryWriter +instanceKlass sun/net/NetHooks +instanceKlass org/eclipse/aether/spi/checksums/TrustedChecksumsSource$Writer +instanceKlass java/net/SocksSocketImpl$3 +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithm +instanceKlass org/eclipse/aether/impl/UpdateCheck +instanceKlass org/eclipse/aether/spi/connector/transport/Transporter +instanceKlass org/eclipse/aether/resolution/VersionRequest +instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorRequest +instanceKlass jdk/net/ExtendedSocketOptions$PlatformSocketOptions$1 +instanceKlass jdk/net/ExtendedSocketOptions$PlatformSocketOptions +instanceKlass org/eclipse/aether/resolution/DependencyResult +instanceKlass jdk/net/ExtendedSocketOptions$ExtSocketOption +instanceKlass java/net/SocketOption +instanceKlass org/eclipse/aether/resolution/DependencyRequest +instanceKlass org/eclipse/aether/collection/CollectResult +instanceKlass jdk/net/ExtendedSocketOptions +instanceKlass org/eclipse/aether/collection/CollectRequest +instanceKlass sun/net/ext/ExtendedSocketOptions +instanceKlass sun/nio/ch/Net$1 +instanceKlass sun/nio/ch/Net +instanceKlass java/net/InetSocketAddress$InetSocketAddressHolder +instanceKlass java/net/InetAddress$CachedAddresses +instanceKlass sun/net/InetAddressCachePolicy$2 +instanceKlass org/eclipse/aether/resolution/VersionRangeResult +instanceKlass sun/net/InetAddressCachePolicy$1 +instanceKlass org/eclipse/aether/resolution/VersionRangeRequest +instanceKlass sun/net/InetAddressCachePolicy +instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayout +instanceKlass org/eclipse/aether/repository/LocalRepository +instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposer +instanceKlass org/eclipse/aether/transform/FileTransformer +instanceKlass org/eclipse/aether/installation/InstallResult +instanceKlass org/eclipse/aether/installation/InstallRequest +instanceKlass org/eclipse/aether/spi/io/FileProcessor$ProgressListener +instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer$EventCatapult +instanceKlass org/eclipse/aether/deployment/DeployResult +instanceKlass org/eclipse/aether/repository/RepositoryPolicy +instanceKlass org/eclipse/aether/deployment/DeployRequest +instanceKlass org/eclipse/aether/transfer/TransferResource +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumPolicy +instanceKlass org/eclipse/aether/resolution/VersionResult +instanceKlass org/eclipse/aether/repository/LocalArtifactResult +instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver$ResolutionGroup +instanceKlass org/eclipse/aether/resolution/ArtifactResult +instanceKlass org/eclipse/aether/resolution/ArtifactRequest +instanceKlass org/eclipse/aether/SyncContext +instanceKlass org/eclipse/aether/spi/locator/ServiceLocator +instanceKlass org/eclipse/aether/repository/RemoteRepository +instanceKlass org/eclipse/aether/spi/connector/RepositoryConnector +instanceKlass org/apache/maven/model/Activation +instanceKlass java/net/InetAddress$NameServiceAddresses +instanceKlass java/net/InetAddress$Addresses +instanceKlass org/apache/maven/model/ActivationOS +instanceKlass java/util/concurrent/ConcurrentSkipListMap$Iter +instanceKlass sun/security/ssl/DTLSRecord +instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator$RangeValue +instanceKlass sun/security/ssl/SessionId +instanceKlass org/apache/maven/model/InputLocation +instanceKlass java/security/spec/MGF1ParameterSpec +instanceKlass sun/security/ec/ParametersMap$1 +instanceKlass sun/security/ec/ed/EdDSAParameters$SHAKE256DigesterFactory +instanceKlass sun/security/ec/point/ProjectivePoint +instanceKlass org/apache/maven/model/InputSource +instanceKlass sun/security/ec/ed/EdDSAParameters$Digester +instanceKlass org/eclipse/jdt/internal/compiler/impl/Constant +instanceKlass sun/security/ec/ed/EdDSAParameters$SHA512DigesterFactory +instanceKlass org/apache/maven/model/interpolation/StringVisitorModelInterpolator$InnerInterpolator +instanceKlass sun/security/ec/point/ExtendedHomogeneousPoint +instanceKlass sun/security/ec/point/AffinePoint +instanceKlass sun/security/util/math/intpoly/IntegerPolynomial$Limb +instanceKlass sun/security/util/math/SmallValue +instanceKlass sun/security/ec/point/MutablePoint +instanceKlass sun/security/ec/point/ImmutablePoint +instanceKlass sun/security/util/math/intpoly/IntegerPolynomial$Element +instanceKlass sun/security/util/math/ImmutableIntegerModuloP +instanceKlass org/apache/maven/model/building/ModelBuildingEventCatapult +instanceKlass sun/security/util/math/IntegerModuloP +instanceKlass org/apache/maven/model/building/ModelData +instanceKlass org/apache/maven/model/ActivationFile +instanceKlass sun/security/util/math/intpoly/IntegerPolynomial +instanceKlass org/eclipse/buildship/core/internal/workspace/SynchronizingBuildScriptUpdateListener$1 +instanceKlass sun/security/ec/ParametersMap +instanceKlass org/apache/maven/model/building/DefaultModelProblemCollector +instanceKlass org/eclipse/buildship/core/internal/workspace/ProjectChangeListener$1 +instanceKlass org/apache/maven/model/profile/DefaultProfileActivationContext +instanceKlass sun/security/ec/ed/EdECOperations +instanceKlass sun/security/ec/ed/EdDSAParameters$DigesterFactory +instanceKlass org/apache/maven/model/building/ModelCacheTag +instanceKlass sun/security/util/math/IntegerFieldModuloP +instanceKlass sun/security/ec/ed/EdDSAParameters +instanceKlass org/apache/maven/model/building/ModelBuildingEvent +instanceKlass org/eclipse/jdt/internal/compiler/env/ClassSignature +instanceKlass org/eclipse/jdt/internal/compiler/env/EnumConstantSignature +instanceKlass java/security/spec/EdDSAParameterSpec +instanceKlass sun/security/ec/ed/EdDSASignature$MessageAccumulator +instanceKlass org/apache/maven/model/building/ModelProblemCollectorExt +instanceKlass org/apache/maven/model/profile/ProfileActivationContext +instanceKlass org/apache/maven/cli/internal/extension/model/CoreExtension +instanceKlass org/apache/maven/cli/CliRequest +instanceKlass javax/crypto/spec/DHParameterSpec +instanceKlass sun/security/ssl/PredefinedDHParameterSpecs$1 +instanceKlass org/apache/maven/building/ProblemCollector +instanceKlass sun/security/ssl/PredefinedDHParameterSpecs +instanceKlass org/apache/maven/toolchain/merge/MavenToolchainMerger +instanceKlass org/codehaus/plexus/interpolation/InterpolationPostProcessor +instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingResult +instanceKlass com/sun/security/sasl/Provider$1 +instanceKlass org/eclipse/aether/graph/Dependency +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$InvalidArchiveInfo +instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorResult +instanceKlass org/eclipse/jdt/internal/core/UserLibraryClasspathContainer +instanceKlass sun/security/mscapi/SunMSCAPI$2 +instanceKlass org/eclipse/lsp4j/WorkDoneProgressEnd +instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$PluginValidationIssues +instanceKlass jdk/internal/math/FormattedFloatingDecimal$2 +instanceKlass jdk/internal/math/FormattedFloatingDecimal +instanceKlass org/eclipse/lsp4j/WorkDoneProgressReport +instanceKlass org/eclipse/lsp4j/adapters/WorkDoneProgressNotificationAdapter$1 +instanceKlass com/google/inject/util/Types +instanceKlass sun/security/mscapi/SunMSCAPI$1 +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$PropertyChecker +instanceKlass com/google/gson/JsonDeserializer +instanceKlass com/google/gson/JsonSerializer +instanceKlass org/eclipse/lsp4j/adapters/ProgressNotificationAdapter +instanceKlass javax/net/ssl/ExtendedSSLSession +instanceKlass org/eclipse/sisu/Nullable +instanceKlass javax/net/ssl/SSLSession +instanceKlass sun/security/ssl/SSLConfiguration$CustomizedClientSignatureSchemes +instanceKlass org/eclipse/lsp4j/WorkDoneProgressBegin +instanceKlass org/eclipse/aether/repository/AuthenticationSelector +instanceKlass org/eclipse/aether/repository/ProxySelector +instanceKlass javax/crypto/KeyGeneratorSpi +instanceKlass org/eclipse/aether/repository/MirrorSelector +instanceKlass org/eclipse/aether/resolution/ResolutionErrorPolicy +instanceKlass javax/crypto/KeyGenerator +instanceKlass org/eclipse/aether/repository/LocalRepositoryManager +instanceKlass sun/security/ssl/SSLConfiguration +instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$WriteTask +instanceKlass sun/security/ssl/SSLCipher$SSLWriteCipher +instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateProducer +instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateConsumer +instanceKlass sun/security/ssl/KeyUpdate$KeyUpdateKickstartProducer +instanceKlass sun/security/ssl/KeyUpdate +instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusAbsence +instanceKlass org/apache/maven/classrealm/ClassRealmConstituent +instanceKlass sun/security/ssl/HandshakeAbsence +instanceKlass org/eclipse/core/runtime/jobs/IJobStatus +instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusProducer +instanceKlass sun/security/ssl/CertificateStatus$CertificateStatusConsumer +instanceKlass com/google/gson/internal/Streams +instanceKlass org/eclipse/lsp4j/jsonrpc/RemoteEndpoint$PendingRequestInfo +instanceKlass java/util/AbstractList$RandomAccessSpliterator +instanceKlass sun/security/ssl/CertificateStatus +instanceKlass org/eclipse/aether/repository/WorkspaceRepository +instanceKlass sun/security/ssl/Finished$T13FinishedProducer +instanceKlass org/eclipse/jdt/core/JavaCore$1 +instanceKlass java/util/concurrent/ForkJoinTask +instanceKlass java/util/concurrent/CompletableFuture$AsynchronousCompletionTask +instanceKlass sun/security/ssl/Finished$T13FinishedConsumer +instanceKlass java/util/concurrent/CompletableFuture$AltResult +instanceKlass sun/security/ssl/Finished$T12FinishedProducer +instanceKlass org/apache/maven/ArtifactFilterManagerDelegate +instanceKlass sun/security/ssl/Finished$T12FinishedConsumer +instanceKlass sun/security/ssl/Finished +instanceKlass sun/security/ssl/ClientKeyExchange$ClientKeyExchangeProducer +instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$MavenBuildConnection +instanceKlass sun/security/ssl/ClientKeyExchange$ClientKeyExchangeConsumer +instanceKlass sun/security/ssl/ClientKeyExchange +instanceKlass sun/security/ssl/CertificateVerify$T13CertificateVerifyProducer +instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge$MavenProjectBuildData +instanceKlass sun/security/ssl/CertificateVerify$T13CertificateVerifyConsumer +instanceKlass sun/security/ssl/CertificateVerify$T12CertificateVerifyProducer +instanceKlass sun/security/ssl/CertificateVerify$T12CertificateVerifyConsumer +instanceKlass sun/security/ssl/CertificateVerify$T10CertificateVerifyProducer +instanceKlass sun/security/ssl/CertificateVerify$T10CertificateVerifyConsumer +instanceKlass java/nio/channels/NetworkChannel +instanceKlass sun/security/ssl/CertificateVerify$S30CertificateVerifyProducer +instanceKlass sun/security/ssl/CertificateVerify$S30CertificateVerifyConsumer +instanceKlass sun/security/ssl/CertificateVerify +instanceKlass sun/security/ssl/ServerHelloDone$ServerHelloDoneProducer +instanceKlass sun/security/ssl/ServerHelloDone$ServerHelloDoneConsumer +instanceKlass sun/security/ssl/ServerHelloDone +instanceKlass sun/security/ssl/CertificateRequest$T13CertificateRequestProducer +instanceKlass sun/security/ssl/CertificateRequest$T13CertificateRequestConsumer +instanceKlass org/apache/maven/plugin/internal/DefaultLegacySupport +instanceKlass sun/security/ssl/CertificateRequest$T12CertificateRequestProducer +instanceKlass sun/security/ssl/CertificateRequest$T12CertificateRequestConsumer +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver +instanceKlass org/eclipse/lsp4j/WorkDoneProgressNotification +instanceKlass sun/security/ssl/CertificateRequest$T10CertificateRequestProducer +instanceKlass sun/security/ssl/CertificateRequest$T10CertificateRequestConsumer +instanceKlass sun/security/ssl/CertificateRequest +instanceKlass org/apache/maven/artifact/resolver/DefaultArtifactResolver +instanceKlass sun/security/ssl/ServerKeyExchange$ServerKeyExchangeProducer +instanceKlass org/eclipse/jdt/core/dom/IDocElement +instanceKlass sun/security/ssl/ServerKeyExchange$ServerKeyExchangeConsumer +instanceKlass sun/security/ssl/ServerKeyExchange +instanceKlass sun/security/ssl/CertificateMessage$T13CertificateProducer +instanceKlass sun/security/ssl/CertificateMessage$T13CertificateConsumer +instanceKlass sun/security/ssl/CertificateMessage$T12CertificateProducer +instanceKlass sun/security/ssl/CertificateMessage$T12CertificateConsumer +instanceKlass org/eclipse/jdt/core/dom/ASTRequestor +instanceKlass sun/security/ssl/CertificateMessage +instanceKlass org/apache/maven/plugin/PluginDescriptorCache$PluginDescriptorSupplier +instanceKlass org/apache/maven/plugin/PluginDescriptorCache$Key +instanceKlass sun/security/ssl/EncryptedExtensions$EncryptedExtensionsConsumer +instanceKlass org/apache/maven/plugin/DefaultPluginDescriptorCache +instanceKlass sun/security/ssl/EncryptedExtensions$EncryptedExtensionsProducer +instanceKlass sun/security/ssl/EncryptedExtensions +instanceKlass sun/security/ssl/NewSessionTicket$T12NewSessionTicketProducer +instanceKlass org/eclipse/jdt/core/search/SearchMatch +instanceKlass sun/security/ssl/NewSessionTicket$T13NewSessionTicketProducer +instanceKlass sun/security/ssl/NewSessionTicket$T12NewSessionTicketConsumer +instanceKlass org/eclipse/jdt/internal/compiler/lookup/IQualifiedTypeResolutionListener +instanceKlass sun/security/ssl/NewSessionTicket$T13NewSessionTicketConsumer +instanceKlass org/eclipse/jdt/internal/core/search/matching/MatchLocator +instanceKlass sun/security/ssl/NewSessionTicket +instanceKlass sun/security/ssl/HelloVerifyRequest$HelloVerifyRequestProducer +instanceKlass sun/security/ssl/HelloVerifyRequest$HelloVerifyRequestConsumer +instanceKlass sun/security/ssl/HelloVerifyRequest +instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestConsumer +instanceKlass sun/security/ssl/ServerHello$T13ServerHelloConsumer +instanceKlass sun/security/ssl/ServerHello$T12ServerHelloConsumer +instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestReproducer +instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$Versions +instanceKlass sun/security/ssl/ServerHello$T13HelloRetryRequestProducer +instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResult +instanceKlass sun/security/ssl/ServerHello$T13ServerHelloProducer +instanceKlass sun/security/ssl/ServerHello$T12ServerHelloProducer +instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver$Key +instanceKlass sun/security/ssl/ServerHello$ServerHelloConsumer +instanceKlass sun/security/ssl/ServerHello +instanceKlass org/apache/maven/plugin/version/PluginVersionResult +instanceKlass org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver +instanceKlass sun/security/ssl/ClientHello$D13ClientHelloConsumer +instanceKlass sun/security/ssl/ClientHello$D12ClientHelloConsumer +instanceKlass sun/security/ssl/ClientHello$T13ClientHelloConsumer +instanceKlass sun/security/ssl/ClientHello$T12ClientHelloConsumer +instanceKlass sun/security/ssl/HandshakeConsumer +instanceKlass sun/security/ssl/ClientHello$ClientHelloProducer +instanceKlass sun/security/ssl/ClientHello$ClientHelloConsumer +instanceKlass sun/security/ssl/ClientHello$ClientHelloKickstartProducer +instanceKlass sun/security/ssl/ClientHello +instanceKlass sun/security/ssl/HelloRequest$HelloRequestProducer +instanceKlass sun/security/ssl/HelloRequest$HelloRequestConsumer +instanceKlass sun/security/ssl/HelloRequest$HelloRequestKickstartProducer +instanceKlass sun/security/ssl/SSLProducer +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator +instanceKlass sun/security/ssl/HelloRequest +instanceKlass sun/security/ssl/HandshakeProducer +instanceKlass sun/security/ssl/SSLConsumer +instanceKlass org/eclipse/jdt/internal/core/search/IndexSelector +instanceKlass sun/security/ssl/Authenticator$MacImpl +instanceKlass sun/security/ssl/Authenticator$MAC +instanceKlass sun/security/ssl/Authenticator +instanceKlass sun/security/ssl/SSLCipher$SSLReadCipher +instanceKlass sun/security/ssl/InputRecord +instanceKlass org/eclipse/jdt/internal/core/search/PatternSearchJob +instanceKlass sun/security/ssl/SSLRecord +instanceKlass sun/security/ssl/Record +instanceKlass sun/security/ssl/TransportContext +instanceKlass sun/security/ssl/ConnectionContext +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate +instanceKlass org/eclipse/jdt/internal/core/search/TypeNameRequestorWrapper +instanceKlass sun/security/ssl/HandshakeHash$CacheOnlyHash +instanceKlass sun/security/ssl/HandshakeHash$TranscriptHash +instanceKlass org/eclipse/jdt/internal/core/search/AbstractSearchScope +instanceKlass sun/security/ssl/HandshakeHash +instanceKlass org/apache/maven/lifecycle/internal/ProjectSegment +instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer +instanceKlass java/net/SocksConsts +instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph +instanceKlass sun/net/PlatformSocketImpl +instanceKlass org/eclipse/core/resources/IResourceStatus +instanceKlass java/util/concurrent/CompletionService +instanceKlass org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder +instanceKlass java/net/SocketImpl +instanceKlass java/net/SocketOptions +instanceKlass org/eclipse/m2e/jdt/IClasspathEntryDescriptor +instanceKlass org/eclipse/m2e/jdt/internal/ModuleSupport +instanceKlass java/net/Socket +instanceKlass org/apache/maven/toolchain/DefaultToolchainManager +instanceKlass sun/security/ssl/SSLTransport +instanceKlass org/eclipse/m2e/jdt/internal/BuildPathManager$ModuleInfoDetector +instanceKlass sun/net/www/http/KeepAliveKey +instanceKlass org/eclipse/debug/internal/core/IInternalDebugCoreConstants +instanceKlass org/apache/maven/repository/DefaultMirrorSelector +instanceKlass org/eclipse/debug/internal/core/Preferences +instanceKlass sun/net/NetworkClient$1 +instanceKlass sun/net/NetworkClient +instanceKlass org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout +instanceKlass javax/net/ssl/HandshakeCompletedListener +instanceKlass org/eclipse/debug/core/commands/IDebugCommandRequest +instanceKlass org/eclipse/debug/core/IRequest +instanceKlass org/apache/maven/lifecycle/internal/PhaseRecorder +instanceKlass org/eclipse/debug/internal/core/StepFilterManager +instanceKlass sun/net/spi/DefaultProxySelector$3 +instanceKlass org/apache/maven/lifecycle/internal/DependencyContext +instanceKlass sun/net/spi/DefaultProxySelector$NonProxyInfo +instanceKlass sun/net/spi/DefaultProxySelector$1 +instanceKlass org/eclipse/debug/core/ILaunchListener +instanceKlass java/net/Proxy +instanceKlass org/apache/maven/lifecycle/internal/ProjectIndex +instanceKlass java/net/ProxySelector +instanceKlass sun/net/www/protocol/http/HttpURLConnection$7 +instanceKlass java/net/ResponseCache +instanceKlass sun/net/www/protocol/http/HttpURLConnection$3 +instanceKlass org/eclipse/debug/internal/core/LaunchManager$LaunchManagerVisitor +instanceKlass java/net/CookieHandler +instanceKlass org/apache/maven/plugin/MojoExecutionRunner +instanceKlass sun/net/www/protocol/http/HttpURLConnection$2 +instanceKlass org/apache/maven/project/validation/ModelValidationResult +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$OutputsInfo +instanceKlass org/apache/maven/project/validation/DefaultModelValidator +instanceKlass org/eclipse/aether/RequestTrace +instanceKlass org/eclipse/aether/repository/ArtifactRepository +instanceKlass org/apache/maven/plugin/prefix/PluginPrefixResult +instanceKlass org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver +instanceKlass org/apache/maven/execution/ProjectDependencyGraph +instanceKlass org/eclipse/jdt/internal/core/ExternalFolderChange +instanceKlass org/apache/maven/graph/DefaultGraphBuilder +instanceKlass org/codehaus/plexus/interpolation/Interpolator +instanceKlass org/codehaus/plexus/interpolation/BasicInterpolator +instanceKlass org/codehaus/plexus/interpolation/RecursionInterceptor +instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache$CacheRecord +instanceKlass org/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry +instanceKlass org/eclipse/jdt/internal/core/util/ILRUCacheable +instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache$Key +instanceKlass org/apache/maven/project/artifact/DefaultProjectArtifactsCache +instanceKlass org/eclipse/jdt/core/IImportDeclaration +instanceKlass sun/net/NetProperties$1 +instanceKlass sun/net/NetProperties +instanceKlass org/apache/maven/repository/legacy/resolver/transform/DefaultArtifactTransformationManager +instanceKlass org/eclipse/jdt/core/IImportContainer +instanceKlass org/eclipse/jdt/core/IPackageDeclaration +instanceKlass org/apache/maven/settings/RepositoryPolicy +instanceKlass org/apache/maven/settings/RepositoryBase +instanceKlass javax/net/ssl/X509ExtendedKeyManager +instanceKlass javax/net/ssl/X509KeyManager +instanceKlass javax/net/ssl/KeyManager +instanceKlass org/apache/maven/DefaultProjectDependenciesResolver +instanceKlass javax/net/ssl/KeyManagerFactorySpi +instanceKlass javax/net/ssl/KeyManagerFactory$1 +instanceKlass javax/net/ssl/KeyManagerFactory +instanceKlass sun/security/ssl/SSLContextImpl$DefaultManagersHolder$1 +instanceKlass javax/net/ssl/X509ExtendedTrustManager +instanceKlass javax/net/ssl/X509TrustManager +instanceKlass javax/net/ssl/TrustManager +instanceKlass org/apache/maven/model/building/ModelProblemCollector +instanceKlass org/apache/maven/model/merge/ModelMerger +instanceKlass org/eclipse/jdt/internal/core/JavaProject$ModuleLookup +instanceKlass sun/security/validator/TrustStoreUtil +instanceKlass org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector +instanceKlass org/apache/maven/execution/ExecutionEvent +instanceKlass org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult +instanceKlass org/apache/maven/model/RepositoryPolicy +instanceKlass org/apache/maven/artifact/repository/Authentication +instanceKlass org/apache/maven/repository/Proxy +instanceKlass org/apache/maven/repository/ArtifactTransferListener +instanceKlass org/apache/maven/repository/legacy/LegacyRepositorySystem +instanceKlass org/apache/maven/execution/DefaultRuntimeInformation +instanceKlass org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager +instanceKlass org/sonatype/plexus/components/sec/dispatcher/PasswordDecryptor +instanceKlass sun/reflect/generics/tree/VoidDescriptor +instanceKlass org/sonatype/plexus/components/sec/dispatcher/model/SettingsSecurity +instanceKlass org/apache/maven/project/ReactorModelPool +instanceKlass org/apache/maven/model/building/ModelBuildingResult +instanceKlass org/apache/maven/project/DefaultProjectBuilder$InternalConfig +instanceKlass org/apache/maven/model/resolution/ModelResolver +instanceKlass org/apache/maven/model/building/ModelBuildingListener +instanceKlass sun/security/x509/NetscapeCertTypeExtension$MapEntry +instanceKlass org/apache/maven/model/building/ModelCache +instanceKlass org/apache/maven/project/DefaultProjectBuilder +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/DefaultConflictResolverFactory +instanceKlass org/apache/maven/project/DefaultProjectBuildingHelper +instanceKlass org/apache/maven/artifact/repository/metadata/Versioning +instanceKlass org/eclipse/aether/util/graph/visitor/AbstractDepthFirstNodeListGenerator +instanceKlass java/security/interfaces/ECPublicKey +instanceKlass org/apache/maven/plugin/descriptor/PluginDescriptorBuilder +instanceKlass sun/security/provider/JavaKeyStore$TrustedCertEntry +instanceKlass org/apache/maven/plugin/logging/Log +instanceKlass org/apache/maven/plugin/internal/DefaultMavenPluginManager +instanceKlass org/apache/maven/exception/ExceptionSummary +instanceKlass org/apache/maven/exception/DefaultExceptionHandler +instanceKlass org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory +instanceKlass org/eclipse/aether/metadata/Metadata +instanceKlass sun/security/action/OpenFileInputStreamAction +instanceKlass org/apache/maven/lifecycle/mapping/LifecyclePhase +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer$GoalSpec +instanceKlass java/security/KeyStoreSpi +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer +instanceKlass java/security/KeyStore$1 +instanceKlass org/apache/maven/project/DefaultDependencyResolutionResult +instanceKlass java/security/KeyStore +instanceKlass org/apache/maven/project/DependencyResolutionRequest +instanceKlass sun/security/ssl/TrustStoreManager$TrustStoreDescriptor$1 +instanceKlass sun/security/util/FilePaths +instanceKlass sun/security/ssl/TrustStoreManager$TrustStoreDescriptor +instanceKlass sun/security/ssl/TrustStoreManager$TrustAnchorManager +instanceKlass org/apache/maven/project/DependencyResolutionResult +instanceKlass sun/security/ssl/TrustStoreManager +instanceKlass org/apache/maven/project/DefaultProjectDependenciesResolver +instanceKlass javax/net/ssl/TrustManagerFactorySpi +instanceKlass javax/net/ssl/TrustManagerFactory$1 +instanceKlass javax/net/ssl/TrustManagerFactory +instanceKlass sun/security/ssl/SSLContextImpl$DefaultManagersHolder +instanceKlass sun/security/ssl/SSLSessionContextImpl +instanceKlass javax/net/ssl/SSLSessionContext +instanceKlass sun/security/ssl/EphemeralKeyManager$EphemeralKeyPair +instanceKlass sun/security/ssl/EphemeralKeyManager +instanceKlass org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector +instanceKlass sun/security/ssl/SSLContextImpl$CustomizedSSLProtocols +instanceKlass org/apache/maven/configuration/BeanConfigurationRequest +instanceKlass org/apache/maven/configuration/internal/DefaultBeanConfigurator +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver +instanceKlass java/security/spec/NamedParameterSpec +instanceKlass sun/security/util/ECKeySizeParameterSpec +instanceKlass java/security/AlgorithmParametersSpi +instanceKlass java/security/AlgorithmParameters +instanceKlass sun/security/util/ECUtil +instanceKlass sun/security/ec/point/Point +instanceKlass java/security/KeyPairGeneratorSpi +instanceKlass javax/crypto/KeyAgreement +instanceKlass org/apache/maven/toolchain/DefaultToolchainsBuilder +instanceKlass org/apache/maven/toolchain/model/TrackableBase +instanceKlass sun/security/ssl/JsseJce$EcAvailability +instanceKlass sun/security/ssl/SSLAlgorithmDecomposer$1 +instanceKlass org/apache/maven/toolchain/DefaultToolchain +instanceKlass org/apache/maven/toolchain/ToolchainPrivate +instanceKlass org/apache/maven/toolchain/java/JavaToolchain +instanceKlass org/apache/maven/toolchain/Toolchain +instanceKlass org/apache/maven/toolchain/java/JavaToolchainFactory +instanceKlass org/apache/maven/repository/metadata/MetadataGraphVertex +instanceKlass sun/security/ssl/Utilities +instanceKlass sun/security/ssl/JsseJce +instanceKlass org/apache/maven/repository/metadata/DefaultGraphConflictResolver +instanceKlass sun/security/ssl/NamedGroup$XDHScheme +instanceKlass sun/security/ssl/NamedGroup$FFDHEScheme +instanceKlass sun/security/ssl/NamedGroup$ECDHEScheme +instanceKlass org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping +instanceKlass sun/security/ssl/NamedGroup$NamedGroupScheme +instanceKlass sun/security/ssl/SSLCipher$1 +instanceKlass org/apache/maven/plugin/descriptor/Parameter +instanceKlass sun/security/ssl/SSLCipher$T13CC20P1305WriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T12CC20P1305WriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T13CC20P1305ReadCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T12CC20P1305ReadCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T13GcmWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T13GcmReadCipherGenerator +instanceKlass org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator +instanceKlass sun/security/ssl/SSLCipher$T12GcmWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T12GcmReadCipherGenerator +instanceKlass org/apache/maven/artifact/resolver/ArtifactResolutionResult +instanceKlass org/apache/maven/artifact/resolver/ArtifactResolutionRequest +instanceKlass org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler +instanceKlass com/sun/crypto/provider/AESConstants +instanceKlass org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory +instanceKlass javax/crypto/JceSecurityManager$1 +instanceKlass sun/security/ssl/SSLCipher$T11BlockWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T11BlockReadCipherGenerator +instanceKlass com/sun/crypto/provider/PKCS5Padding +instanceKlass com/sun/crypto/provider/Padding +instanceKlass com/sun/crypto/provider/FeedbackCipher +instanceKlass com/sun/crypto/provider/SymmetricCipher +instanceKlass com/sun/crypto/provider/DESConstants +instanceKlass com/sun/crypto/provider/CipherCore +instanceKlass sun/security/ssl/SSLCipher$T10BlockWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$T10BlockReadCipherGenerator +instanceKlass org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator +instanceKlass javax/crypto/CipherSpi +instanceKlass javax/crypto/ProviderVerifier +instanceKlass javax/crypto/JceSecurity$3 +instanceKlass javax/crypto/JceSecurity$2 +instanceKlass org/apache/maven/lifecycle/DefaultLifecycleExecutor +instanceKlass org/apache/maven/execution/ProjectExecutionListener +instanceKlass org/apache/maven/project/artifact/MavenMetadataSource$ProjectRelocation +instanceKlass org/apache/maven/model/building/ModelProblem +instanceKlass org/apache/maven/model/Dependency +instanceKlass java/util/AbstractList$SubList$1 +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ElementValuePairInfo +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadata +instanceKlass java/util/Vector$1 +instanceKlass javax/crypto/CryptoPolicyParser$CryptoPermissionEntry +instanceKlass javax/crypto/CryptoPolicyParser$GrantEntry +instanceKlass org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest +instanceKlass org/apache/maven/artifact/repository/RepositoryRequest +instanceKlass java/io/StreamTokenizer +instanceKlass org/apache/maven/project/artifact/MavenMetadataSource +instanceKlass javax/crypto/CryptoPolicyParser +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryElementValuePair +instanceKlass com/google/common/base/CommonPattern +instanceKlass com/google/common/base/Platform$JdkPatternCompiler +instanceKlass org/apache/maven/artifact/repository/layout/FlatRepositoryLayout +instanceKlass com/google/common/base/PatternCompiler +instanceKlass com/google/common/base/Platform +instanceKlass org/apache/http/config/Registry +instanceKlass org/apache/http/impl/conn/PoolingHttpClientConnectionManager +instanceKlass com/google/common/base/Strings +instanceKlass org/apache/http/pool/ConnPoolControl +instanceKlass org/eclipse/jdt/ls/core/internal/RuntimeEnvironment +instanceKlass org/apache/http/client/methods/CloseableHttpResponse +instanceKlass org/apache/http/HttpResponse +instanceKlass org/eclipse/jdt/internal/corext/util/TypeFilter +instanceKlass org/apache/maven/wagon/shared/http/BasicAuthScope +instanceKlass org/apache/maven/wagon/shared/http/HttpConfiguration +instanceKlass org/apache/http/impl/client/CloseableHttpClient +instanceKlass org/apache/http/client/HttpClient +instanceKlass org/apache/http/client/HttpRequestRetryHandler +instanceKlass org/apache/http/client/RedirectStrategy +instanceKlass org/apache/http/config/Lookup +instanceKlass org/apache/http/conn/ssl/TrustStrategy +instanceKlass com/google/common/base/Ascii +instanceKlass org/apache/http/ssl/TrustStrategy +instanceKlass org/apache/http/client/ServiceUnavailableRetryStrategy +instanceKlass org/apache/http/Header +instanceKlass org/apache/http/NameValuePair +instanceKlass org/apache/http/auth/Credentials +instanceKlass org/apache/http/client/AuthCache +instanceKlass org/apache/http/client/CredentialsProvider +instanceKlass org/apache/http/protocol/HttpContext +instanceKlass org/apache/http/client/methods/HttpUriRequest +instanceKlass org/apache/http/HttpRequest +instanceKlass org/apache/http/HttpMessage +instanceKlass org/apache/http/auth/AuthScheme +instanceKlass org/apache/http/HttpEntity +instanceKlass org/apache/http/conn/HttpClientConnectionManager +instanceKlass com/google/common/base/CharMatcher +instanceKlass org/eclipse/aether/DefaultRepositorySystemSession +instanceKlass java/nio/file/Files$1 +instanceKlass sun/nio/fs/WindowsFileSystem$2 +instanceKlass java/nio/file/PathMatcher +instanceKlass org/apache/maven/model/building/Result +instanceKlass sun/nio/fs/Globs +instanceKlass javax/crypto/JceSecurity$1 +instanceKlass javax/crypto/JceSecurity +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MapFlattener +instanceKlass org/apache/maven/DefaultMaven +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/ClientPreferences +instanceKlass javax/crypto/Cipher$Transform +instanceKlass javax/crypto/Cipher +instanceKlass sun/security/ssl/SSLCipher$StreamWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$StreamReadCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$NullWriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$WriteCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$NullReadCipherGenerator +instanceKlass sun/security/ssl/SSLCipher$ReadCipherGenerator +instanceKlass org/apache/maven/plugin/DefaultBuildPluginManager +instanceKlass org/apache/maven/wagon/OutputData +instanceKlass org/apache/maven/wagon/InputData +instanceKlass com/google/gson/internal/bind/ObjectTypeAdapter$2 +instanceKlass com/google/gson/internal/LinkedTreeMap$LinkedTreeMapIterator +instanceKlass sun/security/ssl/SSLAlgorithmConstraints +instanceKlass org/apache/maven/wagon/events/SessionListener +instanceKlass sun/security/ssl/SSLLogger +instanceKlass com/google/gson/internal/ConstructorConstructor$18 +instanceKlass org/apache/maven/wagon/resource/Resource +instanceKlass org/eclipse/jdt/ls/core/internal/JSONUtility +instanceKlass org/apache/maven/wagon/repository/RepositoryPermissions +instanceKlass org/apache/maven/wagon/events/TransferEventSupport +instanceKlass java/util/Collections$2 +instanceKlass org/apache/maven/wagon/events/SessionEventSupport +instanceKlass org/eclipse/buildship/core/internal/extension/DefaultExtensionManager +instanceKlass sun/security/ec/SunEC$1 +instanceKlass org/eclipse/buildship/core/internal/operation/DefaultToolingApiOperationManager +instanceKlass org/eclipse/jdt/internal/compiler/codegen/ConstantPool +instanceKlass org/apache/maven/wagon/proxy/ProxyInfoProvider +instanceKlass org/eclipse/buildship/core/internal/launch/DefaultExternalLaunchConfigurationManager$LaunchConfigurationListener +instanceKlass org/apache/maven/wagon/AbstractWagon +instanceKlass sun/security/smartcardio/SunPCSC$1 +instanceKlass org/eclipse/buildship/core/internal/launch/DefaultExternalLaunchConfigurationManager +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFileConstants +instanceKlass org/eclipse/buildship/core/internal/configuration/BuildConfigurationPersistence +instanceKlass sun/security/pkcs11/SunPKCS11$Descriptor +instanceKlass javax/security/auth/callback/CallbackHandler +instanceKlass org/eclipse/jdt/core/IJarEntryResource +instanceKlass javax/security/auth/Subject +instanceKlass org/eclipse/jdt/core/Flags +instanceKlass org/eclipse/buildship/core/internal/configuration/WorkspaceConfigurationPersistence +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/JavaBinaryNames +instanceKlass org/apache/maven/wagon/StreamingWagon +instanceKlass org/eclipse/buildship/core/GradleDistribution +instanceKlass org/eclipse/jdt/internal/compiler/ExtraFlags +instanceKlass org/eclipse/buildship/core/internal/configuration/TestRunConfiguration +instanceKlass org/eclipse/equinox/internal/app/EclipseAppHandle$1 +instanceKlass org/eclipse/buildship/core/internal/configuration/ProjectConfiguration +instanceKlass org/eclipse/buildship/core/internal/configuration/BuildConfiguration +instanceKlass org/eclipse/buildship/core/internal/configuration/RunConfiguration +instanceKlass com/sun/security/sasl/gsskerb/JdkSASL$1 +instanceKlass org/eclipse/buildship/core/internal/configuration/BaseRunConfiguration +instanceKlass org/eclipse/equinox/internal/app/EclipseAppHandle$2 +instanceKlass org/apache/maven/artifact/repository/metadata/Metadata +instanceKlass org/eclipse/jdt/internal/core/search/matching/TypeDeclarationPattern$PackageNameSet +instanceKlass org/jcp/xml/dsig/internal/dom/XMLDSigRI$2 +instanceKlass org/jcp/xml/dsig/internal/dom/XMLDSigRI$1 +instanceKlass org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader +instanceKlass org/eclipse/buildship/core/internal/launch/BaseRunConfigurationAttributes +instanceKlass org/apache/maven/artifact/factory/DefaultArtifactFactory +instanceKlass org/eclipse/buildship/core/internal/configuration/DefaultConfigurationManager +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver +instanceKlass org/apache/maven/lifecycle/internal/ReactorBuildStatus +instanceKlass sun/security/jgss/SunProvider$1 +instanceKlass org/apache/maven/lifecycle/internal/ProjectBuildList +instanceKlass org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder +instanceKlass org/eclipse/aether/version/VersionScheme +instanceKlass org/eclipse/buildship/core/internal/invocation/InvocationCustomizerCollector +instanceKlass org/apache/maven/rtinfo/internal/DefaultRuntimeInformation +instanceKlass org/apache/maven/project/path/DefaultPathTranslator +instanceKlass org/apache/maven/repository/metadata/ClasspathContainer +instanceKlass org/eclipse/buildship/core/internal/operation/ToolingApiJobResultHandler +instanceKlass sun/security/jca/ProviderConfig$ProviderLoader +instanceKlass sun/security/jca/ProviderConfig$3 +instanceKlass org/eclipse/buildship/core/internal/workspace/SynchronizingBuildScriptUpdateListener +instanceKlass javax/net/ssl/SSLContextSpi +instanceKlass org/eclipse/buildship/core/internal/configuration/GradleProjectNature +instanceKlass org/eclipse/buildship/core/internal/workspace/ProjectChangeListener +instanceKlass javax/net/ssl/SSLContext +instanceKlass javax/net/ssl/SSLSocketFactory$1 +instanceKlass javax/net/ssl/SSLSocketFactory$DefaultFactoryHolder +instanceKlass org/apache/maven/repository/metadata/MetadataGraph +instanceKlass javax/net/SocketFactory +instanceKlass javax/net/ssl/HttpsURLConnection$DefaultHostnameVerifier +instanceKlass javax/net/ssl/HostnameVerifier +instanceKlass org/eclipse/buildship/core/internal/preferences/PersistentModel +instanceKlass org/apache/maven/repository/metadata/DefaultClasspathTransformation +instanceKlass org/eclipse/buildship/core/internal/preferences/DefaultModelPersistence +instanceKlass org/apache/maven/wagon/repository/Repository +instanceKlass ch/qos/logback/classic/spi/EventArgUtil +instanceKlass org/eclipse/buildship/core/internal/event/EventListener +instanceKlass org/apache/maven/wagon/observers/ChecksumObserver +instanceKlass ch/qos/logback/classic/spi/IThrowableProxy +instanceKlass ch/qos/logback/classic/spi/LoggingEvent +instanceKlass org/eclipse/buildship/core/internal/event/DefaultListenerRegistry +instanceKlass org/apache/maven/artifact/metadata/ArtifactMetadata +instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadata +instanceKlass org/eclipse/buildship/core/internal/launch/DefaultGradleLaunchConfigurationManager +instanceKlass org/eclipse/jdt/internal/compiler/ast/IGenerateTypeCheck +instanceKlass org/eclipse/buildship/core/internal/console/StdProcessStreamsProvider$1 +instanceKlass org/eclipse/buildship/core/internal/console/ProcessStreams +instanceKlass org/eclipse/buildship/core/internal/console/StdProcessStreamsProvider +instanceKlass org/eclipse/buildship/core/internal/workspace/InternalGradleBuild +instanceKlass org/apache/maven/repository/legacy/DefaultWagonManager +instanceKlass org/codehaus/plexus/component/repository/ComponentSetDescriptor +instanceKlass org/eclipse/buildship/core/internal/workspace/DefaultGradleWorkspace +instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersions +instanceKlass org/eclipse/jdt/internal/compiler/flow/FlowContext +instanceKlass org/eclipse/buildship/core/internal/event/Event +instanceKlass org/eclipse/buildship/core/internal/workspace/DefaultWorkspaceOperations +instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersionsWrapper$LoadVersionsJob$1 +instanceKlass org/apache/maven/plugin/prefix/PluginPrefixRequest +instanceKlass org/apache/maven/plugin/internal/DefaultPluginManager +instanceKlass org/eclipse/buildship/core/internal/util/logging/EclipseLogger +instanceKlass org/apache/maven/model/Reporting +instanceKlass org/apache/maven/model/RepositoryBase +instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersionsWrapper +instanceKlass org/eclipse/buildship/core/internal/Logger +instanceKlass org/eclipse/buildship/core/internal/preferences/ModelPersistence +instanceKlass org/eclipse/buildship/core/GradleBuild +instanceKlass org/eclipse/buildship/core/internal/launch/GradleLaunchConfigurationManager +instanceKlass org/eclipse/buildship/core/internal/console/ProcessStreamsProvider +instanceKlass org/apache/maven/model/PluginContainer +instanceKlass org/apache/maven/project/inheritance/DefaultModelInheritanceAssembler +instanceKlass org/eclipse/jdt/internal/compiler/flow/FlowInfo +instanceKlass org/eclipse/buildship/core/internal/workspace/WorkspaceOperations +instanceKlass org/apache/maven/artifact/resolver/ResolutionNode +instanceKlass org/eclipse/buildship/core/internal/event/ListenerRegistry +instanceKlass org/eclipse/buildship/core/internal/workspace/InternalGradleWorkspace +instanceKlass org/eclipse/buildship/core/GradleWorkspace +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver +instanceKlass org/apache/maven/repository/metadata/MetadataGraphEdge +instanceKlass org/eclipse/buildship/core/internal/launch/ExternalLaunchConfigurationManager +instanceKlass org/eclipse/buildship/core/internal/extension/ExtensionManager +instanceKlass org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy +instanceKlass org/eclipse/buildship/core/internal/operation/ToolingApiOperationManager +instanceKlass org/eclipse/buildship/core/internal/configuration/ConfigurationManager +instanceKlass org/eclipse/buildship/core/invocation/InvocationCustomizer +instanceKlass org/eclipse/buildship/core/internal/TraceScope +instanceKlass org/apache/maven/lifecycle/internal/TaskSegment +instanceKlass org/apache/maven/lifecycle/internal/ReactorContext +instanceKlass org/apache/maven/execution/BuildSummary +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$ProjectRegistryRefreshJobMatcher +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers$IJobMatcher +instanceKlass org/apache/maven/artifact/handler/DefaultArtifactHandler +instanceKlass org/eclipse/jdt/ls/core/internal/JobHelpers +instanceKlass org/eclipse/sisu/space/asm/Handler +instanceKlass org/eclipse/sisu/space/asm/Frame +instanceKlass org/eclipse/sisu/space/asm/ByteVector +instanceKlass org/eclipse/jdt/internal/core/search/indexing/AbstractIndexer +instanceKlass org/eclipse/sisu/space/asm/Symbol +instanceKlass org/eclipse/sisu/space/asm/SymbolTable +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseInitHandler +instanceKlass org/eclipse/sisu/space/asm/RecordComponentVisitor +instanceKlass org/eclipse/sisu/space/asm/ModuleVisitor +instanceKlass org/eclipse/sisu/space/asm/FieldVisitor +instanceKlass org/eclipse/sisu/space/asm/MethodVisitor +instanceKlass org/apache/maven/profiles/ProfilesRoot +instanceKlass com/google/gson/internal/LinkedTreeMap$Node +instanceKlass com/google/gson/internal/LinkedTreeMap$1 +instanceKlass org/codehaus/plexus/component/configurator/ConfigurationListener +instanceKlass org/eclipse/core/internal/content/ContentTypeHandler +instanceKlass org/codehaus/classworlds/ClassRealm +instanceKlass org/codehaus/plexus/component/configurator/AbstractComponentConfigurator +instanceKlass org/apache/maven/wagon/events/TransferListener +instanceKlass com/google/gson/internal/bind/TypeAdapters$42 +instanceKlass org/eclipse/lsp4j/jsonrpc/util/Preconditions +instanceKlass org/apache/maven/profiles/ProfileManager +instanceKlass org/apache/maven/model/building/ModelSource +instanceKlass org/apache/maven/project/ProjectBuilderConfiguration +instanceKlass org/apache/maven/project/DefaultMavenProjectBuilder +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/JsonElementTypeAdapter$Factory +instanceKlass org/eclipse/aether/RepositoryEvent +instanceKlass org/apache/maven/classrealm/ClassRealmRequest +instanceKlass org/eclipse/lsp4j/StaleRequestCapabilities +instanceKlass org/codehaus/plexus/util/Scanner +instanceKlass org/codehaus/plexus/logging/AbstractLogEnabled +instanceKlass org/eclipse/lsp4j/MarkdownCapabilities +instanceKlass org/eclipse/lsp4j/RegularExpressionsCapabilities +instanceKlass org/eclipse/lsp4j/WindowShowMessageRequestActionItemCapabilities +instanceKlass org/eclipse/lsp4j/ShowDocumentCapabilities +instanceKlass org/eclipse/aether/collection/DependencySelector +instanceKlass org/eclipse/lsp4j/WindowShowMessageRequestCapabilities +instanceKlass org/eclipse/aether/resolution/ArtifactDescriptorPolicy +instanceKlass org/eclipse/lsp4j/InlayHintResolveSupportCapabilities +instanceKlass org/eclipse/core/internal/content/ContentTypeManager$DebuggingHolder +instanceKlass org/apache/maven/plugin/PluginArtifactsCache$CacheRecord +instanceKlass org/eclipse/lsp4j/SemanticTokensClientCapabilitiesRequestsFull +instanceKlass org/apache/maven/plugin/PluginArtifactsCache$Key +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$ServiceInfo +instanceKlass org/eclipse/lsp4j/SemanticTokensClientCapabilitiesRequests +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$PackageExportInfo +instanceKlass org/apache/maven/plugin/PluginRealmCache$CacheRecord +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ModuleInfo$ModuleReferenceInfo +instanceKlass org/apache/maven/plugin/PluginRealmCache$PluginRealmSupplier +instanceKlass org/apache/maven/plugin/PluginRealmCache$Key +instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IService +instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IModuleReference +instanceKlass org/eclipse/jdt/internal/compiler/env/IModule$IPackageExport +instanceKlass org/eclipse/core/runtime/preferences/IPreferenceNodeVisitor +instanceKlass org/eclipse/lsp4j/FoldingRangeSupportCapabilities +instanceKlass org/apache/maven/project/ProjectRealmCache$CacheRecord +instanceKlass org/eclipse/lsp4j/FoldingRangeKindSupportCapabilities +instanceKlass org/eclipse/jdt/internal/compiler/codegen/AttributeNamesConstants +instanceKlass org/apache/maven/project/ProjectRealmCache$Key +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryNestedType +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryModule +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryTypeAnnotation +instanceKlass org/eclipse/m2e/core/internal/project/ProjectCachePlunger +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryAnnotation +instanceKlass org/eclipse/jdt/internal/compiler/env/IRecordComponent +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryMethod +instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericMethod +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$EitherTypeArgument +instanceKlass org/eclipse/core/internal/content/FileSpec +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryField +instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericField +instanceKlass org/apache/maven/plugin/ExtensionRealmCache$CacheRecord +instanceKlass org/eclipse/lsp4j/DiagnosticsTagSupport +instanceKlass org/apache/maven/plugin/ExtensionRealmCache$Key +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFileStruct +instanceKlass org/apache/maven/artifact/repository/ArtifactRepositoryPolicy +instanceKlass org/eclipse/core/internal/content/ContentType +instanceKlass org/apache/maven/project/artifact/DefaultMavenMetadataCache$CacheKey +instanceKlass org/apache/maven/repository/legacy/metadata/ResolutionGroup +instanceKlass org/eclipse/lsp4j/CodeActionKindCapabilities +instanceKlass com/google/inject/spi/ProviderWithExtensionVisitor +instanceKlass com/google/common/collect/Iterables +instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryModuleDescriptor +instanceKlass org/eclipse/lsp4j/CodeActionResolveSupportCapabilities +instanceKlass org/eclipse/lsp4j/CodeActionLiteralSupportCapabilities +instanceKlass org/eclipse/jdt/internal/core/util/MementoTokenizer +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryType +instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryTypeFactory +instanceKlass org/eclipse/core/internal/content/Util +instanceKlass org/eclipse/jdt/internal/core/nd/java/model/BinaryModuleFactory +instanceKlass org/eclipse/lsp4j/ParameterInformationCapabilities +instanceKlass org/eclipse/core/internal/resources/OS +instanceKlass org/eclipse/lsp4j/SignatureInformationCapabilities +instanceKlass org/eclipse/sisu/plexus/PlexusBean +instanceKlass org/codehaus/plexus/component/repository/ComponentDescriptor +instanceKlass org/eclipse/jdt/core/IField +instanceKlass org/eclipse/jdt/core/ILocalVariable +instanceKlass org/eclipse/jdt/core/IMethod +instanceKlass com/google/inject/spi/ProvidesMethodBinding +instanceKlass org/eclipse/sisu/inject/Guice4 +instanceKlass org/eclipse/lsp4j/CompletionItemInsertTextModeSupportCapabilities +instanceKlass com/google/inject/internal/GuiceInternal +instanceKlass org/eclipse/lsp4j/CompletionItemResolveSupportCapabilities +instanceKlass org/sonatype/inject/Parameters +instanceKlass org/eclipse/lsp4j/CompletionItemTagSupportCapabilities +instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanConverter +instanceKlass org/eclipse/lsp4j/CompletionListCapabilities +instanceKlass org/eclipse/sisu/plexus/PlexusBeanConverter +instanceKlass org/eclipse/jdt/core/ICompletionRequestor +instanceKlass com/google/inject/spi/TypeConverterBinding +instanceKlass java/lang/reflect/AnnotatedParameterizedType +instanceKlass org/eclipse/sisu/inject/DefaultRankingFunction +instanceKlass org/eclipse/lsp4j/CompletionItemCapabilities +instanceKlass com/google/inject/spi/ProvisionListenerBinding +instanceKlass org/eclipse/lsp4j/CompletionItemKindCapabilities +instanceKlass com/google/inject/spi/TypeListenerBinding +instanceKlass org/eclipse/jdt/core/IModularClassFile +instanceKlass org/eclipse/sisu/bean/BeanListener +instanceKlass com/google/inject/matcher/Matchers +instanceKlass org/eclipse/sisu/bean/PropertyBinder +instanceKlass jdk/internal/jrtfs/JrtFileSystem$1 +instanceKlass org/eclipse/sisu/plexus/PlexusBeanBinder +instanceKlass com/google/inject/spi/InjectionListener +instanceKlass org/sonatype/plexus/components/sec/dispatcher/DefaultSecDispatcher +instanceKlass org/sonatype/plexus/components/cipher/DefaultPlexusCipher +instanceKlass org/eclipse/lsp4j/PublishDiagnosticsCapabilities +instanceKlass org/sonatype/plexus/components/cipher/PlexusCipher +instanceKlass org/apache/maven/settings/validation/DefaultSettingsValidator +instanceKlass org/eclipse/jdt/internal/compiler/util/SoftClassCache$ClassBytes +instanceKlass org/apache/maven/settings/validation/SettingsValidator +instanceKlass org/apache/maven/settings/io/DefaultSettingsWriter +instanceKlass org/apache/maven/settings/io/SettingsWriter +instanceKlass org/eclipse/jdt/internal/compiler/util/SoftClassCache$JdkClasses +instanceKlass org/apache/maven/settings/io/DefaultSettingsReader +instanceKlass org/apache/maven/settings/io/SettingsReader +instanceKlass org/apache/maven/settings/crypto/DefaultSettingsDecrypter +instanceKlass org/eclipse/jdt/internal/compiler/util/CharDeduplication +instanceKlass org/apache/maven/settings/crypto/SettingsDecrypter +instanceKlass org/apache/maven/settings/building/DefaultSettingsBuilder +instanceKlass org/eclipse/aether/transport/wagon/WagonTransporterFactory +instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonProvider +instanceKlass org/eclipse/aether/transport/wagon/WagonProvider +instanceKlass org/eclipse/aether/internal/transport/wagon/PlexusWagonConfigurator +instanceKlass org/eclipse/aether/transport/wagon/WagonConfigurator +instanceKlass org/eclipse/aether/transport/http/ChecksumExtractor +instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner +instanceKlass org/eclipse/aether/transport/http/HttpTransporterFactory +instanceKlass org/eclipse/aether/transport/file/FileTransporterFactory +instanceKlass org/eclipse/aether/spi/connector/transport/TransporterFactory +instanceKlass org/apache/maven/repository/internal/VersionsMetadataGeneratorFactory +instanceKlass org/apache/maven/repository/internal/SnapshotMetadataGeneratorFactory +instanceKlass org/apache/maven/repository/internal/PluginsMetadataGeneratorFactory +instanceKlass org/eclipse/jdt/core/JavaConventions +instanceKlass org/eclipse/aether/impl/MetadataGeneratorFactory +instanceKlass org/apache/maven/repository/internal/DefaultVersionResolver +instanceKlass org/eclipse/aether/impl/VersionResolver +instanceKlass org/apache/maven/repository/internal/DefaultVersionRangeResolver +instanceKlass org/eclipse/jdt/internal/core/JrtPackageFragmentRoot$1 +instanceKlass org/eclipse/aether/impl/VersionRangeResolver +instanceKlass org/apache/maven/repository/internal/DefaultModelCacheFactory +instanceKlass org/apache/maven/repository/internal/ModelCacheFactory +instanceKlass org/eclipse/jdt/internal/compiler/util/ObjectVector$1 +instanceKlass org/apache/maven/repository/internal/DefaultArtifactDescriptorReader +instanceKlass org/eclipse/lsp4j/WorkspaceSymbolResolveSupportCapabilities +instanceKlass org/eclipse/lsp4j/SymbolTagSupportCapabilities +instanceKlass org/eclipse/aether/impl/ArtifactDescriptorReader +instanceKlass org/eclipse/lsp4j/SymbolKindCapabilities +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TypeUtils$ParameterizedTypeImpl +instanceKlass org/eclipse/aether/named/support/NamedLockFactorySupport +instanceKlass org/eclipse/aether/named/NamedLockFactory +instanceKlass org/eclipse/lsp4j/WorkspaceEditChangeAnnotationSupportCapabilities +instanceKlass org/eclipse/lsp4j/DiagnosticWorkspaceCapabilities +instanceKlass org/eclipse/lsp4j/InlineValueWorkspaceCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/StaticNameMapperProvider +instanceKlass org/eclipse/lsp4j/InlayHintWorkspaceCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/GAVNameMapperProvider +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileStaticNameMapperProvider +instanceKlass org/eclipse/lsp4j/CodeLensWorkspaceCapabilities +instanceKlass org/eclipse/lsp4j/SemanticTokensWorkspaceCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileHashingGAVNameMapperProvider +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/FileGAVNameMapperProvider +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NameMapper +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/providers/DiscriminatingNameMapperProvider +instanceKlass org/eclipse/lsp4j/DynamicRegistrationCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactoryImpl +instanceKlass org/eclipse/lsp4j/WorkspaceEditCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/named/NamedLockFactoryAdapterFactory +instanceKlass org/eclipse/lsp4j/GeneralClientCapabilities +instanceKlass org/eclipse/lsp4j/NotebookDocumentClientCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/legacy/DefaultSyncContextFactory +instanceKlass org/eclipse/aether/impl/SyncContextFactory +instanceKlass org/eclipse/lsp4j/WindowClientCapabilities +instanceKlass org/eclipse/lsp4j/TextDocumentClientCapabilities +instanceKlass org/eclipse/aether/internal/impl/synccontext/DefaultSyncContextFactory +instanceKlass org/eclipse/aether/spi/synccontext/SyncContextFactory +instanceKlass org/eclipse/aether/internal/impl/slf4j/Slf4jLoggerFactory +instanceKlass org/eclipse/lsp4j/WorkspaceClientCapabilities +instanceKlass org/eclipse/aether/internal/impl/resolution/ArtifactResolverPostProcessorSupport +instanceKlass org/eclipse/lsp4j/ClientCapabilities +instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$FieldsData +instanceKlass com/google/gson/internal/Primitives +instanceKlass org/eclipse/aether/internal/impl/filter/RemoteRepositoryFilterSourceSupport +instanceKlass org/eclipse/aether/spi/connector/filter/RemoteRepositoryFilterSource +instanceKlass org/eclipse/lsp4j/jsonrpc/validation/NonNull +instanceKlass org/eclipse/aether/spi/resolution/ArtifactResolverPostProcessor +instanceKlass com/google/gson/annotations/SerializedName +instanceKlass java/time/format/Parsed +instanceKlass org/eclipse/lsp4j/ClientInfo +instanceKlass java/time/format/DateTimeParseContext +instanceKlass org/eclipse/aether/internal/impl/filter/DefaultRemoteRepositoryFilterManager +instanceKlass org/eclipse/aether/impl/RemoteRepositoryFilterManager +instanceKlass org/eclipse/jdt/ls/core/internal/LogReader$LogEntry +instanceKlass com/google/gson/internal/ConstructorConstructor$9 +instanceKlass org/eclipse/jdt/ls/core/internal/LogReader$LogSession +instanceKlass org/eclipse/aether/internal/impl/collect/DependencyCollectorDelegate +instanceKlass com/google/gson/internal/ReflectionAccessFilterHelper +instanceKlass org/eclipse/lsp4j/adapters/InitializeParamsTypeAdapter$Factory +instanceKlass com/google/gson/annotations/JsonAdapter +instanceKlass org/eclipse/aether/internal/impl/collect/DefaultDependencyCollector +instanceKlass org/eclipse/aether/impl/DependencyCollector +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Tuple$Two +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Tuple +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TypeUtils +instanceKlass org/eclipse/aether/internal/impl/checksum/TrustedToProvidedChecksumsSourceAdapter +instanceKlass org/eclipse/aether/spi/checksums/ProvidedChecksumsSource +instanceKlass com/google/gson/internal/reflect/ReflectionHelper$RecordHelper +instanceKlass com/google/gson/internal/reflect/ReflectionHelper +instanceKlass org/eclipse/aether/internal/impl/checksum/FileTrustedChecksumsSourceSupport +instanceKlass org/eclipse/aether/spi/checksums/TrustedChecksumsSource +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactorySupport +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactory +instanceKlass org/eclipse/aether/internal/impl/checksum/DefaultChecksumAlgorithmFactorySelector +instanceKlass com/google/gson/internal/JsonReaderInternalAccess +instanceKlass java/text/CalendarBuilder +instanceKlass java/text/ParsePosition +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumAlgorithmFactorySelector +instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$ReadTask +instanceKlass sun/nio/ch/Iocp$ResultHandler +instanceKlass org/eclipse/jdt/ls/core/internal/LogReader +instanceKlass sun/nio/ch/PendingFuture +instanceKlass org/eclipse/aether/internal/impl/SimpleLocalRepositoryManagerFactory +instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageProducer$Headers +instanceKlass org/eclipse/lsp4j/jsonrpc/json/ConcurrentMessageProcessor$1 +instanceKlass org/eclipse/aether/internal/impl/Maven2RepositoryLayoutFactory +instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayoutFactory +instanceKlass org/eclipse/aether/spi/log/LoggerFactory +instanceKlass org/eclipse/aether/internal/impl/LoggerFactoryProvider +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceEventsHandler +instanceKlass org/eclipse/aether/internal/impl/EnhancedLocalRepositoryManagerFactory +instanceKlass org/eclipse/aether/spi/localrepo/LocalRepositoryManagerFactory +instanceKlass org/eclipse/jdt/core/manipulation/CoreASTProvider$WAIT_FLAG +instanceKlass org/eclipse/jdt/core/manipulation/CoreASTProvider +instanceKlass org/eclipse/aether/internal/impl/DefaultUpdatePolicyAnalyzer +instanceKlass org/eclipse/aether/impl/UpdatePolicyAnalyzer +instanceKlass org/eclipse/aether/internal/impl/DefaultUpdateCheckManager +instanceKlass org/eclipse/jdt/ls/core/internal/MovingAverage +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseDiagnosticsHandler +instanceKlass org/eclipse/aether/impl/UpdateCheckManager +instanceKlass org/eclipse/aether/internal/impl/DefaultTransporterProvider +instanceKlass org/eclipse/aether/spi/connector/transport/TransporterProvider +instanceKlass org/eclipse/jdt/core/IProblemRequestor +instanceKlass org/eclipse/aether/internal/impl/DefaultTrackingFileManager +instanceKlass org/eclipse/aether/internal/impl/TrackingFileManager +instanceKlass org/eclipse/lsp4j/jsonrpc/StandardLauncher +instanceKlass org/eclipse/lsp4j/jsonrpc/json/ConcurrentMessageProcessor +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystemLifecycle +instanceKlass org/eclipse/aether/impl/RepositorySystemLifecycle +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositorySystem +instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageProducer +instanceKlass org/eclipse/aether/RepositorySystem +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryLayoutProvider +instanceKlass org/eclipse/aether/spi/connector/layout/RepositoryLayoutProvider +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryEventDispatcher +instanceKlass org/eclipse/aether/impl/RepositoryEventDispatcher +instanceKlass org/eclipse/aether/internal/impl/DefaultRepositoryConnectorProvider +instanceKlass org/eclipse/aether/impl/RepositoryConnectorProvider +instanceKlass org/eclipse/aether/internal/impl/DefaultRemoteRepositoryManager +instanceKlass org/eclipse/aether/impl/RemoteRepositoryManager +instanceKlass org/eclipse/lsp4j/jsonrpc/services/EndpointProxy +instanceKlass org/eclipse/aether/internal/impl/DefaultOfflineController +instanceKlass java/nio/file/Files$3 +instanceKlass org/eclipse/aether/impl/OfflineController +instanceKlass java/nio/file/FileTreeWalker$Event +instanceKlass java/nio/file/FileTreeWalker$DirectoryNode +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/ResponseError +instanceKlass org/eclipse/aether/internal/impl/DefaultMetadataResolver +instanceKlass jdk/internal/jrtfs/JrtFileAttributes +instanceKlass org/eclipse/aether/impl/MetadataResolver +instanceKlass org/eclipse/lsp4j/jsonrpc/RemoteEndpoint +instanceKlass org/eclipse/aether/internal/impl/DefaultLocalRepositoryProvider +instanceKlass org/eclipse/aether/impl/LocalRepositoryProvider +instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactorySupport +instanceKlass org/eclipse/aether/internal/impl/LocalPathPrefixComposerFactory +instanceKlass org/eclipse/aether/internal/impl/DefaultLocalPathComposer +instanceKlass org/eclipse/aether/internal/impl/LocalPathComposer +instanceKlass org/eclipse/aether/internal/impl/DefaultInstaller +instanceKlass org/eclipse/aether/impl/Installer +instanceKlass org/eclipse/aether/internal/impl/DefaultFileProcessor +instanceKlass org/eclipse/aether/spi/io/FileProcessor +instanceKlass org/eclipse/aether/internal/impl/DefaultDeployer +instanceKlass org/eclipse/aether/impl/Deployer +instanceKlass org/eclipse/aether/internal/impl/DefaultChecksumPolicyProvider +instanceKlass org/eclipse/aether/spi/connector/checksum/ChecksumPolicyProvider +instanceKlass org/eclipse/lsp4j/jsonrpc/services/GenericEndpoint +instanceKlass org/eclipse/aether/internal/impl/DefaultArtifactResolver +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Message +instanceKlass org/eclipse/aether/impl/ArtifactResolver +instanceKlass org/eclipse/lsp4j/jsonrpc/json/StreamMessageConsumer +instanceKlass org/eclipse/lsp4j/jsonrpc/json/MessageConstants +instanceKlass org/eclipse/aether/connector/basic/BasicRepositoryConnectorFactory +instanceKlass org/eclipse/aether/spi/locator/Service +instanceKlass org/eclipse/aether/spi/connector/RepositoryConnectorFactory +instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$BoundField +instanceKlass org/apache/maven/model/validation/DefaultModelValidator +instanceKlass com/google/gson/internal/bind/ReflectiveTypeAdapterFactory +instanceKlass com/google/gson/internal/bind/JsonAdapterAnnotationTypeAdapterFactory$DummyTypeAdapterFactory +instanceKlass org/apache/maven/model/validation/ModelValidator +instanceKlass com/google/gson/internal/bind/JsonAdapterAnnotationTypeAdapterFactory +instanceKlass org/apache/maven/model/superpom/DefaultSuperPomProvider +instanceKlass com/google/gson/internal/bind/MapTypeAdapterFactory +instanceKlass org/apache/maven/model/superpom/SuperPomProvider +instanceKlass com/google/gson/internal/bind/CollectionTypeAdapterFactory +instanceKlass org/apache/maven/model/profile/activation/PropertyProfileActivator +instanceKlass com/google/gson/internal/bind/ArrayTypeAdapter$1 +instanceKlass org/apache/maven/model/profile/activation/OperatingSystemProfileActivator +instanceKlass com/google/gson/internal/bind/DefaultDateTypeAdapter$1 +instanceKlass org/apache/maven/model/profile/activation/JdkVersionProfileActivator +instanceKlass java/util/concurrent/atomic/AtomicLongArray +instanceKlass org/apache/maven/model/profile/activation/FileProfileActivator +instanceKlass org/apache/maven/model/profile/activation/ProfileActivator +instanceKlass com/google/gson/internal/bind/NumberTypeAdapter$1 +instanceKlass org/apache/maven/model/profile/DefaultProfileSelector +instanceKlass org/apache/maven/model/profile/ProfileSelector +instanceKlass com/google/gson/internal/bind/ObjectTypeAdapter$1 +instanceKlass org/apache/maven/model/profile/DefaultProfileInjector +instanceKlass org/apache/maven/model/profile/ProfileInjector +instanceKlass org/apache/maven/model/plugin/DefaultReportingConverter +instanceKlass com/google/gson/internal/bind/TypeAdapters$29 +instanceKlass org/apache/maven/model/plugin/ReportingConverter +instanceKlass com/google/gson/internal/bind/TypeAdapters$33 +instanceKlass org/apache/maven/model/plugin/DefaultReportConfigurationExpander +instanceKlass org/apache/maven/model/plugin/ReportConfigurationExpander +instanceKlass java/util/Currency +instanceKlass org/apache/maven/model/plugin/DefaultPluginConfigurationExpander +instanceKlass org/apache/maven/model/plugin/PluginConfigurationExpander +instanceKlass com/google/gson/internal/bind/TypeAdapters$34 +instanceKlass org/apache/maven/model/path/ProfileActivationFilePathInterpolator +instanceKlass org/apache/maven/model/path/DefaultUrlNormalizer +instanceKlass org/apache/maven/model/path/UrlNormalizer +instanceKlass java/util/concurrent/atomic/AtomicIntegerArray +instanceKlass org/apache/maven/model/path/DefaultPathTranslator +instanceKlass org/apache/maven/model/path/PathTranslator +instanceKlass org/apache/maven/model/path/DefaultModelUrlNormalizer +instanceKlass org/apache/maven/model/path/ModelUrlNormalizer +instanceKlass org/apache/maven/model/path/DefaultModelPathTranslator +instanceKlass com/google/gson/internal/bind/TypeAdapters$32 +instanceKlass org/apache/maven/model/path/ModelPathTranslator +instanceKlass org/apache/maven/model/normalization/DefaultModelNormalizer +instanceKlass org/apache/maven/model/normalization/ModelNormalizer +instanceKlass com/google/gson/internal/bind/TypeAdapters$31 +instanceKlass org/apache/maven/model/management/DefaultPluginManagementInjector +instanceKlass org/apache/maven/model/management/PluginManagementInjector +instanceKlass org/apache/maven/model/management/DefaultDependencyManagementInjector +instanceKlass org/apache/maven/model/management/DependencyManagementInjector +instanceKlass org/apache/maven/model/locator/DefaultModelLocator +instanceKlass org/apache/maven/model/io/DefaultModelWriter +instanceKlass org/apache/maven/model/io/ModelWriter +instanceKlass org/apache/maven/model/io/DefaultModelReader +instanceKlass org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator +instanceKlass org/apache/maven/model/interpolation/ModelInterpolator +instanceKlass com/google/gson/internal/bind/TypeAdapters +instanceKlass com/google/gson/internal/ObjectConstructor +instanceKlass org/apache/maven/model/interpolation/DefaultModelVersionProcessor +instanceKlass com/google/gson/internal/ConstructorConstructor +instanceKlass org/apache/maven/model/interpolation/ModelVersionProcessor +instanceKlass com/google/gson/internal/sql/SqlTimestampTypeAdapter$1 +instanceKlass org/apache/maven/model/inheritance/DefaultInheritanceAssembler +instanceKlass org/apache/maven/model/inheritance/InheritanceAssembler +instanceKlass com/google/gson/internal/sql/SqlTimeTypeAdapter$1 +instanceKlass org/apache/maven/model/composition/DefaultDependencyManagementImporter +instanceKlass org/apache/maven/model/composition/DependencyManagementImporter +instanceKlass jdk/internal/jimage/ImageBufferCache$2 +instanceKlass com/google/gson/internal/sql/SqlDateTypeAdapter$1 +instanceKlass jdk/internal/jimage/ImageBufferCache +instanceKlass org/apache/maven/model/building/DefaultModelProcessor +instanceKlass org/apache/maven/model/building/ModelProcessor +instanceKlass jdk/internal/jimage/ImageReader$SharedImageReader$LocationVisitor +instanceKlass org/apache/maven/model/io/ModelReader +instanceKlass org/apache/maven/model/locator/ModelLocator +instanceKlass jdk/internal/jimage/ImageLocation +instanceKlass org/apache/maven/model/building/DefaultModelBuilder +instanceKlass com/google/gson/internal/bind/DefaultDateTypeAdapter$DateType +instanceKlass java/util/RegularEnumSet$EnumSetIterator +instanceKlass com/google/gson/internal/sql/SqlTypesSupport +instanceKlass java/nio/file/FileTreeWalker +instanceKlass java/nio/file/SimpleFileVisitor +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/MessageTypeAdapter$Factory +instanceKlass org/apache/maven/model/building/ModelBuilder +instanceKlass jdk/internal/jrtfs/JrtDirectoryStream$1 +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EnumTypeAdapter$Factory +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/TupleTypeAdapters$TwoTypeAdapterFactory +instanceKlass jdk/internal/jimage/ImageReader$Node +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/EitherTypeAdapter$Factory +instanceKlass jdk/internal/jrtfs/JrtPath +instanceKlass org/apache/maven/cli/internal/BootstrapCoreExtensionManager +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/ThrowableTypeAdapter$Factory +instanceKlass org/eclipse/lsp4j/jsonrpc/json/adapters/CollectionTypeAdapter$Factory +instanceKlass jdk/internal/jrtfs/JrtDirectoryStream +instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsWriter +instanceKlass org/apache/maven/toolchain/io/ToolchainsWriter +instanceKlass jdk/internal/jimage/decompressor/Decompressor +instanceKlass org/apache/maven/toolchain/building/DefaultToolchainsBuilder +instanceKlass jdk/internal/jimage/ImageStringsReader +instanceKlass org/apache/maven/toolchain/building/ToolchainsBuilder +instanceKlass org/apache/maven/session/scope/internal/SessionScope$ScopeState +instanceKlass jdk/internal/jimage/ImageHeader +instanceKlass com/google/gson/FormattingStyle +instanceKlass sun/nio/ch/Util$4 +instanceKlass com/google/gson/stream/JsonWriter +instanceKlass org/apache/maven/session/scope/internal/SessionScope +instanceKlass sun/nio/ch/FileChannelImpl$Unmapper +instanceKlass jdk/internal/access/foreign/UnmapperProxy +instanceKlass com/google/gson/stream/JsonReader +instanceKlass jdk/internal/misc/ExtendedMapMode +instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel$1 +instanceKlass sun/nio/ch/Interruptible +instanceKlass java/nio/channels/FileChannel$MapMode +instanceKlass jdk/internal/jimage/BasicImageReader$2 +instanceKlass com/google/gson/ToNumberStrategy +instanceKlass com/google/gson/Gson +instanceKlass jdk/internal/jimage/BasicImageReader$1 +instanceKlass jdk/internal/jimage/ImageReader$Node +instanceKlass jdk/internal/jimage/ImageStrings +instanceKlass jdk/internal/jimage/BasicImageReader +instanceKlass org/apache/maven/plugin/internal/AbstractMavenPluginDependenciesValidator +instanceKlass org/apache/maven/plugin/internal/MavenPluginDependenciesValidator +instanceKlass jdk/internal/jimage/ImageReader +instanceKlass com/google/gson/internal/Excluder +instanceKlass org/apache/maven/plugin/internal/AbstractMavenPluginParametersValidator +instanceKlass org/eclipse/jdt/internal/core/JavaProject$1 +instanceKlass org/apache/maven/plugin/internal/MavenPluginConfigurationValidator +instanceKlass com/google/gson/FieldNamingStrategy +instanceKlass com/google/gson/GsonBuilder +instanceKlass org/apache/maven/eventspy/AbstractEventSpy +instanceKlass org/eclipse/jdt/internal/core/ClasspathAttributeDelta +instanceKlass jdk/internal/jrtfs/SystemImage$2 +instanceKlass org/eclipse/jdt/core/IClasspathAttributeDelta +instanceKlass jdk/internal/jrtfs/SystemImage +instanceKlass org/eclipse/jdt/internal/compiler/util/ObjectVector +instanceKlass org/apache/maven/plugin/PluginValidationManager +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/CancelParams +instanceKlass org/eclipse/jdt/internal/core/JavaProject$3 +instanceKlass org/eclipse/jdt/internal/core/JavaProject$2 +instanceKlass org/apache/maven/plugin/DefaultMojosExecutionStrategy +instanceKlass org/apache/maven/plugin/MojosExecutionStrategy +instanceKlass org/apache/maven/lifecycle/internal/LifecycleDependencyResolver +instanceKlass org/eclipse/lsp4j/jsonrpc/json/MessageJsonHandler +instanceKlass org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory +instanceKlass org/apache/maven/lifecycle/internal/ProjectArtifactFactory +instanceKlass jdk/internal/jrtfs/JrtPath +instanceKlass org/eclipse/lsp4j/DidChangeNotebookDocumentParams +instanceKlass org/eclipse/lsp4j/DidOpenNotebookDocumentParams +instanceKlass org/apache/maven/internal/aether/ResolverLifecycle +instanceKlass org/eclipse/lsp4j/DidCloseNotebookDocumentParams +instanceKlass org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory +instanceKlass org/eclipse/lsp4j/DidSaveNotebookDocumentParams +instanceKlass org/apache/maven/extension/internal/CoreExportsProvider +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BuildWorkspaceHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SignatureHelpHandler +instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$ScopeState +instanceKlass org/apache/maven/execution/MojoExecutionEvent +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToDeclarationHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToDefinitionHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HoverHandler +instanceKlass org/apache/maven/execution/scope/MojoExecutionScoped +instanceKlass com/google/inject/RestrictedBindingSource$Permit +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/PrepareRenameHandler +instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler +instanceKlass org/apache/maven/execution/scope/internal/MojoExecutionScope +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$2 +instanceKlass org/apache/maven/execution/MojoExecutionListener +instanceKlass org/eclipse/core/internal/resources/ProjectNatureDescriptor +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/SaveActionHandler +instanceKlass org/eclipse/sisu/space/QualifiedTypeBinder$1 +instanceKlass jdk/internal/jrtfs/JrtFileSystemProvider$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/RenameHandler +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeActionResolveHandler +instanceKlass org/eclipse/core/internal/events/NotificationManager$1 +instanceKlass org/apache/maven/execution/DefaultMavenExecutionRequestPopulator +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/NavigateToTypeDefinitionHandler +instanceKlass org/apache/maven/execution/MavenExecutionRequestPopulator +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/DocumentSymbolHandler +instanceKlass org/apache/maven/classrealm/DefaultClassRealmManager +instanceKlass java/nio/file/spi/FileSystemProvider$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CodeLensHandler +instanceKlass org/apache/maven/classrealm/ClassRealmManager +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ReferencesHandler +instanceKlass org/apache/maven/SessionScoped +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InferSelectionHandler$SelectionInfo +instanceKlass org/apache/maven/ReactorReader +instanceKlass org/eclipse/jdt/internal/compiler/util/JrtFileSystem +instanceKlass org/apache/maven/repository/internal/MavenWorkspaceReader +instanceKlass sun/reflect/generics/tree/BooleanSignature +instanceKlass org/apache/maven/DefaultArtifactFilterManager +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ExtractInterfaceHandler$CheckExtractInterfaceResponse +instanceKlass org/apache/maven/ArtifactFilterManager +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MoveHandler$MoveDestinationsResponse +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateDelegateMethodsHandler$CheckDelegateMethodsResponse +instanceKlass org/eclipse/sisu/space/WildcardKey$QualifiedImpl +instanceKlass org/eclipse/jdt/internal/compiler/util/Jdk +instanceKlass org/eclipse/jdt/ls/core/internal/text/correction/ChangeSignatureInfo +instanceKlass org/eclipse/sisu/space/WildcardKey$Qualified +instanceKlass org/eclipse/jdt/internal/compiler/util/SoftClassCache +instanceKlass org/eclipse/sisu/space/WildcardKey +instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/GenerateGetterSetterOperation$AccessorField +instanceKlass org/eclipse/sisu/Typed +instanceKlass org/sonatype/inject/EagerSingleton +instanceKlass sun/reflect/generics/tree/ArrayTypeSignature +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateConstructorsHandler$CheckConstructorsResponse +instanceKlass org/eclipse/sisu/EagerSingleton +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateToStringHandler$CheckToStringResponse +instanceKlass org/sonatype/inject/Mediator +instanceKlass org/eclipse/jdt/internal/compiler/util/JRTUtil +instanceKlass org/eclipse/sisu/inject/TypeArguments +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HashCodeEqualsHandler$CheckHashCodeEqualsResponse +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/OverrideMethodsHandler$OverridableMethodsResponse +instanceKlass org/eclipse/m2e/internal/maven/listener/M2EMavenBuildDataBridge +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GetRefactorEditHandler$RefactorWorkspaceEdit +instanceKlass org/apache/maven/eventspy/EventSpy +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateDelegateMethodsHandler$GenerateDelegateMethodsParams +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FindLinksHandler$FindLinksParams +instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessMethodRequestor +instanceKlass org/eclipse/sisu/space/asm/Context +instanceKlass org/eclipse/jdt/core/search/ISearchPattern +instanceKlass org/eclipse/sisu/space/asm/Attribute +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateAccessorsHandler$GenerateAccessorsParams +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GetRefactorEditHandler$GetRefactorEditParams +instanceKlass org/eclipse/jdt/core/search/SearchEngine +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateToStringHandler$GenerateToStringParams +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InferSelectionHandler$InferSelectionParams +instanceKlass org/eclipse/sisu/space/asm/AnnotationVisitor +instanceKlass org/eclipse/lsp4j/extended/ProjectBuildParams +instanceKlass org/eclipse/jdt/ls/core/internal/lsp/ValidateDocumentParams +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/GenerateConstructorsHandler$GenerateConstructorsParams +instanceKlass org/eclipse/sisu/space/asm/ClassReader +instanceKlass org/eclipse/jdt/core/search/SearchDocument +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/HashCodeEqualsHandler$GenerateHashCodeEqualsParams +instanceKlass org/eclipse/jdt/internal/core/search/indexing/AddJrtToIndex$JrtTraverser +instanceKlass org/eclipse/lsp4j/extended/ProjectConfigurationsUpdateParam +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/OverrideMethodsHandler$AddOverridableMethodParams +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/MoveHandler$MoveParams +instanceKlass org/eclipse/jdt/internal/core/ClasspathValidation +instanceKlass org/eclipse/lsp4j/TextDocumentIdentifier +instanceKlass org/eclipse/jdt/internal/core/JavaElementDelta$Key +instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleSet +instanceKlass org/eclipse/sisu/space/IndexedClassFinder$1 +instanceKlass org/eclipse/lsp4j/WorkspaceDiagnosticReport +instanceKlass org/eclipse/jdt/internal/core/SimpleDelta +instanceKlass org/eclipse/lsp4j/adapters/WorkspaceSymbolResponseAdapter +instanceKlass org/eclipse/lsp4j/DeleteFilesParams +instanceKlass org/eclipse/sisu/inject/Logs$SLF4JSink +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$ZipCache +instanceKlass org/eclipse/lsp4j/CreateFilesParams +instanceKlass org/eclipse/sisu/inject/Logs$Sink +instanceKlass org/eclipse/sisu/inject/Logs +instanceKlass org/eclipse/sisu/space/QualifierCache +instanceKlass org/eclipse/lsp4j/RenameFilesParams +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfObject +instanceKlass org/eclipse/lsp4j/WorkspaceSymbol +instanceKlass org/eclipse/sisu/space/QualifiedTypeVisitor +instanceKlass org/eclipse/jdt/internal/compiler/util/HashtableOfIntValues +instanceKlass org/eclipse/lsp4j/DidChangeConfigurationParams +instanceKlass org/eclipse/sisu/plexus/PlexusTypeVisitor$ComponentAnnotationVisitor +instanceKlass org/eclipse/lsp4j/DidChangeWorkspaceFoldersParams +instanceKlass org/eclipse/sisu/space/AnnotationVisitor +instanceKlass org/eclipse/sisu/plexus/PlexusTypeVisitor +instanceKlass org/eclipse/lsp4j/DidChangeWatchedFilesParams +instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleSetOfCharArray +instanceKlass org/eclipse/sisu/space/ClassVisitor +instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanModule$PlexusXmlBeanSource +instanceKlass org/eclipse/lsp4j/CompletionList +instanceKlass org/eclipse/lsp4j/InlineValueEvaluatableExpression +instanceKlass org/eclipse/jdt/internal/core/index/DiskIndex +instanceKlass org/eclipse/lsp4j/InlineValueVariableLookup +instanceKlass org/eclipse/lsp4j/InlineValueText +instanceKlass org/eclipse/jdt/internal/core/util/SimpleWordSet +instanceKlass org/eclipse/jdt/internal/core/index/MemoryIndex +instanceKlass org/eclipse/lsp4j/adapters/InlineValueResponseAdapter +instanceKlass org/eclipse/jdt/internal/core/search/indexing/ReadWriteMonitor +instanceKlass org/eclipse/lsp4j/adapters/DocumentDiagnosticReportTypeAdapter +instanceKlass org/eclipse/jdt/internal/core/index/Index +instanceKlass org/eclipse/lsp4j/ColorInformation +instanceKlass org/eclipse/lsp4j/Moniker +instanceKlass org/eclipse/jdt/internal/core/index/MetaIndex +instanceKlass org/eclipse/lsp4j/PrepareRenameDefaultBehavior +instanceKlass org/eclipse/sisu/inject/DescriptionSource +instanceKlass org/eclipse/sisu/inject/AnnotatedSource +instanceKlass org/eclipse/lsp4j/PrepareRenameResult +instanceKlass org/eclipse/sisu/Priority +instanceKlass org/eclipse/sisu/Hidden +instanceKlass org/eclipse/sisu/Description +instanceKlass org/eclipse/sisu/inject/Sources +instanceKlass org/eclipse/lsp4j/Range +instanceKlass com/google/inject/internal/MoreTypes$ParameterizedTypeImpl +instanceKlass org/eclipse/lsp4j/adapters/PrepareRenameResponseAdapter +instanceKlass sun/nio/cs/ThreadLocalCoders$Cache +instanceKlass org/eclipse/lsp4j/ColorPresentation +instanceKlass sun/nio/cs/ThreadLocalCoders +instanceKlass org/apache/maven/wagon/Wagon +instanceKlass org/codehaus/plexus/component/configurator/ComponentConfigurator +instanceKlass org/apache/maven/toolchain/ToolchainsBuilder +instanceKlass org/eclipse/lsp4j/TextEdit +instanceKlass org/apache/maven/toolchain/ToolchainManagerPrivate +instanceKlass org/apache/maven/toolchain/ToolchainManager +instanceKlass org/eclipse/lsp4j/SignatureHelp +instanceKlass org/apache/maven/toolchain/ToolchainFactory +instanceKlass org/apache/maven/settings/MavenSettingsBuilder +instanceKlass org/apache/maven/rtinfo/RuntimeInformation +instanceKlass org/apache/maven/project/artifact/ProjectArtifactsCache +instanceKlass org/apache/maven/project/ProjectDependenciesResolver +instanceKlass org/eclipse/lsp4j/Command +instanceKlass org/apache/maven/project/ProjectBuildingHelper +instanceKlass org/eclipse/lsp4j/adapters/CodeActionResponseAdapter +instanceKlass org/eclipse/lsp4j/LinkedEditingRanges +instanceKlass org/apache/maven/project/ProjectBuilder +instanceKlass org/apache/maven/project/MavenProjectHelper +instanceKlass org/apache/maven/plugin/version/PluginVersionResolver +instanceKlass org/eclipse/lsp4j/Hover +instanceKlass org/apache/maven/plugin/prefix/PluginPrefixResolver +instanceKlass org/apache/maven/plugin/PluginManager +instanceKlass org/eclipse/lsp4j/FoldingRange +instanceKlass org/apache/maven/plugin/PluginDescriptorCache +instanceKlass org/apache/maven/plugin/MavenPluginManager +instanceKlass org/apache/maven/plugin/LegacySupport +instanceKlass org/eclipse/lsp4j/DocumentSymbol +instanceKlass org/apache/maven/plugin/BuildPluginManager +instanceKlass org/eclipse/lsp4j/SymbolInformation +instanceKlass org/apache/maven/model/plugin/LifecycleBindingsInjector +instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderCommon +instanceKlass org/eclipse/lsp4j/adapters/DocumentSymbolResponseAdapter +instanceKlass org/eclipse/lsp4j/SelectionRange +instanceKlass org/apache/maven/lifecycle/internal/builder/Builder +instanceKlass org/apache/maven/lifecycle/internal/MojoExecutor +instanceKlass org/eclipse/lsp4j/CallHierarchyOutgoingCall +instanceKlass org/apache/maven/lifecycle/internal/MojoDescriptorCreator +instanceKlass org/eclipse/lsp4j/TypeHierarchyItem +instanceKlass org/eclipse/jdt/internal/launching/JREContainer$RuleEntry +instanceKlass org/eclipse/jdt/internal/launching/JREContainer$RuleKey +instanceKlass org/eclipse/lsp4j/SemanticTokensDelta +instanceKlass org/eclipse/lsp4j/SemanticTokens +instanceKlass org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculator +instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXVersionUtil +instanceKlass org/eclipse/lsp4j/adapters/SemanticTokensFullDeltaResponseAdapter +instanceKlass org/apache/maven/lifecycle/internal/LifecycleStarter +instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXAccessRuleParticipant +instanceKlass org/eclipse/lsp4j/CallHierarchyIncomingCall +instanceKlass org/apache/maven/lifecycle/internal/LifecyclePluginResolver +instanceKlass org/apache/maven/lifecycle/internal/LifecycleModuleBuilder +instanceKlass org/apache/maven/lifecycle/internal/LifecycleExecutionPlanCalculator +instanceKlass org/apache/maven/lifecycle/internal/LifecycleDebugLogger +instanceKlass org/apache/maven/lifecycle/internal/ExecutionEventCatapult +instanceKlass org/eclipse/jdt/internal/launching/environments/DefaultAccessRuleParticipant +instanceKlass org/apache/maven/lifecycle/internal/BuildListCalculator +instanceKlass org/apache/maven/lifecycle/MojoExecutionConfigurator +instanceKlass org/eclipse/jdt/internal/core/ModelUpdater +instanceKlass org/apache/maven/lifecycle/LifecycleMappingDelegate +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$PathReplace +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$AccessRuleReplace +instanceKlass org/eclipse/lsp4j/CallHierarchyItem +instanceKlass org/apache/maven/lifecycle/LifecycleExecutor +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$ClasspathAttributeReplace +instanceKlass org/apache/maven/lifecycle/LifeCyclePluginAnalyzer +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$ProjectEntryReplace +instanceKlass org/apache/maven/lifecycle/DefaultLifecycles +instanceKlass org/apache/maven/graph/GraphBuilder +instanceKlass org/eclipse/lsp4j/LocationLink +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper$LibraryEntryReplace +instanceKlass org/eclipse/lsp4j/Location +instanceKlass org/apache/maven/eventspy/internal/EventSpyDispatcher +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainer +instanceKlass com/google/gson/internal/$Gson$Types$WildcardTypeImpl +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathContainerSaveHelper +instanceKlass org/apache/maven/configuration/BeanConfigurator +instanceKlass com/google/gson/internal/$Gson$Preconditions +instanceKlass org/apache/maven/bridge/MavenRepositorySystem +instanceKlass com/google/gson/internal/$Gson$Types$ParameterizedTypeImpl +instanceKlass com/google/gson/internal/$Gson$Types +instanceKlass org/apache/maven/artifact/resolver/ResolutionErrorHandler +instanceKlass org/apache/maven/artifact/repository/metadata/io/MetadataReader +instanceKlass com/google/gson/TypeAdapter +instanceKlass com/google/gson/reflect/TypeToken +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/Either +instanceKlass sun/reflect/generics/tree/Wildcard +instanceKlass org/apache/maven/toolchain/io/DefaultToolchainsReader +instanceKlass sun/reflect/generics/tree/BottomSignature +instanceKlass org/apache/maven/artifact/metadata/ArtifactMetadataSource +instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadataSource +instanceKlass org/apache/maven/artifact/handler/manager/ArtifactHandlerManager +instanceKlass org/eclipse/lsp4j/adapters/LocationLinkListAdapter +instanceKlass org/apache/maven/artifact/factory/ArtifactFactory +instanceKlass org/apache/maven/ProjectDependenciesResolver +instanceKlass com/google/gson/TypeAdapterFactory +instanceKlass org/apache/maven/Maven +instanceKlass org/codehaus/plexus/interpolation/ValueSource +instanceKlass org/eclipse/m2e/jdt/internal/MavenClasspathHelpers +instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingRequest +instanceKlass org/eclipse/lsp4j/WorkspaceEdit +instanceKlass org/eclipse/lsp4j/InlayHint +instanceKlass org/apache/maven/execution/ExecutionListener +instanceKlass org/eclipse/m2e/jdt/AbstractClassifierClasspathProvider +instanceKlass org/apache/maven/artifact/handler/ArtifactHandler +instanceKlass org/eclipse/aether/transfer/TransferListener +instanceKlass org/apache/maven/eventspy/EventSpy$Context +instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcher +instanceKlass org/eclipse/lsp4j/InlineValueParams +instanceKlass org/apache/maven/lifecycle/Lifecycle +instanceKlass org/apache/maven/exception/ExceptionHandler +instanceKlass org/eclipse/lsp4j/InlayHintParams +instanceKlass org/apache/maven/cli/MavenCli +instanceKlass org/eclipse/m2e/jdt/IClassifierClasspathProvider +instanceKlass org/eclipse/m2e/jdt/internal/MavenClassifierManager +instanceKlass org/eclipse/lsp4j/CodeAction +instanceKlass org/eclipse/lsp4j/WillSaveTextDocumentParams +instanceKlass org/apache/maven/toolchain/io/ToolchainsReader +instanceKlass org/eclipse/sisu/space/CloningClassSpace$1 +instanceKlass org/apache/maven/lifecycle/mapping/LifecycleMapping +instanceKlass org/eclipse/lsp4j/CodeLens +instanceKlass org/eclipse/m2e/jdt/internal/launch/MavenLaunchConfigurationListener +instanceKlass org/apache/maven/repository/metadata/GraphConflictResolver +instanceKlass org/eclipse/m2e/jdt/internal/DefaultClasspathManagerDelegate +instanceKlass org/apache/maven/repository/metadata/GraphConflictResolutionPolicy +instanceKlass org/eclipse/sisu/plexus/ConfigurationImpl +instanceKlass org/eclipse/lsp4j/DocumentFormattingParams +instanceKlass org/apache/maven/repository/metadata/ClasspathTransformation +instanceKlass org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformationManager +instanceKlass org/eclipse/lsp4j/DidChangeTextDocumentParams +instanceKlass org/apache/maven/repository/legacy/resolver/transform/ArtifactTransformation +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverFactory +instanceKlass org/eclipse/lsp4j/DidOpenTextDocumentParams +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolver +instanceKlass jdk/internal/access/foreign/MemorySegmentProxy +instanceKlass org/eclipse/lsp4j/DidCloseTextDocumentParams +instanceKlass org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter +instanceKlass org/eclipse/lsp4j/DidSaveTextDocumentParams +instanceKlass org/eclipse/lsp4j/DocumentRangeFormattingParams +instanceKlass org/apache/maven/repository/legacy/repository/ArtifactRepositoryFactory +instanceKlass org/apache/maven/repository/legacy/UpdateCheckManager +instanceKlass org/apache/maven/repository/RepositorySystem +instanceKlass org/eclipse/lsp4j/DocumentLink +instanceKlass org/apache/maven/repository/MirrorSelector +instanceKlass org/apache/maven/project/validation/ModelValidator +instanceKlass org/eclipse/m2e/jdt/IClasspathManagerDelegate +instanceKlass org/eclipse/m2e/jdt/IClasspathDescriptor +instanceKlass org/apache/maven/project/path/PathTranslator +instanceKlass org/apache/maven/artifact/resolver/filter/ArtifactFilter +instanceKlass org/apache/maven/project/interpolation/ModelInterpolator +instanceKlass org/eclipse/m2e/jdt/internal/BuildPathManager +instanceKlass org/eclipse/lsp4j/WorkDoneProgressAndPartialResultParams +instanceKlass org/apache/maven/project/inheritance/ModelInheritanceAssembler +instanceKlass org/apache/maven/project/MavenProjectBuilder +instanceKlass org/apache/maven/profiles/MavenProfilesBuilder +instanceKlass org/apache/maven/execution/RuntimeInformation +instanceKlass org/eclipse/lsp4j/CompletionItem +instanceKlass org/eclipse/m2e/core/MavenPlugin +instanceKlass org/apache/maven/artifact/resolver/ArtifactResolver +instanceKlass org/apache/maven/artifact/resolver/ArtifactCollector +instanceKlass org/apache/maven/repository/legacy/resolver/LegacyArtifactCollector +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataManager +instanceKlass org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout +instanceKlass org/eclipse/m2e/jdt/IClasspathManager +instanceKlass org/apache/maven/artifact/repository/ArtifactRepositoryFactory +instanceKlass org/eclipse/lsp4j/InitializeResult +instanceKlass org/eclipse/m2e/jdt/IMavenClassifierManager +instanceKlass org/apache/maven/artifact/manager/WagonManager +instanceKlass org/apache/maven/repository/legacy/WagonManager +instanceKlass org/apache/maven/artifact/installer/ArtifactInstaller +instanceKlass org/eclipse/lsp4j/WorkDoneProgressCancelParams +instanceKlass org/eclipse/sisu/plexus/PlexusXmlMetadata +instanceKlass org/eclipse/lsp4j/SetTraceParams +instanceKlass org/eclipse/lsp4j/services/NotebookDocumentService +instanceKlass org/eclipse/sisu/plexus/Roles +instanceKlass org/eclipse/lsp4j/InitializeParams +instanceKlass org/apache/maven/artifact/deployer/ArtifactDeployer +instanceKlass org/eclipse/sisu/plexus/Hints +instanceKlass org/eclipse/lsp4j/InitializedParams +instanceKlass org/eclipse/sisu/space/AbstractDeferredClass +instanceKlass org/eclipse/lsp4j/jsonrpc/CancelChecker +instanceKlass org/eclipse/jdt/ls/core/internal/JavaClientConnection +instanceKlass org/eclipse/sisu/plexus/RequirementImpl +instanceKlass org/eclipse/jdt/internal/launching/JREContainer$1 +instanceKlass jdk/internal/vm/annotation/IntrinsicCandidate +instanceKlass org/codehaus/plexus/component/annotations/Requirement +instanceKlass org/eclipse/lsp4j/jsonrpc/json/JsonRpcMethodProvider +instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonDelegate +instanceKlass org/eclipse/jdt/internal/launching/JREContainer +instanceKlass org/eclipse/jdt/ls/core/internal/ProgressReport +instanceKlass org/eclipse/jdt/ls/core/internal/StatusReport +instanceKlass org/eclipse/jdt/ls/core/internal/ActionableNotification +instanceKlass org/eclipse/jdt/ls/core/internal/EventNotification +instanceKlass org/eclipse/jdt/launching/environments/CompatibleEnvironment +instanceKlass org/eclipse/lsp4j/ExecuteCommandParams +instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironmentAnalyzer +instanceKlass org/eclipse/lsp4j/ShowDocumentResult +instanceKlass org/eclipse/sisu/space/Streams +instanceKlass org/eclipse/lsp4j/MessageActionItem +instanceKlass org/eclipse/sisu/plexus/ComponentImpl +instanceKlass org/eclipse/sisu/plexus/PlexusTypeRegistry +instanceKlass org/eclipse/lsp4j/WorkspaceFolder +instanceKlass org/eclipse/sisu/plexus/PlexusXmlScanner +instanceKlass org/eclipse/lsp4j/ApplyWorkspaceEditResponse +instanceKlass org/eclipse/sisu/space/QualifiedTypeBinder +instanceKlass org/eclipse/jdt/launching/IVMRunner +instanceKlass org/eclipse/sisu/plexus/PlexusTypeBinder +instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonNotification +instanceKlass org/eclipse/jdt/internal/launching/CompositeId +instanceKlass org/eclipse/lsp4j/jsonrpc/json/JsonRpcMethod +instanceKlass org/eclipse/lsp4j/jsonrpc/json/ResponseJsonAdapter +instanceKlass sun/reflect/generics/reflectiveObjects/LazyReflectiveObjectGenerator +instanceKlass org/eclipse/aether/AbstractRepositoryListener +instanceKlass sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl +instanceKlass sun/reflect/generics/tree/MethodTypeSignature +instanceKlass org/eclipse/aether/RepositoryListener +instanceKlass com/google/inject/Key$AnnotationInstanceStrategy +instanceKlass com/google/inject/name/NamedImpl +instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonRequest +instanceKlass com/google/inject/name/Named +instanceKlass org/eclipse/lsp4j/ShowDocumentParams +instanceKlass com/google/inject/name/Names +instanceKlass org/eclipse/lsp4j/LogTraceParams +instanceKlass org/eclipse/lsp4j/WorkDoneProgressCreateParams +instanceKlass org/eclipse/lsp4j/ProgressParams +instanceKlass org/eclipse/lsp4j/ApplyWorkspaceEditParams +instanceKlass org/eclipse/lsp4j/PublishDiagnosticsParams +instanceKlass org/eclipse/lsp4j/RegistrationParams +instanceKlass org/apache/commons/lang3/math/NumberUtils +instanceKlass org/eclipse/lsp4j/MessageParams +instanceKlass org/eclipse/lsp4j/UnregistrationParams +instanceKlass java/util/concurrent/CompletableFuture +instanceKlass org/eclipse/lsp4j/ConfigurationParams +instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$IntItem +instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXLibraryLocationResolver +instanceKlass org/eclipse/lsp4j/jsonrpc/services/JsonSegment +instanceKlass org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil +instanceKlass org/eclipse/jdt/internal/launching/JavaFxLibraryResolver +instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$Item +instanceKlass org/eclipse/jdt/launching/ILibraryLocationResolver +instanceKlass org/apache/maven/artifact/versioning/ComparableVersion +instanceKlass org/eclipse/lsp4j/jsonrpc/services/AnnotationUtil$MethodInfo +instanceKlass org/apache/maven/artifact/versioning/DefaultArtifactVersion +instanceKlass org/eclipse/lsp4j/jsonrpc/services/ServiceEndpoints +instanceKlass org/eclipse/lsp4j/jsonrpc/json/MethodProvider +instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseClassRealmManagerDelegate +instanceKlass org/eclipse/lsp4j/jsonrpc/Endpoint +instanceKlass org/eclipse/lsp4j/jsonrpc/MessageProducer +instanceKlass org/eclipse/lsp4j/jsonrpc/MessageConsumer +instanceKlass org/apache/maven/classrealm/ClassRealmManagerDelegate +instanceKlass org/eclipse/lsp4j/jsonrpc/MessageIssueHandler +instanceKlass org/eclipse/lsp4j/jsonrpc/Launcher$Builder +instanceKlass org/sonatype/plexus/build/incremental/ThreadBuildContext +instanceKlass org/eclipse/jdt/launching/LibraryLocation +instanceKlass org/sonatype/plexus/build/incremental/BuildContext +instanceKlass org/eclipse/lsp4j/jsonrpc/Launcher +instanceKlass org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver +instanceKlass org/eclipse/jdt/ls/core/internal/JavaClientConnection$JavaLanguageClient +instanceKlass org/eclipse/jdt/ls/core/internal/lsp/ExecuteCommandProposedClient +instanceKlass org/eclipse/lsp4j/services/LanguageClient +instanceKlass org/apache/maven/plugin/internal/PluginDependenciesResolver +instanceKlass org/eclipse/jdt/internal/launching/LibraryInfo +instanceKlass org/apache/maven/plugin/DefaultPluginArtifactsCache +instanceKlass org/apache/maven/plugin/PluginArtifactsCache +instanceKlass org/apache/maven/plugin/DefaultPluginRealmCache +instanceKlass org/apache/maven/plugin/PluginRealmCache +instanceKlass org/apache/maven/project/DefaultProjectRealmCache +instanceKlass org/apache/maven/project/ProjectRealmCache +instanceKlass org/apache/maven/plugin/DefaultExtensionRealmCache +instanceKlass org/apache/maven/plugin/ExtensionRealmCache +instanceKlass org/eclipse/jdt/launching/AbstractVMInstall +instanceKlass org/eclipse/jdt/launching/IVMInstall3 +instanceKlass org/eclipse/jdt/launching/IVMInstall2 +instanceKlass org/eclipse/jdt/internal/launching/VMDefinitionsContainer +instanceKlass org/codehaus/plexus/component/annotations/Component +instanceKlass org/eclipse/jdt/ls/core/internal/ParentProcessWatcher +instanceKlass org/apache/maven/project/artifact/DefaultMavenMetadataCache +instanceKlass sun/nio/ch/PendingIoCache +instanceKlass org/eclipse/m2e/core/internal/project/IManagedCache +instanceKlass sun/nio/ch/Invoker$GroupAndInvokeCount +instanceKlass org/apache/maven/project/artifact/MavenMetadataCache +instanceKlass sun/nio/ch/Invoker +instanceKlass org/eclipse/m2e/core/internal/embedder/DefaultMavenComponentContributor +instanceKlass sun/nio/ch/AsynchronousChannelGroupImpl$1 +instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenComponentContributor +instanceKlass sun/nio/ch/AsynchronousChannelGroupImpl$2 +instanceKlass sun/nio/ch/Iocp$EventHandlerTask +instanceKlass ch/qos/logback/classic/spi/LoggerContextListener +instanceKlass sun/nio/ch/ThreadPool +instanceKlass org/eclipse/jdt/launching/AbstractVMInstallType +instanceKlass sun/nio/ch/Iocp$CompletionStatus +instanceKlass org/eclipse/jdt/launching/IVMInstallType +instanceKlass java/nio/channels/AsynchronousChannelGroup +instanceKlass sun/nio/ch/WindowsAsynchronousFileChannelImpl$DefaultIocpHolder +instanceKlass sun/nio/ch/Groupable +instanceKlass sun/nio/ch/Iocp$OverlappedChannel +instanceKlass java/nio/channels/AsynchronousFileChannel +instanceKlass java/lang/Deprecated +instanceKlass java/net/ProtocolFamily +instanceKlass ch/qos/logback/core/spi/ConfigurationEventListener +instanceKlass ch/qos/logback/core/spi/ConfigurationEvent +instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$PipeStreamProvider +instanceKlass ch/qos/logback/core/spi/SequenceNumberGenerator +instanceKlass ch/qos/logback/core/LifeCycleManager +instanceKlass com/google/inject/spi/InjectionRequest +instanceKlass java/lang/ProcessHandleImpl$Info +instanceKlass java/lang/ProcessHandle$Info +instanceKlass org/eclipse/sisu/bean/BeanProperty +instanceKlass com/google/common/collect/ObjectArrays +instanceKlass java/lang/ProcessHandleImpl +instanceKlass java/lang/ProcessHandle +instanceKlass com/google/inject/internal/Nullability +instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$StreamProvider +instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory +instanceKlass com/google/inject/internal/KotlinSupport$KotlinUnsupported +instanceKlass org/eclipse/jdt/ls/core/internal/JVMConfigurator +instanceKlass com/google/inject/internal/KotlinSupport$KotlinSupportHolder +instanceKlass com/google/inject/internal/KotlinSupportInterface +instanceKlass com/google/inject/internal/KotlinSupport +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/TypeHierarchyHandler +instanceKlass com/google/inject/spi/InjectionPoint$OverrideIndex +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler$CommandHandlerHolder +instanceKlass org/eclipse/jdt/internal/launching/environments/Analyzer +instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironmentAnalyzerDelegate +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/WorkspaceExecuteCommandHandler +instanceKlass org/eclipse/sisu/inject/RankedBindings +instanceKlass org/eclipse/jdt/internal/launching/environments/AccessRuleParticipant +instanceKlass org/eclipse/sisu/Mediator +instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironment$1 +instanceKlass org/eclipse/jdt/launching/environments/IAccessRuleParticipant +instanceKlass org/eclipse/jdt/internal/launching/environments/ExecutionEnvironment +instanceKlass sun/reflect/generics/tree/TypeVariableSignature +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/BaseDocumentLifeCycleHandler +instanceKlass com/google/inject/Inject +instanceKlass javax/inject/Inject +instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironment +instanceKlass java/lang/reflect/WildcardType +instanceKlass com/google/inject/spi/InjectionPoint$InjectableMembers +instanceKlass org/eclipse/lsp4j/WorkDoneProgressParams +instanceKlass org/eclipse/jdt/internal/launching/environments/EnvironmentsManager +instanceKlass org/eclipse/lsp4j/PartialResultParams +instanceKlass org/eclipse/lsp4j/TextDocumentPositionParams +instanceKlass com/google/inject/spi/InjectionPoint$InjectableMember +instanceKlass com/google/inject/spi/InjectionPoint +instanceKlass java/lang/reflect/ParameterizedType +instanceKlass com/google/inject/internal/MoreTypes$GenericArrayTypeImpl +instanceKlass com/google/inject/internal/MoreTypes$CompositeType +instanceKlass org/eclipse/debug/core/model/ISourceLocator +instanceKlass org/eclipse/jdt/internal/launching/sourcelookup/advanced/AdvancedSourceLookupSupport +instanceKlass com/google/inject/Key$AnnotationTypeStrategy +instanceKlass com/google/common/cache/LocalCache$StrongValueReference +instanceKlass org/eclipse/debug/internal/core/groups/GroupMemberChangeListener +instanceKlass com/google/common/util/concurrent/AbstractFuture$Failure +instanceKlass com/google/common/util/concurrent/AbstractFuture$Cancellation +instanceKlass com/google/common/util/concurrent/AbstractFuture$SetFuture +instanceKlass org/eclipse/core/internal/watson/ElementTreeIterator +instanceKlass com/google/common/util/concurrent/Uninterruptibles +instanceKlass com/google/common/util/concurrent/AbstractFuture$Waiter +instanceKlass com/google/common/util/concurrent/AbstractFuture$Listener +instanceKlass org/eclipse/core/internal/resources/ResourceProxy +instanceKlass com/google/common/util/concurrent/AbstractFuture$UnsafeAtomicHelper$1 +instanceKlass org/eclipse/debug/internal/core/LaunchManager$ResourceProxyVisitor +instanceKlass com/google/common/util/concurrent/LazyLogger +instanceKlass org/eclipse/debug/core/ILaunchConfiguration +instanceKlass com/google/common/util/concurrent/AbstractFuture$AtomicHelper +instanceKlass org/eclipse/core/resources/IResourceProxyVisitor +instanceKlass org/eclipse/debug/core/ILaunchDelegate +instanceKlass com/google/common/util/concurrent/internal/InternalFutureFailureAccess +instanceKlass org/eclipse/debug/core/ILaunchMode +instanceKlass com/google/common/util/concurrent/AbstractFuture$Trusted +instanceKlass org/eclipse/jdt/launching/StandardClasspathProvider +instanceKlass com/google/common/util/concurrent/ListenableFuture +instanceKlass org/eclipse/jdt/launching/environments/IExecutionEnvironmentsManager +instanceKlass org/eclipse/jdt/launching/IVMConnector +instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntry +instanceKlass org/eclipse/jdt/launching/IVMInstall +instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathEntryResolver +instanceKlass org/eclipse/jdt/launching/IRuntimeClasspathProvider +instanceKlass org/eclipse/jdt/launching/JavaRuntime +instanceKlass javax/inject/Named +instanceKlass javax/inject/Qualifier +instanceKlass com/google/inject/BindingAnnotation +instanceKlass javax/inject/Scope +instanceKlass com/google/inject/ScopeAnnotation +instanceKlass com/google/inject/internal/Annotations$AnnotationChecker +instanceKlass com/google/inject/internal/Annotations$TestAnnotation +instanceKlass com/google/inject/internal/Annotations$AnnotationToStringConfig +instanceKlass com/google/common/base/Joiner$MapJoiner +instanceKlass com/google/common/base/Joiner +instanceKlass com/google/inject/internal/Annotations +instanceKlass org/eclipse/sisu/Parameters +instanceKlass org/eclipse/sisu/wire/ParameterKeys +instanceKlass com/google/inject/internal/util/StackTraceElements$InMemoryStackTraceElement +instanceKlass com/google/inject/internal/util/StackTraceElements +instanceKlass org/eclipse/sisu/wire/TypeConverterCache +instanceKlass com/google/inject/internal/Scoping +instanceKlass com/google/inject/internal/InternalFactory +instanceKlass org/eclipse/jdt/internal/launching/LaunchingPlugin$1$1 +instanceKlass com/google/inject/internal/InternalFlags$1 +instanceKlass com/google/inject/internal/InternalFlags +instanceKlass com/google/inject/spi/InstanceBinding +instanceKlass com/google/inject/spi/ConstructorBinding +instanceKlass org/eclipse/debug/core/model/IDebugElement +instanceKlass org/eclipse/debug/core/ILaunch +instanceKlass org/eclipse/debug/core/model/ISuspendResume +instanceKlass org/eclipse/debug/core/model/IStepFilters +instanceKlass com/google/inject/internal/DelayedInitialize +instanceKlass com/google/inject/spi/ProviderKeyBinding +instanceKlass org/eclipse/debug/core/model/IStep +instanceKlass org/eclipse/debug/core/model/IDropToFrame +instanceKlass org/eclipse/debug/core/model/IDisconnect +instanceKlass com/google/inject/spi/ProviderInstanceBinding +instanceKlass com/google/inject/spi/HasDependencies +instanceKlass com/google/inject/spi/LinkedKeyBinding +instanceKlass com/google/inject/spi/UntargettedBinding +instanceKlass com/google/inject/internal/BindingImpl +instanceKlass com/google/inject/Key$AnnotationStrategy +instanceKlass org/eclipse/sisu/wire/ElementAnalyzer$1 +instanceKlass org/eclipse/debug/internal/core/commands/ForEachCommand$ExclusiveRule +instanceKlass org/eclipse/debug/core/commands/AbstractDebugCommand +instanceKlass com/google/inject/util/Modules$EmptyModule +instanceKlass com/google/inject/util/Modules$OverriddenModuleBuilder +instanceKlass com/google/inject/util/Modules +instanceKlass org/eclipse/debug/core/commands/IStepFiltersHandler +instanceKlass org/eclipse/debug/core/commands/IResumeHandler +instanceKlass org/eclipse/debug/core/commands/ISuspendHandler +instanceKlass org/eclipse/debug/core/commands/IDisconnectHandler +instanceKlass org/eclipse/debug/core/commands/IDropToFrameHandler +instanceKlass org/eclipse/debug/core/commands/IStepReturnHandler +instanceKlass org/eclipse/debug/core/commands/IStepIntoHandler +instanceKlass org/eclipse/debug/core/commands/IStepOverHandler +instanceKlass org/eclipse/debug/core/commands/ITerminateHandler +instanceKlass org/eclipse/debug/core/commands/IDebugCommandHandler +instanceKlass org/eclipse/debug/internal/core/commands/CommandAdapterFactory +instanceKlass org/eclipse/debug/core/DebugPlugin$1$1 +instanceKlass org/eclipse/debug/internal/core/DebugOptions +instanceKlass org/eclipse/debug/core/DebugPlugin$AsynchRunner +instanceKlass org/eclipse/debug/core/DebugPlugin$EventNotifier +instanceKlass org/eclipse/debug/core/IMemoryBlockManager +instanceKlass org/eclipse/debug/core/IExpressionManager +instanceKlass org/eclipse/debug/core/IBreakpointManager +instanceKlass com/google/common/collect/Ordering +instanceKlass org/eclipse/debug/core/ILaunchManager +instanceKlass org/eclipse/debug/core/ILaunchConfigurationListener +instanceKlass java/util/concurrent/Executors$DefaultThreadFactory +instanceKlass org/eclipse/debug/core/model/IProcess +instanceKlass org/eclipse/debug/core/model/ITerminate +instanceKlass org/eclipse/jdt/ls/core/internal/ProjectUtils +instanceKlass com/google/inject/internal/DeclaredMembers +instanceKlass com/google/gson/JsonElement +instanceKlass com/google/common/base/ExtraObjectsMethodsForWeb +instanceKlass org/eclipse/debug/core/IDebugEventSetListener +instanceKlass org/eclipse/debug/core/ILaunchesListener +instanceKlass org/eclipse/jdt/ls/core/internal/managers/TelemetryManager +instanceKlass org/eclipse/jdt/launching/IVMInstallChangedListener +instanceKlass org/eclipse/jdt/core/ClasspathContainerInitializer +instanceKlass org/eclipse/core/runtime/jobs/ProgressProvider +instanceKlass org/eclipse/jdt/ls/core/internal/LanguageServerApplication +instanceKlass org/eclipse/equinox/app/IApplication +instanceKlass org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$11 +instanceKlass com/google/common/collect/ImmutableMap$Builder +instanceKlass com/google/inject/internal/MoreTypes +instanceKlass com/google/inject/multibindings/ProvidesIntoOptional +instanceKlass com/google/inject/multibindings/ProvidesIntoMap +instanceKlass com/google/inject/multibindings/ProvidesIntoSet +instanceKlass com/google/inject/Provides +instanceKlass javax/inject/Singleton +instanceKlass com/google/inject/spi/ElementSource +instanceKlass com/google/inject/spi/ScopeBinding +instanceKlass com/google/inject/Scopes$2 +instanceKlass com/google/inject/Scopes$1 +instanceKlass com/google/inject/internal/SingletonScope +instanceKlass com/google/inject/Scopes +instanceKlass com/google/inject/Singleton +instanceKlass com/google/inject/spi/Elements$ModuleInfo +instanceKlass com/google/inject/PrivateModule +instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesWrapper +instanceKlass org/eclipse/equinox/security/storage/ISecurePreferences +instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesContainer +instanceKlass java/util/stream/Streams$2 +instanceKlass java/util/stream/Streams$ConcatSpliterator +instanceKlass sun/reflect/annotation/AnnotatedTypeFactory$AnnotatedTypeBaseImpl +instanceKlass sun/reflect/annotation/AnnotatedTypeFactory +instanceKlass sun/reflect/annotation/TypeAnnotation$LocationInfo$Location +instanceKlass sun/reflect/annotation/TypeAnnotation$LocationInfo +instanceKlass javax/crypto/spec/PBEKeySpec +instanceKlass org/eclipse/equinox/internal/security/storage/PasswordExt +instanceKlass sun/reflect/generics/tree/ClassSignature +instanceKlass sun/reflect/generics/tree/Signature +instanceKlass sun/reflect/generics/tree/FormalTypeParameter +instanceKlass sun/reflect/generics/repository/AbstractRepository +instanceKlass sun/reflect/annotation/TypeAnnotation +instanceKlass sun/reflect/annotation/TypeAnnotationParser +instanceKlass org/eclipse/equinox/internal/security/storage/JavaEncryption +instanceKlass com/google/inject/RestrictedBindingSource +instanceKlass com/google/inject/spi/BindingSourceRestriction +instanceKlass org/eclipse/equinox/security/storage/provider/IPreferencesContainer +instanceKlass com/google/inject/spi/ModuleSource +instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferences +instanceKlass com/google/inject/internal/ProviderMethodsModule +instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction$PermitMapImpl +instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMap +instanceKlass com/google/inject/spi/BindingSourceRestriction$PermitMapConstruction +instanceKlass org/eclipse/equinox/internal/security/storage/friends/IStorageConstants +instanceKlass com/google/common/collect/Hashing +instanceKlass org/eclipse/equinox/internal/security/storage/StorageUtils +instanceKlass com/google/common/math/IntMath$1 +instanceKlass com/google/common/math/MathPreconditions +instanceKlass org/eclipse/equinox/internal/security/storage/SecurePreferencesMapper +instanceKlass org/eclipse/equinox/security/storage/SecurePreferencesFactory +instanceKlass com/google/common/math/IntMath +instanceKlass com/sun/jna/Function$PostCallRead +instanceKlass com/google/inject/internal/AbstractBindingBuilder +instanceKlass com/sun/jna/NativeString +instanceKlass com/google/inject/binder/ConstantBindingBuilder +instanceKlass com/google/inject/binder/AnnotatedElementBuilder +instanceKlass com/google/inject/spi/Elements$RecordingBinder +instanceKlass com/sun/jna/Library$Handler$FunctionInfo +instanceKlass com/sun/jna/internal/ReflectionUtils +instanceKlass com/sun/jna/Native$3 +instanceKlass com/google/inject/Binding +instanceKlass com/google/inject/spi/DefaultBindingTargetVisitor +instanceKlass com/google/inject/spi/BindingTargetVisitor +instanceKlass com/google/inject/spi/Elements +instanceKlass com/google/inject/internal/InjectorShell$RootModule +instanceKlass com/sun/jna/Library$Handler +instanceKlass com/sun/jna/win32/W32APIFunctionMapper +instanceKlass com/sun/jna/FunctionMapper +instanceKlass com/sun/jna/win32/W32APIOptions +instanceKlass org/eclipse/core/net/internal/proxy/win32/ProxyProviderWin32$WinHttp +instanceKlass com/sun/jna/win32/StdCallLibrary +instanceKlass com/sun/jna/win32/StdCall +instanceKlass com/sun/jna/AltCallingConvention +instanceKlass com/google/common/collect/ListMultimap +instanceKlass com/google/inject/internal/InjectorBindingData +instanceKlass org/eclipse/core/internal/net/ProxyData +instanceKlass org/eclipse/equinox/internal/security/auth/AuthPlugin +instanceKlass com/google/inject/internal/WeakKeySet +instanceKlass org/eclipse/core/internal/net/ProxyType +instanceKlass org/eclipse/core/net/proxy/IProxyChangeEvent +instanceKlass com/google/common/collect/Sets +instanceKlass org/eclipse/core/internal/net/AbstractProxyProvider +instanceKlass org/eclipse/core/internal/net/ProxyManager +instanceKlass com/google/inject/internal/InjectorJitBindingData +instanceKlass org/eclipse/core/net/proxy/IProxyService +instanceKlass com/google/inject/internal/ProcessedBindingData +instanceKlass org/eclipse/core/internal/net/Policy +instanceKlass com/google/inject/spi/DefaultElementVisitor +instanceKlass com/google/inject/internal/InjectorShell$Builder +instanceKlass org/eclipse/core/net/proxy/IProxyData +instanceKlass com/google/common/collect/Lists +instanceKlass org/eclipse/core/internal/net/PreferenceManager +instanceKlass com/google/common/collect/AbstractMapEntry +instanceKlass org/eclipse/core/internal/net/Activator +instanceKlass org/eclipse/core/internal/net/ProxySelector +instanceKlass com/google/common/collect/LinkedHashMultimap$ValueSetLink +instanceKlass com/google/common/collect/CollectPreconditions +instanceKlass com/google/common/collect/Platform +instanceKlass java/text/DontCareFieldPosition$1 +instanceKlass java/text/Format$FieldDelegate +instanceKlass com/google/common/collect/Multiset +instanceKlass org/eclipse/osgi/framework/log/FrameworkLogEntry +instanceKlass com/google/common/collect/AbstractMultimap +instanceKlass org/eclipse/jdt/ls/core/internal/DiagnosticsState +instanceKlass org/eclipse/jdt/ls/core/internal/managers/ContentProviderManager +instanceKlass com/google/common/collect/SetMultimap +instanceKlass com/google/common/base/Converter +instanceKlass com/google/common/collect/ImmutableMap +instanceKlass com/google/common/collect/BiMap +instanceKlass com/google/common/collect/Maps$EntryTransformer +instanceKlass org/eclipse/jdt/ls/core/internal/managers/DigestStore +instanceKlass com/google/common/collect/SortedMapDifference +instanceKlass com/google/common/collect/MapDifference +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/IPreferencesChangeListener +instanceKlass org/eclipse/jdt/ls/core/internal/framework/IFrameworkSupport +instanceKlass com/google/common/collect/Maps +instanceKlass com/google/inject/internal/CycleDetectingLock +instanceKlass com/google/common/collect/Multimap +instanceKlass com/google/inject/internal/CycleDetectingLock$CycleDetectingLockFactory +instanceKlass com/google/inject/internal/Initializable +instanceKlass com/google/inject/internal/Initializer +instanceKlass com/google/common/collect/PeekingIterator +instanceKlass org/eclipse/text/templates/TemplateStoreCore +instanceKlass com/sun/org/apache/xml/internal/serializer/WriterChain +instanceKlass com/google/common/collect/UnmodifiableIterator +instanceKlass com/google/common/collect/Iterators +instanceKlass com/sun/org/apache/xalan/internal/xsltc/trax/DOM2TO +instanceKlass javax/xml/transform/stax/StAXSource +instanceKlass javax/xml/transform/sax/SAXSource +instanceKlass javax/xml/transform/stream/StreamSource +instanceKlass com/sun/org/apache/xml/internal/serializer/NamespaceMappings$MappingRecord +instanceKlass com/sun/org/apache/xml/internal/serializer/NamespaceMappings +instanceKlass com/google/common/collect/ImmutableCollection$Builder +instanceKlass com/google/common/collect/ImmutableSet$SetBuilderImpl +instanceKlass com/google/inject/internal/util/SourceProvider +instanceKlass com/google/inject/spi/ErrorDetail +instanceKlass com/google/inject/internal/Errors +instanceKlass com/google/common/base/Stopwatch +instanceKlass com/google/inject/internal/util/ContinuousStopwatch +instanceKlass com/google/inject/Injector +instanceKlass com/google/inject/internal/InternalInjectorCreator +instanceKlass com/google/inject/Guice +instanceKlass org/eclipse/sisu/wire/Wiring +instanceKlass org/eclipse/sisu/wire/WireModule$Strategy$1 +instanceKlass org/eclipse/sisu/wire/WireModule$Strategy +instanceKlass org/eclipse/sisu/wire/AbstractTypeConverter +instanceKlass com/google/inject/spi/ElementVisitor +instanceKlass org/eclipse/sisu/wire/WireModule +instanceKlass org/eclipse/sisu/bean/BeanBinder +instanceKlass org/eclipse/sisu/plexus/PlexusBindingModule +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$BootModule +instanceKlass org/codehaus/plexus/component/annotations/Configuration +instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedMetadata +instanceKlass org/eclipse/sisu/plexus/PlexusBeanMetadata +instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule$PlexusAnnotatedBeanSource +instanceKlass org/eclipse/sisu/space/SpaceModule$2 +instanceKlass org/eclipse/sisu/space/SpaceModule$Strategy$1 +instanceKlass org/eclipse/sisu/space/DefaultClassFinder +instanceKlass org/eclipse/sisu/space/asm/ClassVisitor +instanceKlass org/eclipse/sisu/space/SpaceScanner +instanceKlass org/eclipse/sisu/space/IndexedClassFinder +instanceKlass org/eclipse/sisu/space/ClassFinder +instanceKlass org/eclipse/sisu/space/SpaceModule +instanceKlass org/eclipse/sisu/space/SpaceVisitor +instanceKlass org/eclipse/sisu/plexus/PlexusTypeListener +instanceKlass org/eclipse/sisu/space/QualifiedTypeListener +instanceKlass sun/nio/cs/DelegatableDecoder +instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule$1 +instanceKlass org/eclipse/sisu/space/SpaceModule$Strategy +instanceKlass org/eclipse/sisu/plexus/PlexusAnnotatedBeanModule +instanceKlass org/eclipse/sisu/plexus/PlexusBeanSource +instanceKlass org/eclipse/sisu/plexus/PlexusXmlBeanModule +instanceKlass org/eclipse/sisu/plexus/PlexusBeanModule +instanceKlass org/eclipse/sisu/space/URLClassSpace +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$SLF4JLoggerFactoryProvider +instanceKlass com/google/inject/util/Providers$ConstantProvider +instanceKlass com/google/inject/util/Providers +instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Disposable +instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Startable +instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Initializable +instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/Contextualizable +instanceKlass org/codehaus/plexus/logging/LogEnabled +instanceKlass org/eclipse/sisu/bean/PropertyBinding +instanceKlass javax/annotation/PreDestroy +instanceKlass javax/annotation/PostConstruct +instanceKlass org/eclipse/sisu/bean/LifecycleBuilder +instanceKlass org/eclipse/sisu/bean/BeanScheduler$1 +instanceKlass com/google/inject/spi/DefaultBindingScopingVisitor +instanceKlass com/google/inject/spi/BindingScopingVisitor +instanceKlass org/eclipse/sisu/bean/BeanScheduler$CycleActivator +instanceKlass com/google/inject/spi/TypeListener +instanceKlass com/google/inject/MembersInjector +instanceKlass com/google/inject/Scope +instanceKlass com/google/inject/binder/AnnotatedConstantBindingBuilder +instanceKlass org/aopalliance/intercept/MethodInterceptor +instanceKlass org/aopalliance/intercept/Interceptor +instanceKlass org/aopalliance/aop/Advice +instanceKlass com/google/inject/PrivateBinder +instanceKlass com/google/inject/spi/ModuleAnnotatedMethodScanner +instanceKlass com/google/inject/spi/Message +instanceKlass com/google/inject/spi/Element +instanceKlass com/google/inject/spi/Dependency +instanceKlass com/google/inject/Key +instanceKlass com/google/inject/binder/AnnotatedBindingBuilder +instanceKlass com/google/inject/binder/LinkedBindingBuilder +instanceKlass java/nio/charset/Charset$1 +instanceKlass com/google/inject/binder/ScopedBindingBuilder +instanceKlass java/nio/charset/Charset$2 +instanceKlass com/google/inject/TypeLiteral +instanceKlass sun/nio/cs/ArrayEncoder +instanceKlass com/google/inject/spi/ProvisionListener +instanceKlass com/google/inject/Binder +instanceKlass org/eclipse/sisu/bean/BeanScheduler +instanceKlass org/eclipse/sisu/plexus/DefaultPlexusBeanLocator +instanceKlass org/eclipse/sisu/plexus/RealmManager +instanceKlass org/codehaus/plexus/context/ContextMapAdapter +instanceKlass org/codehaus/plexus/context/DefaultContext +instanceKlass org/codehaus/plexus/logging/AbstractLogger +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$LoggerProvider +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$DefaultsModule +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$ContainerModule +instanceKlass org/eclipse/sisu/inject/ImplicitBindings +instanceKlass org/eclipse/sisu/inject/MildValues$InverseMapping +instanceKlass org/eclipse/sisu/inject/MildValues +instanceKlass java/nio/charset/Charset$ExtendedProviderHolder$1 +instanceKlass java/nio/charset/Charset$ExtendedProviderHolder +instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1 +instanceKlass java/util/concurrent/atomic/AtomicReferenceFieldUpdater +instanceKlass com/sun/org/apache/xml/internal/serializer/Encodings$EncodingInfos +instanceKlass org/eclipse/sisu/inject/RankedSequence$Content +instanceKlass com/sun/org/apache/xml/internal/serializer/Encodings +instanceKlass com/sun/org/apache/xml/internal/serializer/ToStream$CharacterBuffer +instanceKlass org/eclipse/sisu/inject/RankedSequence +instanceKlass com/sun/org/apache/xml/internal/serializer/EncodingInfo +instanceKlass com/sun/org/apache/xml/internal/serializer/ToStream$BoolStack +instanceKlass com/sun/org/apache/xml/internal/serializer/ElemContext +instanceKlass org/xml/sax/helpers/AttributesImpl +instanceKlass org/eclipse/sisu/inject/BindingSubscriber +instanceKlass com/sun/org/apache/xml/internal/serializer/CharInfo$CharKey +instanceKlass sun/util/ResourceBundleEnumeration +instanceKlass org/eclipse/sisu/inject/DefaultBeanLocator +instanceKlass org/eclipse/sisu/inject/DeferredClass +instanceKlass com/sun/org/apache/xml/internal/serializer/CharInfo +instanceKlass org/codehaus/plexus/DefaultPlexusContainer$LoggerManagerProvider +instanceKlass org/eclipse/sisu/inject/DeferredProvider +instanceKlass com/google/inject/Provider +instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenComponentContributor$IMavenComponentBinder +instanceKlass com/sun/org/apache/xml/internal/serializer/SerializerBase +instanceKlass com/google/inject/AbstractModule +instanceKlass com/sun/org/apache/xml/internal/serializer/SerializerConstants +instanceKlass com/sun/org/apache/xml/internal/serializer/SerializationHandler +instanceKlass com/sun/org/apache/xml/internal/serializer/Serializer +instanceKlass com/sun/org/apache/xml/internal/serializer/DOMSerializer +instanceKlass org/xml/sax/ext/DeclHandler +instanceKlass com/sun/org/apache/xml/internal/serializer/XSLOutputAttributes +instanceKlass com/sun/org/apache/xml/internal/serializer/ExtendedLexicalHandler +instanceKlass org/xml/sax/ext/LexicalHandler +instanceKlass com/sun/org/apache/xml/internal/serializer/ExtendedContentHandler +instanceKlass org/codehaus/plexus/context/Context +instanceKlass org/eclipse/sisu/inject/BindingPublisher +instanceKlass org/eclipse/sisu/inject/RankingFunction +instanceKlass org/eclipse/sisu/space/ClassSpace +instanceKlass javax/inject/Provider +instanceKlass javax/xml/transform/dom/DOMResult +instanceKlass javax/xml/transform/stax/StAXResult +instanceKlass javax/xml/transform/sax/SAXResult +instanceKlass org/eclipse/sisu/bean/BeanManager +instanceKlass com/sun/org/apache/xalan/internal/xsltc/runtime/output/TransletOutputHandlerFactory +instanceKlass org/eclipse/sisu/plexus/PlexusBeanLocator +instanceKlass org/eclipse/sisu/inject/MutableBeanLocator +instanceKlass org/eclipse/sisu/inject/BeanLocator +instanceKlass javax/xml/transform/dom/DOMSource +instanceKlass org/codehaus/plexus/DefaultPlexusContainer +instanceKlass com/sun/org/apache/xml/internal/utils/XMLReaderManager +instanceKlass com/sun/org/apache/xml/internal/serializer/OutputPropertiesFactory +instanceKlass javax/xml/transform/Transformer +instanceKlass com/sun/org/apache/xalan/internal/xsltc/DOMCache +instanceKlass org/codehaus/plexus/MutablePlexusContainer +instanceKlass javax/xml/catalog/CatalogMessages +instanceKlass javax/xml/catalog/Util +instanceKlass jdk/xml/internal/JdkProperty +instanceKlass jdk/xml/internal/XMLSecurityManager +instanceKlass com/sun/org/apache/xalan/internal/utils/FeaturePropertyBase +instanceKlass jdk/xml/internal/JdkXmlFeatures +instanceKlass org/apache/maven/extension/internal/CoreExports +instanceKlass javax/xml/catalog/CatalogFeatures$Builder +instanceKlass javax/xml/catalog/CatalogFeatures +instanceKlass jdk/xml/internal/TransformErrorListener +instanceKlass javax/xml/transform/ErrorListener +instanceKlass org/codehaus/plexus/DefaultContainerConfiguration +instanceKlass com/sun/org/apache/xalan/internal/xsltc/compiler/SourceLoader +instanceKlass org/codehaus/plexus/ContainerConfiguration +instanceKlass javax/xml/transform/FactoryFinder$1 +instanceKlass org/codehaus/plexus/util/BaseIOUtil +instanceKlass javax/xml/transform/FactoryFinder +instanceKlass javax/xml/transform/TransformerFactory +instanceKlass javax/xml/transform/stream/StreamResult +instanceKlass org/eclipse/text/templates/TemplateReaderWriter +instanceKlass org/eclipse/text/templates/TemplatePersistenceData +instanceKlass org/codehaus/plexus/util/xml/pull/MXParser +instanceKlass org/eclipse/jface/text/templates/Template +instanceKlass org/codehaus/plexus/util/xml/pull/XmlPullParser +instanceKlass org/codehaus/plexus/util/xml/Xpp3DomBuilder +instanceKlass java/util/ResourceBundle$Control$2 +instanceKlass java/util/ImmutableCollections$Access$1 +instanceKlass jdk/internal/access/JavaUtilCollectionAccess +instanceKlass java/util/ImmutableCollections$Access +instanceKlass java/util/ServiceLoader$ProviderSpliterator +instanceKlass java/util/spi/ResourceBundleControlProvider +instanceKlass org/codehaus/plexus/util/ReaderFactory +instanceKlass java/util/ResourceBundle$ResourceBundleControlProviderHolder +instanceKlass org/eclipse/jface/text/templates/TextTemplateMessages +instanceKlass org/apache/maven/project/ExtensionDescriptor +instanceKlass org/apache/maven/project/ExtensionDescriptorBuilder +instanceKlass org/codehaus/plexus/classworlds/strategy/AbstractStrategy +instanceKlass org/codehaus/plexus/classworlds/strategy/Strategy +instanceKlass org/codehaus/plexus/classworlds/strategy/StrategyFactory +instanceKlass org/eclipse/jface/text/IRegion +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/FormatterHandler +instanceKlass org/apache/maven/settings/building/SettingsBuilder +instanceKlass org/eclipse/m2e/core/internal/M2EUtils +instanceKlass org/apache/maven/settings/building/DefaultSettingsBuildingRequest +instanceKlass org/apache/maven/building/Source +instanceKlass org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor +instanceKlass org/apache/maven/cli/configuration/ConfigurationProcessor +instanceKlass org/apache/commons/lang3/text/StrTokenizer +instanceKlass org/apache/commons/lang3/text/StrBuilder +instanceKlass org/apache/commons/lang3/builder/Builder +instanceKlass java/lang/Character$Subset +instanceKlass org/apache/commons/lang3/StringUtils +instanceKlass java/util/DualPivotQuicksort +instanceKlass org/apache/commons/lang3/ArraySorter +instanceKlass org/apache/commons/lang3/text/StrMatcher +instanceKlass org/apache/commons/lang3/text/StrSubstitutor +instanceKlass org/apache/commons/lang3/text/StrLookup +instanceKlass org/eclipse/jdt/ls/core/internal/ResourceUtils +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$ReferencedLibraries +instanceKlass java/util/UUID$Holder +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences +instanceKlass org/eclipse/jface/text/templates/TemplateContextType +instanceKlass org/eclipse/jface/text/templates/TemplateVariableResolver +instanceKlass java/lang/ProcessEnvironment$CheckedEntry +instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1 +instanceKlass java/lang/ProcessEnvironment$EntryComparator +instanceKlass java/lang/ProcessEnvironment$NameComparator +instanceKlass org/eclipse/jdt/ls/core/internal/Environment +instanceKlass org/eclipse/jdt/ls/core/internal/JDTEnvironmentUtils +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/LogHandler$1 +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/DefaultLogFilter +instanceKlass org/eclipse/core/runtime/ILogListener +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/LogHandler +instanceKlass org/eclipse/jdt/internal/core/manipulation/MembersOrderPreferenceCacheCommon +instanceKlass org/eclipse/jdt/core/manipulation/JavaManipulation +instanceKlass java/nio/channels/AsynchronousByteChannel +instanceKlass java/nio/channels/AsynchronousChannel +instanceKlass java/net/SocketAddress +instanceKlass org/eclipse/jdt/ls/core/internal/lsp/JavaProtocolExtensions +instanceKlass org/eclipse/jdt/ls/core/internal/syntaxserver/IExtendedProtocol +instanceKlass org/eclipse/lsp4j/services/WorkspaceService +instanceKlass org/eclipse/lsp4j/services/TextDocumentService +instanceKlass org/eclipse/lsp4j/services/LanguageServer +instanceKlass org/eclipse/jdt/ls/core/internal/BaseJDTLanguageServer +instanceKlass java/net/Authenticator +instanceKlass org/eclipse/jdt/ls/core/contentassist/ICompletionContributionService +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$21$1 +instanceKlass org/eclipse/jdt/internal/core/ExternalAnnotationTracker$DirectoryNode +instanceKlass org/eclipse/jdt/internal/core/ExternalAnnotationTracker +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$RootInfo +instanceKlass org/eclipse/jdt/internal/core/JavaProject$ResolvedClasspath +instanceKlass org/eclipse/jdt/internal/core/ClasspathChange +instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSetOfCharArray +instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSet +instanceKlass org/eclipse/jdt/internal/core/util/DeduplicationUtil +instanceKlass org/eclipse/jdt/internal/compiler/env/AccessRule +instanceKlass org/eclipse/jdt/internal/core/ClasspathAttribute +instanceKlass com/sun/org/apache/xerces/internal/dom/DOMMessageFormatter +instanceKlass org/eclipse/jdt/internal/core/ClasspathEntry +instanceKlass org/w3c/dom/Attr +instanceKlass com/sun/org/apache/xerces/internal/dom/NamedNodeMapImpl +instanceKlass org/w3c/dom/NamedNodeMap +instanceKlass com/sun/org/apache/xerces/internal/dom/CharacterDataImpl$1 +instanceKlass org/w3c/dom/Text +instanceKlass org/w3c/dom/CharacterData +instanceKlass com/sun/org/apache/xerces/internal/dom/DeepNodeListImpl +instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredDocumentImpl$RefCount +instanceKlass com/sun/org/apache/xerces/internal/dom/NodeListCache +instanceKlass org/w3c/dom/TypeInfo +instanceKlass org/w3c/dom/ElementTraversal +instanceKlass org/w3c/dom/Element +instanceKlass org/w3c/dom/DocumentType +instanceKlass com/sun/org/apache/xerces/internal/dom/NodeImpl +instanceKlass org/w3c/dom/events/EventTarget +instanceKlass org/w3c/dom/NodeList +instanceKlass org/w3c/dom/Document +instanceKlass org/w3c/dom/ranges/DocumentRange +instanceKlass org/w3c/dom/events/DocumentEvent +instanceKlass org/w3c/dom/traversal/DocumentTraversal +instanceKlass com/sun/org/apache/xerces/internal/dom/DeferredNode +instanceKlass org/eclipse/jdt/internal/core/util/Util +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$SecondaryTypes +instanceKlass org/eclipse/jdt/internal/compiler/env/IModulePathEntry +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$PerProjectInfo +instanceKlass org/eclipse/jdt/core/eval/IEvaluationContext +instanceKlass org/eclipse/jdt/core/IJavaModelStatusConstants +instanceKlass org/eclipse/jdt/internal/compiler/CompilationResult +instanceKlass lombok/eclipse/agent/PatchDelegate$BindingTuple +instanceKlass org/eclipse/jdt/internal/compiler/ast/Invocation +instanceKlass org/eclipse/jdt/internal/compiler/ast/IPolyExpression +instanceKlass lombok/eclipse/agent/PatchDelegate +instanceKlass lombok/eclipse/agent/PatchDelegatePortal +instanceKlass lombok/core/LombokNode +instanceKlass lombok/core/DiagnosticsReceiver +instanceKlass lombok/launch/PatchFixesHider$Util +instanceKlass lombok/launch/PatchFixesHider$Delegate +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState$RootInfos +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$20 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$19 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$14 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$13 +instanceKlass org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions +instanceKlass org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants +instanceKlass org/eclipse/jdt/internal/compiler/util/Util +instanceKlass org/eclipse/jdt/internal/compiler/impl/IrritantSet +instanceKlass org/eclipse/jdt/internal/core/util/ICacheEnumeration +instanceKlass org/eclipse/jdt/internal/formatter/TokenTraverser +instanceKlass org/eclipse/text/edits/TextEdit +instanceKlass org/eclipse/jdt/core/formatter/CodeFormatter +instanceKlass lombok/patcher/scripts/WrapperMethodDescriptor +instanceKlass lombok/patcher/scripts/SetSymbolDuringMethodCallScript$1 +instanceKlass org/eclipse/jdt/core/SourceRange +instanceKlass org/eclipse/jdt/internal/compiler/util/JRTUtil$JrtFileVisitor +instanceKlass org/eclipse/jdt/core/IOrdinaryClassFile +instanceKlass org/eclipse/jdt/internal/core/util/ReferenceInfoAdapter +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceType +instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericType +instanceKlass org/eclipse/jdt/core/search/TypeNameMatchRequestor +instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemHandler +instanceKlass org/eclipse/jdt/core/search/MethodNameMatch +instanceKlass org/eclipse/jdt/core/search/IJavaSearchScope +instanceKlass org/eclipse/jdt/internal/compiler/ASTVisitor +instanceKlass org/eclipse/jdt/core/search/TypeNameMatch +instanceKlass org/eclipse/jdt/core/search/SearchParticipant +instanceKlass org/eclipse/jdt/internal/core/search/IndexQueryRequestor +instanceKlass org/eclipse/jdt/core/search/SearchPattern +instanceKlass org/eclipse/jdt/core/search/IParallelizable +instanceKlass org/eclipse/jdt/internal/core/search/BasicSearchEngine +instanceKlass org/eclipse/jdt/core/ISourceRange +instanceKlass org/eclipse/jdt/core/ITypeParameter +instanceKlass org/eclipse/jdt/core/IAnnotation +instanceKlass org/eclipse/jdt/internal/core/AbstractModule +instanceKlass org/eclipse/jdt/core/IModuleDescription +instanceKlass org/eclipse/jdt/internal/core/NameLookup +instanceKlass org/eclipse/jface/text/IDocument +instanceKlass org/eclipse/jdt/internal/core/JavaModelCache$1 +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryInfo +instanceKlass org/eclipse/jdt/internal/core/JavaModelCache +instanceKlass org/eclipse/jdt/core/IType +instanceKlass org/eclipse/jdt/core/IAnnotatable +instanceKlass org/eclipse/jdt/core/IMember +instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyBuilder +instanceKlass org/eclipse/jdt/internal/core/hierarchy/TypeHierarchy +instanceKlass org/eclipse/jdt/core/ITypeHierarchy +instanceKlass org/eclipse/jdt/core/dom/ASTNode +instanceKlass org/eclipse/jdt/core/dom/StructuralPropertyDescriptor +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEvent +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore +instanceKlass org/eclipse/jdt/core/dom/ASTVisitor +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor +instanceKlass org/eclipse/jdt/internal/codeassist/CompletionEngine$1 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterNonNullDefaultProvider +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$3 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$2 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReductionResult +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ElementValuePair +instanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationBinding +instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBindingVisitor +instanceKlass org/eclipse/jdt/internal/compiler/parser/ScannerHelper +instanceKlass org/eclipse/jdt/core/Signature +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord +instanceKlass org/eclipse/jdt/core/CompletionRequestor +instanceKlass org/eclipse/jdt/core/search/SearchRequestor +instanceKlass org/eclipse/jdt/internal/core/IJavaElementRequestor +instanceKlass lombok/patcher/scripts/ReplaceMethodCallScript$1 +instanceKlass org/eclipse/jdt/internal/core/INamingRequestor +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Substitution +instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNode +instanceKlass org/eclipse/jdt/internal/codeassist/MissingTypesGuesser$GuessedTypeRequestor +instanceKlass org/eclipse/jdt/internal/codeassist/UnresolvedReferenceNameFinder$UnresolvedReferenceNameRequestor +instanceKlass org/eclipse/jdt/core/compiler/IProblem +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope +instanceKlass org/eclipse/jdt/core/CompletionContext +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Binding +instanceKlass org/eclipse/jdt/core/CompletionProposal +instanceKlass org/eclipse/core/internal/jobs/JobQueue$2 +instanceKlass org/eclipse/jdt/internal/compiler/env/INameEnvironment +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InvocationSite +instanceKlass org/eclipse/jdt/internal/compiler/ast/ASTNode +instanceKlass org/eclipse/jdt/internal/codeassist/impl/Engine +instanceKlass org/eclipse/jdt/internal/codeassist/RelevanceConstants +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants +instanceKlass org/eclipse/jdt/internal/codeassist/ISearchRequestor +instanceKlass org/eclipse/jdt/internal/compiler/impl/ReferenceContext +instanceKlass org/eclipse/jdt/internal/compiler/ICompilerRequestor +instanceKlass org/eclipse/jdt/internal/compiler/Compiler +instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemSeverities +instanceKlass org/eclipse/jdt/internal/compiler/impl/ITypeRequestor +instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathLocation +instanceKlass org/eclipse/jdt/core/IBuffer +instanceKlass org/eclipse/jdt/core/IBufferFactory +instanceKlass org/eclipse/jdt/internal/core/BufferManager +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$8 +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry +instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleLookupTable +instanceKlass org/eclipse/jdt/internal/core/index/IndexLocation +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexRequest +instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeIds +instanceKlass org/eclipse/jdt/internal/compiler/ast/OperatorIds +instanceKlass org/eclipse/jdt/internal/compiler/parser/ConflictedParser +instanceKlass org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation +instanceKlass org/eclipse/jdt/internal/compiler/parser/TerminalTokens +instanceKlass org/eclipse/jdt/internal/compiler/IProblemFactory +instanceKlass org/eclipse/jdt/internal/core/search/processing/JobManager +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IIndexConstants +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$3 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$2 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$EclipsePreferencesListener +instanceKlass org/eclipse/jdt/core/IElementChangedListener +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState +instanceKlass org/eclipse/jdt/internal/core/ExternalFoldersManager +instanceKlass org/eclipse/jdt/internal/core/util/Util$Comparer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants +instanceKlass org/eclipse/jdt/internal/core/BatchInitializationMonitor +instanceKlass org/eclipse/jdt/internal/core/JavaModelOperation +instanceKlass org/eclipse/jdt/internal/codeassist/ISelectionRequestor +instanceKlass org/eclipse/jdt/internal/core/JavaElementInfo +instanceKlass org/eclipse/jdt/core/IJavaModelStatus +instanceKlass org/eclipse/jdt/internal/compiler/env/IElementInfo +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$1 +instanceKlass org/eclipse/jdt/internal/core/search/processing/IJob +instanceKlass org/eclipse/jdt/core/IClassFile +instanceKlass org/eclipse/jdt/core/IPackageFragment +instanceKlass org/eclipse/jdt/internal/compiler/util/Util$Displayable +instanceKlass org/eclipse/jdt/core/IJavaElementDelta +instanceKlass org/eclipse/jdt/internal/compiler/util/SuffixConstants +instanceKlass org/eclipse/jdt/internal/compiler/env/ICompilationUnit +instanceKlass org/eclipse/jdt/internal/compiler/env/IDependent +instanceKlass org/eclipse/jdt/core/ICompilationUnit +instanceKlass org/eclipse/jdt/core/ISourceManipulation +instanceKlass org/eclipse/jdt/core/ITypeRoot +instanceKlass org/eclipse/jdt/core/ICodeAssist +instanceKlass org/eclipse/jdt/core/ISourceReference +instanceKlass org/lombokweb/asm/Handle +instanceKlass org/eclipse/jdt/core/IBufferChangedListener +instanceKlass org/eclipse/jdt/core/IPackageFragmentRoot +instanceKlass org/eclipse/jdt/core/IAccessRule +instanceKlass org/eclipse/jdt/internal/core/util/LRUCache +instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessTypeRequestor +instanceKlass org/eclipse/jdt/core/IJavaProject +instanceKlass org/eclipse/jdt/core/IClasspathContainer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager +instanceKlass java/util/function/ToDoubleFunction +instanceKlass org/eclipse/jdt/core/compiler/CharOperation +instanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerOptions +instanceKlass org/eclipse/jdt/internal/compiler/env/IModule +instanceKlass org/eclipse/jdt/core/IWorkingCopy +instanceKlass org/eclipse/jdt/core/IClasspathAttribute +instanceKlass org/eclipse/jdt/core/search/TypeNameRequestor +instanceKlass org/eclipse/jdt/core/IRegion +instanceKlass org/eclipse/jdt/core/IClasspathEntry +instanceKlass org/eclipse/jdt/core/IJavaModel +instanceKlass org/eclipse/jdt/core/IParent +instanceKlass org/eclipse/jdt/core/IOpenable +instanceKlass org/eclipse/jdt/core/IJavaElement +instanceKlass org/eclipse/core/resources/IWorkspaceRunnable +instanceKlass org/eclipse/core/internal/events/NodeIDMap +instanceKlass org/eclipse/core/internal/events/ResourceDeltaInfo +instanceKlass org/eclipse/core/internal/dtree/NodeComparison +instanceKlass org/eclipse/core/internal/events/ResourceComparator +instanceKlass org/eclipse/jdt/core/WorkingCopyOwner +instanceKlass org/eclipse/core/internal/events/ResourceDeltaFactory +instanceKlass org/eclipse/core/resources/IMarkerDelta +instanceKlass org/eclipse/jdt/ls/core/internal/managers/ISourceDownloader +instanceKlass org/eclipse/text/templates/ContextTypeRegistry +instanceKlass org/eclipse/core/runtime/SubMonitor$RootInfo +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager +instanceKlass org/eclipse/core/resources/team/ResourceRuleFactory +instanceKlass org/eclipse/m2e/core/internal/repository/IRepositoryIndexer +instanceKlass org/eclipse/m2e/core/internal/repository/IRepositoryDiscoverer +instanceKlass org/apache/maven/wagon/authentication/AuthenticationInfo +instanceKlass org/eclipse/m2e/core/internal/repository/RepositoryInfo +instanceKlass org/eclipse/m2e/core/repository/IRepository +instanceKlass org/eclipse/m2e/core/internal/repository/RepositoryRegistry +instanceKlass org/eclipse/m2e/core/repository/IRepositoryRegistry +instanceKlass org/eclipse/m2e/core/internal/project/WorkspaceStateWriter +instanceKlass org/eclipse/m2e/core/project/configurator/ILifecycleMapping +instanceKlass org/eclipse/m2e/core/project/IProjectCreationListener +instanceKlass org/eclipse/m2e/core/project/ProjectImportConfiguration +instanceKlass org/eclipse/m2e/core/project/MavenProjectInfo +instanceKlass org/eclipse/aether/graph/DependencyNode +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectManager +instanceKlass org/eclipse/m2e/core/project/IMavenProjectRegistry +instanceKlass org/eclipse/aether/graph/DependencyVisitor +instanceKlass org/eclipse/aether/graph/DependencyFilter +instanceKlass org/eclipse/aether/collection/DependencyGraphTransformer +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$VersionSelector +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeSelector +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$OptionalitySelector +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$ScopeDeriver +instanceKlass javax/xml/transform/Source +instanceKlass javax/xml/transform/Result +instanceKlass org/w3c/dom/Node +instanceKlass org/eclipse/m2e/core/embedder/MavenModelManager +instanceKlass org/eclipse/m2e/core/project/configurator/ILifecycleMappingConfiguration +instanceKlass org/eclipse/m2e/core/internal/project/ProjectConfigurationManager +instanceKlass org/eclipse/m2e/core/project/IProjectConfigurationManager +instanceKlass org/eclipse/core/runtime/jobs/IJobFunction +instanceKlass org/eclipse/m2e/core/project/MavenUpdateRequest +instanceKlass java/io/ObjectStreamClass$ExceptionInfo +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade$MavenProjectConfiguration +instanceKlass org/apache/maven/artifact/versioning/VersionRange +instanceKlass org/codehaus/plexus/util/xml/pull/XmlSerializer +instanceKlass org/codehaus/plexus/util/xml/XMLWriter +instanceKlass java/io/ObjectStreamClass$5 +instanceKlass java/io/ObjectStreamClass$4 +instanceKlass java/io/ObjectStreamClass$3 +instanceKlass java/io/ObjectStreamClass$MemberSignature +instanceKlass java/io/ObjectStreamClass$1 +instanceKlass org/codehaus/plexus/util/xml/Xpp3Dom +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/LifecycleMappingMetadataSource +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/PluginExecutionFilter +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/model/PluginExecutionMetadata +instanceKlass org/eclipse/m2e/core/lifecyclemapping/model/IPluginExecutionMetadata +instanceKlass java/util/CollSer +instanceKlass org/eclipse/m2e/core/project/ResolverConfiguration +instanceKlass java/io/FileFilter +instanceKlass org/apache/maven/artifact/versioning/ArtifactVersion +instanceKlass org/eclipse/m2e/core/internal/project/registry/RequiredCapability +instanceKlass java/lang/invoke/DirectMethodHandle$1 +instanceKlass java/lang/runtime/ObjectMethods$1 +instanceKlass java/lang/invoke/MethodHandleImpl$Makers$2 +instanceKlass java/lang/invoke/MethodHandleImpl$Makers$1 +instanceKlass java/lang/invoke/MethodHandleImpl$Makers +instanceKlass java/lang/runtime/ObjectMethods +instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller +instanceKlass java/io/ObjectStreamClass$DeserializationConstructorsCache$Key +instanceKlass java/io/ObjectStreamClass$RecordSupport +instanceKlass java/util/stream/Nodes$ArrayNode +instanceKlass java/util/stream/Node$Builder +instanceKlass java/util/stream/Node$OfDouble +instanceKlass java/util/stream/Node$OfLong +instanceKlass java/util/stream/Node$OfInt +instanceKlass java/util/stream/Node$OfPrimitive +instanceKlass java/util/stream/Nodes$EmptyNode +instanceKlass java/util/stream/Node +instanceKlass java/util/stream/Nodes +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$MavenProjectManagerImplReplace +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$IPathReplace +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader$IFileReplace +instanceKlass java/util/HashMap$UnsafeHolder +instanceKlass java/io/SerialCallbackContext +instanceKlass java/io/ObjectInputStream$GetField +instanceKlass java/io/ObjectStreamClass$ClassDataSlot +instanceKlass java/io/ObjectStreamClass$FieldReflector +instanceKlass java/io/ObjectStreamClass$FieldReflectorKey +instanceKlass java/io/ObjectStreamClass$2 +instanceKlass java/io/ClassCache +instanceKlass java/io/ObjectStreamClass$Caches +instanceKlass sun/reflect/misc/ReflectUtil +instanceKlass java/io/ObjectStreamClass +instanceKlass java/io/Bits +instanceKlass jdk/internal/access/JavaObjectInputFilterAccess +instanceKlass java/io/ObjectInputFilter$Config$BuiltinFilterFactory +instanceKlass java/io/ObjectInputFilter +instanceKlass java/io/ObjectInputFilter$Config +instanceKlass java/io/ObjectInputStream$ValidationList +instanceKlass java/io/ObjectInputStream$HandleTable$HandleList +instanceKlass java/io/ObjectInputStream$HandleTable +instanceKlass jdk/internal/access/JavaObjectInputStreamReadString +instanceKlass jdk/internal/access/JavaObjectInputStreamAccess +instanceKlass org/eclipse/core/runtime/SubMonitor +instanceKlass org/apache/maven/execution/MavenExecutionRequest +instanceKlass org/eclipse/m2e/core/project/IMavenProjectChangedListener +instanceKlass org/apache/maven/project/ProjectBuildingResult +instanceKlass org/eclipse/m2e/core/internal/project/registry/DependencyResolutionContext +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectFacade +instanceKlass com/google/common/cache/LocalCache$AbstractReferenceEntry +instanceKlass java/util/concurrent/atomic/AtomicReferenceArray +instanceKlass com/google/common/cache/LocalCache$LoadingValueReference +instanceKlass com/google/common/cache/Weigher +instanceKlass com/google/common/base/Predicate +instanceKlass com/google/common/base/Equivalence +instanceKlass com/google/common/base/MoreObjects +instanceKlass com/google/common/cache/LocalCache$1 +instanceKlass com/google/common/cache/ReferenceEntry +instanceKlass com/google/common/cache/LocalCache$ValueReference +instanceKlass com/google/common/cache/LocalCache$LocalManualCache +instanceKlass com/google/common/cache/CacheLoader +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheLine +instanceKlass com/google/common/cache/RemovalListener +instanceKlass com/google/common/cache/CacheBuilder$2 +instanceKlass com/google/common/base/Preconditions +instanceKlass com/google/common/cache/CacheStats +instanceKlass com/google/common/base/Suppliers$SupplierOfInstance +instanceKlass com/google/common/base/Suppliers +instanceKlass com/google/common/cache/CacheBuilder$1 +instanceKlass com/google/common/cache/AbstractCache$StatsCounter +instanceKlass com/google/common/base/Ticker +instanceKlass com/google/common/base/Supplier +instanceKlass com/google/common/cache/CacheBuilder +instanceKlass com/google/common/cache/LoadingCache +instanceKlass com/google/common/base/Function +instanceKlass com/google/common/cache/Cache +instanceKlass org/eclipse/m2e/core/internal/preferences/MavenPreferenceConstants +instanceKlass org/eclipse/m2e/core/internal/embedder/MavenImpl$MavenSettings +instanceKlass org/eclipse/m2e/core/internal/embedder/MavenExecutionContext +instanceKlass org/apache/maven/lifecycle/MavenExecutionPlan +instanceKlass org/eclipse/m2e/core/embedder/ILocalRepositoryListener +instanceKlass org/apache/maven/wagon/proxy/ProxyInfo +instanceKlass org/apache/maven/execution/MavenSession +instanceKlass org/apache/maven/project/ProjectBuildingRequest +instanceKlass org/apache/maven/model/building/ModelProblemCollectorRequest +instanceKlass org/apache/maven/model/ModelBase +instanceKlass org/apache/maven/model/ConfigurationContainer +instanceKlass org/apache/maven/model/InputLocationTracker +instanceKlass org/apache/maven/settings/TrackableBase +instanceKlass org/apache/maven/plugin/MojoExecution +instanceKlass org/apache/maven/artifact/Artifact +instanceKlass org/eclipse/m2e/core/embedder/ICallable +instanceKlass org/eclipse/m2e/core/embedder/ISettingsChangeListener +instanceKlass org/eclipse/sisu/inject/MildKeys +instanceKlass org/eclipse/sisu/inject/Weak +instanceKlass java/text/DigitList +instanceKlass sun/util/locale/provider/CalendarDataUtility$CalendarWeekParameterGetter +instanceKlass sun/util/locale/provider/LocaleServiceProviderPool$LocalizedObjectGetter +instanceKlass sun/util/locale/provider/LocaleServiceProviderPool +instanceKlass java/util/Calendar$Builder +instanceKlass com/google/inject/matcher/AbstractMatcher +instanceKlass com/google/inject/matcher/Matcher +instanceKlass com/google/inject/Module +instanceKlass com/google/inject/spi/TypeConverter +instanceKlass org/codehaus/plexus/component/configurator/converters/ParameterizedConfigurationConverter +instanceKlass org/codehaus/plexus/component/configurator/converters/AbstractConfigurationConverter +instanceKlass org/codehaus/plexus/component/configurator/converters/ConfigurationConverter +instanceKlass org/codehaus/plexus/component/configurator/converters/lookup/DefaultConverterLookup +instanceKlass org/eclipse/m2e/core/internal/markers/SourceLocation +instanceKlass org/apache/maven/project/MavenProject +instanceKlass org/eclipse/m2e/core/internal/markers/MavenProblemInfo +instanceKlass org/eclipse/aether/artifact/Artifact +instanceKlass org/eclipse/m2e/core/internal/markers/MavenMarkerManager +instanceKlass org/eclipse/m2e/core/internal/embedder/MavenProperties +instanceKlass org/apache/maven/extension/internal/CoreExtensionEntry +instanceKlass org/apache/felix/scr/impl/ComponentRegistry$2 +instanceKlass org/eclipse/m2e/core/internal/preferences/MavenConfigurationImpl$1 +instanceKlass org/eclipse/core/runtime/preferences/IPreferenceFilter +instanceKlass org/apache/felix/scr/impl/ComponentRegistry$Entry +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogEntryImpl +instanceKlass org/eclipse/equinox/log/ExtendedLogEntry +instanceKlass org/eclipse/osgi/internal/log/Arguments +instanceKlass java/lang/StackTraceElement$HashedModules +instanceKlass java/text/AttributedCharacterIterator$Attribute +instanceKlass java/text/FieldPosition +instanceKlass java/text/Format +instanceKlass org/eclipse/m2e/core/internal/embedder/EclipseLogger +instanceKlass org/codehaus/plexus/logging/Logger +instanceKlass org/codehaus/plexus/logging/AbstractLoggerManager +instanceKlass org/codehaus/plexus/logging/LoggerManager +instanceKlass org/eclipse/m2e/core/internal/embedder/IMavenPlexusContainer +instanceKlass org/codehaus/plexus/PlexusContainer +instanceKlass org/codehaus/plexus/classworlds/ClassWorldListener +instanceKlass org/codehaus/plexus/classworlds/ClassWorld +instanceKlass org/eclipse/aether/RepositorySystemSession +instanceKlass org/apache/maven/plugin/version/PluginVersionRequest +instanceKlass org/codehaus/plexus/configuration/PlexusConfiguration +instanceKlass org/codehaus/plexus/component/configurator/expression/ExpressionEvaluator +instanceKlass org/apache/maven/settings/crypto/SettingsDecryptionRequest +instanceKlass org/apache/maven/settings/building/SettingsBuildingRequest +instanceKlass org/apache/maven/execution/MavenExecutionResult +instanceKlass org/apache/maven/model/building/ModelBuildingRequest +instanceKlass org/codehaus/plexus/component/configurator/converters/lookup/ConverterLookup +instanceKlass org/eclipse/m2e/core/internal/embedder/MavenImpl +instanceKlass org/eclipse/m2e/core/embedder/IMavenConfigurationChangeListener +instanceKlass org/eclipse/m2e/core/internal/preferences/MavenConfigurationImpl +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryReader +instanceKlass org/eclipse/m2e/core/internal/embedder/PlexusContainerManager +instanceKlass org/eclipse/m2e/core/internal/markers/IMavenMarkerManager +instanceKlass org/eclipse/m2e/core/internal/project/registry/BasicProjectRegistry +instanceKlass org/eclipse/m2e/core/embedder/IMavenExecutionContext +instanceKlass org/eclipse/m2e/core/project/IProjectConfiguration +instanceKlass org/eclipse/m2e/core/internal/project/registry/AbstractMavenDependencyResolver +instanceKlass org/eclipse/aether/repository/WorkspaceReader +instanceKlass org/apache/maven/artifact/repository/MavenArtifactRepository +instanceKlass org/apache/maven/artifact/repository/ArtifactRepository +instanceKlass org/eclipse/m2e/core/internal/project/registry/IProjectRegistry +instanceKlass org/eclipse/m2e/core/internal/project/registry/Capability +instanceKlass org/eclipse/m2e/core/project/IMavenProjectFacade +instanceKlass org/eclipse/m2e/core/embedder/IMavenExecutableLocation +instanceKlass org/eclipse/m2e/core/embedder/IMaven +instanceKlass org/eclipse/m2e/core/embedder/IComponentLookup +instanceKlass org/eclipse/m2e/core/embedder/IMavenConfiguration +instanceKlass org/eclipse/m2e/core/internal/project/registry/ProjectRegistryManager +instanceKlass ch/qos/logback/classic/util/LoggerNameUtil +instanceKlass org/slf4j/helpers/Reporter +instanceKlass ch/qos/logback/classic/util/LogbackMDCAdapter +instanceKlass ch/qos/logback/core/util/CachingDateFormatter$CacheTuple +instanceKlass ch/qos/logback/core/util/CachingDateFormatter +instanceKlass ch/qos/logback/core/util/StatusPrinter2 +instanceKlass ch/qos/logback/core/util/StatusPrinter +instanceKlass ch/qos/logback/core/status/StatusUtil +instanceKlass ch/qos/logback/core/Appender +instanceKlass ch/qos/logback/core/spi/FilterAttachable +instanceKlass ch/qos/logback/core/spi/ContextAwareBase +instanceKlass ch/qos/logback/classic/util/ClassicEnvUtil +instanceKlass ch/qos/logback/core/status/StatusListener +instanceKlass ch/qos/logback/core/util/StatusListenerConfigHelper +instanceKlass ch/qos/logback/core/status/StatusBase +instanceKlass ch/qos/logback/core/util/EnvUtil +instanceKlass java/security/Policy$PolicyInfo +instanceKlass ch/qos/logback/core/util/Loader$1 +instanceKlass ch/qos/logback/core/util/OptionHelper +instanceKlass ch/qos/logback/core/util/Loader +instanceKlass ch/qos/logback/classic/spi/Configurator +instanceKlass ch/qos/logback/core/spi/ContextAwareImpl +instanceKlass ch/qos/logback/classic/util/ContextInitializer$1 +instanceKlass ch/qos/logback/core/spi/ContextAware +instanceKlass ch/qos/logback/classic/util/ContextInitializer +instanceKlass ch/qos/logback/classic/Level +instanceKlass ch/qos/logback/classic/spi/ILoggingEvent +instanceKlass ch/qos/logback/core/spi/DeferredProcessingAware +instanceKlass org/slf4j/spi/LoggingEventBuilder +instanceKlass ch/qos/logback/classic/Logger +instanceKlass ch/qos/logback/core/spi/AppenderAttachable +instanceKlass org/slf4j/spi/LoggingEventAware +instanceKlass org/slf4j/spi/LocationAwareLogger +instanceKlass ch/qos/logback/classic/spi/LoggerContextVO +instanceKlass ch/qos/logback/core/spi/LogbackLock +instanceKlass ch/qos/logback/core/helpers/CyclicBuffer +instanceKlass ch/qos/logback/core/BasicStatusManager +instanceKlass ch/qos/logback/core/status/Status +instanceKlass ch/qos/logback/core/status/StatusManager +instanceKlass ch/qos/logback/core/ContextBase +instanceKlass ch/qos/logback/core/spi/LifeCycle +instanceKlass ch/qos/logback/core/Context +instanceKlass ch/qos/logback/core/spi/PropertyContainer +instanceKlass org/apache/aries/spifly/Util$7 +instanceKlass org/apache/aries/spifly/Util$5 +instanceKlass org/apache/felix/resolver/ResolverImpl$DumbExecutor +instanceKlass org/slf4j/helpers/Util +instanceKlass org/slf4j/helpers/NOPMDCAdapter +instanceKlass org/slf4j/helpers/NOPLoggerFactory +instanceKlass org/slf4j/helpers/NOP_FallbackServiceProvider +instanceKlass org/slf4j/helpers/ThreadLocalMapOfStacks +instanceKlass org/objectweb/asm/tree/ParameterNode +instanceKlass org/slf4j/helpers/BasicMDCAdapter +instanceKlass org/slf4j/Marker +instanceKlass org/slf4j/helpers/BasicMarkerFactory +instanceKlass org/slf4j/Logger +instanceKlass org/slf4j/helpers/SubstituteLoggerFactory +instanceKlass org/slf4j/ILoggerFactory +instanceKlass org/slf4j/spi/MDCAdapter +instanceKlass org/slf4j/IMarkerFactory +instanceKlass org/slf4j/helpers/SubstituteServiceProvider +instanceKlass org/slf4j/event/LoggingEvent +instanceKlass org/slf4j/LoggerFactory +instanceKlass java/util/function/UnaryOperator +instanceKlass org/objectweb/asm/Handler +instanceKlass org/objectweb/asm/tree/TryCatchBlockNode +instanceKlass org/objectweb/asm/Handle +instanceKlass org/objectweb/asm/Edge +instanceKlass org/objectweb/asm/tree/LocalVariableNode +instanceKlass org/objectweb/asm/tree/InsnList +instanceKlass org/objectweb/asm/tree/Util +instanceKlass org/objectweb/asm/tree/AbstractInsnNode +instanceKlass org/objectweb/asm/commons/Method +instanceKlass org/objectweb/asm/Label +instanceKlass org/objectweb/asm/Frame +instanceKlass org/objectweb/asm/Context +instanceKlass org/objectweb/asm/Attribute +instanceKlass org/objectweb/asm/Type +instanceKlass org/objectweb/asm/ByteVector +instanceKlass org/objectweb/asm/Symbol +instanceKlass org/objectweb/asm/SymbolTable +instanceKlass org/objectweb/asm/MethodVisitor +instanceKlass org/objectweb/asm/FieldVisitor +instanceKlass org/objectweb/asm/ModuleVisitor +instanceKlass org/objectweb/asm/AnnotationVisitor +instanceKlass org/objectweb/asm/RecordComponentVisitor +instanceKlass org/objectweb/asm/ClassReader +instanceKlass org/eclipse/m2e/core/internal/URLConnectionCaches +instanceKlass org/eclipse/m2e/core/internal/jobs/IBackgroundProcessingQueue +instanceKlass org/eclipse/core/resources/IResourceChangeEvent +instanceKlass java/util/concurrent/atomic/Striped64$1 +instanceKlass jdk/internal/util/random/RandomSupport +instanceKlass org/eclipse/core/internal/runtime/Log +instanceKlass org/eclipse/core/internal/preferences/BundleStateScope +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$Resolved +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$FieldSearchResult +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$1 +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$1 +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$ReferenceMethodImpl +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$NotResolved +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$State +instanceKlass org/apache/felix/scr/impl/inject/InitReferenceMethod +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler +instanceKlass org/apache/felix/scr/impl/inject/field/FieldMethods +instanceKlass org/eclipse/core/internal/resources/CheckMissingNaturesListener +instanceKlass org/eclipse/core/internal/resources/Rules +instanceKlass org/eclipse/core/internal/resources/ResourceChangeListenerRegistrar +instanceKlass org/eclipse/core/internal/filesystem/FileStoreUtil +instanceKlass org/eclipse/core/internal/resources/AliasManager$LocationMap +instanceKlass org/eclipse/core/internal/resources/AliasManager +instanceKlass org/eclipse/core/resources/refresh/IRefreshMonitor +instanceKlass org/eclipse/core/internal/refresh/MonitorManager +instanceKlass org/eclipse/core/resources/IResourceDeltaVisitor +instanceKlass org/eclipse/core/resources/IPathVariableChangeListener +instanceKlass org/eclipse/core/internal/refresh/RefreshManager +instanceKlass org/eclipse/core/resources/refresh/IRefreshResult +instanceKlass org/eclipse/core/internal/resources/ProjectContentTypes +instanceKlass org/eclipse/core/internal/utils/Cache +instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager +instanceKlass java/util/function/LongUnaryOperator +instanceKlass org/eclipse/core/internal/jobs/JobChangeEvent +instanceKlass org/eclipse/core/internal/resources/CharsetDeltaJob$ICharsetListenerFilter +instanceKlass org/eclipse/core/runtime/PerformanceStats +instanceKlass org/eclipse/core/internal/events/ResourceStats +instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList$ListenerEntry +instanceKlass org/eclipse/core/internal/resources/CharsetManager$ResourceChangeListener +instanceKlass org/eclipse/core/resources/IResourceChangeListener +instanceKlass org/eclipse/core/internal/resources/CharsetManager +instanceKlass org/eclipse/core/internal/localstore/Bucket$Entry +instanceKlass org/eclipse/core/internal/localstore/BucketTree +instanceKlass org/eclipse/core/internal/localstore/Bucket$Visitor +instanceKlass org/eclipse/core/internal/localstore/Bucket +instanceKlass org/eclipse/core/internal/properties/PropertyManager2 +instanceKlass org/eclipse/core/internal/events/LifecycleEvent +instanceKlass java/lang/Short$ShortCache +instanceKlass com/sun/jna/NativeMappedConverter +instanceKlass com/sun/jna/Klass +instanceKlass com/sun/jna/Native$Buffers +instanceKlass com/sun/jna/VarArgsChecker +instanceKlass com/sun/jna/NativeLibrary$NativeLibraryDisposer +instanceKlass com/sun/jna/NativeLibrary$1 +instanceKlass com/sun/jna/SymbolProvider +instanceKlass com/sun/jna/NativeLibrary +instanceKlass org/eclipse/core/internal/filesystem/local/Win32Handler$FileAPIh +instanceKlass com/sun/jna/Memory$MemoryDisposer +instanceKlass com/sun/jna/internal/Cleaner$Cleanable +instanceKlass com/sun/jna/internal/Cleaner +instanceKlass com/sun/jna/WeakMemoryHolder +instanceKlass org/eclipse/core/filesystem/provider/FileInfo +instanceKlass com/sun/jna/Structure$StructField +instanceKlass com/sun/jna/Structure$LayoutInfo +instanceKlass java/lang/Class$AnnotationData +instanceKlass java/lang/annotation/Documented +instanceKlass com/sun/jna/Structure$FieldOrder +instanceKlass com/sun/jna/platform/win32/WinBase +instanceKlass com/sun/jna/platform/win32/BaseTSD +instanceKlass com/sun/jna/platform/win32/WinDef +instanceKlass com/sun/jna/Library +instanceKlass com/sun/jna/win32/W32APITypeMapper$2 +instanceKlass com/sun/jna/DefaultTypeMapper$Entry +instanceKlass com/sun/jna/win32/W32APITypeMapper$1 +instanceKlass com/sun/jna/TypeConverter +instanceKlass com/sun/jna/DefaultTypeMapper +instanceKlass com/sun/jna/TypeMapper +instanceKlass com/sun/jna/Structure$ByReference +instanceKlass com/sun/jna/Native$2 +instanceKlass com/sun/jna/Structure$FFIType$FFITypes +instanceKlass com/sun/jna/Native$ffi_callback +instanceKlass com/sun/jna/JNIEnv +instanceKlass com/sun/jna/PointerType +instanceKlass com/sun/jna/NativeMapped +instanceKlass com/sun/jna/WString +instanceKlass com/sun/jna/win32/DLLCallback +instanceKlass com/sun/jna/CallbackProxy +instanceKlass com/sun/jna/Callback +instanceKlass com/sun/jna/Structure$ByValue +instanceKlass jdk/internal/loader/NativeLibraries$Unloader +instanceKlass java/io/FileOutputStream$1 +instanceKlass sun/security/provider/AbstractDrbg$NonceProvider +instanceKlass sun/nio/fs/BasicFileAttributesHolder +instanceKlass sun/nio/fs/WindowsDirectoryStream$WindowsDirectoryIterator +instanceKlass java/nio/file/Files$AcceptAllFilter +instanceKlass java/nio/file/DirectoryStream$Filter +instanceKlass java/net/NetworkInterface$1 +instanceKlass java/net/DefaultInterface +instanceKlass java/net/Inet6Address$Inet6AddressHolder +instanceKlass java/net/InetAddress$PlatformNameService +instanceKlass java/net/InetAddress$NameService +instanceKlass java/net/Inet6AddressImpl +instanceKlass java/net/InetAddressImpl +instanceKlass java/net/InetAddressImplFactory +instanceKlass java/util/concurrent/ConcurrentSkipListMap$Node +instanceKlass java/util/concurrent/ConcurrentSkipListMap$Index +instanceKlass java/util/concurrent/ConcurrentNavigableMap +instanceKlass java/net/InetAddress$InetAddressHolder +instanceKlass java/net/InetAddress$1 +instanceKlass jdk/internal/access/JavaNetInetAddressAccess +instanceKlass java/net/InetAddress +instanceKlass java/net/InterfaceAddress +instanceKlass java/net/NetworkInterface +instanceKlass sun/security/provider/SeedGenerator$1 +instanceKlass sun/security/provider/SeedGenerator +instanceKlass sun/security/provider/AbstractDrbg$SeederHolder +instanceKlass java/security/DrbgParameters$NextBytes +instanceKlass sun/security/provider/EntropySource +instanceKlass sun/security/provider/AbstractDrbg +instanceKlass java/security/DrbgParameters$Instantiation +instanceKlass java/security/DrbgParameters +instanceKlass sun/security/provider/MoreDrbgParameters +instanceKlass java/security/SecureRandomSpi +instanceKlass java/io/File$TempDirectory +instanceKlass com/sun/jna/Native$5 +instanceKlass com/sun/jna/Platform +instanceKlass com/sun/jna/Native$1 +instanceKlass com/sun/jna/Callback$UncaughtExceptionHandler +instanceKlass com/sun/jna/Native +instanceKlass com/sun/jna/Version +instanceKlass com/sun/jna/FromNativeContext +instanceKlass com/sun/jna/FromNativeConverter +instanceKlass com/sun/jna/ToNativeConverter +instanceKlass com/sun/jna/ToNativeContext +instanceKlass com/sun/jna/Structure +instanceKlass com/sun/jna/Pointer +instanceKlass org/eclipse/core/internal/filesystem/local/NativeHandler +instanceKlass org/eclipse/core/internal/filesystem/local/LocalFileNativesManager +instanceKlass org/eclipse/core/resources/FileInfoMatcherDescription +instanceKlass org/eclipse/core/internal/resources/FilterDescription +instanceKlass javax/xml/parsers/DocumentBuilder +instanceKlass javax/xml/parsers/DocumentBuilderFactory +instanceKlass org/eclipse/core/internal/runtime/XmlProcessorFactory +instanceKlass org/eclipse/core/internal/resources/IModelObjectConstants +instanceKlass org/eclipse/core/filesystem/URIUtil +instanceKlass java/util/AbstractMap$2$1 +instanceKlass org/eclipse/core/resources/variableresolvers/PathVariableResolver +instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager$Descriptor +instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager +instanceKlass org/eclipse/core/internal/resources/ProjectPathVariableManager +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JLSFsUtils +instanceKlass sun/nio/fs/WindowsUriSupport +instanceKlass org/eclipse/core/filesystem/IFileStore +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator$1 +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator +instanceKlass org/eclipse/core/filesystem/IFileSystem +instanceKlass org/eclipse/core/internal/filesystem/InternalFileSystemCore +instanceKlass org/eclipse/core/filesystem/EFS +instanceKlass org/eclipse/core/internal/localstore/FileStoreRoot +instanceKlass org/eclipse/core/filesystem/IFileInfo +instanceKlass org/eclipse/core/internal/resources/MarkerAttributeMap +instanceKlass org/eclipse/core/internal/resources/MarkerSet +instanceKlass org/eclipse/core/internal/resources/MarkerReader +instanceKlass org/eclipse/core/internal/watson/ElementTree$ChildIDsCache +instanceKlass java/io/FilenameFilter +instanceKlass org/eclipse/core/internal/utils/ObjectMap +instanceKlass org/eclipse/core/internal/dtree/DataTreeLookup +instanceKlass org/eclipse/core/internal/dtree/DataTreeReader +instanceKlass org/eclipse/core/internal/watson/ElementTreeReader$1 +instanceKlass org/eclipse/core/internal/dtree/IDataFlattener +instanceKlass org/eclipse/core/internal/watson/ElementTreeReader +instanceKlass org/eclipse/core/resources/IFileState +instanceKlass org/eclipse/core/internal/events/BuilderPersistentInfo +instanceKlass org/eclipse/core/internal/resources/SyncInfoReader +instanceKlass org/eclipse/core/internal/resources/WorkspaceTreeReader +instanceKlass org/eclipse/core/resources/ISavedState +instanceKlass org/eclipse/core/resources/ISaveContext +instanceKlass org/eclipse/core/internal/resources/SaveManager +instanceKlass org/eclipse/core/internal/watson/IElementInfoFlattener +instanceKlass org/eclipse/core/internal/resources/SyncInfoWriter +instanceKlass org/eclipse/core/internal/resources/Synchronizer +instanceKlass org/eclipse/core/internal/resources/MarkerWriter +instanceKlass org/eclipse/core/internal/resources/MarkerDeltaManager +instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache$MarkerTypeDefinition +instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache +instanceKlass org/eclipse/core/internal/resources/MarkerInfo +instanceKlass org/eclipse/core/internal/resources/IMarkerSetElement +instanceKlass org/eclipse/core/internal/resources/MarkerManager +instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList +instanceKlass org/eclipse/core/internal/events/NotificationManager +instanceKlass java/util/stream/SortedOps +instanceKlass org/eclipse/core/internal/events/BuildManager$DeltaCache +instanceKlass org/eclipse/core/resources/IResourceDelta +instanceKlass org/eclipse/core/resources/ICommand +instanceKlass org/eclipse/core/internal/events/InternalBuilder +instanceKlass org/eclipse/core/resources/IBuildContext +instanceKlass org/eclipse/core/internal/events/BuildManager +instanceKlass org/eclipse/core/internal/resources/FilterTypeManager$1 +instanceKlass org/eclipse/core/internal/resources/FilterDescriptor +instanceKlass org/eclipse/core/resources/IFilterMatcherDescriptor +instanceKlass org/eclipse/core/internal/resources/FilterTypeManager +instanceKlass org/eclipse/core/resources/IProjectNatureDescriptor +instanceKlass org/eclipse/core/internal/resources/NatureManager +instanceKlass org/eclipse/core/internal/events/ILifecycleListener +instanceKlass org/eclipse/core/internal/resources/PathVariableManager +instanceKlass org/eclipse/core/internal/preferences/PreferencesService$1 +instanceKlass java/util/function/IntFunction +instanceKlass org/eclipse/core/internal/localstore/IHistoryStore +instanceKlass org/eclipse/core/internal/localstore/RefreshLocalVisitor +instanceKlass org/eclipse/core/internal/localstore/ILocalStoreConstants +instanceKlass org/eclipse/core/internal/localstore/IUnifiedTreeVisitor +instanceKlass org/eclipse/core/internal/localstore/FileSystemResourceManager +instanceKlass org/eclipse/core/runtime/jobs/MultiRule +instanceKlass org/eclipse/core/internal/jobs/OrderedLock +instanceKlass org/eclipse/core/internal/resources/WorkManager$NotifyRule +instanceKlass org/eclipse/core/internal/resources/WorkManager +instanceKlass org/eclipse/core/runtime/NullProgressMonitor +instanceKlass org/eclipse/core/runtime/preferences/IExportedPreferences +instanceKlass org/eclipse/core/runtime/Preferences$IPropertyChangeListener +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$INodeChangeListener +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$IPreferenceChangeListener +instanceKlass org/eclipse/core/runtime/Preferences +instanceKlass lombok/eclipse/agent/PatchFixesShadowLoaded +instanceKlass lombok/core/LombokNode +instanceKlass lombok/core/DiagnosticsReceiver +instanceKlass lombok/launch/PatchFixesHider$Util +instanceKlass lombok/launch/PatchFixesHider$LombokDeps +instanceKlass lombok/launch/ClassFileMetaData +instanceKlass lombok/launch/PackageShader +instanceKlass java/lang/invoke/ClassSpecializer$Factory$1Var +instanceKlass sun/invoke/util/ValueConversions$1 +instanceKlass sun/invoke/util/ValueConversions$WrapperCache +instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccessor +instanceKlass java/lang/invoke/MethodHandleImpl$2 +instanceKlass java/lang/invoke/MethodHandleImpl$LoopClauses +instanceKlass java/lang/invoke/MethodHandleImpl$CasesHolder +instanceKlass java/io/ObjectOutput +instanceKlass java/io/ObjectStreamConstants +instanceKlass java/io/ObjectInput +instanceKlass org/eclipse/core/internal/runtime/Product +instanceKlass org/eclipse/core/runtime/IProduct +instanceKlass lombok/patcher/scripts/WrapReturnValuesScript$1 +instanceKlass org/eclipse/equinox/internal/app/ProductExtensionBranding +instanceKlass org/eclipse/core/internal/runtime/FindSupport +instanceKlass org/eclipse/core/runtime/FileLocator +instanceKlass org/eclipse/core/runtime/SafeRunner +instanceKlass org/eclipse/core/runtime/IExecutableExtensionFactory +instanceKlass org/eclipse/core/runtime/IExecutableExtension +instanceKlass org/eclipse/core/runtime/preferences/AbstractPreferenceInitializer +instanceKlass org/eclipse/core/internal/dtree/AbstractDataTree +instanceKlass org/eclipse/core/internal/dtree/AbstractDataTreeNode +instanceKlass org/eclipse/core/internal/watson/ElementTree +instanceKlass org/eclipse/core/internal/runtime/DataArea +instanceKlass org/eclipse/core/internal/runtime/MetaDataKeeper +instanceKlass org/eclipse/core/internal/resources/LocalMetaArea +instanceKlass org/eclipse/core/internal/resources/LocationValidator +instanceKlass org/eclipse/core/runtime/Platform$OS +instanceKlass org/eclipse/core/internal/utils/FileUtil +instanceKlass org/eclipse/core/internal/watson/IElementContentVisitor +instanceKlass org/eclipse/core/resources/IResourceFilterDescription +instanceKlass org/eclipse/core/resources/team/IResourceTree +instanceKlass org/eclipse/core/resources/IMarker +instanceKlass org/eclipse/core/resources/IResourceProxy +instanceKlass org/eclipse/core/runtime/Platform +instanceKlass org/eclipse/core/resources/team/FileModificationValidationContext +instanceKlass org/eclipse/core/internal/resources/InternalTeamHook +instanceKlass org/eclipse/core/internal/watson/IElementComparator +instanceKlass org/eclipse/core/internal/dtree/IComparator +instanceKlass org/eclipse/core/resources/ISynchronizer +instanceKlass org/eclipse/core/resources/IBuildConfiguration +instanceKlass org/eclipse/core/resources/IResourceRuleFactory +instanceKlass org/eclipse/core/internal/resources/ResourceInfo +instanceKlass org/eclipse/core/resources/IPathVariableManager +instanceKlass org/eclipse/core/resources/IProjectDescription +instanceKlass org/eclipse/core/resources/team/IMoveDeleteHook +instanceKlass org/eclipse/core/resources/IProject +instanceKlass org/eclipse/core/internal/resources/ModelObject +instanceKlass org/eclipse/core/internal/properties/IPropertyManager +instanceKlass org/eclipse/core/internal/resources/IManager +instanceKlass org/eclipse/core/resources/IWorkspaceDescription +instanceKlass org/eclipse/core/resources/IFile +instanceKlass org/eclipse/core/resources/IEncodedStorage +instanceKlass org/eclipse/core/resources/IStorage +instanceKlass org/eclipse/core/resources/IFolder +instanceKlass org/eclipse/core/internal/watson/IPathRequestor +instanceKlass org/eclipse/core/internal/utils/IStringPoolParticipant +instanceKlass org/eclipse/core/runtime/ICoreRunnable +instanceKlass org/eclipse/core/internal/watson/IElementTreeData +instanceKlass org/eclipse/core/internal/jobs/WorkerPool +instanceKlass org/eclipse/core/internal/jobs/JobQueue +instanceKlass org/eclipse/core/internal/jobs/DeadlockDetector +instanceKlass org/eclipse/core/internal/jobs/LockManager +instanceKlass org/eclipse/core/runtime/jobs/JobChangeAdapter +instanceKlass org/eclipse/core/internal/jobs/JobListeners$IListenerDoit +instanceKlass org/eclipse/core/runtime/jobs/IJobChangeEvent +instanceKlass org/eclipse/core/internal/jobs/JobListeners +instanceKlass org/eclipse/core/internal/jobs/ImplicitJobs +instanceKlass org/eclipse/core/internal/jobs/JobManager$1 +instanceKlass org/eclipse/core/runtime/ProgressMonitorWrapper +instanceKlass org/eclipse/core/runtime/IProgressMonitorWithBlocking +instanceKlass org/eclipse/core/runtime/jobs/ILock +instanceKlass org/eclipse/core/internal/jobs/InternalJobGroup +instanceKlass org/eclipse/core/runtime/jobs/IJobChangeListener +instanceKlass org/eclipse/core/internal/jobs/JobManager +instanceKlass org/eclipse/core/runtime/jobs/IJobManager +instanceKlass org/eclipse/core/internal/jobs/JobOSGiUtils +instanceKlass org/eclipse/core/internal/jobs/JobActivator +instanceKlass org/eclipse/core/resources/IWorkspaceRoot +instanceKlass org/eclipse/core/resources/IContainer +instanceKlass org/eclipse/core/resources/IResource +instanceKlass org/eclipse/core/runtime/jobs/ISchedulingRule +instanceKlass org/eclipse/core/runtime/PlatformObject +instanceKlass org/eclipse/core/internal/resources/ICoreConstants +instanceKlass java/time/Period +instanceKlass java/time/chrono/ChronoPeriod +instanceKlass java/time/format/DateTimeFormatterBuilder$TextPrinterParser +instanceKlass java/time/format/DateTimeTextProvider$1 +instanceKlass java/time/format/DateTimeTextProvider +instanceKlass java/time/format/DateTimeTextProvider$LocaleStore +instanceKlass java/time/format/DateTimeFormatterBuilder$InstantPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser +instanceKlass java/time/format/DecimalStyle +instanceKlass java/time/format/DateTimeFormatterBuilder$CompositePrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$NumberPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$DateTimePrinterParser +instanceKlass java/time/temporal/JulianFields +instanceKlass java/time/temporal/IsoFields +instanceKlass java/lang/Character$CharacterCache +instanceKlass java/time/temporal/TemporalQuery +instanceKlass java/time/format/DateTimeFormatterBuilder +instanceKlass java/time/format/DateTimeFormatter +instanceKlass org/eclipse/osgi/internal/debug/EclipseDebugTrace +instanceKlass org/eclipse/core/internal/utils/Policy$1 +instanceKlass org/eclipse/core/runtime/IProgressMonitor +instanceKlass org/eclipse/core/internal/utils/Policy +instanceKlass org/eclipse/core/resources/ResourcesPlugin$WorkspaceInitCustomizer +instanceKlass org/eclipse/core/resources/IWorkspace +instanceKlass org/eclipse/core/runtime/IAdaptable +instanceKlass org/eclipse/jdt/ls/core/internal/managers/ProjectsManager +instanceKlass org/eclipse/jdt/ls/core/internal/managers/IProjectsManager +instanceKlass org/eclipse/core/resources/ISaveParticipant +instanceKlass org/eclipse/core/internal/runtime/LogServiceFactory +instanceKlass org/eclipse/equinox/internal/app/AppCommands +instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer$RegisterService +instanceKlass org/eclipse/equinox/app/IApplicationContext +instanceKlass org/osgi/service/application/ApplicationHandle +instanceKlass org/osgi/service/application/ApplicationDescriptor +instanceKlass org/eclipse/osgi/service/runnable/ApplicationLauncher +instanceKlass org/eclipse/equinox/internal/app/IBranding +instanceKlass org/eclipse/osgi/service/runnable/ApplicationRunnable +instanceKlass org/eclipse/osgi/service/runnable/ParameterizedRunnable +instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer +instanceKlass org/osgi/service/application/ScheduledApplication +instanceKlass org/eclipse/equinox/internal/app/AppPersistence +instanceKlass org/eclipse/equinox/internal/app/Activator +instanceKlass org/eclipse/equinox/internal/app/CommandLineArgs +instanceKlass org/eclipse/core/internal/preferences/legacy/InitLegacyPreferences +instanceKlass org/eclipse/core/internal/preferences/legacy/ProductPreferencesService +instanceKlass org/eclipse/core/internal/preferences/exchange/IProductPreferencesService +instanceKlass org/eclipse/core/internal/runtime/AuthorizationHandler +instanceKlass org/eclipse/core/runtime/IBundleGroupProvider +instanceKlass org/eclipse/core/runtime/ILog +instanceKlass org/eclipse/core/internal/runtime/InternalPlatform +instanceKlass org/eclipse/core/runtime/Plugin +instanceKlass org/eclipse/equinox/internal/frameworkadmin/equinox/Log +instanceKlass java/lang/Process +instanceKlass org/eclipse/equinox/internal/provisional/configuratormanipulator/ConfiguratorManipulator +instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/Manipulator +instanceKlass org/eclipse/equinox/internal/frameworkadmin/equinox/EquinoxFwAdminImpl +instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/FrameworkAdmin +instanceKlass org/osgi/util/promise/DeferredPromiseImpl$ResolveWith +instanceKlass org/osgi/util/promise/PromiseImpl$Result +instanceKlass org/osgi/util/promise/PromiseFactory$All +instanceKlass org/osgi/util/promise/PromiseImpl$InlineCallback +instanceKlass org/eclipse/core/runtime/QualifiedName +instanceKlass org/apache/felix/scr/impl/inject/methods/ActivateMethod$1 +instanceKlass org/apache/felix/scr/impl/inject/MethodResult +instanceKlass org/eclipse/core/internal/content/ContentTypeManager$ContentTypeRegistryChangeListener +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$OpenStatusImpl +instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$1 +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod$1 +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$Resolved +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$MethodInfo +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$1 +instanceKlass org/eclipse/core/internal/content/BasicDescription +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$IContentTypeChangeListener +instanceKlass org/eclipse/core/internal/content/ContentTypeBuilder +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$ISelectionPolicy +instanceKlass org/eclipse/core/internal/preferences/BundleStateScopeServiceFactory +instanceKlass org/eclipse/core/internal/preferences/Activator$1 +instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry$ListenerInfo +instanceKlass org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper +instanceKlass org/eclipse/core/runtime/ListenerList$ListenerListIterator +instanceKlass org/eclipse/core/internal/preferences/OSGiPreferencesServiceManager +instanceKlass org/osgi/service/prefs/PreferencesService +instanceKlass org/eclipse/core/internal/preferences/AbstractScope +instanceKlass org/eclipse/core/runtime/preferences/IScopeContext +instanceKlass org/eclipse/core/runtime/Path +instanceKlass org/eclipse/core/runtime/Path$Constants +instanceKlass org/eclipse/core/runtime/IPath +instanceKlass org/eclipse/core/internal/preferences/ImmutableMap +instanceKlass org/eclipse/core/internal/preferences/EclipsePreferences +instanceKlass org/eclipse/core/runtime/preferences/IScope +instanceKlass org/eclipse/core/internal/preferences/PreferencesService +instanceKlass org/eclipse/core/runtime/preferences/IPreferencesService +instanceKlass org/eclipse/core/internal/preferences/exchange/ILegacyPreferences +instanceKlass org/eclipse/core/internal/preferences/PreferencesOSGiUtils +instanceKlass org/eclipse/core/internal/preferences/Activator +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences +instanceKlass org/eclipse/core/internal/content/ContentTypeCatalog +instanceKlass org/apache/felix/scr/impl/inject/ValueUtils +instanceKlass org/eclipse/core/internal/content/ILazySource +instanceKlass org/eclipse/core/internal/adapter/AdapterManagerListener +instanceKlass org/eclipse/core/internal/runtime/IAdapterManagerProvider +instanceKlass org/eclipse/core/runtime/IRegistryEventListener +instanceKlass org/eclipse/core/internal/registry/osgi/RegistryCommandProvider +instanceKlass org/eclipse/osgi/framework/console/CommandProvider +instanceKlass org/eclipse/core/internal/registry/RegistryProviderFactory +instanceKlass org/eclipse/core/internal/registry/osgi/RegistryProviderOSGI +instanceKlass org/eclipse/core/internal/registry/TemporaryObjectManager +instanceKlass org/eclipse/core/internal/registry/RegistryIndexChildren +instanceKlass org/eclipse/core/internal/registry/RegistryIndexElement +instanceKlass org/eclipse/core/internal/registry/CombinedEventDelta +instanceKlass org/eclipse/core/internal/registry/Contribution +instanceKlass org/eclipse/core/runtime/Assert +instanceKlass org/eclipse/core/internal/runtime/LocalizationUtils +instanceKlass org/eclipse/core/runtime/Status +instanceKlass org/eclipse/osgi/util/NLS +instanceKlass org/eclipse/core/internal/runtime/ResourceTranslator +instanceKlass org/eclipse/core/runtime/spi/RegistryContributor +instanceKlass org/eclipse/core/runtime/IContributor +instanceKlass org/eclipse/core/runtime/ContributorFactoryOSGi +instanceKlass org/eclipse/core/internal/registry/osgi/EclipseBundleListener +instanceKlass org/eclipse/core/internal/registry/HashtableOfStringAndInt +instanceKlass org/eclipse/core/internal/registry/KeyedHashSet +instanceKlass org/eclipse/core/runtime/IConfigurationElement +instanceKlass org/eclipse/core/internal/registry/Handle +instanceKlass org/eclipse/core/internal/registry/RegistryObjectManager +instanceKlass org/eclipse/core/internal/registry/IObjectManager +instanceKlass org/eclipse/core/internal/registry/RegistryTimestamp +instanceKlass org/eclipse/core/internal/registry/TableReader +instanceKlass org/eclipse/core/runtime/ListenerList +instanceKlass org/eclipse/core/internal/registry/ReadWriteMonitor +instanceKlass org/eclipse/core/internal/registry/RegistryObjectFactory +instanceKlass org/eclipse/core/runtime/IExtensionDelta +instanceKlass org/eclipse/core/runtime/IExtensionPoint +instanceKlass org/eclipse/core/runtime/ISafeRunnable +instanceKlass org/eclipse/core/internal/registry/RegistryObject +instanceKlass org/eclipse/core/internal/registry/KeyedElement +instanceKlass org/eclipse/core/runtime/IExtension +instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry +instanceKlass org/eclipse/core/runtime/spi/IDynamicExtensionRegistry +instanceKlass org/eclipse/core/runtime/IExtensionRegistry +instanceKlass org/eclipse/core/runtime/RegistryFactory +instanceKlass org/eclipse/core/internal/registry/ReferenceMap$IEntry +instanceKlass org/eclipse/core/internal/registry/ReferenceMap +instanceKlass org/eclipse/core/internal/registry/osgi/OSGIUtils +instanceKlass org/eclipse/core/internal/registry/osgi/EquinoxUtils +instanceKlass org/eclipse/core/internal/registry/RegistryProperties +instanceKlass org/eclipse/core/runtime/spi/IRegistryProvider +instanceKlass org/eclipse/core/runtime/spi/RegistryStrategy +instanceKlass org/eclipse/core/internal/registry/osgi/Activator +instanceKlass org/eclipse/core/runtime/IRegistryChangeListener +instanceKlass org/eclipse/core/internal/content/IContentTypeInfo +instanceKlass org/eclipse/core/runtime/content/IContentDescription +instanceKlass org/osgi/service/prefs/Preferences +instanceKlass org/eclipse/core/runtime/content/IContentType +instanceKlass org/eclipse/core/runtime/content/IContentTypeSettings +instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentConstructorImpl +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods$1 +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod +instanceKlass org/apache/felix/scr/impl/inject/methods/BindMethods +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotApplicable +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotResolved +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$State +instanceKlass org/apache/felix/scr/impl/inject/BaseParameter +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod +instanceKlass org/eclipse/core/internal/content/ContentTypeMatcher +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager +instanceKlass org/eclipse/core/runtime/content/IContentTypeMatcher +instanceKlass org/apache/felix/scr/impl/helper/ComponentServiceObjectsHelper +instanceKlass org/apache/felix/scr/impl/manager/EdgeInfo +instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl$ComponentInstanceImpl +instanceKlass org/osgi/service/component/ComponentInstance +instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegStateWrapper +instanceKlass org/apache/felix/scr/impl/BundleComponentActivator$ListenerInfo +instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker$AbstractTracked +instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListener +instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker +instanceKlass org/apache/felix/scr/impl/helper/Coercions +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$AbstractCustomizer +instanceKlass org/apache/felix/scr/impl/inject/RefPair +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$Customizer +instanceKlass org/apache/felix/scr/impl/manager/ServiceTrackerCustomizer +instanceKlass org/apache/felix/scr/impl/inject/OpenStatus +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager +instanceKlass org/apache/felix/scr/impl/manager/ReferenceManager +instanceKlass org/osgi/util/promise/Deferred +instanceKlass org/apache/felix/scr/impl/inject/ScrComponentContext +instanceKlass org/apache/felix/scr/component/ExtComponentContext +instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$SetImplementationObject +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager +instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker$1 +instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker +instanceKlass java/util/Timer$ThreadReaper +instanceKlass java/util/TaskQueue +instanceKlass java/util/Timer +instanceKlass org/apache/felix/scr/impl/inject/ComponentConstructor +instanceKlass org/apache/felix/scr/impl/inject/LifecycleMethod +instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentMethodsImpl +instanceKlass org/apache/felix/scr/impl/metadata/TargetedPID +instanceKlass java/util/concurrent/CompletionStage +instanceKlass org/osgi/util/promise/PromiseImpl +instanceKlass org/osgi/util/promise/Promise +instanceKlass org/osgi/util/promise/PromiseFactory +instanceKlass org/osgi/util/promise/Promises +instanceKlass org/apache/felix/scr/impl/inject/ComponentMethods +instanceKlass org/osgi/service/component/ComponentFactory +instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager +instanceKlass org/apache/felix/scr/impl/manager/ComponentManager +instanceKlass org/apache/felix/scr/impl/manager/ConfigurableComponentHolder +instanceKlass org/apache/felix/scr/impl/manager/ComponentContainer +instanceKlass org/apache/felix/scr/impl/ComponentRegistryKey +instanceKlass org/apache/felix/scr/impl/metadata/PropertyMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ComponentMetadata +instanceKlass org/apache/felix/scr/impl/xml/XmlConstants +instanceKlass com/sun/org/apache/xerces/internal/impl/Constants$ArrayEnumeration +instanceKlass com/sun/org/apache/xerces/internal/impl/Constants +instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$LocatorProxy +instanceKlass org/xml/sax/ext/Locator2 +instanceKlass org/xml/sax/Locator +instanceKlass com/sun/org/apache/xerces/internal/util/XMLSymbols +instanceKlass com/sun/org/apache/xerces/internal/util/XMLChar +instanceKlass com/sun/xml/internal/stream/Entity +instanceKlass com/sun/xml/internal/stream/util/BufferAllocator +instanceKlass com/sun/xml/internal/stream/util/ThreadLocalBufferAllocator +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$EncodingInfo +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLInputSource +instanceKlass com/sun/org/apache/xerces/internal/util/ErrorHandlerWrapper +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLErrorHandler +instanceKlass com/sun/org/apache/xerces/internal/impl/ExternalSubsetResolver +instanceKlass com/sun/org/apache/xerces/internal/util/EntityResolverWrapper +instanceKlass org/xml/sax/ext/EntityResolver2 +instanceKlass org/xml/sax/InputSource +instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$AttributesProxy +instanceKlass org/xml/sax/ext/Attributes2 +instanceKlass org/xml/sax/Attributes +instanceKlass org/xml/sax/AttributeList +instanceKlass com/sun/org/apache/xerces/internal/util/FeatureState +instanceKlass com/sun/org/apache/xerces/internal/util/PropertyState +instanceKlass com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/util/MessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLVersionDetector +instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationManager +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NMTOKENDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NOTATIONDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ENTITYDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ListDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDREFDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/StringDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DTDDVFactory +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammarBucket +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLAttributeDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLSimpleType +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLElementDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationState +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/ValidationContext +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/RevalidationHandler +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidatorFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentFilter +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLEntityDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDProcessor +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelSource +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDSource +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLDTDDescription +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLGrammarDescription +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$TrailingMiscDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$PrologDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$XMLDeclDriver +instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceSupport +instanceKlass com/sun/org/apache/xerces/internal/xni/NamespaceContext +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl$Attribute +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLAttributes +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$FragmentContentDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$Driver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack2 +instanceKlass com/sun/org/apache/xerces/internal/xni/QName +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLString +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner +instanceKlass com/sun/xml/internal/stream/XMLBufferListener +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentSource +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLErrorReporter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLLocator +instanceKlass com/sun/xml/internal/stream/XMLEntityStorage +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl$AugmentationsItemsContainer +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/Augmentations +instanceKlass com/sun/org/apache/xerces/internal/util/XMLResourceIdentifierImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLResourceIdentifier +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLEntityResolver +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponent +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable$Entry +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable +instanceKlass jdk/xml/internal/JdkConstants +instanceKlass jdk/xml/internal/JdkXmlUtils +instanceKlass com/sun/org/apache/xerces/internal/util/ParserConfigurationSettings +instanceKlass com/sun/org/apache/xerces/internal/parsers/XML11Configurable +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLPullParserConfiguration +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager +instanceKlass com/sun/org/apache/xerces/internal/parsers/XMLParser +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDContentModelHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDocumentHandler +instanceKlass org/xml/sax/XMLReader +instanceKlass org/xml/sax/Parser +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager +instanceKlass javax/xml/parsers/SAXParser +instanceKlass com/sun/org/apache/xerces/internal/xs/PSVIProvider +instanceKlass com/sun/org/apache/xerces/internal/jaxp/JAXPConstants +instanceKlass java/lang/invoke/MethodHandle$1 +instanceKlass javax/xml/parsers/FactoryFinder$1 +instanceKlass jdk/xml/internal/SecuritySupport +instanceKlass javax/xml/parsers/FactoryFinder +instanceKlass javax/xml/parsers/SAXParserFactory +instanceKlass org/xml/sax/helpers/DefaultHandler +instanceKlass org/xml/sax/ErrorHandler +instanceKlass org/xml/sax/ContentHandler +instanceKlass org/xml/sax/DTDHandler +instanceKlass org/xml/sax/EntityResolver +instanceKlass org/apache/felix/scr/impl/BundleComponentActivator +instanceKlass org/apache/felix/scr/impl/manager/ComponentActivator +instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListenerContext +instanceKlass org/eclipse/core/internal/runtime/IAdapterFactoryExt +instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge$LazyAdapterFactory +instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge +instanceKlass org/eclipse/core/runtime/IAdapterFactory +instanceKlass org/eclipse/core/internal/runtime/TracingOptions$1 +instanceKlass org/eclipse/core/internal/runtime/TracingOptions +instanceKlass java/util/AbstractMap$1$1 +instanceKlass org/eclipse/core/runtime/ServiceCaller$ReferenceAndService +instanceKlass org/eclipse/core/internal/runtime/AdapterManager +instanceKlass org/eclipse/core/runtime/IAdapterManager +instanceKlass org/eclipse/core/internal/runtime/PlatformURLConverter +instanceKlass org/eclipse/core/internal/runtime/RuntimeLog +instanceKlass org/eclipse/core/runtime/IStatus +instanceKlass org/eclipse/core/internal/runtime/PlatformLogWriter +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceImpl +instanceKlass org/eclipse/core/runtime/ServiceCaller +instanceKlass org/eclipse/core/internal/runtime/Activator +instanceKlass org/apache/felix/scr/impl/config/ScrMetaTypeProviderServiceFactory +instanceKlass org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory +instanceKlass org/apache/felix/scr/impl/ComponentCommands$2 +instanceKlass org/apache/felix/scr/impl/ComponentCommands$1 +instanceKlass org/apache/felix/scr/impl/ComponentCommands +instanceKlass org/apache/felix/scr/impl/Activator$ScrExtension +instanceKlass org/apache/felix/scr/impl/ComponentActorThread$1 +instanceKlass org/apache/felix/scr/impl/ComponentActorThread +instanceKlass org/apache/felix/scr/impl/runtime/ServiceComponentRuntimeImpl +instanceKlass org/apache/felix/scr/impl/manager/ComponentHolder +instanceKlass org/apache/felix/scr/impl/manager/RegionConfigurationSupport +instanceKlass java/util/TimerTask +instanceKlass org/apache/felix/scr/impl/ComponentRegistry +instanceKlass org/apache/felix/scr/impl/logger/ScrLogManager$1 +instanceKlass org/apache/felix/scr/impl/logger/LogManager$LogDomain +instanceKlass org/apache/felix/scr/impl/logger/LogManager$Lock +instanceKlass org/apache/felix/scr/impl/logger/LogManager$LoggerFacade +instanceKlass org/apache/felix/scr/impl/logger/ComponentLogger +instanceKlass org/apache/felix/scr/impl/logger/BundleLogger +instanceKlass org/apache/felix/scr/impl/logger/ScrLogger +instanceKlass org/apache/felix/scr/impl/logger/InternalLogger +instanceKlass org/apache/felix/scr/impl/logger/ScrLoggerFactory +instanceKlass org/osgi/service/component/ComponentContext +instanceKlass org/osgi/service/component/ComponentServiceObjects +instanceKlass org/apache/felix/scr/impl/inject/internal/ClassUtils +instanceKlass org/apache/felix/scr/impl/config/ScrConfigurationImpl +instanceKlass org/osgi/service/component/runtime/ServiceComponentRuntime +instanceKlass org/apache/felix/scr/impl/manager/ScrConfiguration +instanceKlass org/apache/felix/scr/impl/logger/LogConfiguration +instanceKlass org/apache/felix/scr/impl/AbstractExtender +instanceKlass org/eclipse/osgi/internal/loader/buddy/PolicyHandler +instanceKlass sun/nio/fs/WindowsFileCopy +instanceKlass org/apache/aries/spifly/WeavingData +instanceKlass org/apache/aries/spifly/ConsumerRestriction +instanceKlass org/apache/aries/spifly/MethodRestriction +instanceKlass org/apache/aries/spifly/ArgRestrictions +instanceKlass org/apache/aries/spifly/BundleDescriptor +instanceKlass org/apache/aries/spifly/ConsumerBundleTrackerCustomizer +instanceKlass ch/qos/logback/classic/spi/LogbackServiceProvider +instanceKlass org/slf4j/spi/SLF4JServiceProvider +instanceKlass java/time/LocalTime$1 +instanceKlass java/lang/StringUTF16$CharsSpliterator +instanceKlass java/util/stream/Sink$ChainedInt +instanceKlass java/util/OptionalInt +instanceKlass java/util/stream/Sink$OfInt +instanceKlass java/util/function/IntConsumer +instanceKlass java/util/function/IntPredicate +instanceKlass java/util/stream/IntStream +instanceKlass java/lang/StringLatin1$CharsSpliterator +instanceKlass sun/util/locale/provider/LocaleResources +instanceKlass java/text/DecimalFormatSymbols +instanceKlass sun/util/resources/Bundles$2 +instanceKlass sun/util/resources/Bundles$CacheKeyReference +instanceKlass sun/util/resources/LocaleData$LocaleDataResourceBundleProvider +instanceKlass java/util/spi/ResourceBundleProvider +instanceKlass sun/util/resources/Bundles$CacheKey +instanceKlass sun/util/resources/Bundles +instanceKlass sun/util/resources/LocaleData$LocaleDataStrategy +instanceKlass sun/util/resources/Bundles$Strategy +instanceKlass sun/util/resources/LocaleData$1 +instanceKlass sun/util/resources/LocaleData +instanceKlass java/util/Locale$Builder +instanceKlass sun/util/locale/provider/CalendarDataUtility +instanceKlass sun/util/locale/provider/AvailableLanguageTags +instanceKlass sun/util/resources/cldr/provider/CLDRLocaleDataMetaInfo +instanceKlass jdk/internal/module/ModulePatcher$PatchedModuleReader +instanceKlass sun/util/locale/BaseLocale$Key +instanceKlass sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar +instanceKlass sun/util/locale/InternalLocaleBuilder +instanceKlass sun/util/locale/StringTokenIterator +instanceKlass sun/util/locale/ParseStatus +instanceKlass sun/util/locale/LanguageTag +instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo +instanceKlass sun/util/locale/provider/LocaleDataMetaInfo +instanceKlass sun/util/locale/provider/ResourceBundleBasedAdapter +instanceKlass sun/util/locale/provider/LocaleProviderAdapter$1 +instanceKlass sun/util/locale/provider/LocaleProviderAdapter +instanceKlass java/util/spi/LocaleServiceProvider +instanceKlass java/text/DateFormatSymbols +instanceKlass java/time/ZonedDateTime$1 +instanceKlass java/util/Calendar +instanceKlass java/util/Formatter$DateTime +instanceKlass java/util/ResourceBundle$ResourceBundleProviderHelper +instanceKlass java/util/ResourceBundle$3 +instanceKlass java/util/ResourceBundle$CacheKeyReference +instanceKlass java/util/ResourceBundle$CacheKey +instanceKlass sun/util/locale/LocaleObjectCache +instanceKlass java/util/ResourceBundle$Control +instanceKlass java/util/logging/Level$RbAccess +instanceKlass java/lang/invoke/LambdaFormEditor$1 +instanceKlass java/lang/invoke/MethodHandles$1 +instanceKlass java/lang/StackStreamFactory$FrameBuffer +instanceKlass java/lang/StackStreamFactory$1 +instanceKlass java/lang/StackStreamFactory +instanceKlass java/util/logging/LogRecord$CallerFinder +instanceKlass java/time/zone/ZoneOffsetTransitionRule$1 +instanceKlass java/time/chrono/AbstractChronology +instanceKlass java/time/chrono/Chronology +instanceKlass java/time/LocalDate$1 +instanceKlass java/time/temporal/TemporalAdjusters +instanceKlass java/time/zone/Ser +instanceKlass java/io/Externalizable +instanceKlass java/time/zone/ZoneRulesProvider$1 +instanceKlass java/time/zone/ZoneRulesProvider +instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule +instanceKlass sun/util/calendar/ZoneInfoFile$1 +instanceKlass sun/util/calendar/ZoneInfoFile +instanceKlass java/util/TimeZone +instanceKlass java/util/logging/LogManager$CloseOnReset +instanceKlass java/util/logging/StreamHandler$1 +instanceKlass java/util/logging/Handler$1 +instanceKlass java/util/logging/ErrorManager +instanceKlass jdk/internal/logger/SimpleConsoleLogger$Formatting +instanceKlass java/util/logging/Formatter +instanceKlass java/time/Clock +instanceKlass java/time/InstantSource +instanceKlass java/util/logging/LogRecord +instanceKlass org/apache/aries/spifly/ProviderServiceFactory +instanceKlass ch/qos/logback/classic/servlet/LogbackServletContainerInitializer +instanceKlass jakarta/servlet/ServletContainerInitializer +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$1 +instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer$ServiceDetails +instanceKlass org/eclipse/osgi/storage/bundlefile/ZipBundleFile$1 +instanceKlass org/apache/aries/spifly/Pair +instanceKlass org/osgi/framework/connect/FrameworkUtilHelper +instanceKlass org/osgi/framework/FrameworkUtil +instanceKlass sun/invoke/util/VerifyAccess$1 +instanceKlass aQute/bnd/stream/EntryPipeline +instanceKlass aQute/bnd/stream/MapStream +instanceKlass org/apache/aries/spifly/SpiFlyConstants +instanceKlass org/apache/aries/spifly/ConsumerHeaderProcessor +instanceKlass aQute/bnd/header/Attrs$DataType +instanceKlass aQute/bnd/header/Attrs +instanceKlass aQute/libg/qtokens/QuotedTokenizer +instanceKlass aQute/bnd/header/OSGiHeader +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$CaseInsentiveEntry +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$EntryIterator +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$KeyIterator +instanceKlass java/util/ResourceBundle$1 +instanceKlass jdk/internal/access/JavaUtilResourceBundleAccess +instanceKlass java/util/ResourceBundle +instanceKlass java/util/function/BooleanSupplier +instanceKlass java/util/stream/StreamSpliterators +instanceKlass java/util/stream/AbstractSpinedBuffer +instanceKlass org/eclipse/osgi/internal/container/InternalUtils$1 +instanceKlass java/util/stream/StreamSpliterators$AbstractWrappingSpliterator +instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer +instanceKlass org/osgi/util/tracker/BundleTracker +instanceKlass aQute/bnd/header/Parameters +instanceKlass org/osgi/framework/hooks/weaving/WovenClassListener +instanceKlass org/apache/aries/spifly/Util +instanceKlass org/objectweb/asm/Opcodes +instanceKlass org/objectweb/asm/ClassVisitor +instanceKlass org/apache/aries/spifly/dynamic/ClientWeavingHook +instanceKlass java/util/logging/Logger$SystemLoggerHelper$1 +instanceKlass java/util/logging/Logger$SystemLoggerHelper +instanceKlass java/util/logging/LogManager$4 +instanceKlass jdk/internal/logger/BootstrapLogger$BootstrapExecutors +instanceKlass jdk/internal/logger/LoggerFinderLoader +instanceKlass java/util/stream/Streams +instanceKlass java/util/stream/Streams$AbstractStreamBuilderImpl +instanceKlass java/util/stream/Stream$Builder +instanceKlass java/util/ArrayList$ArrayListSpliterator +instanceKlass java/util/logging/LogManager$LoggerContext$1 +instanceKlass java/util/logging/LogManager$VisitedLoggers +instanceKlass java/util/logging/LogManager$2 +instanceKlass java/util/logging/LogManager$LoggingProviderAccess +instanceKlass java/util/logging/LogManager$LogNode +instanceKlass java/util/logging/LogManager$LoggerContext +instanceKlass java/util/logging/LogManager$1 +instanceKlass java/util/logging/LogManager +instanceKlass java/util/logging/Logger$ConfigurationData +instanceKlass java/util/logging/Logger$LoggerBundle +instanceKlass java/util/logging/Level +instanceKlass java/util/logging/Handler +instanceKlass java/util/logging/Logger +instanceKlass org/osgi/util/tracker/BundleTrackerCustomizer +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$DefineClassResult +instanceKlass org/apache/aries/spifly/BaseActivator +instanceKlass org/osgi/framework/hooks/weaving/WeavingHook +instanceKlass org/eclipse/osgi/internal/weaving/WeavingHookConfigurator$WovenClassContext +instanceKlass org/eclipse/osgi/internal/weaving/WovenClassImpl +instanceKlass org/osgi/framework/hooks/weaving/WovenClass +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager$DefineContext +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$3 +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel$2 +instanceKlass java/util/concurrent/CountDownLatch +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1$1 +instanceKlass org/eclipse/osgi/service/resolver/ImportPackageSpecification +instanceKlass org/eclipse/osgi/service/resolver/HostSpecification +instanceKlass org/eclipse/osgi/service/resolver/BundleSpecification +instanceKlass org/eclipse/osgi/service/resolver/NativeCodeSpecification +instanceKlass org/eclipse/osgi/service/resolver/NativeCodeDescription +instanceKlass org/eclipse/osgi/service/resolver/GenericDescription +instanceKlass org/eclipse/osgi/service/resolver/GenericSpecification +instanceKlass org/eclipse/osgi/service/resolver/VersionConstraint +instanceKlass org/eclipse/osgi/service/resolver/ExportPackageDescription +instanceKlass org/eclipse/osgi/service/resolver/BundleDescription +instanceKlass org/eclipse/osgi/service/resolver/BaseDescription +instanceKlass org/eclipse/osgi/internal/resolver/StateImpl +instanceKlass org/eclipse/osgi/internal/resolver/StateObjectFactoryImpl +instanceKlass org/eclipse/osgi/service/resolver/Resolver +instanceKlass org/eclipse/osgi/service/resolver/State +instanceKlass org/eclipse/osgi/service/resolver/StateObjectFactory +instanceKlass org/eclipse/osgi/compatibility/state/PlatformAdminImpl +instanceKlass org/eclipse/osgi/service/resolver/PlatformAdmin +instanceKlass org/eclipse/osgi/compatibility/state/Activator +instanceKlass sun/security/x509/RFC822Name +instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerProxy$1 +instanceKlass java/util/Formattable +instanceKlass java/util/Formatter$Flags +instanceKlass java/util/Formatter$FormatSpecifier +instanceKlass java/util/Formatter$Conversion +instanceKlass java/util/Formatter$FixedString +instanceKlass java/util/Formatter$FormatString +instanceKlass java/util/Formatter +instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerSetter +instanceKlass org/eclipse/osgi/internal/url/NullURLStreamHandlerService +instanceKlass org/osgi/service/url/URLStreamHandlerSetter +instanceKlass org/osgi/service/url/URLStreamHandlerService +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$7 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$3 +instanceKlass org/apache/felix/resolver/util/ArrayMap$1$1 +instanceKlass org/apache/felix/resolver/ResolverImpl$UsedBlames +instanceKlass java/util/AbstractList$Itr +instanceKlass org/apache/felix/resolver/util/CopyOnWriteSet$1 +instanceKlass org/apache/felix/resolver/WrappedCapability +instanceKlass org/eclipse/osgi/container/ModuleResolutionReport$EntryImpl +instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Entry +instanceKlass java/util/function/BiPredicate +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$5 +instanceKlass org/eclipse/osgi/container/ModuleResolver$ResolveProcess$DynamicFragments +instanceKlass java/util/Collections$ReverseComparator2 +instanceKlass java/util/Collections$ReverseComparator +instanceKlass org/eclipse/osgi/container/ModuleDatabase$2 +instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder$Digraph$Vertex +instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder$Digraph +instanceKlass org/eclipse/osgi/internal/container/ComputeNodeOrder +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerWiring$1 +instanceKlass org/osgi/dto/DTO +instanceKlass org/eclipse/osgi/container/builders/OSGiManifestBuilderFactory$NativeClause +instanceKlass org/eclipse/osgi/storage/ManifestLocalization$BundleResourceBundle +instanceKlass org/eclipse/osgi/storage/ManifestLocalization +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread$Queued +instanceKlass org/osgi/framework/hooks/bundle/EventHook +instanceKlass org/osgi/framework/VersionRange +instanceKlass org/osgi/framework/hooks/bundle/FindHook +instanceKlass org/eclipse/osgi/framework/util/FilePath +instanceKlass org/eclipse/core/runtime/internal/adaptor/ConsoleManager +instanceKlass org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor +instanceKlass org/eclipse/osgi/service/runnable/StartupMonitor +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceFactoryUse$1 +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$2 +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$1 +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer +instanceKlass org/eclipse/osgi/service/security/TrustEngine +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedContentConstants +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook$1 +instanceKlass org/eclipse/osgi/internal/framework/XMLParsingServiceFactory +instanceKlass org/eclipse/osgi/storage/BundleLocalizationImpl +instanceKlass org/eclipse/osgi/service/localization/BundleLocalization +instanceKlass org/eclipse/osgi/storage/url/BundleURLConverter +instanceKlass org/eclipse/osgi/service/urlconversion/URLConverter +instanceKlass org/eclipse/osgi/internal/framework/legacy/StartLevelImpl +instanceKlass org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl +instanceKlass org/osgi/service/condition/ConditionImpl +instanceKlass org/osgi/service/condition/Condition +instanceKlass java/net/ContentHandler +instanceKlass java/net/ContentHandlerFactory +instanceKlass org/eclipse/osgi/internal/url/EquinoxFactoryManager +instanceKlass org/eclipse/osgi/internal/log/ConfigAdminListener +instanceKlass org/eclipse/osgi/internal/log/EventAdminAdapter +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$2 +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot$SnapshotIterator +instanceKlass org/eclipse/osgi/framework/eventmgr/ListenerQueue +instanceKlass org/osgi/framework/hooks/service/EventListenerHook +instanceKlass org/osgi/framework/hooks/service/EventHook +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot +instanceKlass org/osgi/framework/PrototypeServiceFactory +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceReferenceImpl +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceUse +instanceKlass org/eclipse/osgi/internal/log/OrderedExecutor +instanceKlass org/osgi/framework/hooks/service/FindHook +instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableCollection +instanceKlass org/eclipse/osgi/internal/serviceregistry/HookContext +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Entry +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap +instanceKlass org/osgi/framework/UnfilteredServiceListener +instanceKlass org/eclipse/osgi/internal/serviceregistry/FilteredServiceListener +instanceKlass org/osgi/framework/hooks/service/ListenerHook$ListenerInfo +instanceKlass org/osgi/util/tracker/AbstractTracked +instanceKlass org/osgi/util/tracker/ServiceTracker +instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl$2 +instanceKlass org/osgi/service/startlevel/StartLevel +instanceKlass org/osgi/service/packageadmin/PackageAdmin +instanceKlass org/eclipse/osgi/internal/framework/SystemBundleActivator +instanceKlass org/eclipse/osgi/internal/loader/classpath/TitleVersionVendor +instanceKlass org/eclipse/osgi/internal/loader/classpath/ManifestPackageAttributes +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry$PDEData +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry +instanceKlass org/eclipse/osgi/internal/loader/classpath/FragmentClasspath +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager +instanceKlass org/eclipse/osgi/internal/loader/BundleLoaderSources +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$1 +instanceKlass java/util/concurrent/ForkJoinPool$WorkQueue +instanceKlass java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory +instanceKlass java/util/concurrent/ForkJoinPool$1 +instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory +instanceKlass java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory +instanceKlass org/eclipse/osgi/internal/loader/sources/PackageSource +instanceKlass java/lang/ApplicationShutdownHooks$1 +instanceKlass java/lang/ApplicationShutdownHooks +instanceKlass org/eclipse/osgi/internal/framework/StorageSaver$StorageSaverTask +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node +instanceKlass java/util/concurrent/TimeUnit$1 +instanceKlass org/eclipse/osgi/internal/framework/StorageSaver +instanceKlass java/util/concurrent/RunnableScheduledFuture +instanceKlass java/util/concurrent/ScheduledFuture +instanceKlass java/util/concurrent/Delayed +instanceKlass java/util/concurrent/ScheduledExecutorService +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$1 +instanceKlass org/osgi/framework/ServiceObjects +instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl +instanceKlass org/osgi/framework/hooks/service/ListenerHook +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl +instanceKlass org/osgi/framework/ServiceRegistration +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager +instanceKlass org/eclipse/osgi/internal/framework/EquinoxEventPublisher +instanceKlass org/eclipse/osgi/container/ModuleResolutionReport +instanceKlass org/eclipse/osgi/container/ModuleWiring$LoaderInitializer +instanceKlass org/eclipse/osgi/container/ModuleWiring +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$1 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$6 +instanceKlass org/eclipse/osgi/container/ModuleWire +instanceKlass org/osgi/framework/wiring/BundleWire +instanceKlass org/apache/felix/resolver/WrappedRequirement +instanceKlass org/apache/felix/resolver/WireImpl +instanceKlass org/apache/felix/resolver/ResolverImpl$6 +instanceKlass org/apache/felix/resolver/ResolverImpl$5 +instanceKlass org/apache/felix/resolver/ResolverImpl$4 +instanceKlass org/apache/felix/resolver/ResolverImpl$Blame +instanceKlass org/apache/felix/resolver/ResolverImpl$3 +instanceKlass org/apache/felix/resolver/ResolverImpl$Packages +instanceKlass org/apache/felix/resolver/ResolverImpl$WireCandidate +instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy +instanceKlass java/util/concurrent/AbstractExecutorService +instanceKlass java/util/concurrent/ExecutorService +instanceKlass java/util/concurrent/ThreadPoolExecutor$CallerRunsPolicy +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1$2 +instanceKlass java/util/concurrent/Executors$RunnableAdapter +instanceKlass java/util/concurrent/Executors +instanceKlass org/apache/felix/resolver/ResolverImpl$EnhancedExecutor$1 +instanceKlass java/util/concurrent/FutureTask$WaitNode +instanceKlass java/util/concurrent/FutureTask +instanceKlass java/util/concurrent/RunnableFuture +instanceKlass java/util/concurrent/Future +instanceKlass org/apache/felix/resolver/ResolverImpl$1Computer +instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node +instanceKlass org/apache/felix/resolver/ResolverImpl$EnhancedExecutor +instanceKlass org/apache/felix/resolver/WrappedResource +instanceKlass java/util/ArrayList$SubList$1 +instanceKlass org/apache/felix/resolver/util/OpenHashMap$1 +instanceKlass org/apache/felix/resolver/util/CopyOnWriteSet +instanceKlass org/apache/felix/resolver/util/CandidateSelector +instanceKlass org/apache/felix/resolver/util/OpenHashMap$MapEntry +instanceKlass org/apache/felix/resolver/util/OpenHashMap$MapIterator +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$Parser +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl +instanceKlass org/apache/felix/resolver/Candidates$PopulateResult +instanceKlass java/lang/StrictMath +instanceKlass org/osgi/service/resolver/HostedCapability +instanceKlass org/apache/felix/resolver/Candidates +instanceKlass org/apache/felix/resolver/Util +instanceKlass org/apache/felix/resolver/ResolverImpl$ResolveSession +instanceKlass org/apache/felix/resolver/util/OpenHashMap +instanceKlass org/apache/felix/resolver/ResolutionError +instanceKlass org/osgi/resource/Wire +instanceKlass org/apache/felix/resolver/ResolverImpl +instanceKlass org/osgi/service/resolver/Resolver +instanceKlass java/util/LinkedList$ListItr +instanceKlass java/util/LinkedList$Node +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory$CoreResolverHook +instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Listener +instanceKlass org/eclipse/osgi/container/ModuleResolutionReport$Builder +instanceKlass org/apache/felix/resolver/Logger +instanceKlass org/osgi/service/resolver/ResolveContext +instanceKlass org/eclipse/osgi/container/ModuleDatabase$1 +instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLock$Permits +instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry +instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1 +instanceKlass org/eclipse/osgi/internal/container/Capabilities$NamespaceSet +instanceKlass org/eclipse/osgi/container/ModuleRevision$2 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$8 +instanceKlass java/util/AbstractMap$SimpleImmutableEntry +instanceKlass org/eclipse/osgi/container/ModuleCapability +instanceKlass org/osgi/framework/wiring/BundleCapability +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$3 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$2 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$1 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList +instanceKlass org/eclipse/osgi/container/ModuleRevision$1 +instanceKlass org/osgi/framework/wiring/BundleWiring +instanceKlass org/osgi/resource/Wiring +instanceKlass org/eclipse/osgi/container/ModuleRevision +instanceKlass org/eclipse/osgi/container/ModuleRevisions +instanceKlass org/osgi/framework/wiring/BundleRevisions +instanceKlass org/lombokweb/asm/Opcodes +instanceKlass org/lombokweb/asm/Handler +instanceKlass lombok/patcher/MethodLogistics +instanceKlass org/lombokweb/asm/Label +instanceKlass org/lombokweb/asm/Type +instanceKlass org/lombokweb/asm/Frame +instanceKlass org/lombokweb/asm/Context +instanceKlass org/lombokweb/asm/Attribute +instanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$1 +instanceKlass org/lombokweb/asm/ByteVector +instanceKlass org/lombokweb/asm/Symbol +instanceKlass org/lombokweb/asm/SymbolTable +instanceKlass org/lombokweb/asm/MethodVisitor +instanceKlass org/lombokweb/asm/FieldVisitor +instanceKlass org/lombokweb/asm/ModuleVisitor +instanceKlass org/lombokweb/asm/AnnotationVisitor +instanceKlass org/lombokweb/asm/RecordComponentVisitor +instanceKlass org/lombokweb/asm/ClassReader +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle +instanceKlass org/osgi/resource/Capability +instanceKlass org/eclipse/osgi/container/ModuleRequirement +instanceKlass org/osgi/framework/wiring/BundleRequirement +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$2 +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$CaseInsensitiveKey +instanceKlass org/eclipse/osgi/storage/bundlefile/BundleEntry +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo$1 +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder +instanceKlass org/eclipse/osgi/container/builders/OSGiManifestBuilderFactory +instanceKlass java/util/ComparableTimSort +instanceKlass java/lang/reflect/AnnotatedType +instanceKlass java/lang/reflect/TypeVariable +instanceKlass org/eclipse/osgi/storage/BundleInfo$Generation +instanceKlass org/eclipse/osgi/internal/container/LockSet$LockHolder +instanceKlass org/eclipse/osgi/storage/BundleInfo +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerWiring +instanceKlass org/eclipse/osgi/container/ModuleResolver +instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLock +instanceKlass org/eclipse/osgi/internal/container/LockSet +instanceKlass org/osgi/framework/wiring/FrameworkWiring +instanceKlass org/osgi/resource/Requirement +instanceKlass org/osgi/framework/startlevel/FrameworkStartLevel +instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport +instanceKlass org/eclipse/osgi/container/ModuleContainer +instanceKlass org/eclipse/osgi/internal/container/Capabilities +instanceKlass org/eclipse/osgi/container/Module +instanceKlass org/osgi/framework/startlevel/BundleStartLevel +instanceKlass org/eclipse/osgi/container/ModuleDatabase +instanceKlass java/util/concurrent/LinkedBlockingQueue$Node +instanceKlass java/util/concurrent/RejectedExecutionHandler +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1 +instanceKlass java/util/concurrent/SynchronousQueue$TransferStack$SNode +instanceKlass java/util/concurrent/ForkJoinPool$ManagedBlocker +instanceKlass java/util/concurrent/SynchronousQueue$Transferer +instanceKlass java/util/concurrent/atomic/AtomicReference +instanceKlass org/eclipse/osgi/internal/container/AtomicLazyInitializer +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$BundleCollisionHook +instanceKlass org/osgi/framework/ServiceReference +instanceKlass org/osgi/framework/hooks/resolver/ResolverHook +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory +instanceKlass org/osgi/framework/hooks/resolver/ResolverHookFactory +instanceKlass org/eclipse/osgi/container/ModuleCollisionHook +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$1 +instanceKlass java/util/concurrent/Callable +instanceKlass org/eclipse/osgi/container/ModuleLoader +instanceKlass java/util/concurrent/BlockingQueue +instanceKlass java/util/concurrent/Executor +instanceKlass org/eclipse/osgi/internal/permadmin/SecurityRow +instanceKlass org/eclipse/osgi/internal/permadmin/PermissionAdminTable +instanceKlass org/osgi/service/permissionadmin/PermissionInfo +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionInfo +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionUpdate +instanceKlass org/eclipse/osgi/internal/permadmin/SecurityAdmin +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionAdmin +instanceKlass org/osgi/service/permissionadmin/PermissionAdmin +instanceKlass org/eclipse/osgi/storage/PermissionData +instanceKlass java/lang/Shutdown$Lock +instanceKlass java/lang/Shutdown +instanceKlass java/io/DeleteOnExitHook$1 +instanceKlass java/io/DeleteOnExitHook +instanceKlass java/util/function/IntUnaryOperator +instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile +instanceKlass sun/nio/ch/FileKey +instanceKlass sun/nio/ch/FileLockTable +instanceKlass java/nio/channels/FileLock +instanceKlass org/eclipse/osgi/internal/location/Locker_JavaNio +instanceKlass org/eclipse/osgi/storagemanager/StorageManager +instanceKlass java/util/HashMap$HashMapSpliterator +instanceKlass java/lang/Long$LongCache +instanceKlass jdk/internal/vm/annotation/ForceInline +instanceKlass jdk/internal/reflect/UnsafeFieldAccessorFactory +instanceKlass sun/misc/Unsafe +instanceKlass org/eclipse/osgi/internal/url/MultiplexingFactory +instanceKlass org/eclipse/osgi/storage/FrameworkExtensionInstaller +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject +instanceKlass java/util/concurrent/locks/Condition +instanceKlass org/eclipse/osgi/storage/bundlefile/MRUBundleFileList +instanceKlass org/eclipse/osgi/framework/eventmgr/EventDispatcher +instanceKlass org/osgi/framework/Filter +instanceKlass org/eclipse/osgi/storage/bundlefile/BundleFile +instanceKlass org/eclipse/osgi/storage/ContentProvider +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor +instanceKlass org/eclipse/osgi/storage/Storage +instanceKlass org/eclipse/osgi/signedcontent/SignedContent +instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory$StorageHook +instanceKlass org/osgi/framework/BundleActivator +instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory +instanceKlass org/eclipse/osgi/internal/cds/CDSHookConfigurator +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook +instanceKlass org/eclipse/osgi/signedcontent/SignedContentFactory +instanceKlass org/eclipse/osgi/internal/hookregistry/ActivatorHookFactory +instanceKlass org/osgi/framework/wiring/BundleRevision +instanceKlass org/osgi/resource/Resource +instanceKlass org/eclipse/osgi/internal/connect/ConnectHookConfigurator +instanceKlass org/eclipse/osgi/internal/hookregistry/HookConfigurator +instanceKlass java/net/URLClassLoader$3$1 +instanceKlass java/net/URLClassLoader$3 +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$ConnectModules +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory$1 +instanceKlass org/eclipse/osgi/framework/log/FrameworkLog +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory +instanceKlass org/osgi/service/log/FormatterLogger +instanceKlass org/eclipse/osgi/internal/log/LoggerImpl +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceImpl +instanceKlass org/eclipse/osgi/internal/log/LogServiceManager$MockSystemBundle +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerAdmin +instanceKlass org/osgi/service/log/admin/LoggerContext +instanceKlass org/eclipse/osgi/internal/log/LoggerContextTargetMap +instanceKlass org/osgi/service/log/admin/LoggerAdmin +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory +instanceKlass org/eclipse/osgi/framework/util/ArrayMap +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock +instanceKlass java/util/concurrent/locks/ReadWriteLock +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory$1 +instanceKlass org/osgi/service/log/LogEntry +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory +instanceKlass org/osgi/framework/ServiceFactory +instanceKlass org/eclipse/equinox/log/ExtendedLogReaderService +instanceKlass org/osgi/service/log/LogReaderService +instanceKlass org/eclipse/equinox/log/ExtendedLogService +instanceKlass org/eclipse/equinox/log/Logger +instanceKlass org/osgi/service/log/Logger +instanceKlass org/osgi/service/log/LogService +instanceKlass org/osgi/service/log/LoggerFactory +instanceKlass org/eclipse/osgi/internal/log/LogServiceManager +instanceKlass org/osgi/framework/AllServiceListener +instanceKlass org/osgi/framework/ServiceListener +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogWriter +instanceKlass org/eclipse/equinox/log/LogFilter +instanceKlass org/eclipse/equinox/log/SynchronousLogListener +instanceKlass org/osgi/service/log/LogListener +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogServices +instanceKlass org/eclipse/osgi/util/ManifestElement +instanceKlass org/eclipse/osgi/internal/util/SupplementDebug +instanceKlass org/eclipse/osgi/internal/debug/Debug +instanceKlass org/eclipse/osgi/service/debug/DebugOptionsListener +instanceKlass org/eclipse/osgi/service/debug/DebugTrace +instanceKlass org/eclipse/osgi/internal/debug/FrameworkDebugOptions +instanceKlass org/osgi/util/tracker/ServiceTrackerCustomizer +instanceKlass java/nio/file/FileVisitor +instanceKlass org/eclipse/osgi/storage/StorageUtil +instanceKlass org/eclipse/osgi/internal/location/BasicLocation +instanceKlass org/eclipse/osgi/internal/location/EquinoxLocations +instanceKlass java/util/concurrent/atomic/AtomicBoolean +instanceKlass java/util/UUID +instanceKlass java/util/Random +instanceKlass java/util/random/RandomGenerator +instanceKlass org/eclipse/osgi/internal/container/InternalUtils +instanceKlass org/osgi/framework/Version +instanceKlass org/eclipse/osgi/internal/location/Locker +instanceKlass org/eclipse/osgi/internal/location/LocationHelper +instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration$ConfigValues +instanceKlass org/eclipse/osgi/internal/util/Tokenizer +instanceKlass java/nio/charset/CoderResult +instanceKlass sun/util/logging/PlatformLogger +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge$LoggerConfiguration +instanceKlass jdk/internal/logger/BootstrapLogger$RedirectedLoggers +instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerAccessor +instanceKlass jdk/internal/logger/LazyLoggers$LoggerAccessor +instanceKlass jdk/internal/logger/AbstractLoggerWrapper +instanceKlass java/util/ServiceLoader$ProviderImpl +instanceKlass java/util/ServiceLoader$Provider +instanceKlass java/util/ServiceLoader$1 +instanceKlass sun/util/logging/internal/LoggingProviderImpl$LogManagerAccess +instanceKlass java/util/concurrent/CopyOnWriteArrayList$COWIterator +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend$1 +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend +instanceKlass jdk/internal/logger/BootstrapLogger +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge +instanceKlass sun/util/logging/PlatformLogger$Bridge +instanceKlass jdk/internal/logger/DefaultLoggerFinder$1 +instanceKlass java/lang/System$LoggerFinder +instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerFactories +instanceKlass jdk/internal/logger/LazyLoggers$1 +instanceKlass jdk/internal/logger/LazyLoggers +instanceKlass jdk/internal/misc/ThreadTracker +instanceKlass jdk/internal/event/EventHelper$ThreadTrackHolder +instanceKlass java/net/URLClassLoader$2 +instanceKlass org/eclipse/osgi/internal/framework/AliasMapper +instanceKlass org/eclipse/osgi/framework/util/KeyedElement +instanceKlass org/eclipse/osgi/internal/hookregistry/ClassLoaderHook +instanceKlass org/eclipse/osgi/internal/hookregistry/HookRegistry +instanceKlass org/eclipse/osgi/service/datalocation/Location +instanceKlass org/eclipse/osgi/service/debug/DebugOptions +instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration +instanceKlass org/eclipse/osgi/service/environment/EnvironmentInfo +instanceKlass java/lang/annotation/Target +instanceKlass java/lang/reflect/Proxy$ProxyBuilder$1 +instanceKlass jdk/internal/org/objectweb/asm/Edge +instanceKlass java/lang/reflect/ProxyGenerator$PrimitiveTypeInfo +instanceKlass java/lang/reflect/ProxyGenerator$ProxyMethod +instanceKlass java/lang/module/ModuleDescriptor$Builder +instanceKlass java/lang/PublicMethods +instanceKlass java/lang/reflect/Proxy$ProxyBuilder +instanceKlass java/lang/reflect/Proxy +instanceKlass sun/reflect/annotation/AnnotationInvocationHandler +instanceKlass java/lang/reflect/InvocationHandler +instanceKlass sun/reflect/annotation/AnnotationParser$1 +instanceKlass sun/reflect/annotation/ExceptionProxy +instanceKlass java/lang/annotation/Inherited +instanceKlass java/lang/annotation/Retention +instanceKlass sun/reflect/annotation/AnnotationType$1 +instanceKlass sun/reflect/annotation/AnnotationType +instanceKlass java/lang/reflect/GenericArrayType +instanceKlass sun/reflect/generics/visitor/Reifier +instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor +instanceKlass sun/reflect/generics/factory/CoreReflectionFactory +instanceKlass sun/reflect/generics/factory/GenericsFactory +instanceKlass sun/reflect/generics/scope/AbstractScope +instanceKlass sun/reflect/generics/scope/Scope +instanceKlass sun/reflect/generics/tree/ClassTypeSignature +instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature +instanceKlass sun/reflect/generics/tree/FieldTypeSignature +instanceKlass sun/reflect/generics/tree/BaseType +instanceKlass sun/reflect/generics/tree/TypeSignature +instanceKlass sun/reflect/generics/tree/ReturnType +instanceKlass sun/reflect/generics/tree/TypeArgument +instanceKlass sun/reflect/generics/tree/TypeTree +instanceKlass sun/reflect/generics/tree/Tree +instanceKlass sun/reflect/generics/parser/SignatureParser +instanceKlass org/eclipse/osgi/framework/util/SecureAction$1 +instanceKlass org/eclipse/osgi/framework/util/SecureAction +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer +instanceKlass org/eclipse/osgi/launch/Equinox +instanceKlass java/util/EventObject +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$StartupEventListener +instanceKlass org/osgi/framework/FrameworkListener +instanceKlass org/osgi/framework/SynchronousBundleListener +instanceKlass java/util/concurrent/Semaphore +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$InitialBundle +instanceKlass org/osgi/framework/BundleContext +instanceKlass org/osgi/framework/BundleReference +instanceKlass org/osgi/framework/BundleListener +instanceKlass java/util/EventListener +instanceKlass org/osgi/framework/launch/Framework +instanceKlass org/osgi/framework/Bundle +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter +instanceKlass java/io/FilePermissionCollection$1 +instanceKlass sun/security/util/SecurityProperties +instanceKlass sun/security/util/FilePermCompat +instanceKlass java/io/FilePermission$1 +instanceKlass jdk/internal/access/JavaIOFilePermissionAccess +instanceKlass jdk/internal/reflect/ClassDefiner$1 +instanceKlass jdk/internal/reflect/ClassDefiner +instanceKlass jdk/internal/reflect/MethodAccessorGenerator$1 +instanceKlass jdk/internal/reflect/Label$PatchInfo +instanceKlass jdk/internal/reflect/Label +instanceKlass jdk/internal/reflect/UTF8 +instanceKlass jdk/internal/reflect/ClassFileAssembler +instanceKlass jdk/internal/reflect/ByteVectorImpl +instanceKlass jdk/internal/reflect/ByteVector +instanceKlass jdk/internal/reflect/ByteVectorFactory +instanceKlass jdk/internal/reflect/AccessorGenerator +instanceKlass jdk/internal/reflect/ClassFileConstants +instanceKlass java/net/URLClassLoader$1 +instanceKlass org/eclipse/equinox/launcher/Main$Identifier +instanceKlass java/nio/file/FileStore +instanceKlass sun/nio/fs/WindowsSecurity +instanceKlass sun/nio/fs/AbstractAclFileAttributeView +instanceKlass java/nio/file/attribute/AclFileAttributeView +instanceKlass java/nio/file/attribute/FileOwnerAttributeView +instanceKlass sun/nio/fs/WindowsLinkSupport +instanceKlass sun/nio/fs/WindowsFileSystemProvider$1 +instanceKlass org/eclipse/equinox/launcher/JNIBridge +instanceKlass sun/nio/ch/IOStatus +instanceKlass java/nio/DirectByteBuffer$Deallocator +instanceKlass sun/nio/ch/Util$BufferCache +instanceKlass sun/nio/ch/Util +instanceKlass sun/nio/ch/NativeThread +instanceKlass java/nio/channels/Channels +instanceKlass sun/nio/ch/FileChannelImpl$Closer +instanceKlass sun/nio/ch/NativeDispatcher +instanceKlass sun/nio/ch/NativeThreadSet +instanceKlass sun/nio/ch/IOUtil +instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel +instanceKlass java/nio/channels/InterruptibleChannel +instanceKlass java/nio/channels/ScatteringByteChannel +instanceKlass java/nio/channels/GatheringByteChannel +instanceKlass java/nio/channels/SeekableByteChannel +instanceKlass java/nio/channels/ByteChannel +instanceKlass java/nio/channels/WritableByteChannel +instanceKlass java/nio/channels/ReadableByteChannel +instanceKlass java/nio/channels/Channel +instanceKlass sun/nio/fs/WindowsChannelFactory$2 +instanceKlass sun/nio/fs/WindowsPath$1 +instanceKlass java/nio/file/Path$1 +instanceKlass sun/nio/fs/WindowsDirectoryStream +instanceKlass java/nio/file/DirectoryStream +instanceKlass sun/nio/fs/WindowsChannelFactory$Flags +instanceKlass sun/nio/fs/WindowsChannelFactory$1 +instanceKlass sun/nio/fs/WindowsChannelFactory +instanceKlass sun/nio/fs/WindowsSecurityDescriptor +instanceKlass java/nio/file/attribute/FileAttribute +instanceKlass java/io/RandomAccessFile$1 +instanceKlass sun/net/www/MimeEntry +instanceKlass java/util/Hashtable$Enumerator +instanceKlass java/util/Collections$SynchronizedCollection +instanceKlass java/util/Properties$EntrySet +instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder$1 +instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder +instanceKlass sun/net/www/MimeTable$1 +instanceKlass sun/net/www/MimeTable +instanceKlass java/net/URLConnection$1 +instanceKlass java/net/FileNameMap +instanceKlass java/util/Collections$3 +instanceKlass jdk/internal/loader/URLClassPath$1 +instanceKlass java/lang/CompoundEnumeration +instanceKlass jdk/internal/loader/BuiltinClassLoader$1 +instanceKlass java/util/Collections$EmptyEnumeration +instanceKlass java/util/ServiceLoader$3 +instanceKlass java/util/ServiceLoader$2 +instanceKlass java/util/ServiceLoader$LazyClassPathLookupIterator +instanceKlass java/util/Spliterators$1Adapter +instanceKlass java/util/Spliterators$ArraySpliterator +instanceKlass java/util/ServiceLoader$ModuleServicesLookupIterator +instanceKlass java/util/ServiceLoader +instanceKlass java/net/spi/URLStreamHandlerProvider +instanceKlass java/net/URL$1 +instanceKlass java/net/URL$2 +instanceKlass java/nio/file/attribute/PosixFilePermissions +instanceKlass java/security/Policy +instanceKlass org/eclipse/equinox/launcher/Main +instanceKlass sun/security/util/ManifestEntryVerifier$SunProviderHolder +instanceKlass java/util/Base64$Encoder +instanceKlass java/util/Base64$Decoder +instanceKlass java/util/Base64 +instanceKlass javax/crypto/SecretKey +instanceKlass sun/security/util/Length +instanceKlass sun/security/util/KeyUtil +instanceKlass java/security/interfaces/XECKey +instanceKlass java/security/interfaces/ECKey +instanceKlass sun/security/util/JarConstraintsParameters +instanceKlass sun/security/util/ConstraintsParameters +instanceKlass java/security/Timestamp +instanceKlass sun/security/timestamp/TimestampToken +instanceKlass java/security/cert/CertPath +instanceKlass java/math/MutableBigInteger +instanceKlass sun/security/rsa/RSAPadding +instanceKlass sun/security/rsa/RSACore +instanceKlass java/security/interfaces/RSAPrivateCrtKey +instanceKlass sun/security/pkcs/PKCS8Key +instanceKlass java/security/interfaces/RSAPrivateKey +instanceKlass java/security/PrivateKey +instanceKlass javax/security/auth/Destroyable +instanceKlass sun/security/jca/ServiceId +instanceKlass java/security/Signature$1 +instanceKlass jdk/internal/access/JavaSecuritySignatureAccess +instanceKlass java/security/SignatureSpi +instanceKlass jdk/internal/icu/util/CodePointTrie$Data +instanceKlass jdk/internal/icu/util/CodePointTrie$1 +instanceKlass jdk/internal/icu/util/CodePointMap +instanceKlass jdk/internal/icu/util/VersionInfo +instanceKlass jdk/internal/jimage/decompressor/ZipDecompressor +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorFactory +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorRepository +instanceKlass jdk/internal/jimage/decompressor/CompressedResourceHeader +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor$StringsProvider +instanceKlass java/util/TimSort +instanceKlass java/util/Arrays$LegacyMergeSort +instanceKlass java/util/AbstractMap$SimpleEntry +instanceKlass jdk/internal/jimage/ImageBufferCache$2 +instanceKlass jdk/internal/jimage/ImageBufferCache +instanceKlass jdk/internal/module/Checks +instanceKlass jdk/internal/icu/impl/ICUBinary$1 +instanceKlass jdk/internal/icu/impl/ICUBinary +instanceKlass jdk/internal/icu/impl/NormalizerImpl$IsAcceptable +instanceKlass jdk/internal/icu/impl/ICUBinary$Authenticate +instanceKlass jdk/internal/icu/impl/NormalizerImpl +instanceKlass jdk/internal/icu/impl/Norm2AllModes$Norm2AllModesSingleton +instanceKlass jdk/internal/icu/impl/Norm2AllModes$NFKCSingleton +instanceKlass jdk/internal/icu/impl/Norm2AllModes +instanceKlass jdk/internal/icu/text/Normalizer2 +instanceKlass jdk/internal/icu/text/NormalizerBase$ModeImpl +instanceKlass jdk/internal/icu/text/NormalizerBase$NFKDModeImpl +instanceKlass jdk/internal/icu/text/NormalizerBase$1 +instanceKlass jdk/internal/icu/text/NormalizerBase$Mode +instanceKlass jdk/internal/icu/text/NormalizerBase +instanceKlass java/text/Normalizer +instanceKlass sun/security/x509/AVAKeyword +instanceKlass java/util/StringJoiner +instanceKlass sun/security/util/SignatureUtil +instanceKlass java/lang/constant/DynamicConstantDesc +instanceKlass java/lang/constant/DirectMethodHandleDesc$1 +instanceKlass java/lang/constant/DirectMethodHandleDescImpl$1 +instanceKlass java/lang/constant/DirectMethodHandleDescImpl +instanceKlass java/lang/constant/DirectMethodHandleDesc +instanceKlass java/lang/constant/MethodHandleDesc$1 +instanceKlass java/lang/constant/MethodHandleDesc +instanceKlass java/lang/constant/MethodTypeDescImpl +instanceKlass java/lang/constant/MethodTypeDesc +instanceKlass java/lang/constant/ReferenceClassDescImpl +instanceKlass java/lang/constant/ConstantUtils +instanceKlass java/lang/constant/ClassDesc +instanceKlass java/lang/constant/ConstantDescs +instanceKlass java/lang/invoke/VarHandle$2 +instanceKlass java/lang/invoke/VarHandle$TypesAndInvokers +instanceKlass java/lang/invoke/VarHandle$AccessDescriptor +instanceKlass java/lang/invoke/VarHandleByteArrayBase +instanceKlass sun/security/provider/ByteArrayAccess$BE +instanceKlass sun/security/provider/ByteArrayAccess +instanceKlass sun/security/util/MessageDigestSpi2 +instanceKlass java/security/MessageDigestSpi +instanceKlass sun/security/pkcs/ESSCertId +instanceKlass sun/security/pkcs/SigningCertificateInfo +instanceKlass java/lang/Byte$ByteCache +instanceKlass sun/security/pkcs/PKCS9Attribute +instanceKlass sun/security/pkcs/PKCS9Attributes +instanceKlass java/time/Instant +instanceKlass java/time/zone/ZoneOffsetTransition +instanceKlass java/time/LocalTime +instanceKlass java/time/temporal/ValueRange +instanceKlass java/time/Duration +instanceKlass java/time/temporal/TemporalAmount +instanceKlass java/time/temporal/TemporalUnit +instanceKlass java/time/temporal/TemporalField +instanceKlass java/time/LocalDate +instanceKlass java/time/chrono/ChronoLocalDate +instanceKlass java/time/ZonedDateTime +instanceKlass java/time/chrono/ChronoZonedDateTime +instanceKlass java/time/LocalDateTime +instanceKlass java/time/chrono/ChronoLocalDateTime +instanceKlass java/time/temporal/Temporal +instanceKlass java/time/zone/ZoneOffsetTransitionRule +instanceKlass java/time/zone/ZoneRules +instanceKlass java/time/temporal/TemporalAdjuster +instanceKlass java/time/temporal/TemporalAccessor +instanceKlass java/time/ZoneId +instanceKlass java/util/regex/CharPredicates +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints$Holder +instanceKlass sun/security/util/DisabledAlgorithmConstraints$1 +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint +instanceKlass java/util/StringTokenizer +instanceKlass java/security/spec/ECFieldF2m +instanceKlass java/security/spec/ECParameterSpec +instanceKlass java/security/spec/ECPoint +instanceKlass java/security/spec/EllipticCurve +instanceKlass java/security/spec/ECFieldFp +instanceKlass java/security/spec/ECField +instanceKlass sun/security/util/CurveDB +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints +instanceKlass java/util/TreeMap$PrivateEntryIterator +instanceKlass java/util/NavigableSet +instanceKlass java/util/SortedSet +instanceKlass sun/security/util/AbstractAlgorithmConstraints$1 +instanceKlass sun/security/util/AlgorithmDecomposer +instanceKlass sun/security/util/DisabledAlgorithmConstraints$JarHolder +instanceKlass java/util/regex/ASCII +instanceKlass sun/security/util/AbstractAlgorithmConstraints +instanceKlass java/security/AlgorithmConstraints +instanceKlass sun/security/pkcs/SignerInfo +instanceKlass java/security/cert/PolicyQualifierInfo +instanceKlass sun/security/x509/CertificatePolicyId +instanceKlass sun/security/x509/PolicyInformation +instanceKlass sun/security/x509/DistributionPoint +instanceKlass sun/security/x509/DNSName +instanceKlass sun/security/x509/URIName +instanceKlass sun/security/x509/GeneralName +instanceKlass sun/security/x509/AccessDescription +instanceKlass sun/security/x509/GeneralNames +instanceKlass java/lang/invoke/VarForm +instanceKlass java/lang/invoke/VarHandleGuards +instanceKlass jdk/internal/util/Preconditions$1 +instanceKlass java/lang/invoke/VarHandle$1 +instanceKlass java/lang/ClassValue$Version +instanceKlass java/lang/ClassValue$Identity +instanceKlass java/lang/ClassValue +instanceKlass java/lang/invoke/VarHandles +instanceKlass java/lang/System$Logger +instanceKlass jdk/internal/event/EventHelper +instanceKlass sun/security/jca/JCAUtil +instanceKlass sun/security/util/MemoryCache$CacheEntry +instanceKlass sun/security/x509/X509AttributeName +instanceKlass sun/security/x509/KeyIdentifier +instanceKlass java/util/TreeMap$Entry +instanceKlass sun/security/x509/OIDMap$OIDInfo +instanceKlass sun/security/x509/PKIXExtensions +instanceKlass sun/security/x509/OIDMap +instanceKlass sun/security/x509/Extension +instanceKlass java/security/cert/Extension +instanceKlass java/util/Collections$SynchronizedMap +instanceKlass java/util/NavigableMap +instanceKlass java/util/SortedMap +instanceKlass sun/security/x509/CertificateExtensions +instanceKlass sun/security/rsa/RSAUtil +instanceKlass sun/security/util/IOUtils +instanceKlass java/security/interfaces/RSAPublicKey +instanceKlass java/security/interfaces/RSAKey +instanceKlass java/security/spec/PSSParameterSpec +instanceKlass java/security/spec/AlgorithmParameterSpec +instanceKlass java/security/spec/RSAPrivateKeySpec +instanceKlass java/security/spec/RSAPublicKeySpec +instanceKlass java/security/KeyFactorySpi +instanceKlass sun/security/rsa/SunRsaSignEntries +instanceKlass sun/security/jca/ProviderList$ServiceList$1 +instanceKlass java/security/KeyFactory +instanceKlass java/security/spec/EncodedKeySpec$1 +instanceKlass jdk/internal/access/JavaSecuritySpecAccess +instanceKlass java/security/spec/EncodedKeySpec +instanceKlass java/security/spec/KeySpec +instanceKlass sun/security/util/BitArray +instanceKlass sun/security/x509/X509Key +instanceKlass java/security/PublicKey +instanceKlass java/security/Key +instanceKlass sun/security/x509/CertificateX509Key +instanceKlass java/util/Date +instanceKlass sun/util/calendar/CalendarUtils +instanceKlass sun/util/calendar/CalendarDate +instanceKlass sun/util/calendar/CalendarSystem$GregorianHolder +instanceKlass sun/util/calendar/CalendarSystem +instanceKlass sun/security/x509/CertificateValidity +instanceKlass sun/security/x509/AVA +instanceKlass sun/security/x509/RDN +instanceKlass javax/security/auth/x500/X500Principal +instanceKlass sun/security/x509/X500Name$1 +instanceKlass sun/security/x509/X500Name +instanceKlass sun/security/x509/GeneralNameInterface +instanceKlass sun/security/x509/CertificateAlgorithmId +instanceKlass sun/security/x509/SerialNumber +instanceKlass sun/security/x509/CertificateSerialNumber +instanceKlass sun/security/x509/CertificateVersion +instanceKlass sun/security/x509/X509CertInfo +instanceKlass sun/security/x509/CertAttrSet +instanceKlass sun/security/util/Cache$EqualByteArray +instanceKlass java/security/cert/X509Extension +instanceKlass sun/security/jca/GetInstance$Instance +instanceKlass sun/security/util/Cache +instanceKlass jdk/internal/event/Event +instanceKlass sun/security/jca/GetInstance +instanceKlass java/security/cert/CertificateFactorySpi +instanceKlass java/security/cert/CertificateFactory +instanceKlass sun/security/x509/AlgorithmId +instanceKlass sun/security/util/ByteArrayTagOrder +instanceKlass sun/security/util/ByteArrayLexOrder +instanceKlass sun/security/util/DerEncoder +instanceKlass sun/security/util/DerValue +instanceKlass sun/security/util/ObjectIdentifier +instanceKlass sun/security/pkcs/ContentInfo +instanceKlass sun/security/util/DerInputStream +instanceKlass sun/security/pkcs/PKCS7 +instanceKlass java/util/Collections$EmptyIterator +instanceKlass java/util/LinkedHashMap$LinkedHashIterator +instanceKlass sun/security/util/SecurityProviderConstants +instanceKlass java/security/Provider$UString +instanceKlass java/security/Provider$Service +instanceKlass sun/security/provider/NativePRNG$NonBlocking +instanceKlass sun/security/provider/NativePRNG$Blocking +instanceKlass sun/security/provider/NativePRNG +instanceKlass sun/security/provider/SunEntries$1 +instanceKlass sun/security/provider/SunEntries +instanceKlass sun/security/util/SecurityConstants +instanceKlass java/security/Security$2 +instanceKlass jdk/internal/access/JavaSecurityPropertiesAccess +instanceKlass java/util/concurrent/ConcurrentHashMap$MapEntry +instanceKlass java/io/FileInputStream$1 +instanceKlass java/util/Properties$LineReader +instanceKlass java/security/Security$1 +instanceKlass java/security/Security +instanceKlass sun/security/jca/ProviderList$2 +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIConverter +instanceKlass jdk/internal/math/FloatingDecimal +instanceKlass javax/security/auth/login/Configuration$Parameters +instanceKlass java/security/Policy$Parameters +instanceKlass java/security/cert/CertStoreParameters +instanceKlass java/security/SecureRandomParameters +instanceKlass java/security/Provider$EngineDescription +instanceKlass java/security/Provider$ServiceKey +instanceKlass sun/security/jca/ProviderConfig +instanceKlass sun/security/jca/ProviderList +instanceKlass sun/security/jca/Providers +instanceKlass sun/security/util/ManifestDigester$Section +instanceKlass sun/security/util/ManifestDigester$Entry +instanceKlass sun/security/util/ManifestDigester$Position +instanceKlass sun/security/util/ManifestDigester +instanceKlass sun/security/util/ManifestEntryVerifier +instanceKlass java/security/CodeSigner +instanceKlass java/util/jar/JarVerifier +instanceKlass sun/nio/cs/SingleByte +instanceKlass sun/nio/cs/MS1252$Holder +instanceKlass java/nio/charset/CharsetDecoder +instanceKlass sun/nio/cs/ArrayDecoder +instanceKlass sun/launcher/LauncherHelper +instanceKlass lombok/patcher/scripts/ScriptBuilder$SetSymbolDuringMethodCallBuilder +instanceKlass lombok/patcher/scripts/ScriptBuilder$ReplaceMethodCallBuilder +instanceKlass lombok/eclipse/agent/EclipsePatcher$4 +instanceKlass lombok/eclipse/agent/EclipsePatcher$3 +instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapMethodCallBuilder +instanceKlass lombok/patcher/ScriptManager$WitnessAction +instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapReturnValueBuilder +instanceKlass lombok/patcher/ClassRootFinder +instanceKlass lombok/patcher/scripts/ScriptBuilder$AddFieldBuilder +instanceKlass java/util/Collections$1 +instanceKlass lombok/patcher/PatchScript$MethodPatcherFactory +instanceKlass org/lombokweb/asm/ClassVisitor +instanceKlass lombok/patcher/Hook +instanceKlass java/util/regex/Pattern$BitClass +instanceKlass lombok/patcher/MethodTarget +instanceKlass lombok/patcher/scripts/ScriptBuilder$ExitEarlyBuilder +instanceKlass lombok/patcher/scripts/ScriptBuilder +instanceKlass lombok/eclipse/agent/EclipseLoaderPatcher +instanceKlass lombok/eclipse/agent/EclipsePatcher$2 +instanceKlass lombok/eclipse/agent/EclipsePatcher$1 +instanceKlass java/lang/instrument/ClassDefinition +instanceKlass lombok/patcher/ScriptManager$OurClassFileTransformer +instanceKlass lombok/patcher/Filter$1 +instanceKlass lombok/patcher/TransplantMapper$1 +instanceKlass java/lang/instrument/ClassFileTransformer +instanceKlass lombok/patcher/ScriptManager +instanceKlass lombok/patcher/TransplantMapper +instanceKlass lombok/patcher/Filter +instanceKlass lombok/patcher/PatchScript +instanceKlass lombok/patcher/TargetMatcher +instanceKlass lombok/eclipse/agent/EclipsePatcher +instanceKlass lombok/core/AgentLauncher$AgentLaunchable +instanceKlass jdk/internal/misc/ScopedMemoryAccess$Scope +instanceKlass lombok/core/AgentLauncher$AgentInfo +instanceKlass lombok/core/AgentLauncher +instanceKlass java/util/IdentityHashMap$IdentityHashMapIterator +instanceKlass lombok/launch/ClassFileMetaData +instanceKlass sun/net/www/MessageHeader +instanceKlass sun/net/www/protocol/jar/JarFileFactory +instanceKlass sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController +instanceKlass java/net/URLConnection +instanceKlass java/util/zip/ZipFile$ZipEntryIterator +instanceKlass java/util/WeakHashMap$HashIterator +instanceKlass java/util/BitSet +instanceKlass java/net/URLEncoder +instanceKlass java/net/URLDecoder +instanceKlass java/util/regex/IntHashSet +instanceKlass java/util/regex/Matcher +instanceKlass java/util/regex/MatchResult +instanceKlass java/util/regex/Pattern$TreeInfo +instanceKlass java/util/regex/Pattern$BmpCharPredicate +instanceKlass java/util/regex/Pattern$CharPredicate +instanceKlass java/util/regex/Pattern$Node +instanceKlass java/util/regex/Pattern +instanceKlass jdk/internal/jimage/ImageLocation +instanceKlass jdk/internal/jimage/decompressor/Decompressor +instanceKlass jdk/internal/jimage/ImageStringsReader +instanceKlass jdk/internal/jimage/ImageStrings +instanceKlass jdk/internal/jimage/ImageHeader +instanceKlass jdk/internal/jimage/NativeImageBuffer$1 +instanceKlass jdk/internal/jimage/NativeImageBuffer +instanceKlass jdk/internal/jimage/BasicImageReader$1 +instanceKlass jdk/internal/jimage/BasicImageReader +instanceKlass jdk/internal/jimage/ImageReader +instanceKlass jdk/internal/jimage/ImageReaderFactory$1 +instanceKlass java/net/URI$Parser +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder$1 +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder +instanceKlass java/nio/file/FileSystems +instanceKlass java/nio/file/Paths +instanceKlass jdk/internal/jimage/ImageReaderFactory +instanceKlass jdk/internal/module/SystemModuleFinders$SystemImage +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleReader +instanceKlass java/lang/module/ModuleReader +instanceKlass jdk/internal/loader/BuiltinClassLoader$5 +instanceKlass jdk/internal/loader/BuiltinClassLoader$2 +instanceKlass jdk/internal/module/Resources +instanceKlass lombok/launch/PackageShader +instanceKlass java/io/Reader +instanceKlass java/lang/Readable +instanceKlass lombok/launch/Main +instanceKlass sun/instrument/InstrumentationImpl$1 +instanceKlass lombok/launch/Agent +instanceKlass java/security/SecureClassLoader$DebugHolder +instanceKlass java/security/PermissionCollection +instanceKlass java/security/SecureClassLoader$1 +instanceKlass java/security/SecureClassLoader$CodeSourceKey +instanceKlass java/util/zip/Checksum$1 +instanceKlass java/util/zip/CRC32 +instanceKlass java/util/zip/Checksum +instanceKlass sun/nio/ByteBuffered +instanceKlass java/lang/Package$VersionInfo +instanceKlass java/lang/NamedPackage +instanceKlass java/util/jar/Attributes$Name +instanceKlass java/util/jar/Attributes +instanceKlass jdk/internal/loader/Resource +instanceKlass sun/security/action/GetIntegerAction +instanceKlass sun/security/util/Debug +instanceKlass sun/security/util/SignatureFileVerifier +instanceKlass java/util/zip/ZipFile$InflaterCleanupAction +instanceKlass java/util/zip/Inflater$InflaterZStreamRef +instanceKlass java/util/zip/Inflater +instanceKlass java/util/zip/ZipEntry +instanceKlass java/lang/StringCoding +instanceKlass jdk/internal/util/jar/JarIndex +instanceKlass java/nio/Bits$1 +instanceKlass jdk/internal/misc/VM$BufferPool +instanceKlass java/nio/Bits +instanceKlass sun/nio/ch/DirectBuffer +instanceKlass jdk/internal/perf/PerfCounter$CoreCounters +instanceKlass jdk/internal/perf/Perf +instanceKlass jdk/internal/perf/Perf$GetPerfAction +instanceKlass jdk/internal/perf/PerfCounter +instanceKlass java/nio/file/attribute/FileTime +instanceKlass java/util/zip/ZipUtils +instanceKlass java/util/zip/ZipFile$Source$End +instanceKlass java/io/RandomAccessFile$2 +instanceKlass jdk/internal/access/JavaIORandomAccessFileAccess +instanceKlass java/io/RandomAccessFile +instanceKlass java/io/DataInput +instanceKlass java/io/DataOutput +instanceKlass sun/nio/fs/WindowsNativeDispatcher$CompletionStatus +instanceKlass sun/nio/fs/WindowsNativeDispatcher$AclInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$Account +instanceKlass sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace +instanceKlass sun/nio/fs/WindowsNativeDispatcher$VolumeInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstStream +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstFile +instanceKlass java/util/concurrent/ConcurrentHashMap$Traverser +instanceKlass java/util/Enumeration +instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView +instanceKlass sun/nio/fs/WindowsNativeDispatcher +instanceKlass sun/nio/fs/NativeBuffer$Deallocator +instanceKlass sun/nio/fs/NativeBuffer +instanceKlass java/lang/ThreadLocal$ThreadLocalMap +instanceKlass sun/nio/fs/NativeBuffers +instanceKlass sun/nio/fs/WindowsFileAttributes +instanceKlass java/nio/file/attribute/DosFileAttributes +instanceKlass sun/nio/fs/AbstractBasicFileAttributeView +instanceKlass sun/nio/fs/DynamicFileAttributeView +instanceKlass sun/nio/fs/WindowsFileAttributeViews +instanceKlass java/lang/Class$1 +instanceKlass sun/nio/fs/Util +instanceKlass java/nio/file/attribute/BasicFileAttributeView +instanceKlass java/nio/file/attribute/FileAttributeView +instanceKlass java/nio/file/attribute/AttributeView +instanceKlass java/nio/file/Files +instanceKlass java/nio/file/CopyOption +instanceKlass java/nio/file/attribute/BasicFileAttributes +instanceKlass sun/nio/fs/WindowsPath +instanceKlass java/util/zip/ZipFile$Source$Key +instanceKlass sun/nio/fs/WindowsPathParser$Result +instanceKlass sun/nio/fs/WindowsPathParser +instanceKlass java/util/Arrays$ArrayItr +instanceKlass java/nio/file/FileSystem +instanceKlass java/nio/file/OpenOption +instanceKlass java/nio/file/spi/FileSystemProvider +instanceKlass sun/nio/fs/DefaultFileSystemProvider +instanceKlass java/util/zip/ZipFile$Source +instanceKlass java/util/zip/ZipCoder +instanceKlass java/util/zip/ZipFile$CleanableResource +instanceKlass java/lang/Runtime$Version +instanceKlass java/util/jar/JavaUtilJarAccessImpl +instanceKlass jdk/internal/access/JavaUtilJarAccess +instanceKlass jdk/internal/loader/FileURLMapper +instanceKlass jdk/internal/loader/URLClassPath$JarLoader$1 +instanceKlass java/util/zip/ZipFile$1 +instanceKlass jdk/internal/access/JavaUtilZipFileAccess +instanceKlass java/util/zip/ZipFile +instanceKlass java/util/zip/ZipConstants +instanceKlass jdk/internal/loader/URLClassPath$Loader +instanceKlass jdk/internal/loader/URLClassPath$3 +instanceKlass java/security/PrivilegedExceptionAction +instanceKlass sun/util/locale/LocaleUtils +instanceKlass sun/util/locale/BaseLocale +instanceKlass java/util/Locale +instanceKlass sun/net/util/URLUtil +instanceKlass sun/instrument/TransformerManager$TransformerInfo +instanceKlass sun/instrument/TransformerManager +instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryImpl +instanceKlass jdk/internal/loader/NativeLibrary +instanceKlass java/util/ArrayDeque$DeqIterator +instanceKlass jdk/internal/loader/NativeLibraries$1 +instanceKlass jdk/internal/loader/NativeLibraries$LibraryPaths +instanceKlass sun/instrument/InstrumentationImpl +instanceKlass java/lang/instrument/Instrumentation +instanceKlass java/lang/invoke/StringConcatFactory$3 +instanceKlass java/lang/invoke/StringConcatFactory$2 +instanceKlass java/lang/invoke/StringConcatFactory$1 +instanceKlass java/lang/invoke/StringConcatFactory +instanceKlass jdk/internal/module/ModuleBootstrap$SafeModuleFinder +instanceKlass java/lang/ModuleLayer$Controller +instanceKlass java/util/concurrent/CopyOnWriteArrayList +instanceKlass jdk/internal/module/ServicesCatalog$ServiceProvider +instanceKlass jdk/internal/loader/AbstractClassLoaderValue$Memoizer +instanceKlass jdk/internal/module/ModuleLoaderMap$Modules +instanceKlass jdk/internal/module/ModuleLoaderMap$Mapper +instanceKlass jdk/internal/module/ModuleLoaderMap +instanceKlass java/lang/module/ResolvedModule +instanceKlass java/util/Collections$UnmodifiableCollection$1 +instanceKlass java/lang/ModuleLayer +instanceKlass java/util/ImmutableCollections$ListItr +instanceKlass java/util/ListIterator +instanceKlass java/lang/module/ModuleFinder$1 +instanceKlass java/nio/file/Path +instanceKlass java/nio/file/Watchable +instanceKlass java/lang/module/Resolver +instanceKlass java/lang/module/Configuration +instanceKlass java/util/stream/ForEachOps$ForEachOp +instanceKlass java/util/stream/ForEachOps +instanceKlass java/util/stream/FindOps$FindOp +instanceKlass java/util/stream/FindOps$FindSink +instanceKlass java/util/stream/FindOps +instanceKlass java/util/stream/Sink$ChainedReference +instanceKlass java/util/stream/ReduceOps$Box +instanceKlass java/util/stream/ReduceOps$AccumulatingSink +instanceKlass java/util/stream/TerminalSink +instanceKlass java/util/stream/Sink +instanceKlass java/util/function/Consumer +instanceKlass java/util/stream/ReduceOps$ReduceOp +instanceKlass java/util/stream/TerminalOp +instanceKlass java/util/stream/ReduceOps +instanceKlass java/util/function/BinaryOperator +instanceKlass java/util/function/BiFunction +instanceKlass java/util/function/BiConsumer +instanceKlass java/util/stream/Collectors$CollectorImpl +instanceKlass java/util/stream/Collector +instanceKlass java/util/Collections$UnmodifiableCollection +instanceKlass java/util/stream/Collectors +instanceKlass java/lang/ref/Cleaner$Cleanable +instanceKlass jdk/internal/ref/CleanerImpl +instanceKlass java/lang/ref/Cleaner$1 +instanceKlass java/lang/ref/Cleaner +instanceKlass jdk/internal/ref/CleanerFactory$1 +instanceKlass java/util/concurrent/ThreadFactory +instanceKlass jdk/internal/ref/CleanerFactory +instanceKlass jdk/internal/org/objectweb/asm/FieldVisitor +instanceKlass java/util/ArrayList$Itr +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$ClassData +instanceKlass jdk/internal/org/objectweb/asm/Frame +instanceKlass java/lang/invoke/LambdaFormBuffer +instanceKlass java/lang/invoke/LambdaFormEditor$TransformKey +instanceKlass java/lang/invoke/LambdaFormEditor +instanceKlass sun/invoke/util/Wrapper$1 +instanceKlass java/lang/invoke/DelegatingMethodHandle$Holder +instanceKlass java/lang/invoke/DirectMethodHandle$2 +instanceKlass sun/invoke/empty/Empty +instanceKlass sun/invoke/util/VerifyType +instanceKlass java/lang/invoke/ClassSpecializer$Factory +instanceKlass java/lang/invoke/ClassSpecializer$SpeciesData +instanceKlass java/lang/invoke/ClassSpecializer$1 +instanceKlass java/util/function/Function +instanceKlass java/lang/invoke/ClassSpecializer +instanceKlass java/lang/invoke/InnerClassLambdaMetafactory$1 +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassDefiner +instanceKlass jdk/internal/org/objectweb/asm/ClassReader +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassFile +instanceKlass jdk/internal/org/objectweb/asm/AnnotationVisitor +instanceKlass jdk/internal/org/objectweb/asm/Attribute +instanceKlass jdk/internal/org/objectweb/asm/Handler +instanceKlass jdk/internal/org/objectweb/asm/Label +instanceKlass jdk/internal/org/objectweb/asm/MethodVisitor +instanceKlass java/lang/invoke/LambdaProxyClassArchive +instanceKlass jdk/internal/org/objectweb/asm/ByteVector +instanceKlass jdk/internal/org/objectweb/asm/Symbol +instanceKlass jdk/internal/org/objectweb/asm/SymbolTable +instanceKlass jdk/internal/org/objectweb/asm/ClassVisitor +instanceKlass java/lang/invoke/InfoFromMemberName +instanceKlass java/lang/invoke/MethodHandleInfo +instanceKlass jdk/internal/org/objectweb/asm/ConstantDynamic +instanceKlass sun/invoke/util/BytecodeDescriptor +instanceKlass jdk/internal/org/objectweb/asm/Handle +instanceKlass sun/security/action/GetBooleanAction +instanceKlass jdk/internal/org/objectweb/asm/Type +instanceKlass java/lang/invoke/AbstractValidatingLambdaMetafactory +instanceKlass java/lang/invoke/MethodHandleImpl$1 +instanceKlass jdk/internal/access/JavaLangInvokeAccess +instanceKlass java/lang/invoke/Invokers$Holder +instanceKlass java/lang/invoke/BootstrapMethodInvoker +instanceKlass java/util/function/Predicate +instanceKlass java/lang/WeakPairMap$Pair$Lookup +instanceKlass java/lang/WeakPairMap$Pair +instanceKlass java/lang/WeakPairMap +instanceKlass java/lang/Module$ReflectionData +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$2 +instanceKlass java/lang/invoke/InvokerBytecodeGenerator +instanceKlass java/lang/invoke/LambdaForm$Holder +instanceKlass java/lang/invoke/LambdaForm$Name +instanceKlass java/lang/reflect/Array +instanceKlass java/lang/invoke/Invokers +instanceKlass java/lang/invoke/MethodHandleImpl +instanceKlass sun/invoke/util/ValueConversions +instanceKlass java/lang/invoke/DirectMethodHandle$Holder +instanceKlass java/lang/invoke/LambdaForm$NamedFunction +instanceKlass sun/invoke/util/Wrapper$Format +instanceKlass java/lang/invoke/MethodTypeForm +instanceKlass java/lang/Void +instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet +instanceKlass java/lang/invoke/LambdaMetafactory +instanceKlass sun/reflect/annotation/AnnotationParser +instanceKlass java/lang/Class$3 +instanceKlass java/lang/PublicMethods$Key +instanceKlass java/lang/PublicMethods$MethodList +instanceKlass java/lang/Class$Atomic +instanceKlass java/lang/Class$ReflectionData +instanceKlass java/util/EnumMap$1 +instanceKlass java/util/stream/StreamOpFlag$MaskBuilder +instanceKlass java/util/stream/PipelineHelper +instanceKlass java/util/stream/Stream +instanceKlass java/util/stream/BaseStream +instanceKlass java/util/stream/StreamSupport +instanceKlass java/util/Spliterators$IteratorSpliterator +instanceKlass java/util/Spliterator$OfDouble +instanceKlass java/util/Spliterator$OfLong +instanceKlass java/util/Spliterator$OfInt +instanceKlass java/util/Spliterator$OfPrimitive +instanceKlass java/util/Spliterators$EmptySpliterator +instanceKlass java/util/Spliterator +instanceKlass java/util/Spliterators +instanceKlass jdk/internal/module/DefaultRoots +instanceKlass jdk/internal/loader/BuiltinClassLoader$LoadedModule +instanceKlass jdk/internal/loader/AbstractClassLoaderValue +instanceKlass jdk/internal/module/ServicesCatalog +instanceKlass jdk/internal/util/Preconditions +instanceKlass sun/net/util/IPAddressUtil +instanceKlass java/net/URLStreamHandler +instanceKlass java/lang/StringUTF16 +instanceKlass java/util/HexFormat +instanceKlass sun/net/www/ParseUtil +instanceKlass java/net/URL$3 +instanceKlass jdk/internal/access/JavaNetURLAccess +instanceKlass java/net/URL$DefaultFactory +instanceKlass java/net/URLStreamHandlerFactory +instanceKlass jdk/internal/loader/URLClassPath +instanceKlass java/security/Principal +instanceKlass java/security/ProtectionDomain$Key +instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl +instanceKlass jdk/internal/access/JavaSecurityAccess +instanceKlass java/lang/ClassLoader$ParallelLoaders +instanceKlass java/security/cert/Certificate +instanceKlass jdk/internal/loader/ArchivedClassLoaders +instanceKlass java/util/Deque +instanceKlass java/util/Queue +instanceKlass jdk/internal/loader/ClassLoaderHelper +instanceKlass jdk/internal/loader/NativeLibraries +instanceKlass jdk/internal/loader/BootLoader +instanceKlass java/util/Optional +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleFinder +instanceKlass java/lang/module/ModuleFinder +instanceKlass jdk/internal/module/SystemModuleFinders$3 +instanceKlass jdk/internal/module/ModuleHashes$HashSupplier +instanceKlass jdk/internal/module/SystemModuleFinders$2 +instanceKlass java/util/function/Supplier +instanceKlass java/lang/module/ModuleReference +instanceKlass jdk/internal/module/ModuleResolution +instanceKlass java/util/Collections$UnmodifiableMap +instanceKlass jdk/internal/module/ModuleHashes$Builder +instanceKlass jdk/internal/module/ModuleHashes +instanceKlass jdk/internal/module/ModuleTarget +instanceKlass java/util/ImmutableCollections$Set12$1 +instanceKlass java/lang/Enum +instanceKlass java/lang/module/ModuleDescriptor$Version +instanceKlass java/lang/module/ModuleDescriptor$Provides +instanceKlass java/lang/module/ModuleDescriptor$Opens +instanceKlass java/util/ImmutableCollections$SetN$SetNIterator +instanceKlass java/lang/module/ModuleDescriptor$Exports +instanceKlass java/lang/module/ModuleDescriptor$Requires +instanceKlass jdk/internal/module/Builder +instanceKlass jdk/internal/module/SystemModules$all +instanceKlass jdk/internal/module/SystemModules +instanceKlass jdk/internal/module/SystemModulesMap +instanceKlass java/net/URI$1 +instanceKlass jdk/internal/access/JavaNetUriAccess +instanceKlass java/net/URI +instanceKlass jdk/internal/module/SystemModuleFinders +instanceKlass jdk/internal/module/ArchivedModuleGraph +instanceKlass jdk/internal/module/ArchivedBootLayer +instanceKlass jdk/internal/module/ModuleBootstrap$Counters +instanceKlass jdk/internal/module/ModulePatcher +instanceKlass jdk/internal/util/ArraysSupport +instanceKlass java/io/FileSystem +instanceKlass java/io/DefaultFileSystem +instanceKlass java/io/File +instanceKlass java/lang/module/ModuleDescriptor$1 +instanceKlass jdk/internal/access/JavaLangModuleAccess +instanceKlass java/lang/reflect/Modifier +instanceKlass sun/invoke/util/VerifyAccess +instanceKlass java/lang/module/ModuleDescriptor +instanceKlass jdk/internal/module/ModuleBootstrap +instanceKlass java/lang/invoke/MethodHandleStatics +instanceKlass java/util/Collections +instanceKlass sun/io/Win32ErrorMode +instanceKlass jdk/internal/misc/OSEnvironment +instanceKlass jdk/internal/misc/Signal$NativeHandler +instanceKlass java/util/Hashtable$Entry +instanceKlass jdk/internal/misc/Signal +instanceKlass java/lang/Terminator$1 +instanceKlass jdk/internal/misc/Signal$Handler +instanceKlass java/lang/Terminator +instanceKlass java/nio/ByteOrder +instanceKlass java/nio/Buffer$1 +instanceKlass jdk/internal/access/JavaNioAccess +instanceKlass jdk/internal/misc/ScopedMemoryAccess +instanceKlass java/nio/charset/CodingErrorAction +instanceKlass java/nio/charset/CharsetEncoder +instanceKlass java/nio/charset/StandardCharsets +instanceKlass sun/nio/cs/HistoricallyNamedCharset +instanceKlass sun/security/action/GetPropertyAction +instanceKlass java/lang/ThreadLocal +instanceKlass java/nio/charset/spi/CharsetProvider +instanceKlass java/nio/charset/Charset +instanceKlass java/io/Writer +instanceKlass java/io/OutputStream +instanceKlass java/io/Flushable +instanceKlass java/io/FileDescriptor$1 +instanceKlass jdk/internal/access/JavaIOFileDescriptorAccess +instanceKlass java/io/FileDescriptor +instanceKlass jdk/internal/util/StaticProperty +instanceKlass java/util/HashMap$HashIterator +instanceKlass java/lang/Integer$IntegerCache +instanceKlass java/lang/CharacterData +instanceKlass java/util/Arrays +instanceKlass java/lang/VersionProps +instanceKlass java/lang/StringConcatHelper +instanceKlass jdk/internal/util/SystemProps$Raw +instanceKlass jdk/internal/util/SystemProps +instanceKlass java/lang/System$2 +instanceKlass jdk/internal/access/JavaLangAccess +instanceKlass jdk/internal/misc/VM +instanceKlass java/lang/ref/Reference$1 +instanceKlass jdk/internal/access/JavaLangRefAccess +instanceKlass java/lang/ref/ReferenceQueue$Lock +instanceKlass java/lang/ref/ReferenceQueue +instanceKlass jdk/internal/reflect/ReflectionFactory +instanceKlass jdk/internal/reflect/ReflectionFactory$GetReflectionFactoryAction +instanceKlass java/security/PrivilegedAction +instanceKlass java/util/concurrent/locks/LockSupport +instanceKlass java/util/concurrent/ConcurrentHashMap$Node +instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell +instanceKlass java/util/concurrent/locks/ReentrantLock +instanceKlass java/util/concurrent/locks/Lock +instanceKlass java/lang/Runtime +instanceKlass java/util/HashMap$Node +instanceKlass java/util/KeyValueHolder +instanceKlass java/util/Map$Entry +instanceKlass java/util/ImmutableCollections$MapN$MapNIterator +instanceKlass java/lang/Math +instanceKlass jdk/internal/reflect/Reflection +instanceKlass java/lang/invoke/MethodHandles$Lookup +instanceKlass java/lang/StringLatin1 +instanceKlass java/security/Permission +instanceKlass java/security/Guard +instanceKlass java/lang/invoke/MemberName$Factory +instanceKlass java/lang/invoke/MethodHandles +instanceKlass jdk/internal/access/SharedSecrets +instanceKlass java/lang/reflect/ReflectAccess +instanceKlass jdk/internal/access/JavaLangReflectAccess +instanceKlass java/util/ImmutableCollections +instanceKlass java/util/Objects +instanceKlass java/util/Set +instanceKlass jdk/internal/misc/CDS +instanceKlass java/lang/Module$ArchivedData +instanceKlass java/lang/String$CaseInsensitiveComparator +instanceKlass java/util/Comparator +instanceKlass java/io/ObjectStreamField +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload +instanceKlass jdk/internal/vm/vector/VectorSupport +instanceKlass java/lang/reflect/RecordComponent +instanceKlass java/util/Iterator +instanceKlass java/lang/Number +instanceKlass java/lang/Character +instanceKlass java/lang/Boolean +instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer +instanceKlass java/lang/LiveStackFrame +instanceKlass java/lang/StackFrameInfo +instanceKlass java/lang/StackWalker$StackFrame +instanceKlass java/lang/StackStreamFactory$AbstractStackWalker +instanceKlass java/lang/StackWalker +instanceKlass java/nio/Buffer +instanceKlass java/lang/StackTraceElement +instanceKlass java/util/AbstractCollection +instanceKlass java/util/RandomAccess +instanceKlass java/util/List +instanceKlass java/util/Collection +instanceKlass java/lang/Iterable +instanceKlass java/util/AbstractMap +instanceKlass java/util/concurrent/ConcurrentMap +instanceKlass java/security/CodeSource +instanceKlass jdk/internal/loader/ClassLoaders +instanceKlass java/util/jar/Manifest +instanceKlass java/net/URL +instanceKlass java/io/InputStream +instanceKlass java/io/Closeable +instanceKlass java/lang/AutoCloseable +instanceKlass jdk/internal/module/Modules +instanceKlass jdk/internal/misc/Unsafe +instanceKlass jdk/internal/misc/UnsafeConstants +instanceKlass java/lang/AbstractStringBuilder +instanceKlass java/lang/Appendable +instanceKlass java/lang/AssertionStatusDirectives +instanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext +instanceKlass jdk/internal/invoke/NativeEntryPoint +instanceKlass java/lang/invoke/CallSite +instanceKlass java/lang/invoke/MethodType +instanceKlass java/lang/invoke/TypeDescriptor$OfMethod +instanceKlass java/lang/invoke/LambdaForm +instanceKlass java/lang/invoke/MethodHandleNatives +instanceKlass java/lang/invoke/ResolvedMethodName +instanceKlass java/lang/invoke/MemberName +instanceKlass java/lang/invoke/VarHandle +instanceKlass java/lang/invoke/MethodHandle +instanceKlass jdk/internal/reflect/CallerSensitive +instanceKlass java/lang/annotation/Annotation +instanceKlass jdk/internal/reflect/FieldAccessor +instanceKlass jdk/internal/reflect/ConstantPool +instanceKlass jdk/internal/reflect/ConstructorAccessor +instanceKlass jdk/internal/reflect/MethodAccessor +instanceKlass jdk/internal/reflect/MagicAccessorImpl +instanceKlass java/lang/reflect/Parameter +instanceKlass java/lang/reflect/Member +instanceKlass java/lang/reflect/AccessibleObject +instanceKlass java/lang/Module +instanceKlass java/util/Dictionary +instanceKlass java/util/Map +instanceKlass java/lang/ThreadGroup +instanceKlass java/lang/Thread$UncaughtExceptionHandler +instanceKlass java/lang/Thread +instanceKlass java/lang/Runnable +instanceKlass java/lang/ref/Reference +instanceKlass java/lang/Record +instanceKlass java/security/AccessController +instanceKlass java/security/AccessControlContext +instanceKlass java/security/ProtectionDomain +instanceKlass java/lang/SecurityManager +instanceKlass java/lang/Throwable +instanceKlass java/lang/System +instanceKlass java/lang/ClassLoader +instanceKlass java/lang/Cloneable +instanceKlass java/lang/Class +instanceKlass java/lang/invoke/TypeDescriptor$OfField +instanceKlass java/lang/invoke/TypeDescriptor +instanceKlass java/lang/reflect/Type +instanceKlass java/lang/reflect/GenericDeclaration +instanceKlass java/lang/reflect/AnnotatedElement +instanceKlass java/lang/String +instanceKlass java/lang/constant/ConstantDesc +instanceKlass java/lang/constant/Constable +instanceKlass java/lang/CharSequence +instanceKlass java/lang/Comparable +instanceKlass java/io/Serializable +ciInstanceKlass java/lang/Object 1 1 79 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 7 12 10 12 10 1 7 1 12 10 1 1 12 10 1 8 12 10 1 7 1 1 12 10 12 10 1 1 1 1 7 1 12 10 1 1 100 1 8 1 12 10 3 1 8 5 0 1 1 7 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/io/Serializable 1 0 5 1 100 1 100 +ciInstanceKlass java/lang/String 1 1 1202 1 7 1 1 7 1 100 1 100 1 7 1 100 1 100 1 7 1 7 1 7 1 1 7 1 7 1 100 1 100 1 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 1 1 1 3 1 3 1 1 12 10 1 8 12 9 12 9 1 1 12 9 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 100 12 9 1 1 12 10 10 1 1 1 1 100 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 100 1 1 12 10 1 12 10 1 100 1 7 1 1 12 10 1 7 1 7 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 12 9 12 10 1 7 1 12 9 1 1 12 10 1 7 1 1 12 11 1 100 1 12 11 1 1 12 11 1 1 12 10 1 1 12 10 1 100 1 1 12 9 1 1 12 10 1 12 10 1 1 12 11 1 1 12 10 1 100 12 10 1 1 12 10 1 100 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 100 1 12 10 1 1 1 12 10 1 1 1 100 1 12 10 1 1 12 10 1 100 1 100 12 10 1 1 12 10 10 1 1 1 100 1 100 1 12 10 12 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 1 12 10 1 100 11 1 12 11 1 12 11 12 10 1 12 10 12 10 1 1 12 10 10 1 100 1 1 12 10 1 100 1 12 10 1 12 10 1 100 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 1 1 1 1 12 10 1 100 12 10 12 10 1 12 10 1 1 12 10 1 100 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 1 1 3 1 1 3 1 12 10 12 10 1 1 12 10 12 10 1 12 10 12 10 12 10 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 12 10 12 10 1 12 10 1 12 10 1 12 10 10 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 1 12 10 12 10 1 12 10 1 8 10 1 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 12 10 1 1 100 10 10 1 1 12 10 1 1 1 1 12 10 12 10 10 1 1 1 12 10 1 12 10 1 12 10 1 100 10 12 10 1 1 1 100 10 12 10 1 1 12 10 1 1 1 12 10 1 12 10 10 1 1 1 12 10 10 1 100 10 12 10 1 1 1 1 12 10 1 1 1 12 10 1 1 1 7 10 1 12 10 1 12 10 1 12 10 12 10 12 10 11 12 11 1 12 10 1 1 1 1 12 10 1 1 1 12 10 10 1 12 10 1 12 10 1 12 9 1 7 1 1 12 11 1 10 12 10 1 1 12 10 10 1 12 10 1 12 10 1 1 12 10 1 1 12 9 1 12 10 10 1 12 10 12 10 10 1 12 10 12 10 10 12 10 10 1 12 10 1 1 12 10 12 10 10 12 10 12 10 12 10 12 10 10 1 12 10 1 1 1 12 10 1 12 10 10 1 1 1 1 12 10 1 7 1 1 12 10 1 1 1 12 10 10 1 1 7 1 12 10 1 11 12 10 1 1 1 1 12 10 1 1 12 10 1 7 12 10 1 12 10 1 1 100 10 12 10 1 12 10 1 12 10 1 100 1 12 10 1 12 10 1 100 1 8 10 10 1 12 10 1 1 1 8 12 10 3 3 1 7 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 7 1 1 12 11 1 7 1 12 10 1 12 10 1 1 1 1 12 10 1 12 10 1 1 8 1 1 12 10 1 12 10 1 1 1 7 1 1 12 11 1 7 1 12 11 1 1 12 11 1 12 10 1 1 1 12 10 10 1 7 1 1 12 10 12 10 1 12 10 10 12 10 1 1 12 10 10 1 12 10 10 1 12 10 10 1 12 10 10 1 1 12 10 1 1 1 1 12 10 10 1 100 1 12 10 1 8 1 12 10 16 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 1 12 11 3 1 12 10 15 1 12 18 1 1 12 10 15 1 12 18 1 8 1 100 1 1 12 10 1 1 12 11 12 10 10 1 12 10 10 1 1 1 12 11 1 1 12 10 1 12 11 1 12 10 15 18 1 3 11 1 7 1 12 10 11 11 12 10 1 1 1 12 10 1 8 1 12 10 1 12 10 1 1 12 10 10 12 10 1 1 1 1 100 12 11 1 1 12 10 10 1 7 1 1 12 10 1 10 1 7 10 1 12 10 10 1 1 12 10 1 1 1 8 10 1 12 10 1 1 1 1 8 1 8 1 1 12 10 1 12 10 10 12 10 1 1 7 12 10 1 1 7 12 10 1 1 100 12 10 1 1 8 1 12 10 1 1 12 10 1 1 100 10 12 10 1 8 1 8 10 1 1 8 1 8 1 8 1 8 1 1 12 10 1 12 10 1 8 1 1 1 1 100 1 1 12 10 1 1 1 12 10 1 1 100 12 10 12 10 10 12 10 12 10 1 1 7 12 9 10 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/String COMPACT_STRINGS Z 1 +staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator +ciInstanceKlass java/lang/Class 1 1 1462 1 7 1 1 7 1 100 1 7 1 100 1 100 1 100 1 100 1 7 1 7 1 7 1 100 1 7 1 100 1 7 1 1 1 1 7 1 7 1 1 7 1 7 1 1 1 7 1 7 1 1 100 1 1 100 1 100 1 1 100 1 100 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 1 1 1 7 10 1 1 12 10 1 8 1 12 10 1 8 1 8 1 7 1 1 12 10 1 12 10 12 10 1 10 1 12 10 1 1 12 10 1 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 12 10 1 8 1 12 10 1 8 1 12 10 1 8 1 8 1 1 12 10 1 7 1 1 12 10 1 16 1 1 12 10 15 16 1 7 1 1 12 10 15 1 1 12 18 1 7 1 1 12 11 1 8 1 8 1 8 1 7 1 1 12 10 1 1 12 11 1 100 1 8 1 12 10 1 1 100 1 1 12 11 1 1 12 10 11 1 100 1 8 1 12 11 15 1 16 18 1 8 1 12 10 1 1 1 1 7 1 1 7 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 1 7 1 1 12 10 1 7 1 1 12 9 1 100 1 1 12 10 1 1 1 1 7 1 12 10 1 1 12 10 1 16 1 7 1 12 10 15 16 1 1 12 18 1 7 1 1 12 10 1 12 10 1 7 10 1 1 1 7 1 7 1 1 1 1 7 1 100 1 1 12 10 12 9 1 8 1 12 10 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 10 1 1 12 10 1 12 10 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 12 9 1 12 10 1 1 12 10 1 12 10 12 9 1 12 9 1 1 1 12 10 1 7 10 1 1 1 1 12 10 12 10 1 1 1 1 12 10 10 1 100 1 12 9 1 12 10 1 8 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 12 9 7 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 7 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 100 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 100 1 7 10 10 10 1 1 12 10 1 1 12 10 12 10 1 1 12 10 1 100 1 8 10 1 12 10 7 12 10 1 1 100 1 12 11 1 100 1 12 10 1 12 10 1 1 1 1 12 10 1 100 1 12 10 10 1 1 12 10 1 7 1 8 1 1 12 10 1 1 12 10 1 8 1 1 12 9 1 12 10 12 10 1 12 10 12 10 1 100 1 1 12 9 1 12 10 1 12 9 12 10 1 12 10 1 12 10 10 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 1 1 12 10 1 1 1 7 1 12 10 10 1 7 1 1 12 10 1 1 1 1 12 10 1 1 12 10 10 1 1 1 1 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 12 10 1 1 1 1 7 10 1 100 12 10 1 12 11 1 1 1 1 100 1 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 10 1 1 12 10 1 100 10 1 1 12 10 1 100 1 1 12 10 1 100 1 100 1 12 10 12 10 1 1 10 1 12 10 12 10 1 1 12 10 1 12 10 1 100 1 1 12 10 1 7 1 12 11 1 12 10 1 12 10 1 1 1 12 9 1 12 10 1 12 10 12 9 1 7 10 1 1 12 9 12 10 1 7 1 12 10 1 1 1 12 9 1 100 1 1 12 10 12 10 1 12 10 1 100 1 12 10 1 12 10 12 10 1 1 12 10 1 1 1 1 100 10 1 8 1 12 10 11 1 1 12 11 1 7 1 12 11 1 12 11 1 8 1 12 10 1 1 12 10 1 12 9 12 9 1 7 1 12 10 1 12 9 1 1 12 10 1 10 1 12 10 1 1 12 10 1 1 7 1 12 10 1 7 1 12 10 12 9 12 10 1 12 9 1 12 10 1 1 1 1 1 12 10 1 1 1 1 12 9 1 12 9 7 1 12 10 1 1 12 10 1 12 9 1 7 10 1 1 12 10 1 1 12 10 1 1 7 11 1 1 12 9 1 12 9 1 12 10 1 12 9 1 12 9 1 12 10 1 1 12 10 1 12 9 10 1 1 12 10 10 1 1 12 10 12 10 10 1 12 10 12 9 1 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 8 1 10 1 1 1 8 1 1 12 10 15 16 18 1 8 1 8 1 1 12 10 1 12 9 1 12 9 12 10 1 7 1 7 12 10 12 9 10 1 1 1 12 10 10 12 9 1 8 12 10 1 12 10 1 1 12 10 1 100 1 1 12 9 1 100 1 8 10 1 7 4 10 12 10 1 1 12 11 1 1 12 10 1 100 1 1 12 10 10 1 8 1 8 1 1 1 1 1 1 1 12 10 1 12 9 12 11 1 7 1 1 12 11 1 1 1 1 12 9 1 100 1 1 12 10 1 1 1 7 1 12 10 1 1 1 1 12 10 1 12 9 9 1 1 12 10 1 1 12 10 12 10 12 10 1 1 12 10 1 12 11 1 12 11 1 7 1 1 12 10 1 12 10 1 7 1 12 11 1 7 1 1 12 10 1 12 10 10 1 12 11 1 1 12 11 1 12 10 1 1 1 12 10 1 1 12 9 1 1 1 1 1 7 1 12 9 12 10 1 7 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 7 1 1 12 10 1 12 10 1 8 12 10 1 12 10 1 12 10 1 1 1 1 1 100 1 12 10 1 100 1 1 12 11 1 1 12 10 1 1 12 10 16 1 12 10 15 16 1 1 12 18 1 1 12 11 1 12 10 15 18 1 12 11 1 16 1 1 12 10 15 16 1 12 18 1 12 11 12 10 1 12 10 1 12 10 12 10 1 8 1 12 10 1 7 12 9 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Class EMPTY_CLASS_ARRAY [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/lang/Cloneable 1 0 5 1 100 1 100 +instanceKlass lombok/launch/ShadowClassLoader +instanceKlass org/eclipse/sisu/space/CloningClassSpace$CloningClassLoader +instanceKlass org/apache/aries/spifly/MultiDelegationClassloader +instanceKlass org/apache/aries/spifly/Util$WrapperCL +instanceKlass lombok/launch/ShadowClassLoader +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$1 +instanceKlass lombok/launch/ShadowClassLoader +instanceKlass jdk/internal/reflect/DelegatingClassLoader +instanceKlass java/security/SecureClassLoader +ciInstanceKlass java/lang/ClassLoader 1 1 978 1 7 1 7 1 7 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 7 1 1 12 10 1 7 1 100 1 1 12 9 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 12 9 1 1 12 10 1 100 12 10 1 1 1 12 10 1 7 1 1 12 10 1 100 1 8 1 12 10 1 7 1 1 12 10 1 100 12 10 1 10 10 1 7 1 7 7 1 12 10 1 12 10 12 9 10 1 7 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 1 7 1 12 10 12 9 1 1 12 10 1 1 12 10 12 9 12 9 1 100 12 9 1 12 10 12 9 1 1 12 10 1 7 10 1 8 1 1 12 10 1 12 10 10 1 7 1 1 12 10 1 7 1 1 12 10 1 8 1 12 10 12 10 1 1 12 10 1 1 1 1 7 1 12 10 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 10 1 12 10 1 12 10 1 1 1 1 100 1 12 10 1 1 12 10 1 100 12 10 1 12 10 1 12 10 1 100 1 12 10 1 100 1 1 12 10 10 1 1 1 1 1 7 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 100 1 8 10 1 8 1 12 10 1 12 10 1 100 1 8 1 1 12 10 1 1 12 10 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 7 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 1 1 12 10 12 10 1 1 1 7 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 1 1 1 1 12 10 1 1 12 10 1 8 12 9 1 1 12 10 1 8 1 8 1 7 1 12 10 1 100 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 1 7 1 12 10 1 1 7 1 12 10 12 10 1 7 10 1 1 1 1 7 12 10 1 100 1 12 10 10 1 7 1 12 10 1 1 1 1 16 1 1 12 10 15 1 16 1 100 1 1 12 10 15 1 12 18 1 100 1 1 12 10 1 7 1 1 12 10 1 1 1 7 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 1 1 12 10 1 100 1 12 10 1 1 1 12 10 1 1 1 7 1 12 10 1 12 10 1 8 1 100 10 1 12 10 12 9 1 7 1 12 10 1 12 10 1 1 100 1 100 1 8 1 12 10 10 1 8 1 8 1 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 100 1 12 10 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 12 10 12 10 1 100 1 1 12 9 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 8 1 12 10 1 7 16 1 1 12 10 15 1 16 1 1 12 18 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 1 8 1 12 10 1 1 1 12 10 1 16 1 1 12 10 15 16 1 12 18 1 100 1 1 12 11 1 100 1 1 12 10 12 10 10 1 1 1 12 11 10 1 12 10 15 18 1 1 1 12 10 1 100 12 11 16 1 1 12 10 15 16 1 12 18 1 1 12 11 1 1 1 1 12 10 1 1 12 10 12 10 1 100 1 100 1 8 10 1 1 12 10 1 8 1 8 1 100 1 12 10 12 10 1 100 10 1 12 10 1 8 1 8 1 8 1 12 10 1 1 1 1 12 10 1 1 1 12 10 1 1 1 100 1 1 12 10 1 100 1 12 11 1 1 1 100 10 1 11 1 12 10 1 12 10 1 1 12 10 1 100 1 12 9 1 1 12 9 12 9 1 12 9 1 12 9 1 1 1 12 9 8 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 10 12 10 1 1 12 11 1 100 1 1 12 10 1 100 1 12 10 1 12 10 12 10 1 1 1 1 1 1 1 1 1 +staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate; +staticfield java/lang/ClassLoader $assertionsDisabled Z 1 +ciInstanceKlass java/lang/System 1 1 733 1 7 1 100 1 100 1 100 1 100 1 100 1 7 1 100 1 1 1 1 7 1 7 1 1 1 100 1 100 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 9 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 9 1 7 1 1 12 10 1 100 12 11 1 100 1 100 1 1 1 100 1 100 1 1 12 10 12 10 1 1 12 10 1 100 1 8 1 12 10 1 100 1 1 12 10 1 1 1 1 7 1 1 12 10 1 16 1 7 1 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 100 1 1 1 1 1 1 1 12 10 1 7 1 1 12 10 1 1 12 9 1 100 1 1 12 10 1 1 12 11 12 10 1 1 12 10 1 100 10 1 1 12 10 1 8 1 12 10 1 8 1 12 10 1 7 12 9 1 8 1 7 1 1 12 10 1 12 10 1 100 1 8 10 1 100 12 9 1 8 1 1 12 10 1 100 1 1 12 10 1 8 1 12 10 1 12 10 8 1 12 10 1 1 12 10 12 10 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 1 1 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 7 12 10 1 12 10 1 1 100 1 8 1 12 10 1 12 10 1 1 12 10 1 100 1 8 10 1 12 10 1 100 1 8 10 1 1 8 1 7 12 10 1 1 8 12 10 1 1 1 100 1 8 10 1 1 12 10 1 7 1 12 10 1 1 100 1 1 12 10 15 1 16 1 12 18 1 100 1 1 12 9 1 12 10 1 1 12 10 1 1 12 10 1 1 1 7 1 1 12 10 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 1 100 1 7 1 12 10 1 12 10 1 12 10 1 1 1 7 1 1 12 10 1 100 1 8 10 12 9 12 9 1 12 10 1 12 10 1 12 10 1 1 12 10 1 100 1 8 1 1 12 10 1 8 1 1 12 11 12 10 1 1 12 11 1 7 1 1 12 11 1 7 1 12 11 1 12 11 1 12 11 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 1 8 1 12 11 1 12 10 1 1 12 10 1 12 10 1 7 1 12 10 1 8 1 7 1 7 1 12 9 1 12 10 1 7 12 9 10 12 9 1 7 12 10 1 8 12 10 1 8 1 7 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 10 12 10 1 1 1 100 1 7 1 1 12 10 12 9 1 8 12 10 1 1 7 1 1 12 10 1 7 1 1 12 10 1 8 10 1 8 1 8 1 8 1 8 10 1 7 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 100 1 1 12 10 1 100 10 1 8 10 10 1 1 12 10 1 1 12 10 1 8 1 12 10 1 8 1 12 10 1 1 12 10 10 1 12 10 1 12 10 12 9 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/System in Ljava/io/InputStream; java/io/ByteArrayInputStream +staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream +staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream +instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateRecursion +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataDeploymentException +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataInstallationException +instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateRecursion +instanceKlass java/lang/Exception +instanceKlass java/lang/Error +ciInstanceKlass java/lang/Throwable 1 1 353 1 7 1 7 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 1 1 12 10 1 12 9 1 1 1 1 12 10 1 100 1 1 1 12 10 1 1 1 1 100 1 7 10 1 8 1 1 12 10 1 8 1 100 1 12 10 10 12 10 1 100 1 8 10 1 1 1 12 10 1 7 1 12 10 12 10 1 8 1 1 100 1 1 12 9 1 12 10 12 10 1 12 10 1 100 10 1 7 1 1 12 10 1 100 1 1 12 11 1 1 12 10 1 1 12 10 1 1 12 10 7 1 8 1 12 10 1 1 12 10 100 1 8 1 1 12 10 12 10 1 8 1 12 9 1 100 1 12 10 1 100 10 1 12 11 1 8 1 8 1 7 1 12 10 1 8 1 12 10 1 8 1 12 10 12 9 1 12 10 1 1 12 10 12 9 1 1 12 10 1 1 1 100 1 8 12 10 1 1 1 100 1 100 1 100 1 12 10 1 1 12 10 1 100 1 100 1 1 12 10 1 12 10 1 100 1 1 12 11 1 100 1 1 12 11 1 12 11 1 1 12 10 10 10 1 1 12 9 1 8 1 1 1 12 10 10 1 100 1 8 10 1 1 12 11 1 8 1 1 1 12 9 1 100 1 12 10 1 11 12 9 1 1 12 11 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 +staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$EmptyList +staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable; +staticfield java/lang/Throwable $assertionsDisabled Z 1 +instanceKlass java/io/IOError +instanceKlass org/apache/maven/BuildAbort +instanceKlass javax/xml/parsers/FactoryConfigurationError +instanceKlass com/google/common/util/concurrent/ExecutionError +instanceKlass java/util/ServiceConfigurationError +instanceKlass java/lang/AssertionError +instanceKlass java/lang/VirtualMachineError +instanceKlass java/lang/LinkageError +instanceKlass java/lang/ThreadDeath +ciInstanceKlass java/lang/Error 1 1 27 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/ThreadDeath 0 0 15 1 100 1 100 1 1 5 0 1 1 12 10 1 1 +instanceKlass com/microsoft/java/debug/core/DebugException +instanceKlass org/eclipse/jdt/core/util/ClassFormatException +instanceKlass org/eclipse/jface/text/BadPartitioningException +instanceKlass org/eclipse/jface/text/BadPositionCategoryException +instanceKlass org/eclipse/core/commands/common/CommandException +instanceKlass org/apache/maven/artifact/DependencyResolutionRequiredException +instanceKlass org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException +instanceKlass org/apache/maven/shared/filtering/MavenFilteringException +instanceKlass org/codehaus/plexus/interpolation/reflection/MethodMap$AmbiguousException +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceFailureException +instanceKlass lombok/eclipse/agent/PatchDelegate$CantMakeDelegates +instanceKlass org/apache/commons/codec/EncoderException +instanceKlass org/apache/commons/codec/DecoderException +instanceKlass org/apache/maven/model/resolution/InvalidRepositoryException +instanceKlass org/apache/maven/model/resolution/UnresolvableModelException +instanceKlass org/apache/maven/toolchain/building/ToolchainsBuildingException +instanceKlass org/apache/maven/lifecycle/internal/builder/BuilderNotFoundException +instanceKlass org/apache/maven/lifecycle/NoGoalSpecifiedException +instanceKlass org/apache/maven/lifecycle/MissingProjectException +instanceKlass org/apache/maven/BuildFailureException +instanceKlass org/apache/maven/project/interpolation/ModelInterpolationException +instanceKlass org/apache/maven/artifact/installer/ArtifactInstallationException +instanceKlass org/apache/maven/repository/ArtifactDoesNotExistException +instanceKlass org/apache/maven/repository/ArtifactTransferFailedException +instanceKlass org/codehaus/plexus/personality/plexus/lifecycle/phase/InitializationException +instanceKlass org/sonatype/plexus/components/sec/dispatcher/SecDispatcherException +instanceKlass org/sonatype/plexus/components/cipher/PlexusCipherException +instanceKlass org/apache/maven/model/building/ModelBuildingException +instanceKlass org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException +instanceKlass org/codehaus/plexus/configuration/PlexusConfigurationException +instanceKlass org/codehaus/plexus/component/composition/CycleDetectedInComponentGraphException +instanceKlass org/apache/maven/artifact/deployer/ArtifactDeploymentException +instanceKlass org/apache/maven/project/DependencyResolutionException +instanceKlass org/apache/maven/configuration/BeanConfigurationException +instanceKlass sun/security/ec/ECOperations$IntermediateValueException +instanceKlass org/apache/maven/toolchain/MisconfiguredToolchainException +instanceKlass org/apache/maven/repository/metadata/MetadataResolutionException +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataReadException +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataStoreException +instanceKlass org/apache/maven/artifact/repository/metadata/RepositoryMetadataResolutionException +instanceKlass org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException +instanceKlass org/apache/http/HttpException +instanceKlass org/apache/maven/MavenExecutionException +instanceKlass sun/security/pkcs11/wrapper/PKCS11Exception +instanceKlass org/apache/maven/repository/metadata/MetadataGraphTransformationException +instanceKlass org/apache/maven/repository/metadata/GraphConflictResolutionException +instanceKlass org/codehaus/plexus/component/repository/exception/ComponentLifecycleException +instanceKlass org/apache/maven/wagon/WagonException +instanceKlass org/apache/maven/plugin/version/PluginVersionNotFoundException +instanceKlass org/apache/maven/plugin/InvalidPluginException +instanceKlass org/apache/maven/lifecycle/LifecycleExecutionException +instanceKlass org/apache/maven/lifecycle/LifecycleNotFoundException +instanceKlass org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException +instanceKlass org/apache/maven/lifecycle/LifecyclePhaseNotFoundException +instanceKlass org/apache/maven/plugin/AbstractMojoExecutionException +instanceKlass org/apache/commons/cli/ParseException +instanceKlass org/codehaus/plexus/interpolation/InterpolationException +instanceKlass org/apache/maven/cli/MavenCli$ExitException +instanceKlass com/google/common/collect/RegularImmutableMap$BucketOverflowException +instanceKlass org/eclipse/equinox/security/storage/StorageException +instanceKlass com/google/inject/internal/ErrorsException +instanceKlass com/google/inject/internal/InternalProvisionException +instanceKlass org/codehaus/plexus/context/ContextException +instanceKlass javax/xml/transform/TransformerException +instanceKlass org/eclipse/jface/text/templates/TemplateException +instanceKlass org/codehaus/plexus/util/xml/pull/XmlPullParserException +instanceKlass lombok/eclipse/agent/PatchDelegate$CantMakeDelegates +instanceKlass org/eclipse/jface/text/BadLocationException +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$InvalidBindingException +instanceKlass org/eclipse/jdt/core/compiler/InvalidInputException +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFormatException +instanceKlass org/apache/maven/artifact/versioning/InvalidVersionSpecificationException +instanceKlass java/text/ParseException +instanceKlass org/codehaus/plexus/component/configurator/expression/ExpressionEvaluationException +instanceKlass org/codehaus/plexus/classworlds/ClassWorldException +instanceKlass org/codehaus/plexus/PlexusContainerException +instanceKlass org/apache/maven/cli/internal/ExtensionResolutionException +instanceKlass org/apache/maven/execution/MavenExecutionRequestPopulationException +instanceKlass org/eclipse/aether/RepositoryException +instanceKlass org/apache/maven/plugin/version/PluginVersionResolutionException +instanceKlass org/codehaus/plexus/component/configurator/ComponentConfigurationException +instanceKlass org/apache/maven/plugin/InvalidPluginDescriptorException +instanceKlass org/apache/maven/plugin/MojoNotFoundException +instanceKlass org/apache/maven/plugin/PluginDescriptorParsingException +instanceKlass org/apache/maven/artifact/resolver/AbstractArtifactResolutionException +instanceKlass org/apache/maven/settings/building/SettingsBuildingException +instanceKlass org/apache/maven/plugin/PluginResolutionException +instanceKlass org/apache/maven/plugin/PluginConfigurationException +instanceKlass org/apache/maven/plugin/PluginManagerException +instanceKlass org/apache/maven/project/ProjectBuildingException +instanceKlass org/apache/maven/artifact/InvalidRepositoryException +instanceKlass org/codehaus/plexus/component/repository/exception/ComponentLookupException +instanceKlass org/apache/maven/project/DuplicateProjectException +instanceKlass org/codehaus/plexus/util/dag/CycleDetectedException +instanceKlass ch/qos/logback/core/util/DynamicClassLoadingException +instanceKlass ch/qos/logback/core/util/IncompatibleClassException +instanceKlass ch/qos/logback/core/joran/spi/JoranException +instanceKlass java/net/URISyntaxException +instanceKlass java/util/concurrent/TimeoutException +instanceKlass org/osgi/service/application/ApplicationException +instanceKlass org/eclipse/core/runtime/CoreException +instanceKlass org/osgi/service/prefs/BackingStoreException +instanceKlass org/apache/felix/scr/impl/inject/methods/SuitableMethodNotAccessibleException +instanceKlass org/xml/sax/SAXException +instanceKlass javax/xml/parsers/ParserConfigurationException +instanceKlass java/util/concurrent/ExecutionException +instanceKlass java/lang/CloneNotSupportedException +instanceKlass org/osgi/service/resolver/ResolutionException +instanceKlass java/security/GeneralSecurityException +instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLockException +instanceKlass java/security/PrivilegedActionException +instanceKlass org/osgi/framework/InvalidSyntaxException +instanceKlass java/lang/InterruptedException +instanceKlass org/osgi/framework/BundleException +instanceKlass sun/nio/fs/WindowsException +instanceKlass java/lang/instrument/UnmodifiableClassException +instanceKlass java/io/IOException +instanceKlass java/lang/ReflectiveOperationException +instanceKlass java/lang/RuntimeException +ciInstanceKlass java/lang/Exception 1 1 27 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +instanceKlass com/sun/org/apache/xerces/internal/xni/XNIException +instanceKlass org/eclipse/jdt/internal/corext/fix/VariableDeclarationFixCore$VariableDeclarationFinder$1SearchException +instanceKlass org/eclipse/jdt/internal/corext/dom/AbortSearchException +instanceKlass org/eclipse/jdt/internal/core/manipulation/dom/ASTResolving$AllBindingsVisitor$VisitCancelledException +instanceKlass org/eclipse/jdt/internal/compiler/parser/SourceTypeConverter$AnonymousMemberFound +instanceKlass java/util/concurrent/CompletionException +instanceKlass com/microsoft/gradle/bs/importer/model/NamedPipeConnectionException +instanceKlass org/apache/maven/project/DuplicateArtifactAttachmentException +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/DuplicateMappingException +instanceKlass org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingConfigurationException +instanceKlass org/eclipse/aether/named/support/LockUpgradeNotSupportedException +instanceKlass org/eclipse/jdt/internal/compiler/flow/UnconditionalFlowInfo$AssertionFailedException +instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$1NotPertientToApplicability +instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$CopyFailureException +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$MethodClashException +instanceKlass lombok/core/AnnotationValues$AnnotationValueDecodeFail +instanceKlass com/google/inject/internal/aop/GlueException +instanceKlass org/eclipse/jdt/internal/core/builder/AbortIncrementalBuildException +instanceKlass org/eclipse/jdt/internal/compiler/problem/ShouldNotImplement +instanceKlass org/eclipse/jdt/internal/core/search/matching/MatchLocator$WrappedCoreException +instanceKlass org/apache/maven/artifact/InvalidArtifactRTException +instanceKlass java/security/ProviderException +instanceKlass org/gradle/api/UncheckedIOException +instanceKlass org/eclipse/buildship/core/internal/GradlePluginsRuntimeException +instanceKlass org/eclipse/lsp4j/jsonrpc/JsonRpcException +instanceKlass com/google/inject/OutOfScopeException +instanceKlass org/eclipse/lsp4j/jsonrpc/MessageIssueException +instanceKlass com/google/gson/JsonParseException +instanceKlass java/nio/file/ProviderNotFoundException +instanceKlass java/nio/file/FileSystemAlreadyExistsException +instanceKlass java/nio/file/FileSystemNotFoundException +instanceKlass java/lang/annotation/IncompleteAnnotationException +instanceKlass java/io/UncheckedIOException +instanceKlass org/eclipse/lsp4j/jsonrpc/ResponseErrorException +instanceKlass com/sun/jna/LastErrorException +instanceKlass com/google/inject/CreationException +instanceKlass com/google/inject/ConfigurationException +instanceKlass com/google/inject/ProvisionException +instanceKlass org/w3c/dom/DOMException +instanceKlass org/eclipse/text/edits/MalformedTreeException +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionNodeFound +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$1FoundRelevantDeltaException +instanceKlass org/eclipse/jdt/internal/codeassist/complete/InvalidCursorLocation +instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNodeFound +instanceKlass org/eclipse/jdt/internal/compiler/problem/AbortCompilation +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeCollisionException +instanceKlass org/eclipse/jdt/internal/core/builder/MissingSourceFileException +instanceKlass org/eclipse/jdt/internal/core/builder/ImageBuilderInternalException +instanceKlass java/lang/NegativeArraySizeException +instanceKlass org/eclipse/jdt/internal/core/ClasspathEntry$AssertionFailedException +instanceKlass com/google/common/cache/CacheLoader$InvalidCacheLoadException +instanceKlass com/google/common/util/concurrent/UncheckedExecutionException +instanceKlass ch/qos/logback/core/LogbackException +instanceKlass org/objectweb/asm/tree/UnsupportedClassVersionException +instanceKlass java/lang/reflect/UndeclaredThrowableException +instanceKlass org/eclipse/core/internal/events/BuildManager$JobManagerSuspendedException +instanceKlass org/eclipse/core/internal/localstore/IsSynchronizedVisitor$ResourceChangedException +instanceKlass org/eclipse/core/internal/dtree/ObjectNotFoundException +instanceKlass org/eclipse/core/internal/utils/WrappedRuntimeException +instanceKlass org/eclipse/core/runtime/OperationCanceledException +instanceKlass org/eclipse/equinox/internal/provisional/frameworkadmin/FrameworkAdminRuntimeException +instanceKlass org/osgi/util/promise/FailedPromisesException +instanceKlass java/lang/IllegalCallerException +instanceKlass org/eclipse/core/runtime/InvalidRegistryObjectException +instanceKlass org/eclipse/core/runtime/AssertionFailedException +instanceKlass org/osgi/service/component/ComponentException +instanceKlass org/osgi/framework/hooks/weaving/WeavingException +instanceKlass java/util/MissingResourceException +instanceKlass java/util/ConcurrentModificationException +instanceKlass org/osgi/framework/ServiceException +instanceKlass java/util/concurrent/RejectedExecutionException +instanceKlass java/lang/TypeNotPresentException +instanceKlass org/eclipse/osgi/framework/util/ThreadInfoReport +instanceKlass org/eclipse/osgi/storage/Storage$StorageException +instanceKlass java/util/NoSuchElementException +instanceKlass java/lang/SecurityException +instanceKlass java/lang/IndexOutOfBoundsException +instanceKlass java/lang/UnsupportedOperationException +instanceKlass java/lang/IllegalStateException +instanceKlass java/lang/IllegalArgumentException +instanceKlass java/lang/ArithmeticException +instanceKlass java/lang/NullPointerException +instanceKlass java/lang/IllegalMonitorStateException +instanceKlass java/lang/ArrayStoreException +instanceKlass java/lang/ClassCastException +ciInstanceKlass java/lang/RuntimeException 1 1 27 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +instanceKlass javax/crypto/JceSecurityManager +instanceKlass com/sun/jna/Native$6 +instanceKlass org/eclipse/osgi/internal/permadmin/EquinoxSecurityManager +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$ClassContext +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$Finder +instanceKlass org/eclipse/osgi/internal/url/MultiplexingFactory$InternalSecurityManager +ciInstanceKlass java/lang/SecurityManager 1 1 521 1 7 1 7 1 1 1 1 3 1 100 1 100 1 7 1 7 1 1 7 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 7 1 1 12 10 1 100 1 8 1 12 10 1 1 12 10 1 100 1 1 1 1 1 1 100 1 1 12 10 10 1 1 100 10 1 100 10 1 1 100 1 1 12 9 1 1 1 7 1 1 12 10 1 12 10 1 7 1 12 10 1 1 1 100 1 8 10 12 9 1 12 9 1 1 8 1 12 9 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 1 100 10 1 1 12 10 1 100 1 8 1 12 10 1 8 1 1 8 1 8 1 1 1 8 1 8 1 8 1 12 10 1 1 8 1 8 1 1 8 1 1 1 8 1 8 1 100 1 1 12 10 1 1 12 10 1 8 1 100 1 8 10 1 8 1 8 1 1 1 8 1 8 1 1 8 1 1 1 100 1 12 10 1 8 1 1 1 1 100 1 8 1 8 10 1 1 1 8 1 1 1 12 10 1 100 1 8 10 1 1 12 10 100 1 12 10 1 12 10 1 12 10 1 1 1 7 1 1 12 10 1 12 10 1 7 1 12 10 1 7 1 1 12 11 1 16 1 7 1 1 12 10 15 1 16 1 7 1 1 12 10 15 1 1 12 18 1 7 1 1 12 11 1 16 1 1 12 10 15 1 16 1 1 12 18 1 1 12 11 1 12 10 15 16 18 1 7 11 15 1 16 18 1 12 11 1 16 1 12 10 15 16 1 12 18 1 1 12 11 1 12 9 12 9 12 9 12 9 1 1 7 1 12 10 1 12 10 1 12 10 1 1 12 10 15 16 1 12 18 1 12 10 15 1 16 18 1 7 1 12 10 1 12 11 15 1 12 18 1 12 10 1 1 12 10 15 16 18 10 15 1 16 18 1 1 8 1 12 10 12 9 1 7 1 12 11 1 8 1 12 10 1 1 12 10 12 10 12 9 1 12 10 1 1 12 10 1 1 8 10 12 9 1 8 1 12 10 1 1 8 1 1 100 10 1 12 10 10 1 7 1 1 12 9 1 1 12 11 1 12 10 1 12 11 1 12 10 1 7 10 1 1 12 10 12 10 1 1 1 1 1 1 1 1 +staticfield java/lang/SecurityManager packageAccessLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/SecurityManager packageDefinitionLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/SecurityManager nonExportedPkgs Ljava/util/Map; java/util/concurrent/ConcurrentHashMap +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$GenerationProtectionDomain +ciInstanceKlass java/security/ProtectionDomain 1 1 283 1 7 1 7 1 7 1 100 1 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 10 12 9 12 9 12 9 1 7 1 12 10 1 7 1 12 9 1 100 12 9 1 7 12 9 12 9 1 1 100 100 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 10 1 12 10 12 10 1 12 9 1 100 1 12 9 1 1 12 10 10 1 100 1 100 1 1 12 10 1 1 1 8 1 100 1 8 1 12 10 1 7 10 1 100 1 12 10 1 1 12 10 1 8 11 1 8 12 10 1 8 1 8 1 12 10 1 12 10 1 12 10 12 10 1 8 1 12 10 1 8 1 8 1 100 1 100 1 1 12 10 1 100 1 1 12 9 12 10 1 100 1 1 12 9 1 1 12 10 1 12 10 1 100 1 1 12 10 10 1 100 1 12 10 1 1 12 10 1 100 1 100 1 12 11 1 12 11 1 1 12 11 1 100 1 12 10 10 1 1 12 11 1 1 12 11 1 12 10 1 12 10 1 100 1 12 10 1 12 11 12 10 1 1 8 1 8 1 7 1 1 12 10 10 1 7 1 1 12 10 1 1 1 1 +staticfield java/security/ProtectionDomain filePermCompatInPD Z 0 +ciInstanceKlass java/security/AccessControlContext 1 1 318 1 7 1 7 1 1 1 1 3 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 12 9 1 7 1 1 12 10 1 8 1 100 1 1 12 10 1 1 1 12 10 12 9 12 9 12 9 7 1 1 12 10 1 100 1 12 10 1 100 1 1 12 11 1 12 11 1 12 11 1 1 12 11 1 7 1 1 12 11 1 1 12 10 1 7 1 1 12 10 1 100 1 1 12 9 1 100 1 1 12 10 1 100 1 100 1 1 12 11 10 1 7 1 100 1 8 1 12 10 1 1 12 10 1 7 1 7 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 1 12 9 1 1 1 1 1 1 7 1 1 12 10 1 1 12 9 1 12 10 1 100 12 10 1 8 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 100 10 1 1 12 10 1 100 1 1 12 10 10 1 8 1 100 1 12 10 1 8 1 100 1 12 10 1 8 1 8 1 12 10 1 8 1 12 10 1 8 1 12 10 1 12 10 1 1 12 10 1 8 1 8 1 12 10 1 1 12 10 1 12 10 1 8 1 12 10 1 12 10 10 1 1 8 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 10 10 1 12 10 1 1 1 1 1 1 1 1 +ciInstanceKlass java/security/AccessController 1 1 258 1 7 1 100 1 1 1 1 3 1 100 1 1 1 1 1 12 10 1 1 1 1 1 7 1 1 12 10 1 1 12 10 1 1 1 12 10 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 100 1 8 1 12 10 1 7 1 12 10 1 100 1 1 12 10 1 1 1 100 1 7 1 7 1 12 10 1 7 1 1 12 10 12 10 1 12 10 1 1 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 100 1 1 12 9 1 100 1 1 12 10 1 12 10 1 12 10 1 1 12 9 1 1 1 1 1 1 1 12 10 1 1 12 10 12 9 10 1 100 10 1 7 1 1 12 11 1 7 1 12 10 1 11 1 1 12 10 1 1 1 1 12 10 1 12 10 1 1 1 100 1 8 1 1 12 10 1 8 1 100 1 1 12 10 1 8 1 100 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 100 1 8 1 100 1 12 10 1 8 1 8 1 12 10 1 8 1 12 10 12 10 1 1 12 10 1 1 1 1 1 1 1 1 +staticfield java/security/AccessController $assertionsDisabled Z 1 +instanceKlass java/net/URLClassLoader +instanceKlass jdk/internal/loader/BuiltinClassLoader +ciInstanceKlass java/security/SecureClassLoader 1 1 81 1 7 1 7 1 7 1 100 1 7 1 1 1 1 1 1 1 12 10 1 7 1 12 10 12 9 1 12 10 1 12 10 1 1 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 7 10 1 12 10 1 12 10 1 7 1 1 12 11 1 7 1 1 12 11 1 1 1 12 10 1 1 1 1 1 +instanceKlass java/lang/InstantiationException +instanceKlass java/lang/IllegalAccessException +instanceKlass java/lang/reflect/InvocationTargetException +instanceKlass java/lang/NoSuchFieldException +instanceKlass java/lang/NoSuchMethodException +instanceKlass java/lang/ClassNotFoundException +ciInstanceKlass java/lang/ReflectiveOperationException 1 1 24 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/ClassNotFoundException 1 1 80 1 7 1 7 1 100 1 100 1 1 100 1 100 1 1 1 5 0 1 1 1 1 1 7 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 100 1 1 12 10 1 8 1 1 12 10 1 12 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 1 7 1 12 10 12 9 1 1 1 1 1 +staticfield java/lang/ClassNotFoundException serialPersistentFields [Ljava/io/ObjectStreamField; 1 [Ljava/io/ObjectStreamField; +instanceKlass org/eclipse/core/internal/utils/Cache$Entry +instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement$SingletonBootstrap +instanceKlass org/eclipse/jdt/internal/core/JavadocContents$Range +instanceKlass org/eclipse/m2e/core/internal/project/registry/MavenProjectCache$CacheKey +instanceKlass org/eclipse/jdt/internal/compiler/ast/Pattern$TestContextRecord +instanceKlass org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants$LevelTags +instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathJar$PackageCacheEntry +instanceKlass org/eclipse/jdt/internal/compiler/CompilerConfiguration +instanceKlass jdk/net/UnixDomainPrincipal +instanceKlass org/eclipse/jdt/internal/core/JarPackageFragmentRootInfo$PackageContent +instanceKlass org/eclipse/jdt/internal/core/JrtPackageFragmentRoot$JrtModuleKey +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$SecondaryTypesCache +instanceKlass org/eclipse/m2e/core/project/configurator/ProjectConfigurationRequest +instanceKlass org/eclipse/m2e/core/embedder/ArtifactRef +instanceKlass org/eclipse/m2e/core/embedder/ArtifactRepositoryRef +instanceKlass org/eclipse/m2e/core/project/configurator/MojoExecutionKey +instanceKlass org/eclipse/m2e/core/internal/project/registry/VersionlessKey +instanceKlass org/eclipse/m2e/core/embedder/ArtifactKey +instanceKlass org/eclipse/m2e/core/embedder/MavenConfigurationChangeEvent +instanceKlass org/eclipse/m2e/core/embedder/MavenSettingsLocations +instanceKlass jdk/internal/misc/ThreadTracker$ThreadRef +instanceKlass sun/security/pkcs/SignerInfo$AlgorithmInfo +ciInstanceKlass java/lang/Record 1 1 16 1 100 1 7 1 1 12 10 1 1 1 1 1 1 1 +instanceKlass java/lang/ExceptionInInitializerError +instanceKlass java/lang/ClassFormatError +instanceKlass java/lang/UnsatisfiedLinkError +instanceKlass java/lang/IncompatibleClassChangeError +instanceKlass java/lang/BootstrapMethodError +instanceKlass java/lang/NoClassDefFoundError +ciInstanceKlass java/lang/LinkageError 1 1 21 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/NoClassDefFoundError 1 1 18 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/ClassCastException 1 1 18 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/ArrayStoreException 1 1 18 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 1 +instanceKlass java/lang/StackOverflowError +instanceKlass java/lang/OutOfMemoryError +instanceKlass java/lang/InternalError +ciInstanceKlass java/lang/VirtualMachineError 1 1 24 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +instanceKlass java/util/zip/ZipError +ciInstanceKlass java/lang/InternalError 1 1 24 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/OutOfMemoryError 1 1 18 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/StackOverflowError 1 1 18 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 18 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 1 +instanceKlass java/lang/ref/PhantomReference +instanceKlass java/lang/ref/FinalReference +instanceKlass java/lang/ref/WeakReference +instanceKlass java/lang/ref/SoftReference +ciInstanceKlass java/lang/ref/Reference 1 1 179 1 7 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 7 1 12 9 1 1 12 10 1 12 10 12 9 12 10 12 9 1 100 12 9 1 7 1 12 10 1 12 10 12 10 1 1 100 12 10 1 12 10 1 1 1 1 12 9 1 1 1 1 12 10 1 12 10 1 1 12 10 1 12 9 1 100 1 100 1 12 10 12 9 1 1 1 1 1 1 12 9 1 1 100 10 1 1 1 12 10 1 10 1 1 1 1 7 1 12 10 1 7 1 1 12 10 1 1 12 10 1 7 1 12 10 1 8 1 12 10 1 1 12 10 1 1 12 10 1 12 10 10 1 7 1 1 12 10 1 1 1 1 1 1 1 1 +staticfield java/lang/ref/Reference processPendingLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Reference $assertionsDisabled Z 1 +instanceKlass org/eclipse/core/internal/utils/Cache$EntryRef +instanceKlass org/eclipse/sisu/inject/MildElements$Soft +instanceKlass java/io/ClassCache$CacheRef +instanceKlass org/eclipse/sisu/inject/MildKeys$Soft +instanceKlass org/eclipse/core/internal/registry/ReferenceMap$SoftRef +instanceKlass sun/util/locale/provider/LocaleResources$ResourceReference +instanceKlass sun/util/resources/Bundles$BundleReference +instanceKlass java/util/ResourceBundle$BundleReference +instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry +instanceKlass sun/security/util/MemoryCache$SoftCacheEntry +instanceKlass java/lang/invoke/LambdaFormEditor$Transform +ciInstanceKlass java/lang/ref/SoftReference 1 1 32 1 7 1 1 7 1 1 1 1 1 1 12 10 12 9 12 9 1 1 12 10 1 1 1 12 10 1 100 1 1 1 +instanceKlass org/eclipse/sisu/inject/MildElements$Weak +instanceKlass com/google/common/collect/MapMakerInternalMap$AbstractWeakKeyEntry +instanceKlass javax/crypto/JceSecurity$WeakIdentityWrapper +instanceKlass com/google/common/cache/LocalCache$WeakEntry +instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSetOfCharArray$HashableWeakReference +instanceKlass org/eclipse/jdt/internal/core/util/WeakHashSet$HashableWeakReference +instanceKlass org/eclipse/sisu/inject/MildKeys$Weak +instanceKlass com/sun/jna/CallbackReference +instanceKlass java/util/ResourceBundle$KeyElementReference +instanceKlass java/util/logging/LogManager$LoggerWeakRef +instanceKlass java/util/logging/Level$KnownLevel +instanceKlass sun/nio/ch/FileLockTable$FileLockReference +instanceKlass java/lang/ClassValue$Entry +instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry +instanceKlass java/lang/WeakPairMap$WeakRefPeer +instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry +instanceKlass java/util/WeakHashMap$Entry +ciInstanceKlass java/lang/ref/WeakReference 1 1 17 1 100 1 1 7 1 1 1 12 10 1 1 12 10 1 1 +instanceKlass java/lang/ref/Finalizer +ciInstanceKlass java/lang/ref/FinalReference 1 1 33 1 7 1 1 7 1 1 1 12 10 1 1 1 1 12 10 1 1 1 12 10 1 1 1 100 1 8 1 12 10 1 1 +instanceKlass com/sun/jna/internal/Cleaner$CleanerRef +instanceKlass jdk/internal/ref/PhantomCleanable +instanceKlass jdk/internal/ref/Cleaner +ciInstanceKlass java/lang/ref/PhantomReference 1 1 24 1 100 1 1 7 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 +ciInstanceKlass java/lang/ref/Finalizer 1 1 137 1 7 1 1 7 1 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 12 10 12 9 12 9 12 9 12 9 1 7 1 100 1 1 1 1 12 10 1 1 1 1 12 10 12 9 1 100 1 12 10 1 7 1 7 1 12 11 1 12 10 1 1 12 10 1 100 1 1 12 10 1 1 100 1 1 12 10 10 12 10 1 1 7 1 1 12 10 1 7 10 10 1 7 1 1 12 10 1 1 12 10 1 7 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 +staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Finalizer $assertionsDisabled Z 1 +instanceKlass org/eclipse/jdt/internal/core/BinaryMethod$1 +instanceKlass com/microsoft/jdtls/intellicode/core/pythia/PythiaModelLoader$1 +instanceKlass com/sun/jna/internal/Cleaner$CleanerThread +instanceKlass org/eclipse/core/internal/jobs/InternalWorker +instanceKlass org/eclipse/core/internal/jobs/Worker +instanceKlass java/util/TimerThread +instanceKlass java/util/logging/LogManager$Cleaner +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread +instanceKlass java/util/concurrent/ForkJoinWorkerThread +instanceKlass org/eclipse/equinox/launcher/Main$SplashHandler +instanceKlass jdk/internal/misc/InnocuousThread +instanceKlass java/lang/ref/Finalizer$FinalizerThread +instanceKlass java/lang/ref/Reference$ReferenceHandler +ciInstanceKlass java/lang/Thread 1 1 559 1 7 1 7 1 7 1 100 1 100 1 100 1 100 1 100 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 12 9 1 1 1 1 12 10 12 9 12 9 1 100 1 100 1 1 1 1 1 7 1 1 100 1 8 1 1 12 10 3 1 8 5 0 12 10 1 1 12 10 12 9 12 9 12 9 12 9 1 100 1 8 10 1 7 1 100 1 100 12 9 1 7 1 1 12 10 1 100 1 1 12 10 10 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 9 1 1 12 10 1 12 10 12 9 1 1 12 10 1 12 10 12 9 1 1 12 10 12 9 1 7 1 1 12 10 12 9 12 9 1 1 12 10 1 1 12 10 12 9 12 10 12 9 1 1 1 100 10 1 7 10 1 8 1 1 12 10 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 1 1 1 1 12 9 1 100 10 1 1 12 10 1 12 10 1 12 10 1 12 11 1 1 7 1 1 12 9 1 12 10 1 12 10 12 10 12 9 1 1 1 1 10 1 12 9 1 12 10 1 100 10 1 1 12 10 1 12 9 1 12 10 12 11 1 12 10 1 1 12 9 1 1 1 12 10 1 12 10 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 100 10 1 12 10 1 12 10 1 12 10 1 100 1 1 12 9 1 1 12 10 12 10 1 1 7 1 8 10 1 12 10 1 1 1 12 10 1 8 12 10 1 8 10 1 8 1 8 1 1 100 1 12 10 1 100 1 1 12 10 1 1 1 100 8 10 1 1 1 1 1 12 9 12 9 1 1 12 10 1 100 100 10 12 10 1 1 1 1 12 9 1 1 12 10 1 100 12 10 1 100 1 100 1 1 12 11 1 1 1 12 9 1 1 12 9 1 1 12 10 1 12 10 1 100 1 1 12 11 1 100 1 12 10 1 1 12 10 1 12 11 1 12 10 1 12 10 1 1 12 10 1 1 1 1 7 1 1 12 10 1 1 8 12 9 1 1 1 1 1 1 12 10 1 1 12 11 1 1 100 1 1 12 10 1 12 11 1 100 1 12 10 1 7 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +ciInstanceKlass java/lang/ThreadGroup 1 1 263 1 7 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 8 12 9 12 9 12 9 1 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 12 9 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 3 1 12 9 1 1 1 1 1 100 1 1 12 10 12 9 12 9 1 7 1 1 12 10 100 1 100 12 10 1 1 1 1 7 1 1 12 10 1 100 12 10 1 12 9 12 10 1 1 1 12 10 1 12 9 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 1 12 10 12 10 1 12 10 10 1 12 10 1 12 10 10 1 1 100 10 12 10 1 12 10 1 12 10 1 1 7 1 12 10 1 1 1 1 12 9 1 12 10 1 100 1 8 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 11 1 100 1 12 9 1 100 10 1 8 1 1 12 10 12 10 1 8 1 12 10 1 1 12 10 1 1 1 12 10 1 100 10 1 8 10 1 8 1 12 10 1 8 1 1 1 1 1 +instanceKlass org/apache/felix/scr/impl/helper/ReadOnlyDictionary +instanceKlass org/osgi/framework/FrameworkUtil$MapAsDictionary +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$SystemBundle$SystemBundleHeaders +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$UnmodifiableDictionary +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap +instanceKlass org/eclipse/osgi/storage/BundleInfo$CachedManifest +instanceKlass java/util/Hashtable +ciInstanceKlass java/util/Dictionary 1 1 28 1 100 1 1 7 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/Properties +ciInstanceKlass java/util/Hashtable 1 1 436 1 7 1 1 7 1 7 1 100 1 100 1 7 1 7 1 100 1 7 1 7 1 7 1 1 7 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 1 3 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 12 10 12 9 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 7 1 1 12 10 1 8 1 12 10 12 9 12 9 4 1 7 1 1 12 10 12 9 1 4 12 10 1 1 1 1 12 11 1 1 12 10 1 12 10 1 12 9 1 1 1 1 1 1 1 12 10 1 1 1 1 1 100 10 100 1 1 12 9 1 7 1 12 10 1 1 12 9 1 12 10 1 1 12 10 3 1 12 9 1 12 9 1 1 1 1 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 11 1 7 1 1 12 11 1 7 1 12 11 1 12 11 1 12 11 1 12 11 12 10 1 1 1 1 12 10 12 10 12 9 12 9 12 9 1 1 100 10 1 100 1 12 10 10 1 8 10 1 12 10 1 8 10 1 100 1 8 1 1 7 1 12 10 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 10 1 1 10 1 1 12 10 1 100 12 11 12 11 10 1 1 10 1 1 1 1 100 1 12 10 1 100 1 1 12 11 1 100 10 1 1 1 1 100 1 12 11 1 1 1 1 1 1 1 1 1 100 12 11 1 1 1 1 12 10 1 1 1 1 1 1 100 1 12 10 1 100 1 12 10 1 12 10 1 100 1 12 10 1 1 1 1 1 100 1 12 10 1 1 12 10 8 1 12 10 1 100 1 8 10 4 12 10 4 1 12 10 1 8 12 10 1 100 1 1 12 10 1 100 1 100 1 1 12 11 1 1 12 10 12 10 1 1 12 10 1 10 1 1 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/util/Messages$MessagesProperties +instanceKlass org/eclipse/core/internal/resources/SaveManager$MasterTable +instanceKlass org/eclipse/core/internal/preferences/SortedProperties +instanceKlass org/eclipse/osgi/util/NLS$MessagesProperties +instanceKlass java/security/Provider +ciInstanceKlass java/util/Properties 1 1 545 1 7 1 1 7 1 7 1 7 1 1 7 1 7 1 1 100 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 100 1 12 10 12 10 12 9 12 9 12 9 1 7 1 12 10 1 1 1 1 12 10 1 1 1 100 1 8 1 7 1 1 12 10 12 10 1 1 12 10 1 1 8 12 10 1 7 12 10 1 1 12 10 1 1 12 9 1 1 12 10 1 7 1 12 10 1 12 10 1 1 12 10 1 100 1 8 1 12 10 100 1 12 10 1 1 12 10 1 1 1 12 10 3 10 1 7 1 1 12 10 1 12 10 1 1 12 10 1 8 1 12 10 1 1 12 10 1 1 1 8 1 7 1 12 10 1 1 12 10 1 12 10 1 1 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 7 1 7 1 1 12 9 1 12 10 12 10 1 7 10 10 1 1 12 10 1 7 1 1 12 11 1 100 1 7 1 1 12 11 1 1 12 11 1 12 11 1 12 11 12 10 1 8 1 100 1 12 10 1 1 100 1 12 10 1 100 10 1 12 10 1 100 1 12 10 1 1 100 1 12 9 1 12 10 1 1 100 1 100 1 100 1 1 12 10 1 100 10 1 8 1 8 1 12 10 1 1 1 12 10 12 10 1 1 1 1 10 1 1 12 10 1 12 10 1 1 1 7 10 1 12 10 1 12 11 1 7 1 1 12 10 1 1 1 8 1 100 1 12 10 11 1 8 1 1 100 10 1 11 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 12 10 1 12 10 10 1 12 10 1 1 12 10 1 12 10 10 1 1 1 12 10 1 1 1 12 10 1 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 12 10 12 10 1 1 1 12 10 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 1 12 10 12 10 1 1 1 100 10 1 100 1 12 11 4 11 1 1 12 10 1 100 1 12 10 1 12 11 1 1 12 10 1 1 1 100 1 100 1 12 10 1 12 10 1 100 1 8 1 12 10 10 1 100 1 1 12 10 1 100 6 0 1 1 12 10 1 100 1 1 12 11 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 1 1 +staticfield java/util/Properties UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +ciInstanceKlass java/lang/Module 1 1 859 1 7 1 7 1 100 1 7 1 7 1 100 1 100 1 100 1 7 1 7 1 1 1 7 1 1 7 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 12 10 12 9 12 9 12 9 1 1 12 10 1 12 10 1 7 1 7 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 11 1 1 12 10 1 7 1 1 12 10 1 7 1 100 1 1 12 10 1 1 1 1 1 1 7 1 1 12 10 1 100 1 1 12 9 1 100 1 1 12 10 1 1 1 1 12 10 1 8 1 1 12 10 1 12 10 12 9 1 12 9 1 1 1 1 12 10 12 9 1 12 11 1 12 9 1 7 1 1 12 10 1 1 1 1 7 1 1 12 10 1 1 12 10 1 100 1 100 10 1 1 12 10 1 8 1 12 10 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 7 1 1 12 9 1 1 12 10 1 1 1 1 12 10 1 12 9 1 12 10 1 12 10 12 9 1 7 1 12 11 1 1 12 10 12 9 1 1 12 9 1 12 10 1 12 10 1 1 1 1 1 100 1 8 10 1 1 12 10 1 12 10 1 8 1 1 1 1 1 1 12 10 1 1 1 8 1 8 1 1 12 10 1 12 10 1 1 12 10 16 1 1 12 10 15 16 1 7 1 1 12 10 15 1 1 12 18 1 1 12 10 1 12 11 1 12 9 12 11 1 1 1 100 1 12 10 1 100 1 8 10 1 7 1 1 12 11 1 12 10 1 12 10 1 12 10 1 1 1 12 11 1 7 1 12 11 1 1 12 11 12 9 1 12 11 1 1 1 1 12 10 1 1 1 12 10 1 12 9 1 12 10 1 7 12 10 1 1 1 7 1 12 10 10 1 100 16 1 1 12 10 15 16 1 1 12 18 1 1 12 11 16 1 100 10 15 1 16 1 12 18 1 1 12 11 1 100 1 1 12 10 1 1 12 11 1 1 1 1 7 1 12 10 4 1 7 1 12 11 1 7 1 7 10 1 7 1 1 12 10 1 7 1 100 1 100 10 12 11 1 8 10 1 1 12 10 1 7 12 10 1 12 10 1 12 10 12 10 10 1 1 12 11 12 10 1 1 12 10 12 9 1 100 10 1 1 12 10 1 100 11 1 1 12 10 1 12 11 10 1 12 10 11 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 12 10 1 12 10 1 12 10 10 1 12 10 1 12 10 1 1 12 10 15 1 16 1 12 18 1 12 11 1 1 12 10 15 1 16 1 12 18 1 12 10 1 12 10 12 10 1 12 10 1 12 10 1 12 10 12 9 1 10 10 10 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 9 16 1 12 10 15 16 1 1 12 18 1 100 1 1 12 10 1 100 1 100 1 8 1 1 12 10 1 12 10 1 100 1 12 10 1 1 12 10 1 1 7 1 100 1 8 1 100 10 3 1 12 10 1 100 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 100 1 100 1 100 12 10 1 100 1 8 1 12 10 1 1 12 10 1 7 1 12 10 1 1 12 10 12 10 12 10 1 1 12 10 1 100 10 1 1 12 10 1 100 1 1 12 10 1 8 1 1 12 10 1 100 1 12 10 1 8 1 12 10 1 8 1 12 10 12 10 12 10 1 8 10 1 12 10 1 7 10 1 1 12 10 1 12 10 1 12 9 1 12 9 1 12 9 1 12 9 12 10 1 12 11 1 12 10 1 1 1 1 1 1 1 1 +staticfield java/lang/Module ALL_UNNAMED_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module ALL_UNNAMED_MODULE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module EVERYONE_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module EVERYONE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module $assertionsDisabled Z 1 +instanceKlass java/lang/reflect/Executable +instanceKlass java/lang/reflect/Field +ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 356 1 7 1 7 1 7 1 100 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 12 10 1 100 1 1 12 9 1 100 1 12 10 1 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 9 1 1 1 100 1 1 12 10 1 12 11 1 100 1 12 10 1 1 1 1 1 7 1 100 1 12 10 1 1 12 10 1 7 1 12 10 1 1 12 10 1 7 1 1 12 10 1 100 1 7 10 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 8 1 100 10 1 1 12 10 1 8 1 12 10 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 100 1 12 10 1 12 10 1 1 12 9 1 1 12 10 1 1 12 10 1 10 1 1 1 1 1 11 1 100 1 100 1 8 10 1 12 10 1 1 12 10 1 8 1 12 10 1 8 1 1 12 10 1 10 1 1 1 1 100 1 8 10 1 1 12 11 1 1 1 1 1 1 12 10 1 12 10 1 12 10 1 12 9 1 12 10 1 1 7 1 12 10 1 1 1 1 100 1 1 12 10 10 1 12 10 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 12 9 1 100 1 12 10 1 8 1 100 1 1 12 10 1 8 1 1 12 10 12 9 1 1 1 100 10 1 1 7 10 1 7 1 1 12 10 10 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 +staticfield java/lang/reflect/AccessibleObject reflectionFactory Ljdk/internal/reflect/ReflectionFactory; jdk/internal/reflect/ReflectionFactory +ciInstanceKlass java/lang/reflect/Field 1 1 398 1 7 1 7 1 100 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 1 12 10 1 7 1 1 12 10 1 7 1 12 10 1 1 12 9 12 10 12 10 1 7 1 12 10 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 1 12 9 1 100 1 8 1 12 10 12 10 12 9 12 9 1 1 1 1 12 10 1 7 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 12 10 1 1 7 1 12 10 1 1 1 12 10 12 10 12 10 1 1 12 10 1 1 7 10 1 7 12 10 1 1 100 10 1 8 1 12 10 1 1 12 10 1 8 12 10 1 12 10 1 8 1 1 8 1 10 1 100 11 1 1 1 100 1 1 12 9 1 1 12 10 1 1 12 10 1 7 12 11 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 1 12 10 1 7 1 12 10 1 12 10 1 1 12 10 12 10 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 1 1 1 1 7 1 12 10 1 12 10 1 7 11 1 12 10 1 7 1 1 1 1 100 1 1 12 10 1 1 1 7 1 1 12 10 1 12 9 1 7 1 1 12 10 1 7 1 1 12 11 1 1 12 10 1 100 1 1 1 1 12 10 1 1 12 9 1 7 1 1 12 10 1 12 10 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/Parameter 1 1 207 1 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 1 1 12 10 1 1 12 10 1 1 1 7 1 12 10 1 1 1 100 10 1 1 12 10 1 100 1 12 11 1 12 10 1 100 1 12 10 1 1 12 10 1 12 10 1 100 1 12 10 1 8 1 8 1 1 12 10 1 12 10 12 10 1 1 1 12 10 1 8 1 12 10 1 12 9 1 1 12 10 1 1 1 12 9 1 1 12 10 1 100 1 1 1 1 12 10 1 1 1 12 10 1 12 10 10 1 12 10 1 1 1 1 100 1 1 12 10 1 12 10 1 100 1 12 11 1 12 10 1 100 1 1 1 1 100 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 9 1 100 10 1 100 1 12 11 1 1 12 11 1 1 1 +instanceKlass java/lang/reflect/Constructor +instanceKlass java/lang/reflect/Method +ciInstanceKlass java/lang/reflect/Executable 1 1 484 1 7 1 7 1 100 1 100 1 100 1 100 1 7 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 11 1 7 1 12 10 1 1 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 12 10 1 8 1 1 1 1 100 10 12 10 1 1 12 10 1 7 1 1 12 10 1 16 1 7 1 1 12 11 15 1 16 1 7 1 1 12 10 15 1 1 12 18 1 7 1 1 12 11 1 8 1 8 1 8 1 7 1 1 12 10 1 1 12 11 1 7 1 8 1 8 12 10 1 100 1 8 1 12 10 1 8 1 1 1 1 100 1 1 12 11 1 100 1 1 12 10 1 12 11 1 100 1 8 1 16 18 1 8 1 12 10 1 1 1 1 12 10 12 10 15 16 18 1 8 1 100 1 12 10 1 100 1 12 10 1 12 10 1 12 10 1 8 1 8 1 1 12 10 1 1 12 10 10 1 12 10 1 1 1 1 1 1 1 1 1 100 10 12 10 12 10 1 7 12 10 12 10 1 12 10 1 1 12 10 7 1 7 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 8 1 12 10 1 12 10 1 1 3 1 100 1 8 1 12 10 1 12 10 10 1 12 10 1 1 12 10 1 8 1 8 1 8 1 100 12 9 1 12 10 1 8 12 9 12 10 12 10 1 1 12 10 1 12 10 12 10 1 1 12 10 1 1 1 1 1 1 7 12 10 1 1 12 10 1 100 1 100 1 1 12 10 1 7 1 1 1 1 1 7 1 12 10 1 12 10 1 7 1 12 11 1 7 1 12 10 1 1 1 1 100 1 1 12 10 1 1 1 1 12 10 1 12 9 1 1 12 10 12 10 1 1 12 10 1 100 1 1 1 1 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 12 9 1 10 10 10 1 100 1 1 12 10 1 1 12 10 1 12 9 1 1 12 10 1 1 12 9 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/Method 1 1 418 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 7 1 1 12 10 1 7 1 12 10 1 1 12 9 12 10 12 10 1 7 1 12 10 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 1 12 9 1 7 1 8 1 12 10 12 10 12 9 1 1 8 1 1 1 1 7 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 10 1 7 1 1 12 9 1 1 1 12 10 12 10 1 1 1 1 1 7 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 12 10 1 7 12 10 1 1 12 10 1 1 7 10 1 7 12 10 1 1 7 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 7 1 1 12 10 1 12 10 1 10 1 8 1 12 10 12 10 1 7 1 8 1 8 1 8 1 12 10 12 10 1 1 12 10 10 1 1 1 12 10 1 12 10 1 100 11 1 1 1 7 1 7 1 1 1 1 12 9 1 1 12 10 1 100 1 12 10 1 1 12 10 1 1 12 10 1 7 12 11 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 11 1 7 1 1 12 10 1 7 1 100 1 100 1 12 10 1 1 12 10 1 12 10 1 100 1 8 1 12 10 10 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 8 1 1 12 10 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/Constructor 1 1 399 1 7 1 1 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 12 10 1 7 1 12 10 1 1 12 9 1 1 12 10 12 10 1 7 1 12 10 1 1 1 12 9 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 1 100 1 8 1 12 10 12 10 12 9 1 1 1 1 7 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 100 1 8 10 1 1 1 1 1 1 1 12 10 12 10 1 1 1 1 1 12 10 12 10 1 100 1 1 12 9 1 1 1 1 1 7 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 7 12 10 1 1 100 1 12 10 1 1 12 10 1 1 1 12 10 1 100 1 1 12 10 1 1 8 10 1 12 10 1 100 1 8 1 12 10 12 10 1 1 12 10 1 12 10 12 10 1 1 1 12 10 1 12 10 1 1 1 1 100 1 100 1 100 1 1 1 12 9 1 100 1 1 12 10 1 1 1 12 10 12 10 1 8 1 1 12 10 1 7 12 11 1 12 10 1 12 10 1 12 10 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 100 1 12 9 1 12 10 1 12 10 1 12 10 1 100 1 8 10 1 1 1 1 12 10 1 1 12 10 10 1 1 12 10 1 12 10 1 100 1 1 12 10 1 100 1 1 12 11 1 1 12 10 1 1 12 9 1 100 1 1 12 10 1 12 10 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/FieldAccessorImpl +instanceKlass jdk/internal/reflect/ConstructorAccessorImpl +instanceKlass jdk/internal/reflect/MethodAccessorImpl +ciInstanceKlass jdk/internal/reflect/MagicAccessorImpl 1 1 10 1 100 1 7 1 1 12 10 1 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor33 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor32 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor31 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor30 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor29 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor28 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor27 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor26 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor25 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor24 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor23 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor22 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor21 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor20 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor19 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor18 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor17 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor16 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor15 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor14 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor13 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor12 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor11 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor10 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor9 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor8 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor7 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor6 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor5 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor4 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor3 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor2 +instanceKlass jdk/internal/reflect/GeneratedMethodAccessor1 +instanceKlass jdk/internal/reflect/DelegatingMethodAccessorImpl +instanceKlass jdk/internal/reflect/NativeMethodAccessorImpl +ciInstanceKlass jdk/internal/reflect/MethodAccessorImpl 1 1 19 1 100 1 7 1 100 1 1 12 10 1 1 1 100 1 100 1 1 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor30 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor29 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor28 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor27 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor26 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor25 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor24 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor23 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor22 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor21 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor20 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor19 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor18 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor17 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor16 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor15 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor14 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor13 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor12 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor11 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor10 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor9 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor8 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor7 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor6 +instanceKlass jdk/internal/reflect/SerializationConstructorAccessorImpl +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor5 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor4 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor3 +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor2 +instanceKlass jdk/internal/reflect/BootstrapConstructorAccessorImpl +instanceKlass jdk/internal/reflect/GeneratedConstructorAccessor1 +instanceKlass jdk/internal/reflect/DelegatingConstructorAccessorImpl +instanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl +ciInstanceKlass jdk/internal/reflect/ConstructorAccessorImpl 1 1 21 1 100 1 7 1 100 1 1 12 10 1 1 1 100 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/reflect/DelegatingClassLoader 1 1 10 1 100 1 7 1 1 12 10 1 +ciInstanceKlass jdk/internal/reflect/ConstantPool 1 1 134 1 7 1 100 1 100 1 1 1 1 1 12 10 1 1 12 9 1 1 12 10 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 8 1 7 1 1 12 11 1 7 1 1 12 10 1 1 1 1 +instanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/FieldAccessorImpl 1 1 53 1 100 1 7 1 100 1 1 12 10 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/UnsafeBooleanFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeShortFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeObjectFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeIntegerFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeQualifiedFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl 1 1 227 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 7 1 1 12 10 1 7 1 1 12 10 12 9 1 7 1 1 12 10 12 9 1 12 10 12 10 12 9 1 1 1 1 12 10 1 7 1 12 10 1 7 1 1 12 10 1 12 10 1 1 1 100 10 1 12 10 1 1 12 10 1 8 10 1 12 10 1 1 1 100 1 8 1 12 10 1 8 12 10 1 8 1 12 10 1 1 1 100 1 1 12 10 10 1 8 1 100 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 8 1 100 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 1 12 10 1 8 1 8 1 8 12 10 1 1 1 12 10 1 1 1 +staticfield jdk/internal/reflect/UnsafeFieldAccessorImpl unsafe Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +instanceKlass jdk/internal/reflect/UnsafeStaticObjectFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeQualifiedStaticFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl 1 1 39 1 7 1 7 1 1 1 1 12 10 1 1 12 9 1 7 1 1 12 10 12 9 1 1 8 1 7 1 1 12 11 1 7 1 1 12 10 1 +ciInstanceKlass jdk/internal/reflect/CallerSensitive 1 1 15 1 100 1 100 1 100 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl 1 1 113 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 1 1 100 1 100 1 100 1 100 12 9 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 12 9 12 9 12 9 1 7 1 1 12 10 1 7 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 12 9 1 7 1 1 12 10 1 1 12 10 1 1 1 1 1 1 12 10 8 1 1 12 10 1 1 1 1 +staticfield jdk/internal/reflect/NativeConstructorAccessorImpl U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield jdk/internal/reflect/NativeConstructorAccessorImpl GENERATED_OFFSET J 16 +instanceKlass java/lang/invoke/DelegatingMethodHandle +instanceKlass java/lang/invoke/BoundMethodHandle +instanceKlass java/lang/invoke/DirectMethodHandle +ciInstanceKlass java/lang/invoke/MethodHandle 1 1 582 1 7 1 7 1 100 1 100 1 7 1 100 1 100 1 1 100 1 100 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 12 10 1 7 1 1 12 10 1 7 1 7 1 1 12 10 12 9 1 12 10 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 1 1 100 1 1 12 11 12 10 1 12 10 1 12 10 12 9 1 1 12 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 1 12 10 1 8 1 7 1 1 12 10 1 8 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 8 1 1 12 10 1 1 8 1 12 10 1 8 1 100 1 1 12 10 12 9 1 100 10 1 100 1 1 12 9 1 100 9 1 8 1 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 8 1 1 12 10 1 8 1 12 10 1 1 1 12 10 1 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 1 100 1 1 12 9 1 1 12 10 1 100 1 12 11 1 12 10 12 10 1 100 1 1 12 10 1 100 1 12 11 10 1 100 1 12 11 1 12 10 1 100 1 12 11 1 1 12 9 1 1 12 11 1 100 1 1 12 11 1 1 12 10 1 12 9 1 12 11 1 12 9 1 12 9 1 12 9 1 1 12 11 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 8 1 12 10 1 12 10 1 8 1 12 10 1 12 10 10 1 1 1 7 1 100 1 7 1 12 10 12 10 1 8 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 100 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 12 9 1 1 1 1 1 12 10 12 10 1 1 1 1 8 1 1 12 9 12 9 1 1 12 9 1 12 10 1 12 10 1 1 12 10 1 1 1 12 9 12 9 1 7 1 1 12 10 1 7 1 12 11 12 9 1 1 12 10 1 12 10 12 9 1 1 12 10 8 1 1 12 10 8 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20 +staticfield java/lang/invoke/MethodHandle UPDATE_OFFSET J 13 +staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1 +instanceKlass java/lang/invoke/DirectMethodHandle$Special +instanceKlass java/lang/invoke/DirectMethodHandle$Interface +instanceKlass java/lang/invoke/DirectMethodHandle$Constructor +instanceKlass java/lang/invoke/DirectMethodHandle$Accessor +ciInstanceKlass java/lang/invoke/DirectMethodHandle 1 1 858 1 7 1 7 1 7 1 7 1 100 1 7 1 7 1 7 1 7 1 7 1 7 1 100 1 7 1 1 7 1 7 1 1 1 1 1 1 1 7 1 7 1 1 7 1 1 7 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 100 1 12 10 1 7 1 1 12 10 1 7 1 12 10 1 1 12 10 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 9 1 100 10 12 9 12 9 1 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 8 1 1 12 10 1 12 10 10 1 12 10 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 12 10 8 1 100 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 7 1 1 12 9 1 12 10 1 1 1 7 1 1 12 10 1 1 1 12 10 1 1 1 1 12 10 1 1 12 9 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 12 10 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 10 1 7 1 1 12 10 1 12 10 1 7 1 1 12 10 1 12 10 1 1 12 10 1 100 1 8 1 1 12 9 1 8 1 12 9 1 12 9 1 8 1 12 9 1 12 9 1 8 1 12 9 1 12 9 1 8 1 12 10 1 1 12 10 12 9 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 100 1 1 12 10 1 12 10 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 9 10 12 9 1 12 9 1 7 1 1 12 10 1 1 1 12 10 1 7 1 7 1 7 1 1 12 9 1 7 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 9 1 1 12 10 1 100 1 100 1 1 12 10 1 12 10 1 12 10 1 1 8 1 1 12 9 1 1 100 1 12 9 12 10 1 1 12 9 1 1 7 1 12 10 1 1 1 12 9 1 1 12 9 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 12 10 1 7 1 1 12 10 1 12 10 1 7 1 12 10 12 9 1 12 10 1 12 10 1 12 10 1 12 10 12 10 12 9 1 1 12 10 1 1 1 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 8 1 1 12 9 12 9 1 12 10 12 10 1 7 9 1 12 10 1 1 12 9 12 10 1 12 10 1 12 10 1 12 10 10 1 8 1 8 1 8 1 8 1 1 12 10 12 9 1 12 10 1 100 1 1 12 10 8 12 9 1 1 12 10 8 8 8 12 9 8 8 8 8 8 8 8 1 12 10 1 12 10 8 1 8 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/DirectMethodHandle IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/DirectMethodHandle FT_UNCHECKED_REF I 8 +staticfield java/lang/invoke/DirectMethodHandle ACCESSOR_FORMS [Ljava/lang/invoke/LambdaForm; 132 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/DirectMethodHandle ALL_WRAPPERS [Lsun/invoke/util/Wrapper; 10 [Lsun/invoke/util/Wrapper; +staticfield java/lang/invoke/DirectMethodHandle NFS [Ljava/lang/invoke/LambdaForm$NamedFunction; 12 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/DirectMethodHandle OBJ_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle LONG_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle $assertionsDisabled Z 1 +instanceKlass java/lang/invoke/VarHandleReferences$Array +instanceKlass java/lang/invoke/VarHandleInts$FieldStaticReadOnly +instanceKlass java/lang/invoke/VarHandleLongs$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleReferences$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleInts$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleReferences$FieldStaticReadOnly +ciInstanceKlass java/lang/invoke/VarHandle 1 1 368 1 7 1 7 1 100 1 100 1 100 1 100 1 7 1 7 1 100 1 7 1 7 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 12 9 12 9 1 1 1 100 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 12 10 1 7 1 12 10 1 1 12 10 1 100 1 1 12 10 1 1 1 12 9 1 1 12 10 1 100 1 1 12 10 1 1 12 10 1 1 12 9 1 12 10 1 1 12 9 1 12 10 1 12 10 1 1 1 1 1 12 9 1 1 12 9 1 12 10 1 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 12 10 1 12 10 1 1 12 10 1 1 12 9 1 12 10 1 1 12 10 1 12 10 1 1 10 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 1 1 1 100 1 12 10 12 9 10 1 1 12 9 1 12 10 1 12 10 1 1 12 10 1 12 10 1 100 1 1 12 10 1 1 12 9 1 1 12 10 12 9 1 12 10 1 12 10 1 100 1 12 10 1 100 10 1 1 7 1 1 12 9 12 9 1 7 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 10 1 7 1 1 12 10 12 9 8 1 1 12 10 1 7 1 1 12 10 1 1 1 1 1 1 +staticfield java/lang/invoke/VarHandle AIOOBE_SUPPLIER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$1 +staticfield java/lang/invoke/VarHandle VFORM_OFFSET J 16 +staticfield java/lang/invoke/VarHandle $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MemberName 1 1 693 1 7 1 7 1 100 1 100 1 7 1 100 1 7 1 1 100 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 8 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 12 9 1 1 1 7 12 10 1 1 12 9 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 7 1 1 12 10 1 12 10 1 7 1 12 9 1 12 10 1 100 1 100 12 10 1 8 1 1 12 10 1 12 10 1 12 10 1 12 10 12 9 1 8 1 100 1 1 12 10 1 7 10 1 1 12 10 1 100 1 100 1 1 12 10 12 9 1 100 1 8 1 12 10 1 100 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 8 1 8 1 8 1 1 1 1 100 1 1 12 10 1 12 10 1 1 12 9 1 1 12 10 1 12 10 1 12 10 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 8 1 1 12 10 1 12 10 1 8 1 100 9 8 1 100 9 1 1 12 10 1 1 1 12 10 1 12 10 1 8 1 1 12 10 1 12 10 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 12 10 1 8 1 12 10 1 12 10 1 8 1 1 1 12 10 1 1 1 12 10 1 1 1 7 1 1 12 10 12 10 1 8 1 8 1 1 12 10 1 100 1 1 12 10 1 7 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 10 1 12 10 1 12 10 1 12 10 1 3 12 10 1 1 12 10 1 1 1 1 3 1 1 1 12 10 1 7 1 1 12 10 1 1 1 12 10 1 1 1 12 9 1 1 12 10 1 1 3 1 1 12 10 10 1 7 1 1 12 10 1 12 10 1 7 10 10 12 10 12 10 1 12 10 10 12 10 12 10 12 10 12 10 1 100 10 10 12 10 1 100 10 10 12 10 1 1 1 12 10 10 1 1 12 10 1 1 1 7 10 1 1 12 10 1 100 10 12 10 1 12 10 1 12 10 1 1 1 10 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 100 12 10 1 1 12 10 1 1 100 1 8 10 1 7 1 12 10 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 8 1 8 1 8 1 8 1 12 10 1 1 1 12 10 1 1 12 10 1 8 1 8 1 12 10 1 8 10 1 12 10 1 12 10 1 8 1 8 10 1 12 10 1 1 1 8 1 1 12 10 1 8 1 12 10 1 1 12 10 1 12 10 1 100 1 8 1 8 1 8 1 8 1 100 10 1 1 8 1 8 1 8 1 8 1 12 10 1 100 1 100 1 100 10 1 100 10 1 100 1 1 12 10 1 1 1 1 12 9 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/ResolvedMethodName 1 1 10 1 100 1 100 1 1 12 10 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 606 1 7 1 7 1 100 1 100 1 1 7 1 7 1 1 7 1 1 7 1 1 7 1 7 1 1 7 1 100 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 12 10 1 100 10 1 1 12 10 12 10 1 1 1 1 12 10 1 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 7 1 1 1 1 1 100 1 100 1 100 12 10 1 7 1 1 12 10 1 100 1 1 12 10 1 7 10 1 1 12 10 1 8 1 12 10 1 8 1 1 12 10 1 8 1 1 12 10 1 100 1 1 12 9 1 8 1 100 1 1 12 10 1 100 12 10 1 100 1 8 1 1 1 7 10 1 12 10 1 7 1 7 1 12 9 1 1 12 10 1 12 10 1 1 7 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 12 10 1 100 1 1 12 10 1 1 12 10 1 12 9 1 8 1 12 10 1 8 1 12 10 1 8 1 8 1 8 1 12 10 1 8 1 1 1 1 12 10 1 12 10 1 1 100 1 1 12 10 1 8 1 100 1 1 12 10 1 7 1 8 1 12 10 1 8 1 8 1 8 1 8 1 8 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 12 10 1 100 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 8 1 8 10 1 1 1 12 10 1 1 12 10 1 8 1 100 1 1 12 10 1 8 1 8 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 9 1 1 12 10 10 1 12 10 1 12 9 1 1 12 10 1 12 9 1 12 9 1 1 12 10 1 12 10 1 100 1 1 12 10 1 7 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 8 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 7 1 1 12 10 1 1 12 10 1 100 1 8 10 1 1 1 1 1 12 9 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 1 100 10 10 1 100 1 100 10 1 100 10 1 1 12 10 1 1 100 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 12 10 1 12 10 10 1 8 1 100 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 12 9 1 7 1 1 12 10 12 9 1 7 12 11 1 1 12 10 12 10 10 12 10 1 7 1 1 12 10 1 1 1 1 1 1 +staticfield java/lang/invoke/MethodHandleNatives JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/LambdaForm 1 1 940 1 7 1 7 1 100 1 7 1 100 1 7 1 7 1 7 1 7 1 100 1 100 1 1 1 1 1 1 100 1 7 1 1 7 1 7 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 12 10 1 1 1 12 10 12 9 12 9 1 1 12 10 1 100 10 7 1 100 12 9 1 1 12 10 12 9 1 1 12 10 12 9 12 9 12 9 12 9 1 1 12 10 1 12 10 1 1 1 1 1 1 100 1 1 12 10 1 100 1 1 12 10 1 1 7 1 12 10 1 1 12 10 1 100 1 1 12 9 1 1 12 10 1 12 9 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 7 10 1 1 12 10 1 8 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 9 1 12 9 1 12 9 1 1 12 10 12 9 1 100 1 1 12 10 1 100 1 1 1 12 10 1 12 10 1 1 12 9 1 100 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 12 10 1 8 1 12 10 1 12 10 1 8 1 8 1 1 12 9 12 9 12 9 1 1 1 1 12 10 1 12 10 1 12 9 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 100 1 12 9 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 1 1 12 10 1 1 1 12 9 1 1 1 1 7 1 100 12 10 1 12 9 12 10 1 1 12 10 12 10 1 12 10 1 1 12 10 1 1 1 1 12 10 10 1 1 12 10 1 1 12 10 1 1 8 1 1 12 10 1 12 10 1 1 12 10 10 1 1 1 1 8 12 10 1 1 8 1 1 8 1 1 8 1 1 12 10 12 9 12 10 1 1 12 10 1 100 1 1 12 10 12 10 1 1 12 10 1 1 12 10 1 1 12 9 1 8 1 100 1 1 12 10 1 100 1 100 1 12 10 12 10 10 1 1 12 10 12 9 8 1 1 12 10 12 10 1 12 10 1 7 1 12 9 1 1 12 9 1 8 1 100 1 12 10 1 1 12 10 10 1 1 12 10 1 1 12 10 1 8 1 8 1 8 12 10 1 12 10 1 12 10 1 1 12 10 1 1 8 1 8 1 1 12 9 1 12 10 1 1 12 10 1 8 1 8 1 8 1 100 1 8 1 100 1 8 1 100 1 8 1 12 10 1 8 1 9 1 7 1 1 12 10 1 12 10 1 1 12 9 1 12 10 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 8 1 12 10 1 12 10 1 1 12 9 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 12 10 12 10 1 12 10 12 10 1 8 1 8 1 8 1 12 10 1 8 1 12 10 1 8 1 8 1 8 1 8 1 8 1 12 10 1 12 10 1 1 12 10 1 1 1 7 1 1 12 10 1 1 12 10 1 1 100 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 12 10 1 1 1 12 10 12 9 1 8 12 10 1 1 12 9 1 1 12 10 1 12 9 1 12 9 12 9 1 100 1 7 1 1 12 9 1 7 1 7 1 1 12 10 12 9 1 12 10 1 12 10 1 8 1 12 10 12 9 1 1 12 10 1 8 1 100 1 12 10 1 12 9 1 12 9 12 10 1 12 10 1 7 1 1 12 10 1 12 10 1 12 9 1 1 12 10 1 12 10 1 12 10 12 9 1 12 10 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 9 1 12 9 7 1 1 12 9 100 1 1 12 10 1 12 9 1 12 10 10 9 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/LambdaForm COMPILE_THRESHOLD I 0 +staticfield java/lang/invoke/LambdaForm INTERNED_ARGUMENTS [[Ljava/lang/invoke/LambdaForm$Name; 5 [[Ljava/lang/invoke/LambdaForm$Name; +staticfield java/lang/invoke/LambdaForm IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/LambdaForm LF_identity [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm LF_zero [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm NF_identity [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm NF_zero [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm createFormsLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/invoke/LambdaForm DEBUG_NAME_COUNTERS Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm DEBUG_NAMES Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm TRACE_INTERPRETER Z 0 +staticfield java/lang/invoke/LambdaForm $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MethodType 1 1 688 1 7 1 1 7 1 100 1 100 1 100 1 7 1 7 1 100 1 1 1 1 100 1 1 100 1 1 100 1 100 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 1 12 9 1 1 1 1 1 1 1 1 1 7 1 7 1 1 12 10 1 7 1 12 9 1 8 1 100 1 1 12 10 1 7 1 7 9 1 7 9 1 1 12 10 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 1 1 100 1 8 1 12 10 1 100 10 1 12 10 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 7 1 1 12 11 12 9 1 1 12 11 1 1 1 7 1 1 12 10 1 1 1 1 1 1 1 12 10 12 9 1 12 10 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 12 10 1 1 12 9 1 1 12 10 1 7 1 12 10 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 12 10 12 10 1 12 10 1 1 1 1 12 10 12 10 1 1 1 1 12 10 1 1 1 1 8 1 8 1 1 12 10 1 1 1 12 9 1 100 10 1 1 12 10 12 10 1 12 10 1 12 10 1 12 10 12 10 1 1 12 10 1 8 1 1 1 12 10 1 7 1 1 12 10 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 12 10 1 12 9 1 12 10 10 1 1 1 12 10 1 12 10 12 9 1 1 12 10 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 12 10 12 10 1 12 10 1 12 10 1 100 1 8 1 8 1 8 1 12 10 1 12 10 1 12 10 10 1 1 1 1 1 12 11 12 11 1 1 1 100 1 1 12 10 1 12 9 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 100 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 10 1 12 9 1 7 1 12 10 1 1 1 7 1 7 1 1 12 10 1 100 1 1 12 9 1 100 1 1 12 10 1 100 1 1 12 10 1 7 1 12 10 1 1 12 10 1 1 12 10 1 8 1 7 1 1 12 10 1 1 12 11 1 12 9 1 1 12 10 1 12 10 1 1 1 1 12 10 1 1 1 1 100 12 10 1 100 1 12 10 1 100 12 10 1 100 1 1 12 11 16 1 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 1 12 11 16 1 1 12 10 15 16 1 12 18 1 12 11 1 100 1 100 1 12 11 1 12 10 1 12 10 1 1 1 7 1 100 1 12 10 1 12 10 1 1 1 7 1 1 12 9 1 12 9 1 100 1 1 12 10 1 12 9 1 100 1 12 10 12 10 1 100 1 1 1 12 10 1 1 1 1 1 1 12 10 10 1 7 1 7 12 9 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MethodType internTable Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet; java/lang/invoke/MethodType$ConcurrentWeakInternSet +staticfield java/lang/invoke/MethodType NO_PTYPES [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType objectOnlyTypes [Ljava/lang/invoke/MethodType; 20 [Ljava/lang/invoke/MethodType; +staticfield java/lang/invoke/MethodType METHOD_HANDLE_ARRAY [Ljava/lang/Class; 1 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/invoke/MethodType $assertionsDisabled Z 1 +ciInstanceKlass java/lang/BootstrapMethodError 0 0 35 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 +instanceKlass java/lang/invoke/VolatileCallSite +instanceKlass java/lang/invoke/MutableCallSite +instanceKlass java/lang/invoke/ConstantCallSite +ciInstanceKlass java/lang/invoke/CallSite 1 1 267 1 7 1 7 1 7 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 12 9 1 1 12 10 12 9 1 1 7 1 1 12 10 1 1 100 12 10 1 100 1 1 12 10 1 12 10 1 100 1 1 12 9 1 100 1 12 10 1 1 1 1 1 1 12 10 1 7 1 100 1 100 10 1 100 1 1 12 10 1 1 12 10 1 8 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 10 1 12 10 1 1 12 10 1 100 12 9 1 1 12 9 8 1 1 12 10 1 1 12 10 1 1 12 10 1 12 9 1 8 1 100 1 12 10 1 12 10 1 100 1 8 10 1 12 10 1 1 12 10 1 100 1 1 12 10 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 9 8 1 1 12 10 12 9 1 100 10 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 100 1 7 1 1 12 10 1 100 1 8 10 1 7 12 10 1 1 12 10 1 100 1 8 1 12 10 1 1 1 12 10 1 1 1 1 1 1 +staticfield java/lang/invoke/CallSite $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/invoke/NativeEntryPoint 0 0 80 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 100 1 1 12 10 100 12 9 12 9 12 9 12 9 12 9 1 1 1 100 1 8 1 12 10 1 100 1 1 12 11 1 1 12 10 12 10 1 100 1 12 11 1 12 11 1 1 12 10 1 1 1 12 10 1 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext 1 1 40 1 7 1 7 1 100 1 7 1 1 100 1 7 1 1 1 12 10 1 1 10 1 7 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 +ciInstanceKlass java/lang/invoke/ConstantCallSite 1 1 55 1 7 1 7 1 1 1 1 1 1 1 12 10 12 9 12 9 1 7 1 1 12 10 1 1 100 12 10 1 1 1 100 12 10 1 1 12 9 1 1 100 10 1 12 10 1 1 1 12 10 1 1 1 1 +staticfield java/lang/invoke/ConstantCallSite UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 52 1 100 1 100 1 1 1 1 12 10 1 12 10 1 1 1 1 12 9 1 1 12 10 1 1 12 10 1 1 12 9 1 100 1 1 12 10 1 100 1 100 1 1 12 10 1 1 12 10 1 1 +ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 26 1 100 1 100 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 +ciInstanceKlass java/lang/AssertionStatusDirectives 0 0 18 1 100 1 100 1 1 1 1 1 1 1 1 1 1 12 10 1 +instanceKlass java/lang/StringBuilder +instanceKlass java/lang/StringBuffer +ciInstanceKlass java/lang/AbstractStringBuilder 1 1 485 1 7 1 7 1 100 1 7 1 100 1 7 1 1 100 1 7 1 1 100 1 100 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 3 1 1 12 10 12 9 12 9 1 1 7 1 1 12 9 12 9 1 1 12 10 1 1 1 12 10 3 3 1 12 10 100 1 1 12 10 1 11 1 100 1 100 10 1 8 1 12 10 1 12 10 1 1 12 10 12 10 1 12 10 1 12 10 1 1 12 9 1 1 12 10 1 12 10 10 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 100 1 8 10 1 1 12 10 1 1 1 100 12 10 1 1 12 10 10 1 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 1 100 10 1 12 10 1 1 100 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 10 1 1 1 1 12 10 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 10 1 1 12 10 1 12 10 1 1 12 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 7 1 12 10 1 12 10 1 12 10 1 1 7 1 12 10 1 12 10 1 12 10 1 1 7 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 12 10 1 1 12 10 12 10 1 1 1 1 1 1 12 10 1 1 1 1 12 10 10 1 7 1 1 12 10 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 12 10 1 1 12 10 1 1 1 16 1 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 100 1 1 12 10 1 1 12 10 15 18 1 1 1 1 1 12 10 1 12 10 1 1 12 10 12 11 1 12 10 1 12 10 1 100 10 12 10 10 1 8 1 8 1 8 10 10 1 1 100 1 1 1 12 10 10 10 1 1 1 1 1 1 1 +staticfield java/lang/AbstractStringBuilder EMPTYVALUE [B 0 +ciInstanceKlass java/lang/StringBuffer 1 1 417 1 7 1 1 7 1 100 1 100 1 100 1 100 1 100 1 1 100 1 100 1 1 1 1 1 5 0 1 1 1 1 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 1 1 12 9 1 12 10 1 12 10 1 12 10 1 12 9 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 1 100 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 10 1 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 10 1 1 1 12 10 1 1 1 1 12 10 1 1 12 9 1 7 1 1 12 10 1 100 10 10 1 1 1 100 1 1 12 10 10 1 12 10 1 7 10 8 1 1 12 10 8 1 12 10 1 8 1 12 10 1 12 10 1 1 1 100 1 1 12 10 1 1 12 10 12 10 1 100 1 8 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 12 10 1 1 1 1 12 10 1 1 7 1 12 10 1 7 1 1 12 9 1 7 9 12 9 1 1 1 1 1 1 1 +staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/lang/StringBuilder 1 1 371 1 7 1 1 7 1 100 1 100 1 100 1 1 5 0 1 1 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 1 7 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 12 10 1 1 1 12 10 1 1 1 1 12 10 1 1 12 9 1 1 12 9 1 7 1 1 12 10 1 7 10 1 1 1 100 1 100 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 10 1 12 10 1 1 1 100 1 100 1 12 10 1 12 10 1 12 10 1 100 1 8 10 1 1 12 10 1 1 12 10 1 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 10 1 12 10 1 1 1 1 12 10 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/misc/UnsafeConstants 1 1 28 1 7 1 100 1 1 1 1 1 1 1 1 1 12 10 1 12 9 12 9 12 9 12 9 12 9 1 +staticfield jdk/internal/misc/UnsafeConstants ADDRESS_SIZE0 I 8 +staticfield jdk/internal/misc/UnsafeConstants PAGE_SIZE I 4096 +staticfield jdk/internal/misc/UnsafeConstants BIG_ENDIAN Z 0 +staticfield jdk/internal/misc/UnsafeConstants UNALIGNED_ACCESS Z 1 +staticfield jdk/internal/misc/UnsafeConstants DATA_CACHE_LINE_FLUSH_SIZE I 0 +ciInstanceKlass jdk/internal/misc/Unsafe 1 1 1203 1 7 1 7 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 12 10 1 7 1 1 12 10 12 10 1 12 10 12 10 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 12 10 12 10 1 1 1 100 10 1 1 1 1 12 10 12 10 1 5 0 1 1 1 12 10 12 10 1 1 1 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 12 10 1 1 12 10 1 12 10 1 12 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 1 12 10 1 12 10 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 12 10 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 5 0 5 0 5 0 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 100 1 8 10 1 1 1 100 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 7 1 12 9 1 12 9 1 1 1 1 100 10 1 12 10 1 1 1 1 100 1 1 1 1 8 10 1 8 1 8 1 12 10 1 7 1 1 12 9 1 100 9 1 7 9 1 7 9 9 1 100 9 1 7 9 1 100 9 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 5 0 5 0 1 1 12 9 1 12 10 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 8 3 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 12 10 1 12 10 12 10 1 1 1 1 1 12 10 1 12 10 1 12 10 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 1 1 100 10 1 1 100 10 1 1 1 12 9 1 5 0 1 1 12 10 5 0 1 12 10 5 0 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 12 10 1 12 10 10 1 1 12 10 1 12 10 1 1 1 12 10 12 10 12 10 5 0 5 0 5 0 1 1 12 10 1 12 10 1 12 10 12 10 1 1 1 100 1 12 10 1 8 1 100 1 1 12 11 1 8 1 1 12 11 1 100 1 12 10 1 1 1 1 1 3 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 10 1 7 12 10 12 9 1 7 12 9 1 7 12 9 1 7 12 9 1 7 12 9 1 7 12 9 1 7 12 9 1 7 12 9 1 7 12 9 12 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 12 9 1 1 1 1 1 1 1 +staticfield jdk/internal/misc/Unsafe theUnsafe Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ADDRESS_SIZE I 8 +ciInstanceKlass jdk/internal/module/Modules 1 1 441 1 7 1 100 1 100 1 100 1 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 9 1 7 12 11 1 1 12 11 1 1 12 11 1 1 12 11 1 12 11 1 12 11 1 12 11 1 12 11 1 1 1 12 11 1 1 1 1 100 1 1 12 10 1 100 1 1 12 10 1 16 1 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 100 1 1 12 10 1 100 1 100 1 12 10 1 7 1 100 1 100 1 100 1 1 12 10 1 100 1 12 10 1 12 10 1 12 11 1 1 1 12 9 1 7 1 12 11 1 1 1 12 10 10 1 12 10 10 1 1 12 9 1 12 10 1 1 12 10 1 100 1 12 10 1 100 1 100 1 1 12 11 1 100 1 1 12 10 1 100 1 12 11 1 1 12 10 1 100 1 12 10 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 11 16 1 1 12 10 15 1 16 1 1 12 18 1 100 1 12 11 1 100 1 1 12 10 1 100 1 1 12 11 1 100 1 100 1 1 12 11 1 100 1 1 12 11 1 12 11 1 1 12 10 1 12 10 1 16 1 12 10 15 1 16 1 1 12 18 1 1 12 11 1 16 1 1 12 10 15 1 16 1 1 12 18 1 1 12 11 1 12 10 10 15 1 16 18 1 1 12 10 15 1 16 18 1 1 12 10 12 9 1 100 1 1 12 11 1 100 10 1 12 11 1 1 12 11 1 1 12 11 10 1 100 1 1 12 10 1 100 1 12 10 1 12 10 12 11 1 12 10 1 100 10 1 1 12 10 15 16 1 12 18 1 1 12 10 1 1 1 100 1 8 1 12 10 1 12 10 1 1 12 10 15 16 1 12 18 11 12 11 1 12 10 10 10 1 1 12 10 15 1 12 18 10 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 1 1 1 +staticfield jdk/internal/module/Modules JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/module/Modules JLMA Ljdk/internal/access/JavaLangModuleAccess; java/lang/module/ModuleDescriptor$1 +staticfield jdk/internal/module/Modules $assertionsDisabled Z 1 +instanceKlass java/io/SequenceInputStream +instanceKlass org/eclipse/core/internal/content/LazyInputStream +instanceKlass sun/nio/ch/NioSocketImpl$1 +instanceKlass java/net/Socket$SocketInputStream +instanceKlass sun/security/ssl/SSLSocketImpl$AppInputStream +instanceKlass org/eclipse/jdt/ls/core/internal/ConnectionStreamFactory$NamedPipeInputStream +instanceKlass sun/nio/ch/ChannelInputStream +instanceKlass java/io/ObjectInputStream$PeekInputStream +instanceKlass java/io/ObjectInputStream$BlockDataInputStream +instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager$LazyFileInputStream +instanceKlass java/io/ObjectInputStream +instanceKlass org/eclipse/core/internal/localstore/SafeChunkyInputStream +instanceKlass org/eclipse/core/internal/registry/BufferedRandomInputStream +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$RewindableInputStream +instanceKlass org/eclipse/osgi/storage/url/reference/ReferenceInputStream +instanceKlass java/util/jar/JarVerifier$VerifierStream +instanceKlass java/util/zip/ZipFile$ZipFileInputStream +instanceKlass java/io/FilterInputStream +instanceKlass java/io/FileInputStream +instanceKlass java/io/ByteArrayInputStream +ciInstanceKlass java/io/InputStream 1 1 150 1 7 1 7 1 100 1 100 1 1 3 1 3 1 3 1 1 12 10 1 1 10 1 1 1 100 1 1 12 10 1 7 1 1 12 10 12 10 1 1 3 1 1 12 10 1 100 1 8 1 12 10 1 7 1 7 1 7 1 1 12 10 1 100 1 8 10 1 7 1 1 12 10 1 7 10 1 1 12 11 1 1 12 10 1 1 12 11 1 7 1 1 12 11 1 1 12 11 1 7 1 1 12 10 1 1 5 0 1 12 10 1 1 12 10 1 100 10 1 8 10 1 1 1 1 1 1 8 1 1 1 1 8 1 1 12 10 1 7 1 1 12 10 1 1 1 1 1 1 +ciInstanceKlass java/io/ByteArrayInputStream 1 1 77 1 7 1 7 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 1 1 7 1 1 12 10 1 1 1 1 7 1 1 12 10 1 7 1 1 12 10 1 1 1 100 1 1 12 10 1 12 10 1 1 1 100 1 100 1 12 10 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/net/URL 1 1 672 1 7 1 7 1 100 1 7 1 7 1 7 1 7 1 100 1 100 1 1 100 1 100 1 1 1 1 1 8 1 1 5 0 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 12 10 1 12 10 1 12 10 12 9 12 9 1 7 1 1 12 10 1 1 12 10 1 7 1 7 1 1 12 10 12 9 1 1 12 10 1 8 1 1 12 10 1 7 10 1 1 12 10 1 8 1 1 12 10 12 9 1 8 1 12 10 1 12 10 1 8 12 9 1 1 12 10 12 9 1 12 10 1 12 10 12 9 12 9 1 8 12 9 1 1 12 10 1 8 12 9 1 1 12 10 1 7 1 1 12 10 1 8 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 100 1 1 12 10 1 1 12 10 1 8 1 1 12 10 1 12 10 1 8 12 9 1 8 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 1 7 1 1 12 10 1 100 1 8 10 1 12 10 1 8 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 8 1 12 10 10 1 7 1 1 12 10 1 12 10 1 100 1 1 12 9 1 100 1 1 12 10 1 1 12 9 1 100 1 1 1 100 1 100 1 12 10 1 100 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 12 10 1 12 10 1 1 12 10 1 12 10 12 10 1 1 1 100 10 10 1 12 10 1 12 10 1 1 1 100 1 12 10 1 1 8 1 1 12 9 1 100 1 1 12 10 1 1 12 10 1 1 12 9 1 1 12 10 1 100 1 12 10 1 12 10 10 1 1 12 10 1 12 10 12 10 1 12 10 1 1 12 10 1 7 1 12 10 1 1 12 10 1 1 12 10 1 1 12 9 12 9 1 100 1 8 10 1 12 10 12 9 1 7 1 12 10 1 7 1 1 100 1 7 1 12 10 1 8 1 1 12 10 1 100 1 12 10 1 8 1 8 1 7 1 1 12 10 1 100 1 1 12 10 1 12 10 1 12 10 1 1 1 10 1 12 9 1 7 1 12 10 1 8 1 12 10 10 1 7 1 1 12 10 8 1 7 1 1 12 9 1 12 10 1 1 12 10 1 12 10 12 10 1 7 1 12 10 1 12 11 12 10 12 10 12 9 1 1 12 10 1 1 1 100 1 12 10 1 1 1 1 12 10 8 1 12 10 10 8 8 1 12 10 8 8 8 1 100 1 12 10 12 9 1 1 100 12 10 1 1 12 10 1 12 10 12 10 1 1 12 10 1 1 12 10 10 10 12 10 12 10 12 10 1 12 10 1 100 1 12 10 10 1 12 10 1 8 10 10 1 1 12 10 1 12 10 1 1 12 10 1 10 10 10 1 7 1 12 10 1 7 1 1 12 9 12 9 10 1 7 1 1 12 10 1 1 1 1 1 1 1 +staticfield java/net/URL defaultFactory Ljava/net/URLStreamHandlerFactory; java/net/URL$DefaultFactory +staticfield java/net/URL streamHandlerLock Ljava/lang/Object; java/lang/Object +staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/util/jar/Manifest 1 1 290 1 7 1 7 1 100 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 12 10 1 7 10 12 9 1 7 10 12 9 12 9 1 1 100 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 11 1 1 1 1 1 12 11 1 12 10 1 100 1 1 12 10 1 100 1 100 10 1 8 1 1 12 10 1 1 12 10 1 12 10 1 12 10 11 1 1 1 100 12 10 1 1 12 10 1 1 12 11 1 12 10 1 1 12 11 1 100 1 1 12 11 1 100 1 12 11 1 1 12 11 1 12 10 1 8 1 12 11 1 7 1 1 12 10 1 12 11 12 10 1 12 10 1 1 1 1 1 1 100 1 1 12 10 1 8 1 1 12 10 10 1 7 1 1 12 9 1 1 12 10 1 100 12 10 1 100 1 12 10 1 12 10 1 1 1 100 1 1 12 9 1 8 1 12 10 1 8 1 8 12 10 1 12 10 1 100 1 1 12 10 1 8 12 10 1 8 10 1 1 12 10 1 8 1 1 12 10 1 7 1 1 12 10 1 12 10 10 1 1 12 11 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 11 1 12 10 11 1 12 10 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/loader/ClassLoaders$BootClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader +ciInstanceKlass jdk/internal/loader/BuiltinClassLoader 1 1 654 1 7 1 7 1 100 1 7 1 7 1 100 1 100 1 7 1 7 1 1 7 1 100 1 1 7 1 7 1 1 100 1 7 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 7 1 1 12 10 1 7 1 7 1 7 1 12 10 12 9 12 9 1 7 1 12 10 12 9 1 12 10 12 9 1 1 1 12 10 1 1 1 1 1 1 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 11 1 100 1 100 10 1 1 12 10 1 8 1 12 10 12 10 1 12 10 1 1 12 10 1 7 1 1 12 11 1 7 1 12 11 1 1 12 11 1 8 1 8 10 12 9 1 7 1 12 10 1 1 1 1 12 11 1 1 1 100 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 1 7 1 1 12 10 12 10 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 11 1 7 1 12 10 1 7 1 1 12 10 1 12 10 1 8 1 1 12 10 10 1 8 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 12 11 1 12 11 1 1 1 1 7 10 1 1 12 11 11 1 12 10 1 12 10 1 1 100 1 7 12 10 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 1 100 1 100 1 12 11 1 7 1 12 10 1 1 12 10 1 100 1 12 10 1 12 10 16 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 12 10 1 12 10 1 12 10 15 1 16 18 1 100 1 7 1 12 10 1 1 1 1 7 10 1 1 12 10 1 1 12 10 1 7 1 12 10 1 1 1 12 10 12 9 1 100 10 1 1 1 1 12 10 1 1 12 10 1 12 10 1 100 12 10 1 1 12 10 1 100 1 1 12 10 1 1 12 10 1 12 10 1 1 1 12 10 1 12 10 15 1 16 1 12 18 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 7 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 7 1 12 11 1 12 10 1 7 1 100 1 12 10 1 12 10 1 1 12 11 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 7 1 12 10 1 8 1 1 12 10 1 12 10 1 12 10 1 100 1 8 1 8 10 1 12 10 1 8 1 8 1 7 1 1 12 10 1 7 1 1 12 11 1 1 12 9 1 1 12 10 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 12 9 1 7 1 1 12 10 1 8 1 12 10 1 1 1 7 12 10 1 12 10 10 1 1 12 11 12 10 1 12 10 1 12 10 1 12 10 1 12 10 10 1 1 1 12 10 1 12 10 1 8 1 7 1 12 10 12 10 1 1 1 1 1 1 1 1 +staticfield jdk/internal/loader/BuiltinClassLoader packageToModule Ljava/util/Map; java/util/concurrent/ConcurrentHashMap +staticfield jdk/internal/loader/BuiltinClassLoader $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders 1 1 162 1 7 1 100 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 7 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 1 12 9 1 1 12 9 1 12 9 1 1 1 1 100 1 100 1 7 1 100 1 1 12 11 1 100 1 1 12 11 1 1 12 11 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 7 1 1 12 10 12 9 12 10 12 10 1 12 10 1 8 1 7 1 1 12 10 1 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 8 1 7 1 12 10 1 8 1 8 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 +staticfield jdk/internal/loader/ClassLoaders JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/loader/ClassLoaders BOOT_LOADER Ljdk/internal/loader/ClassLoaders$BootClassLoader; jdk/internal/loader/ClassLoaders$BootClassLoader +staticfield jdk/internal/loader/ClassLoaders PLATFORM_LOADER Ljdk/internal/loader/ClassLoaders$PlatformClassLoader; jdk/internal/loader/ClassLoaders$PlatformClassLoader +staticfield jdk/internal/loader/ClassLoaders APP_LOADER Ljdk/internal/loader/ClassLoaders$AppClassLoader; jdk/internal/loader/ClassLoaders$AppClassLoader +ciInstanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader 1 1 91 1 7 1 7 1 100 1 1 1 1 8 1 12 10 1 1 1 1 100 1 7 1 1 12 10 1 100 1 1 12 10 1 1 12 10 1 100 1 1 12 10 12 10 1 1 12 10 1 7 1 8 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 7 1 1 12 10 1 100 12 10 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader 1 1 34 1 100 1 7 1 100 1 1 100 1 1 1 1 8 1 12 10 1 1 1 7 1 1 12 10 1 100 12 10 1 1 1 1 +ciInstanceKlass java/security/CodeSource 1 1 337 1 7 1 7 1 100 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 1 7 1 1 12 10 12 9 1 100 7 1 1 12 10 1 7 10 1 1 12 10 1 1 1 100 1 12 10 1 1 12 10 1 1 1 1 1 1 1 7 10 1 7 1 1 12 10 1 7 1 12 10 1 1 12 10 1 12 10 1 7 1 1 12 10 1 1 1 1 12 10 1 1 1 12 10 12 10 10 10 1 12 10 1 100 1 1 12 10 1 12 10 1 12 10 1 12 10 1 8 1 12 10 1 12 10 1 1 12 10 1 12 10 1 8 1 1 12 10 10 1 100 10 1 1 12 10 1 8 1 12 10 1 12 10 1 12 10 1 8 1 8 12 9 1 100 1 8 1 12 10 1 12 10 1 8 1 12 10 1 8 1 8 1 8 1 1 1 100 1 100 1 100 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 1 12 10 1 1 1 100 1 100 1 100 1 12 10 1 12 10 1 100 12 10 1 100 10 1 8 1 12 10 1 12 10 1 1 12 10 1 100 1 1 12 10 1 8 1 8 10 1 1 12 10 1 100 1 1 12 10 1 100 12 10 1 1 12 10 1 12 11 1 100 10 1 12 10 11 12 10 1 8 1 100 1 12 10 1 1 12 10 1 12 10 1 1 12 11 11 1 1 1 1 +instanceKlass org/eclipse/sisu/wire/EntryMapAdapter +instanceKlass com/google/common/collect/Maps$ViewCachingAbstractMap +instanceKlass com/google/common/collect/MapMakerInternalMap +instanceKlass org/eclipse/sisu/wire/MergedProperties +instanceKlass com/google/gson/internal/LinkedTreeMap +instanceKlass com/google/common/cache/LocalCache +instanceKlass java/util/concurrent/ConcurrentSkipListMap +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$DictionaryMap +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$ServiceReferenceMap +instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableValueCollectionMap +instanceKlass org/apache/felix/resolver/util/ArrayMap +instanceKlass java/util/Collections$SingletonMap +instanceKlass java/util/TreeMap +instanceKlass java/util/IdentityHashMap +instanceKlass java/util/EnumMap +instanceKlass java/util/WeakHashMap +instanceKlass java/util/Collections$EmptyMap +instanceKlass sun/util/PreHashedMap +instanceKlass java/util/HashMap +instanceKlass java/util/ImmutableCollections$AbstractImmutableMap +instanceKlass java/util/concurrent/ConcurrentHashMap +ciInstanceKlass java/util/AbstractMap 1 1 151 1 7 1 1 7 1 7 1 100 1 100 1 7 1 100 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 7 12 11 1 1 10 1 1 1 1 12 11 1 7 1 12 11 1 1 12 11 1 12 11 1 12 10 1 1 12 11 1 1 1 1 1 1 1 100 10 1 12 11 1 1 1 11 12 10 1 12 11 1 12 9 1 12 10 1 1 12 9 10 1 100 1 1 100 1 100 11 12 11 12 11 1 12 11 1 1 1 8 1 7 10 1 1 12 10 1 8 1 12 10 12 10 1 1 7 12 10 1 1 1 1 1 1 1 1 +instanceKlass java/io/ObjectStreamClass$DeserializationConstructorsCache +ciInstanceKlass java/util/concurrent/ConcurrentHashMap 1 1 1022 1 7 1 1 7 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 7 1 7 1 7 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 7 1 7 1 7 1 100 1 7 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 100 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 0 1 1 3 1 3 1 3 1 1 1 4 1 3 1 3 1 3 1 1 1 3 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 12 10 1 1 1 1 100 1 7 1 1 12 10 1 100 1 100 1 1 12 10 1 100 1 100 1 1 12 11 1 12 11 1 1 1 1 1 12 11 1 1 1 12 9 12 9 12 9 1 7 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 9 1 12 10 1 1 100 10 5 0 12 10 1 1 1 1 12 10 5 0 1 1 1 1 1 1 12 10 12 10 12 9 12 10 1 12 9 1 1 12 9 1 1 12 10 7 1 12 9 1 1 12 10 1 1 12 9 1 12 10 1 1 100 10 1 12 10 1 1 12 10 1 1 1 1 1 12 10 1 1 1 12 10 1 12 10 12 10 1 1 12 10 1 1 12 10 1 100 1 8 1 12 10 1 100 1 1 12 10 1 1 12 10 12 11 1 12 10 1 12 11 1 7 1 1 12 11 1 7 1 12 11 1 12 11 1 12 11 1 12 11 1 1 1 12 10 1 12 10 1 1 12 9 1 1 12 10 9 1 1 12 10 1 12 9 1 1 12 10 5 0 1 1 1 12 9 1 12 10 1 1 12 9 1 12 10 1 12 9 10 1 1 1 100 10 1 1 12 10 1 8 1 12 10 12 10 11 1 1 1 100 1 7 1 12 10 1 1 12 10 1 8 1 12 10 1 8 1 12 10 1 8 1 12 10 1 12 10 1 1 1 100 1 100 1 12 10 12 10 1 12 10 1 12 10 1 12 9 9 1 12 10 12 9 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 11 1 1 1 1 7 1 12 11 1 1 1 12 10 1 100 1 12 11 1 1 1 1 1 1 7 10 12 11 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 10 1 1 1 10 1 7 1 1 12 9 1 1 12 10 1 1 1 3 1 1 7 1 12 10 12 9 1 1 12 10 12 9 12 9 1 1 12 10 100 1 7 1 12 10 12 9 1 12 9 1 1 12 10 12 10 12 9 12 9 1 1 12 10 1 9 3 1 12 9 1 12 10 12 9 1 12 10 12 9 1 12 10 12 9 1 100 1 1 12 10 1 12 10 1 1 1 1 5 0 1 100 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 10 1 1 1 1 100 10 1 12 10 10 1 1 1 1 12 10 10 1 1 1 1 12 10 10 1 100 1 1 12 10 1 1 1 1 12 10 10 1 100 1 12 10 1 1 1 1 12 10 10 1 12 10 1 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 1 12 10 10 1 1 1 1 12 10 10 1 1 1 1 12 10 10 1 1 10 10 1 10 10 1 1 10 10 1 1 1 12 10 10 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 1 1 10 10 1 10 10 1 1 10 10 1 1 1 1 12 10 10 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 12 10 1 1 7 1 1 12 10 1 12 10 1 7 1 12 10 1 1 12 9 12 9 1 1 12 10 8 1 1 12 10 8 8 8 8 1 1 12 10 1 12 10 1 100 1 8 10 1 7 1 1 1 1 1 1 1 +staticfield java/util/concurrent/ConcurrentHashMap NCPU I 8 +staticfield java/util/concurrent/ConcurrentHashMap serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; +staticfield java/util/concurrent/ConcurrentHashMap U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/util/concurrent/ConcurrentHashMap SIZECTL J 20 +staticfield java/util/concurrent/ConcurrentHashMap TRANSFERINDEX J 32 +staticfield java/util/concurrent/ConcurrentHashMap BASECOUNT J 24 +staticfield java/util/concurrent/ConcurrentHashMap CELLSBUSY J 36 +staticfield java/util/concurrent/ConcurrentHashMap CELLVALUE J 144 +staticfield java/util/concurrent/ConcurrentHashMap ABASE I 16 +staticfield java/util/concurrent/ConcurrentHashMap ASHIFT I 2 +instanceKlass java/util/Hashtable$ValueCollection +instanceKlass org/eclipse/sisu/inject/MildElements +instanceKlass org/eclipse/sisu/inject/MildValues$1 +instanceKlass com/google/common/collect/AbstractMapBasedMultimap$WrappedCollection +instanceKlass com/google/common/collect/Maps$Values +instanceKlass com/google/common/collect/AbstractMultimap$Values +instanceKlass com/google/common/collect/ImmutableCollection +instanceKlass com/sun/jna/Structure$StructureSet +instanceKlass java/util/AbstractMap$2 +instanceKlass java/util/TreeMap$Values +instanceKlass java/util/IdentityHashMap$Values +instanceKlass org/apache/felix/resolver/util/ArrayMap$1 +instanceKlass org/apache/felix/resolver/util/OpenHashMap$AbstractObjectCollection +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder +instanceKlass java/util/AbstractQueue +instanceKlass java/util/LinkedHashMap$LinkedValues +instanceKlass java/util/HashMap$Values +instanceKlass java/util/ArrayDeque +instanceKlass java/util/AbstractSet +instanceKlass java/util/ImmutableCollections$AbstractImmutableCollection +instanceKlass java/util/AbstractList +ciInstanceKlass java/util/AbstractCollection 1 1 130 1 7 1 1 7 1 7 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 12 10 1 7 1 12 11 1 1 12 11 1 12 10 1 1 1 7 1 100 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 7 1 12 10 1 7 1 1 12 10 1 100 1 1 12 10 1 1 100 1 1 12 10 1 1 1 100 10 1 12 11 1 1 1 11 12 10 1 1 12 10 1 1 100 1 1 12 10 11 1 1 1 1 1 8 1 7 10 1 1 12 10 1 8 1 12 10 12 10 1 1 1 +instanceKlass org/eclipse/jdt/core/dom/ASTNode$NodeList +instanceKlass org/eclipse/aether/util/graph/visitor/Stack +instanceKlass org/apache/maven/model/merge/ModelMerger$MergingList +instanceKlass com/google/common/collect/Lists$TransformingRandomAccessList +instanceKlass java/util/AbstractList$SubList +instanceKlass java/util/Collections$CopiesList +instanceKlass org/eclipse/osgi/internal/weaving/DynamicImportList +instanceKlass org/eclipse/osgi/internal/container/InternalUtils$CopyOnFirstWriteList +instanceKlass java/util/AbstractSequentialList +instanceKlass java/util/Collections$SingletonList +instanceKlass java/util/Vector +instanceKlass sun/security/jca/ProviderList$ServiceList +instanceKlass sun/security/jca/ProviderList$3 +instanceKlass java/util/Arrays$ArrayList +instanceKlass java/util/ArrayList$SubList +instanceKlass java/util/Collections$EmptyList +instanceKlass java/util/ArrayList +ciInstanceKlass java/util/AbstractList 1 1 187 1 7 1 1 7 1 7 1 7 1 100 1 100 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 12 10 12 9 1 1 1 1 1 12 10 1 12 10 1 1 1 1 1 1 1 100 10 1 1 1 1 1 1 12 10 1 7 1 1 12 11 1 1 12 11 1 12 11 1 7 1 12 10 1 1 12 10 1 12 11 1 12 11 1 12 11 1 1 1 12 10 1 1 1 1 1 12 10 1 100 1 1 12 11 1 7 11 11 1 1 12 10 1 1 1 12 10 1 1 1 1 1 12 10 1 7 1 12 10 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 8 1 100 1 8 1 8 1 8 10 11 1 10 12 10 12 11 1 1 12 10 1 8 1 8 1 1 1 1 1 +instanceKlass org/eclipse/sisu/bean/BeanScheduler$Pending +instanceKlass org/apache/maven/artifact/versioning/ComparableVersion$ListItem +ciInstanceKlass java/util/ArrayList 1 1 415 1 7 1 1 7 1 7 1 100 1 100 1 100 1 7 1 7 1 100 1 100 1 7 1 7 1 1 1 1 1 1 5 0 1 1 3 1 1 1 1 1 1 1 1 12 10 1 7 12 9 12 9 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 1 12 10 12 9 1 1 1 7 1 1 12 11 12 9 1 1 12 10 7 1 7 1 1 12 10 1 1 12 9 1 12 10 1 1 1 12 10 1 7 1 1 12 10 1 7 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 1 100 12 10 1 100 1 12 10 1 1 1 7 1 1 12 10 1 1 1 1 1 1 1 7 1 12 10 12 10 1 1 1 1 1 1 12 10 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 100 10 1 1 12 11 1 7 1 12 11 1 12 11 1 12 10 1 1 1 12 10 12 10 1 1 1 1 1 1 1 1 1 100 1 1 12 10 10 1 1 12 10 1 12 10 1 8 1 8 1 8 1 8 1 1 1 1 12 10 1 1 1 100 1 1 12 10 12 11 1 1 1 7 1 100 1 12 10 1 12 10 1 12 10 1 1 1 7 1 7 1 12 10 1 12 10 1 7 1 1 12 10 1 7 1 1 12 11 12 10 1 100 1 8 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 1 12 10 1 12 10 1 1 1 1 7 12 10 1 12 11 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 7 1 12 11 12 10 1 100 12 10 12 10 1 1 1 1 1 12 10 1 1 100 1 12 11 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 +staticfield java/util/ArrayList EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +staticfield java/util/ArrayList DEFAULTCAPACITY_EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +ciInstanceKlass java/lang/StackTraceElement 1 1 198 1 7 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 12 10 1 12 10 12 9 12 9 12 9 12 9 1 8 1 100 1 1 12 10 1 7 12 9 1 8 12 9 12 9 12 9 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 12 10 1 12 10 1 7 10 1 1 12 10 1 8 12 10 1 12 10 1 8 1 8 1 8 12 10 1 8 1 8 1 12 10 1 8 1 8 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 9 1 7 1 1 12 10 1 1 12 10 1 7 1 100 1 7 1 1 12 10 1 100 1 7 1 12 10 1 7 1 1 12 10 1 12 10 1 12 10 1 1 1 100 10 1 1 12 10 12 10 1 1 1 12 10 1 1 1 1 1 1 +instanceKlass java/nio/DoubleBuffer +instanceKlass java/nio/FloatBuffer +instanceKlass java/nio/ShortBuffer +instanceKlass java/nio/CharBuffer +instanceKlass java/nio/IntBuffer +instanceKlass java/nio/LongBuffer +instanceKlass java/nio/ByteBuffer +ciInstanceKlass java/nio/Buffer 1 1 202 1 7 1 7 1 7 1 100 1 7 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 1 1 1 12 10 1 100 1 12 10 12 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 8 1 1 12 10 1 12 10 1 1 1 8 12 9 1 100 1 8 1 12 10 1 8 1 8 1 12 9 1 12 10 1 8 1 100 1 8 1 8 1 12 10 1 8 1 8 1 8 1 1 1 100 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 1 1 1 100 10 1 1 1 100 10 1 1 1 1 1 1 12 10 1 10 1 12 11 1 1 7 1 12 10 1 7 1 1 12 10 12 9 1 1 12 10 12 9 10 1 7 1 1 12 10 1 1 1 1 1 1 +staticfield java/nio/Buffer UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/nio/Buffer SCOPED_MEMORY_ACCESS Ljdk/internal/misc/ScopedMemoryAccess; jdk/internal/misc/ScopedMemoryAccess +staticfield java/nio/Buffer $assertionsDisabled Z 1 +ciInstanceKlass java/lang/StackWalker 1 1 217 1 7 1 7 1 7 1 7 1 100 1 1 1 7 1 7 1 1 7 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 7 1 1 12 10 1 7 1 1 12 10 1 12 10 1 1 7 1 1 12 11 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 100 1 8 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 12 9 12 9 12 9 1 1 12 9 1 1 12 10 12 9 1 1 7 1 1 12 10 1 1 12 11 1 100 1 8 10 1 100 1 12 10 1 12 9 1 1 12 10 1 1 1 1 1 1 12 10 1 12 10 1 1 1 16 1 1 12 10 15 1 16 1 100 1 1 12 10 15 1 1 12 18 1 1 1 1 100 1 8 10 1 1 12 10 1 12 10 1 1 1 1 1 1 12 9 1 100 12 11 1 1 1 12 10 1 1 1 1 1 1 1 +staticfield java/lang/StackWalker DEFAULT_EMPTY_OPTION Ljava/util/EnumSet; java/util/RegularEnumSet +staticfield java/lang/StackWalker DEFAULT_WALKER Ljava/lang/StackWalker; java/lang/StackWalker +instanceKlass java/lang/StackStreamFactory$CallerClassFinder +instanceKlass java/lang/StackStreamFactory$StackFrameTraverser +ciInstanceKlass java/lang/StackStreamFactory$AbstractStackWalker 1 1 286 1 7 1 1 7 1 7 1 1 7 1 7 1 1 7 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 12 10 1 12 10 1 7 1 1 12 10 12 9 1 1 12 10 12 9 12 9 12 9 12 9 1 1 12 9 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 12 9 1 12 10 12 10 1 1 12 9 1 100 1 1 12 9 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 1 12 10 1 100 1 1 12 10 1 1 1 100 1 8 1 12 10 1 8 12 10 1 1 12 9 1 12 10 12 9 1 8 5 0 1 8 1 8 1 1 1 1 12 9 12 10 1 12 10 12 10 1 100 1 1 12 9 1 1 1 1 12 10 1 12 10 1 12 10 1 12 10 12 10 1 1 12 10 1 8 1 12 10 1 12 10 1 100 1 12 10 1 1 1 1 12 10 1 8 1 100 1 1 12 10 1 1 12 10 1 1 12 10 12 10 12 10 1 7 1 1 12 10 1 12 9 1 8 1 12 10 1 12 10 1 1 12 10 12 10 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 8 1 1 1 1 1 1 1 +instanceKlass java/lang/LiveStackFrameInfo +ciInstanceKlass java/lang/StackFrameInfo 1 1 123 1 7 1 7 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 9 12 9 1 7 1 1 12 11 12 9 1 1 1 1 1 12 11 1 1 12 10 1 7 1 12 10 1 12 10 1 1 12 11 1 1 1 12 11 1 1 12 11 1 1 1 1 12 10 12 9 1 1 1 12 10 1 100 12 10 1 12 10 1 1 12 11 1 12 10 12 9 1 1 12 10 1 100 1 100 1 8 1 12 10 1 1 7 1 1 12 10 1 1 1 1 +staticfield java/lang/StackFrameInfo JLIA Ljdk/internal/access/JavaLangInvokeAccess; java/lang/invoke/MethodHandleImpl$1 +ciInstanceKlass java/lang/LiveStackFrameInfo 0 0 85 1 100 1 100 1 100 1 100 1 100 1 1 1 100 1 1 1 1 1 3 1 3 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 1 1 1 1 1 1 1 100 12 10 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 10 1 1 1 12 10 1 1 12 10 1 1 1 100 1 1 1 1 1 +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer +ciInstanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer 1 1 25 1 7 1 7 1 100 1 1 5 0 1 1 1 1 12 10 1 1 12 9 1 1 1 1 +ciInstanceKlass java/lang/Boolean 1 1 136 1 7 1 1 7 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 5 0 1 1 1 1 1 1 3 1 12 10 12 9 1 1 1 12 10 12 10 1 8 1 7 1 12 10 1 1 1 1 1 12 9 12 9 1 1 1 1 8 1 1 1 1 12 10 1 1 12 10 1 1 100 1 100 1 7 1 1 12 10 1 100 1 1 1 1 12 10 1 1 1 1 1 1 1 1 100 1 12 9 12 9 1 100 1 100 1 1 12 10 1 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 +staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Character 1 1 531 1 7 1 1 7 1 100 1 100 1 100 1 1 7 1 100 1 100 1 100 1 1 1 1 1 1 3 1 3 1 1 3 1 3 1 1 1 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 3 1 3 1 3 1 3 1 1 1 3 1 1 3 1 1 1 5 0 1 1 1 1 1 1 1 1 100 1 1 12 9 1 8 1 1 12 9 1 100 12 9 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 1 1 12 9 12 10 1 1 1 1 1 12 10 1 1 12 10 1 1 1 7 1 12 10 1 1 12 10 1 1 1 1 3 1 1 1 3 1 1 1 12 10 12 10 1 1 1 1 3 1 1 1 7 1 1 12 11 1 12 11 12 10 1 1 1 12 10 1 100 10 1 1 12 10 1 3 1 1 1 12 10 12 10 1 1 12 10 1 100 1 8 1 1 12 10 1 12 10 1 12 10 12 10 1 1 1 12 10 1 1 1 12 10 1 12 10 1 7 1 12 10 10 1 12 10 10 1 12 10 1 12 10 1 12 10 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 10 12 10 10 1 12 10 10 1 12 10 10 1 12 10 10 1 1 12 10 10 1 12 10 10 1 12 10 10 1 1 1 12 10 10 1 12 10 10 1 5 0 1 12 10 1 12 10 10 1 12 10 10 1 1 1 1 1 12 10 10 1 12 10 10 1 1 1 12 10 1 12 9 1 100 10 12 10 1 12 10 1 3 1 1 100 1 1 12 10 12 10 1 12 10 1 100 10 12 10 1 1 12 10 1 1 12 10 1 8 1 12 10 1 100 1 1 12 9 1 12 10 10 1 1 1 100 1 12 10 1 12 10 1 12 10 10 1 1 12 10 10 12 10 1 8 1 12 10 1 1 7 1 1 12 10 1 8 1 1 12 10 12 9 1 1 1 1 1 1 1 1 +staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Character $assertionsDisabled Z 1 +instanceKlass com/google/gson/internal/LazilyParsedNumber +instanceKlass java/math/BigDecimal +instanceKlass com/sun/jna/IntegerType +instanceKlass java/util/concurrent/atomic/Striped64 +instanceKlass java/math/BigInteger +instanceKlass java/util/concurrent/atomic/AtomicLong +instanceKlass java/util/concurrent/atomic/AtomicInteger +instanceKlass java/lang/Long +instanceKlass java/lang/Integer +instanceKlass java/lang/Short +instanceKlass java/lang/Byte +instanceKlass java/lang/Double +instanceKlass java/lang/Float +ciInstanceKlass java/lang/Number 1 1 31 1 100 1 7 1 100 1 1 5 0 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 +ciInstanceKlass java/lang/Float 1 1 199 1 7 1 1 7 1 100 1 100 1 100 1 1 100 1 100 1 1 1 4 1 4 1 4 1 4 1 4 1 4 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 5 0 1 1 1 7 1 12 10 1 1 100 1 1 12 10 1 1 12 10 1 100 1 12 10 1 8 1 8 1 100 1 1 12 10 1 1 1 7 1 1 12 10 1 1 12 10 1 1 10 1 1 1 1 1 1 1 1 3 1 12 10 12 9 1 1 1 12 10 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 1 1 1 12 10 3 1 1 1 1 1 1 12 10 1 1 1 12 10 1 12 10 1 1 1 1 100 1 1 12 10 1 1 1 12 10 1 1 7 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 +staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Double 1 1 253 1 7 1 1 7 1 100 1 100 1 100 1 1 100 1 100 1 1 1 6 0 1 6 0 1 6 0 1 6 0 1 6 0 1 6 0 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 5 0 1 1 1 7 1 12 10 1 1 1 12 10 12 10 1 100 1 1 12 10 1 7 1 1 12 10 6 0 1 8 1 1 12 10 1 8 1 1 12 10 1 8 1 1 12 10 5 0 5 0 1 8 1 8 1 100 1 100 1 12 10 1 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 7 1 1 12 10 1 12 10 1 1 10 1 1 1 1 1 1 3 1 12 10 12 9 1 1 12 10 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 5 0 1 1 1 1 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 100 1 1 12 10 1 1 1 12 10 1 1 7 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 +staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Byte 1 1 197 1 7 1 1 7 1 100 1 100 1 1 7 1 1 1 3 1 3 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 7 1 12 10 1 1 1 1 100 1 1 12 9 1 8 1 1 12 9 1 100 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 1 12 9 1 1 1 7 1 1 12 10 1 100 1 1 12 10 1 8 1 1 12 10 1 8 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 10 1 8 1 8 1 1 1 1 1 10 12 9 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 5 0 1 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Short 1 1 204 1 7 1 1 7 1 100 1 100 1 1 7 1 1 1 3 1 3 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 100 1 12 10 1 1 1 7 1 1 12 10 1 100 1 1 12 10 1 8 1 1 12 10 1 8 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 1 1 1 100 1 1 12 9 1 8 1 1 12 9 1 100 1 1 12 10 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 12 9 1 12 10 1 1 12 10 10 1 8 1 8 1 1 1 1 3 10 12 9 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 3 3 1 1 5 0 1 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Integer 1 1 390 1 7 1 1 7 1 100 1 100 1 100 1 1 7 1 1 100 1 100 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 12 10 1 7 1 1 12 9 100 12 9 1 100 1 1 12 10 1 12 10 1 100 1 1 12 10 10 1 1 1 12 10 1 100 1 12 10 1 1 12 10 1 1 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 10 1 12 10 12 9 12 9 1 1 1 7 1 8 1 12 10 1 100 1 12 10 1 8 1 1 12 10 1 12 10 1 8 1 12 10 1 8 1 1 12 10 3 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 7 1 1 12 10 1 7 11 1 100 10 11 1 1 12 10 1 8 1 12 10 1 1 8 1 100 1 1 12 10 1 1 12 10 5 0 1 8 12 10 1 12 10 12 10 1 1 1 12 10 1 1 12 9 1 1 12 9 1 12 10 1 1 1 1 3 10 12 9 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 100 1 100 1 7 1 1 12 10 1 100 1 12 10 1 1 12 10 1 8 1 8 1 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 12 10 12 10 1 1 1 12 10 1 5 0 1 1 1 1 3 1 1 3 3 3 1 1 1 1 12 10 1 3 1 1 12 10 1 1 1 1 100 1 1 12 10 1 1 1 12 10 1 1 7 12 10 1 1 8 1 7 1 1 12 10 12 9 3 3 3 3 3 12 9 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Integer digits [C 36 +staticfield java/lang/Integer DigitTens [B 100 +staticfield java/lang/Integer DigitOnes [B 100 +staticfield java/lang/Integer sizeTable [I 10 +ciInstanceKlass java/lang/Long 1 1 440 1 7 1 1 7 1 100 1 100 1 100 1 1 7 1 1 100 1 100 1 1 1 5 0 1 5 0 1 1 1 1 1 1 3 1 3 1 5 0 1 1 1 12 10 1 7 1 1 12 9 1 100 1 7 1 1 12 9 1 100 1 1 12 10 1 12 10 1 100 1 1 12 10 10 1 12 10 1 12 10 1 12 10 1 12 10 5 0 5 0 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 100 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 1 12 10 10 12 10 5 0 5 0 1 12 9 1 12 9 5 0 1 1 1 7 1 8 1 12 10 1 8 1 12 10 1 8 1 8 1 1 12 10 5 0 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 100 1 1 12 10 1 100 11 1 100 10 11 1 1 12 10 1 8 1 12 10 1 1 8 1 100 1 1 12 10 12 10 1 8 1 8 1 1 12 11 1 12 10 12 10 1 1 12 10 1 1 5 0 5 0 1 1 12 9 1 12 10 1 1 1 12 10 1 8 1 8 1 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 12 10 12 10 1 1 12 10 1 1 1 1 3 10 12 9 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 100 1 100 1 100 1 1 12 10 1 100 12 10 1 1 1 1 12 10 1 1 1 5 0 1 1 1 1 1 12 10 1 12 10 1 5 0 5 0 5 0 1 1 1 1 1 12 10 1 5 0 5 0 1 12 10 1 12 10 1 1 1 1 100 1 1 12 10 1 1 1 12 10 1 1 7 12 10 1 1 8 1 7 1 1 12 10 12 9 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/util/Iterator 1 1 42 1 7 1 1 100 1 1 1 1 1 1 1 1 100 8 1 1 12 10 1 1 1 1 7 1 1 12 10 12 11 12 11 1 7 1 1 12 11 1 1 1 +ciInstanceKlass java/lang/reflect/RecordComponent 1 1 186 1 7 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 9 1 1 1 12 9 1 12 9 1 1 12 10 1 1 12 10 1 100 12 10 12 10 12 9 1 1 12 10 1 1 12 10 1 12 10 1 100 1 12 10 1 100 1 12 10 1 1 12 9 1 100 1 1 12 10 1 100 1 1 12 11 10 1 1 12 9 1 100 1 1 12 10 1 1 12 9 1 1 1 1 100 1 1 12 10 1 12 10 1 100 1 12 11 1 100 1 12 10 1 100 1 12 9 12 9 12 9 1 100 1 1 12 10 1 100 1 1 1 12 10 1 1 12 10 1 1 100 10 1 12 10 1 1 12 10 1 8 12 10 12 10 12 9 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport 0 0 367 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 3 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 9 1 1 12 10 1 100 1 12 10 1 1 12 11 1 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 1 12 11 1 1 1 1 100 11 1 100 1 1 12 10 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 1 1 1 100 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 100 1 1 12 10 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 1 12 11 1 1 1 11 1 1 12 9 1 100 1 12 10 1 1 1 1 12 11 1 1 1 1 1 12 10 1 100 1 1 12 10 1 1 1 1 12 10 12 10 1 1 12 10 1 1 1 1 1 1 1 +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask +instanceKlass jdk/internal/vm/vector/VectorSupport$Vector +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload 0 0 26 1 100 1 100 1 100 1 1 1 1 1 1 12 10 12 9 1 1 1 1 12 10 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$Vector 0 0 18 1 100 1 1 100 1 100 1 1 1 1 12 10 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask 0 0 18 1 100 1 1 100 1 100 1 1 1 1 12 10 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle 0 0 18 1 100 1 1 100 1 100 1 1 1 1 12 10 1 1 1 1 +ciInstanceKlass java/lang/NullPointerException 1 1 44 1 7 1 7 1 1 5 0 1 1 1 1 1 1 12 10 1 12 10 1 1 12 9 1 1 12 10 12 9 12 10 1 12 10 1 100 1 100 1 100 1 1 1 +ciInstanceKlass java/lang/ArithmeticException 1 1 18 1 100 1 100 1 1 5 0 1 1 12 10 1 12 10 1 1 +ciInstanceKlass java/lang/Math 1 1 330 1 7 1 100 1 100 1 1 1 6 0 1 6 0 1 6 0 1 6 0 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 7 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 7 1 12 10 3 3 3 1 1 7 1 12 10 5 0 5 0 5 0 5 0 5 0 1 1 1 1 12 9 1 100 1 12 10 1 1 1 100 1 8 1 12 10 1 1 8 1 1 1 12 10 1 1 12 10 5 0 5 0 1 1 3 5 0 1 3 1 1 1 1 1 1 5 0 1 12 10 1 1 12 10 1 1 8 12 10 1 8 1 1 1 12 9 12 9 1 1 1 1 1 12 10 6 0 1 12 10 12 9 1 100 10 1 12 10 1 100 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 12 10 1 1 1 12 10 12 10 6 0 1 1 12 10 1 1 12 10 12 10 12 10 4 1 1 12 10 1 12 10 1 1 12 10 12 10 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 5 0 1 6 0 1 4 1 6 0 4 1 6 0 4 1 1 12 10 12 9 12 10 12 9 1 1 1 7 1 1 12 10 4 6 0 1 1 1 1 1 1 +staticfield java/lang/Math negativeZeroFloatBits J -2147483648 +staticfield java/lang/Math negativeZeroDoubleBits J -9223372036854775808 +staticfield java/lang/Math $assertionsDisabled Z 1 +ciInstanceKlass java/util/Arrays 1 1 887 1 7 1 7 1 100 1 7 1 7 1 100 1 1 100 1 100 1 1 100 1 1 1 100 1 100 1 1 100 1 1 100 1 1 100 1 1 1 100 1 100 1 1 100 1 1 100 1 1 1 100 1 100 1 1 1 3 1 3 1 1 1 1 12 10 1 1 1 7 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 100 1 1 12 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 1 8 1 1 12 10 1 12 10 1 100 1 12 10 1 1 1 1 12 9 1 7 1 12 10 1 1 12 10 1 7 1 12 10 1 7 1 1 12 10 1 100 1 12 10 1 1 12 10 1 1 1 1 1 7 1 7 1 1 1 1 12 9 1 12 10 1 7 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 7 1 1 12 11 1 12 10 1 7 1 1 12 10 12 10 12 10 1 12 10 12 10 12 10 1 1 12 11 1 1 1 1 7 1 1 12 10 1 12 10 10 1 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 12 10 10 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 12 10 1 1 1 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 7 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 100 1 1 100 1 1 100 1 1 100 1 1 100 1 1 100 1 1 1 12 10 1 12 10 1 1 12 10 1 1 100 1 1 12 9 12 10 1 100 9 12 10 1 100 9 12 10 1 100 9 12 10 1 100 9 12 10 1 100 9 12 10 9 12 10 12 10 1 1 12 10 12 9 1 100 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 12 10 1 1 8 1 8 1 12 10 1 12 10 1 8 1 1 1 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 100 1 1 12 10 1 3 10 1 100 10 1 12 10 1 1 100 1 12 11 1 1 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 1 12 11 1 8 10 1 12 11 1 1 1 1 7 1 1 12 11 1 1 100 1 1 12 11 1 1 12 11 16 1 1 12 10 15 1 100 1 1 12 10 15 1 1 12 18 1 1 12 11 1 1 100 1 1 12 11 1 1 12 10 15 1 12 18 1 1 100 1 1 12 11 1 1 12 10 15 1 12 18 1 1 100 1 1 12 11 1 1 12 10 15 1 12 18 1 1 1 1 7 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 12 10 1 7 1 12 10 1 1 12 10 12 10 1 1 12 10 1 1 12 10 12 10 1 1 12 10 1 1 12 10 12 10 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 +staticfield java/util/Arrays $assertionsDisabled Z 1 +instanceKlass java/util/regex/PatternSyntaxException +instanceKlass java/security/InvalidParameterException +instanceKlass java/nio/file/InvalidPathException +instanceKlass java/nio/file/ProviderMismatchException +instanceKlass org/apache/maven/cli/MavenCli$IllegalUseOfUndefinedProperty +instanceKlass java/nio/charset/UnsupportedCharsetException +instanceKlass java/nio/charset/IllegalCharsetNameException +instanceKlass java/lang/NumberFormatException +ciInstanceKlass java/lang/IllegalArgumentException 1 1 24 1 100 1 7 1 1 5 0 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 +instanceKlass com/overzealous/remark/Options$FencedCodeBlocks +instanceKlass com/overzealous/remark/Options$Tables +instanceKlass com/overzealous/remark/Options$InWordEmphasis +instanceKlass org/eclipse/jdt/ls/core/internal/JDTUtils$LocationType +instanceKlass org/eclipse/lsp4j/TextDocumentSaveReason +instanceKlass org/eclipse/jdt/core/dom/rewrite/ImportRewrite$TypeLocation +instanceKlass org/eclipse/jdt/apt/core/internal/generatedfile/GeneratedFileMap$Flags +instanceKlass org/eclipse/jdt/ls/core/internal/managers/ProjectsManager$CHANGE_TYPE +instanceKlass org/eclipse/lsp4j/FileChangeType +instanceKlass org/eclipse/jdt/internal/formatter/Token$WrapMode +instanceKlass org/eclipse/jdt/ls/core/internal/codemanipulation/GenerateGetterSetterOperation$AccessorKind +instanceKlass org/eclipse/lsp4j/InlayHintKind +instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser$CaseLabelKind +instanceKlass sun/security/ssl/Alert$Level +instanceKlass sun/security/ssl/Alert +instanceKlass org/eclipse/jdt/ls/core/internal/managers/InternalBuildSupports +instanceKlass org/eclipse/lsp4j/DiagnosticSeverity +instanceKlass org/eclipse/lsp4j/CodeActionTriggerKind +instanceKlass org/eclipse/lsp4j/jsonrpc/messages/ResponseErrorCode +instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/TokenModifier +instanceKlass org/eclipse/jdt/ls/core/internal/semantictokens/TokenType +instanceKlass org/eclipse/lsp4j/TextDocumentSyncKind +instanceKlass com/google/inject/internal/ErrorId +instanceKlass org/eclipse/sisu/space/GlobberStrategy +instanceKlass org/eclipse/m2e/core/internal/builder/MavenBuilderImpl$DeltaType +instanceKlass org/eclipse/m2e/apt/preferences/AnnotationProcessingMode +instanceKlass org/apache/maven/plugin/MojoExecution$Source +instanceKlass org/eclipse/aether/util/graph/transformer/ConflictResolver$Verbosity +instanceKlass org/eclipse/aether/RepositoryEvent$EventType +instanceKlass org/eclipse/aether/named/support/ReadWriteLockNamedLock$Step +instanceKlass org/apache/maven/project/ProjectBuildingRequest$RepositoryMerging +instanceKlass com/google/common/cache/LocalCache$NullEntry +instanceKlass org/eclipse/jdt/internal/compiler/ast/Pattern$PrimitiveConversionRoute +instanceKlass org/eclipse/jdt/internal/compiler/ast/NullAnnotationMatching$Severity +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$DangerousMethod +instanceKlass org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable$IteratorForReporting$Stage +instanceKlass org/eclipse/jdt/internal/compiler/codegen/OperandStack$OperandCategory +instanceKlass org/eclipse/jdt/internal/compiler/ast/MessageSend$AssertUtil +instanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression$CompatibilityResult +instanceKlass org/eclipse/jdt/internal/compiler/ast/Annotation$AnnotationTargetAllowed +instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser$LocalTypeKind +instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateReceiver +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$BoundCheckStatus +instanceKlass org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding$ExternalAnnotationStatus +instanceKlass org/eclipse/jdt/internal/compiler/ast/ExpressionContext +instanceKlass org/eclipse/jdt/internal/compiler/env/IModuleAwareNameEnvironment$LookupStrategy +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope$MatchPhase +instanceKlass lombok/core/AST$Kind +instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeReference$AnnotationPosition +instanceKlass lombok/eclipse/TransformationState +instanceKlass lombok/core/configuration/CapitalizationStrategy +instanceKlass lombok/core/configuration/NullCheckExceptionType +instanceKlass lombok/core/configuration/CallSuperType +instanceKlass lombok/core/configuration/FlagUsageType +instanceKlass java/util/stream/MatchOps$MatchKind +instanceKlass org/eclipse/sisu/inject/QualifyingStrategy +instanceKlass com/google/common/io/FileWriteMode +instanceKlass javax/net/ssl/SSLEngineResult$HandshakeStatus +instanceKlass org/eclipse/jdt/internal/compiler/impl/JavaFeature +instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$ScanContext +instanceKlass sun/security/ssl/Finished$VerifyDataScheme +instanceKlass sun/security/ssl/SSLTrafficKeyDerivation +instanceKlass sun/security/ssl/SSLMasterKeyDerivation +instanceKlass com/google/inject/internal/InjectorImpl$JitLimitation +instanceKlass sun/security/util/DomainName$Rule$Type +instanceKlass sun/security/util/RegisteredDomain$Type +instanceKlass org/eclipse/sisu/bean/DeclaredMembers$View +instanceKlass org/eclipse/osgi/container/Module$StopOptions +instanceKlass sun/security/validator/CADistrustPolicy +instanceKlass com/google/inject/internal/Initializer$InjectableReferenceState +instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule$UpdateKind +instanceKlass sun/security/ssl/X509Authentication +instanceKlass org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment$CompleteTypeBindingsSteps +instanceKlass sun/security/ssl/ContentType +instanceKlass sun/security/ssl/SSLKeyExchange$T12KeyAgreement +instanceKlass com/google/common/collect/MapMakerInternalMap$Strength +instanceKlass sun/security/ssl/PskKeyExchangeModesExtension$PskKeyExchangeMode +instanceKlass sun/security/ssl/ECPointFormatsExtension$ECPointFormat +instanceKlass sun/security/ssl/CertStatusExtension$CertStatusRequestType +instanceKlass org/eclipse/jdt/internal/core/CompilationGroup +instanceKlass org/apache/maven/settings/building/SettingsProblem$Severity +instanceKlass sun/security/ssl/SSLExtension +instanceKlass java/net/StandardProtocolFamily +instanceKlass org/eclipse/aether/metadata/Metadata$Nature +instanceKlass org/apache/maven/model/building/ModelProblem$Version +instanceKlass sun/security/ssl/SignatureScheme$SigAlgParamSpec +instanceKlass org/apache/maven/building/Problem$Severity +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$ArchiveValidity +instanceKlass org/apache/maven/plugin/internal/DefaultPluginValidationManager$ValidationReportLevel +instanceKlass org/apache/maven/plugin/PluginValidationManager$IssueLocality +instanceKlass jdk/internal/math/FormattedFloatingDecimal$Form +instanceKlass org/eclipse/lsp4j/WorkDoneProgressKind +instanceKlass sun/security/ssl/SignatureScheme +instanceKlass sun/security/ssl/ClientAuthType +instanceKlass org/apache/maven/classrealm/ClassRealmRequest$RealmType +instanceKlass sun/security/ssl/SSLHandshake +instanceKlass java/net/Proxy$Type +instanceKlass sun/net/www/protocol/http/HttpURLConnection$TunnelState +instanceKlass org/apache/maven/execution/ExecutionEvent$Type +instanceKlass sun/security/ssl/NamedGroup +instanceKlass sun/security/ssl/NamedGroup$NamedGroupSpec +instanceKlass sun/security/ssl/CipherSuite$KeyExchange +instanceKlass sun/security/ssl/CipherSuite$MacAlg +instanceKlass sun/security/ssl/CipherSuite$HashAlg +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$SearchScope +instanceKlass com/google/common/base/CaseFormat +instanceKlass org/eclipse/lsp4j/MessageType +instanceKlass sun/security/ssl/CipherType +instanceKlass sun/security/ssl/SSLCipher +instanceKlass sun/security/ssl/CipherSuite +instanceKlass java/security/CryptoPrimitive +instanceKlass sun/security/ssl/ProtocolVersion +instanceKlass org/apache/maven/artifact/ArtifactScopeEnum +instanceKlass org/eclipse/buildship/core/internal/util/gradle/PublishedGradleVersions$LookupStrategy +instanceKlass org/eclipse/buildship/core/internal/CoreTraceScopes +instanceKlass org/eclipse/lsp4j/DiagnosticTag +instanceKlass org/eclipse/lsp4j/PrepareSupportDefaultBehavior +instanceKlass org/eclipse/lsp4j/CompletionItemKind +instanceKlass org/eclipse/lsp4j/CompletionItemTag +instanceKlass org/eclipse/lsp4j/InsertTextMode +instanceKlass org/eclipse/lsp4j/SymbolTag +instanceKlass org/eclipse/lsp4j/SymbolKind +instanceKlass com/google/gson/ReflectionAccessFilter$FilterResult +instanceKlass com/google/gson/stream/JsonToken +instanceKlass com/google/gson/Strictness +instanceKlass java/nio/file/FileVisitResult +instanceKlass java/nio/file/FileTreeWalker$EventType +instanceKlass java/nio/file/FileVisitOption +instanceKlass com/google/gson/ToNumberPolicy +instanceKlass com/google/gson/FieldNamingPolicy +instanceKlass com/google/gson/LongSerializationPolicy +instanceKlass org/eclipse/jdt/ls/core/internal/BuildWorkspaceStatus +instanceKlass org/eclipse/jdt/ls/core/internal/javafx/FXVersion +instanceKlass org/eclipse/m2e/jdt/JreSystemVersion +instanceKlass org/eclipse/jdt/ls/core/internal/ServiceStatus +instanceKlass ch/qos/logback/core/spi/FilterReply +instanceKlass com/google/inject/spi/InjectionPoint$Position +instanceKlass java/lang/annotation/ElementType +instanceKlass com/google/inject/internal/InternalFlags$ColorizeOption +instanceKlass com/google/inject/internal/InternalFlags$BytecodeGenOption +instanceKlass com/google/inject/internal/InternalFlags$NullableProvidesOption +instanceKlass com/google/inject/internal/InternalFlags$CustomClassLoadingOption +instanceKlass com/google/inject/internal/InternalFlags$IncludeStackTraceOption +instanceKlass com/google/inject/Key$NullAnnotationStrategy +instanceKlass sun/reflect/annotation/TypeAnnotation$TypeAnnotationTarget +instanceKlass org/eclipse/jdt/ls/core/internal/DiagnosticsState$ErrorLevel +instanceKlass com/google/inject/Stage +instanceKlass org/eclipse/sisu/space/BeanScanning +instanceKlass javax/xml/catalog/CatalogFeatures$State +instanceKlass jdk/xml/internal/XMLSecurityManager$NameMap +instanceKlass jdk/xml/internal/XMLSecurityManager$Processor +instanceKlass jdk/xml/internal/XMLSecurityManager$Limit +instanceKlass com/sun/org/apache/xalan/internal/utils/XMLSecurityPropertyManager$Property +instanceKlass com/sun/org/apache/xalan/internal/utils/FeaturePropertyBase$State +instanceKlass jdk/xml/internal/JdkProperty$ImplPropMap +instanceKlass jdk/xml/internal/JdkXmlFeatures$XmlFeature +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/CodeGenerationTemplate +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/ProjectEncodingMode +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/InlayHintsParameterMode +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionGuessMethodArgumentsMode +instanceKlass org/eclipse/jdt/ls/core/internal/handlers/CompletionMatchCaseMode +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$FeatureStatus +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/Preferences$Severity +instanceKlass lombok/eclipse/agent/PatchDelegate$DelegateReceiver +instanceKlass org/apache/maven/model/building/ModelProblem$Severity +instanceKlass com/google/common/cache/LocalCache$EntryFactory +instanceKlass com/google/common/cache/CacheBuilder$NullListener +instanceKlass com/google/common/cache/CacheBuilder$OneWeigher +instanceKlass com/google/common/cache/LocalCache$Strength +instanceKlass java/math/RoundingMode +instanceKlass org/eclipse/m2e/core/internal/preferences/ProblemSeverity +instanceKlass org/eclipse/m2e/core/lifecyclemapping/model/PluginExecutionAction +instanceKlass org/slf4j/helpers/Reporter$Level +instanceKlass org/slf4j/helpers/Reporter$TargetChoice +instanceKlass ch/qos/logback/classic/spi/Configurator$ExecutionStatus +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$METHOD_TYPE +instanceKlass java/security/DrbgParameters$Capability +instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccess +instanceKlass java/time/format/TextStyle +instanceKlass java/time/format/DateTimeFormatterBuilder$SettingsParser +instanceKlass java/time/format/ResolverStyle +instanceKlass java/time/format/SignStyle +instanceKlass java/time/temporal/JulianFields$Field +instanceKlass java/time/temporal/IsoFields$Unit +instanceKlass java/time/temporal/IsoFields$Field +instanceKlass org/apache/felix/scr/impl/inject/ValueUtils$ValueType +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegState +instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager$State +instanceKlass org/osgi/util/promise/PromiseFactory$Option +instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata$ReferenceScope +instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata$Scope +instanceKlass org/apache/felix/scr/impl/metadata/DSVersion +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner$NameType +instanceKlass com/sun/org/apache/xerces/internal/util/Status +instanceKlass javax/xml/catalog/CatalogFeatures$Feature +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$Property +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$NameMap +instanceKlass jdk/xml/internal/JdkProperty$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit +instanceKlass org/apache/felix/scr/impl/logger/InternalLogger$Level +instanceKlass java/nio/file/StandardCopyOption +instanceKlass sun/util/locale/provider/LocaleProviderAdapter$Type +instanceKlass java/lang/StackStreamFactory$WalkerState +instanceKlass java/lang/StackWalker$ExtendedOption +instanceKlass java/lang/StackWalker$Option +instanceKlass java/time/zone/ZoneOffsetTransitionRule$TimeDefinition +instanceKlass java/time/DayOfWeek +instanceKlass java/time/Month +instanceKlass aQute/bnd/header/Attrs$Type +instanceKlass org/apache/aries/spifly/ProviderBundleTrackerCustomizer$DiscoveryMode +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ContainerEvent +instanceKlass java/util/Locale$Category +instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport$Entry$Type +instanceKlass java/util/Comparators$NaturalOrderComparator +instanceKlass org/eclipse/osgi/container/Module$StartOptions +instanceKlass java/lang/Thread$State +instanceKlass org/apache/felix/resolver/PermutationType +instanceKlass org/eclipse/osgi/container/ModuleDatabase$Sort +instanceKlass org/eclipse/osgi/container/Module$Settings +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ModuleEvent +instanceKlass org/eclipse/osgi/storage/ContentProvider$Type +instanceKlass org/eclipse/osgi/container/Module$State +instanceKlass org/osgi/service/log/LogLevel +instanceKlass sun/util/logging/PlatformLogger$Level +instanceKlass jdk/internal/logger/BootstrapLogger$LoggingBackend +instanceKlass java/lang/annotation/RetentionPolicy +instanceKlass java/nio/file/AccessMode +instanceKlass java/nio/file/attribute/PosixFilePermission +instanceKlass jdk/internal/icu/util/CodePointTrie$ValueWidth +instanceKlass jdk/internal/icu/util/CodePointTrie$Type +instanceKlass java/text/Normalizer$Form +instanceKlass java/lang/constant/DirectMethodHandleDesc$Kind +instanceKlass java/lang/invoke/VarHandle$VarHandleDesc$Kind +instanceKlass java/time/temporal/ChronoUnit +instanceKlass java/time/temporal/ChronoField +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint$Operator +instanceKlass java/lang/System$Logger$Level +instanceKlass sun/security/rsa/RSAUtil$KeyType +instanceKlass sun/security/util/KnownOIDs +instanceKlass lombok/patcher/StackRequest +instanceKlass java/util/regex/Pattern$Qtype +instanceKlass java/util/concurrent/TimeUnit +instanceKlass java/nio/file/LinkOption +instanceKlass sun/nio/fs/WindowsPathType +instanceKlass java/nio/file/StandardOpenOption +instanceKlass java/util/stream/Collector$Characteristics +instanceKlass java/util/stream/StreamShape +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassOption +instanceKlass java/lang/invoke/VarHandle$AccessType +instanceKlass java/lang/invoke/VarHandle$AccessMode +instanceKlass java/lang/invoke/MethodHandleImpl$Intrinsic +instanceKlass java/lang/invoke/LambdaForm$BasicType +instanceKlass java/lang/invoke/LambdaForm$Kind +instanceKlass sun/invoke/util/Wrapper +instanceKlass java/util/stream/StreamOpFlag$Type +instanceKlass java/util/stream/StreamOpFlag +instanceKlass java/io/File$PathStatus +instanceKlass java/lang/module/ModuleDescriptor$Requires$Modifier +instanceKlass java/lang/module/ModuleDescriptor$Modifier +ciInstanceKlass java/lang/Enum 1 1 162 1 7 1 1 7 1 100 1 100 1 100 1 100 1 1 100 1 100 1 1 1 1 1 1 12 9 1 12 9 1 1 1 12 10 1 1 1 1 12 10 1 1 1 100 10 1 1 1 1 1 12 10 1 12 10 1 100 10 1 1 7 1 12 10 1 1 1 12 10 1 16 1 1 12 10 15 16 1 100 1 1 12 10 15 1 1 12 18 1 100 1 1 12 10 1 1 1 1 1 12 10 1 7 1 12 11 1 100 1 8 1 12 10 1 100 1 100 10 1 8 1 1 12 10 1 12 10 1 8 12 10 10 1 1 1 1 100 1 100 1 100 1 8 10 1 1 100 1 12 10 1 1 12 10 1 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerOptions 1 1 1807 7 1 7 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 10 7 1 12 1 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 11 7 1 12 1 1 9 12 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 1 1 7 1 100 1 1 10 12 1 1 1 1 10 12 9 12 9 12 9 12 8 10 7 1 12 1 1 8 1 10 12 1 1 9 12 9 12 9 12 10 12 1 10 12 1 1 1 1 1 1 1 7 1 1 1 1 9 12 1 1 1 1 100 1 5 0 1 1 1 1 1 1 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 18 12 1 9 7 1 12 1 1 1 1 1 10 12 1 1 10 7 1 12 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 5 0 100 1 1 1 1 1 1 1 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 7 1 10 12 1 9 12 11 12 1 1 9 12 9 12 9 12 9 12 10 12 1 9 12 9 12 9 12 9 12 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 10 12 9 12 9 12 9 12 9 12 9 12 10 12 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 10 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 10 12 1 9 12 9 12 9 12 9 12 9 12 10 12 1 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 1 9 12 10 12 1 1 3 9 12 9 12 100 1 100 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 1 1 100 9 12 1 10 12 1 9 12 1 9 12 1 10 12 9 7 1 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 11 12 1 1 10 12 9 12 5 0 7 1 7 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 10 12 1 1 9 12 100 1 1 1 1 1 8 1 10 12 1 10 12 1 100 8 1 10 12 1 10 12 1 1 1 1 100 1 8 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 18 12 18 18 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 1 1 1 1 10 100 1 12 1 1 1 1 10 7 1 12 1 15 8 1 8 1 8 1 8 1 1 100 1 100 1 1 +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions DEFAULT_OWNING_ANNOTATION_NAME [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions DEFAULT_NOTOWNING_ANNOTATION_NAME [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions DEFAULT_NULLABLE_ANNOTATION_NAME [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions DEFAULT_NONNULL_ANNOTATION_NAME [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions DEFAULT_NONNULLBYDEFAULT_ANNOTATION_NAME [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions NO_STRINGS [Ljava/lang/String; 0 [Ljava/lang/String; +staticfield org/eclipse/jdt/internal/compiler/impl/CompilerOptions warningTokens [Ljava/lang/String; 29 [Ljava/lang/String; +ciInstanceKlass org/eclipse/jdt/core/compiler/CharOperation 1 1 393 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 7 9 12 7 1 9 12 9 12 9 12 9 12 1 1 1 10 12 1 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 100 100 1 10 12 1 10 12 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 11 7 1 12 1 11 12 1 1 1 1 1 1 100 1 1 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 10 12 10 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 10 7 1 1 10 12 1 1 1 10 1 1 1 1 1 1 1 10 12 3 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 10 12 10 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 10 10 12 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 +staticfield org/eclipse/jdt/core/compiler/CharOperation NO_CHAR [C 0 +staticfield org/eclipse/jdt/core/compiler/CharOperation NO_CHAR_CHAR [[C 0 [[C +staticfield org/eclipse/jdt/core/compiler/CharOperation NO_STRINGS [Ljava/lang/String; 0 [Ljava/lang/String; +staticfield org/eclipse/jdt/core/compiler/CharOperation ALL_PREFIX [C 1 +staticfield org/eclipse/jdt/core/compiler/CharOperation COMMA_SEPARATOR [C 1 +staticfield org/eclipse/jdt/core/compiler/CharOperation EMPTY_REGIONS [I 0 +ciInstanceKlass org/eclipse/jdt/internal/compiler/env/ICompilationUnit 1 1 50 7 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 12 1 10 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/SourceElementParser +ciInstanceKlass org/eclipse/jdt/internal/core/util/CommentRecorderParser 1 1 266 7 1 7 1 1 1 1 1 1 1 1 3 1 1 1 10 12 9 12 9 12 9 12 1 1 1 1 1 1 1 1 1 1 9 12 1 9 12 1 9 12 1 1 9 7 1 9 12 1 10 12 1 1 9 9 12 1 9 9 12 1 1 9 7 1 12 1 9 12 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 9 12 1 100 1 3 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 9 7 1 12 1 1 10 12 1 1 1 1 1 10 12 1 1 9 12 1 9 12 1 10 7 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 9 12 1 10 12 10 100 1 12 1 1 1 1 7 1 1 1 1 10 12 1 10 12 1 9 12 1 1 7 1 10 12 1 100 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 10 7 1 12 1 1 1 1 1 1 1 10 12 1 10 100 1 12 1 1 9 12 1 1 10 12 1 9 12 1 9 12 1 1 1 +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexingParser +ciInstanceKlass org/eclipse/jdt/internal/compiler/SourceElementParser 1 1 902 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 7 1 10 7 1 12 1 1 10 12 1 10 12 1 7 1 10 12 1 9 12 7 1 10 9 12 9 12 9 12 7 1 10 12 1 9 12 1 1 9 12 9 12 7 1 10 12 1 9 12 7 1 10 12 1 9 12 1 1 1 7 1 100 1 7 1 1 1 100 1 9 12 1 1 9 12 1 1 11 12 1 1 100 1 9 12 1 1 9 9 12 1 11 12 1 100 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 7 1 9 9 7 1 11 12 1 7 1 9 9 11 12 1 1 1 10 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 1 9 7 1 12 1 1 9 12 1 9 12 1 9 7 1 12 1 9 12 1 1 9 12 1 9 12 1 10 12 1 1 100 1 3 10 12 1 1 9 12 1 1 9 12 1 9 12 9 12 1 9 100 1 12 1 1 9 12 1 1 100 1 9 9 11 12 1 9 12 1 10 100 1 12 1 1 100 1 9 12 1 9 12 1 9 11 12 1 1 11 12 1 9 100 1 9 9 12 1 1 10 7 1 12 1 1 9 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 10 12 9 12 1 9 12 1 7 1 9 7 1 9 10 7 1 12 1 1 9 9 1 1 1 1 7 1 10 12 7 1 9 10 12 1 9 9 11 12 1 1 1 1 10 12 1 9 12 1 10 12 10 12 1 1 1 10 12 1 10 12 9 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 9 12 1 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 10 12 9 12 1 100 1 7 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 7 1 9 9 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 7 1 9 12 1 9 1 1 1 10 12 9 12 1 1 9 12 1 1 1 10 12 1 1 10 12 1 10 12 7 1 9 9 9 12 1 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 100 1 9 12 1 9 9 1 1 1 1 10 12 7 1 9 9 9 9 7 1 12 1 1 1 1 10 12 7 1 9 9 12 1 10 7 1 12 1 1 9 1 1 1 1 1 1 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 9 12 1 9 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 100 1 12 1 1 9 12 1 9 12 1 1 1 100 100 1 10 12 1 10 12 1 9 12 1 1 10 12 100 1 9 9 9 1 1 10 12 9 12 1 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 100 1 1 1 9 12 1 10 12 1 1 11 12 1 1 9 12 1 1 10 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 1 7 1 9 9 7 1 9 9 9 10 12 1 7 1 10 12 1 9 12 1 9 12 1 100 1 9 7 1 10 12 1 9 100 1 10 12 1 9 10 12 1 9 12 1 9 12 1 9 12 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 10 12 1 1 10 12 10 12 1 1 1 1 1 1 1 9 9 1 1 10 12 1 10 1 1 1 7 1 9 12 1 10 12 1 10 12 1 1 11 7 1 12 1 100 1 9 100 1 12 1 1 10 12 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 9 12 9 12 1 1 1 1 1 9 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$VanguardParser +instanceKlass org/eclipse/jdt/internal/codeassist/impl/AssistParser +instanceKlass org/eclipse/jdt/internal/core/util/CommentRecorderParser +ciInstanceKlass org/eclipse/jdt/internal/compiler/parser/Parser 1 1 5587 7 1 7 1 100 1 100 1 100 1 100 1 100 1 1 1 1 3 1 3 1 1 1 1 1 1 3 1 1 1 1 1 1 1 3 1 1 1 8 1 1 8 1 1 1 3 1 8 1 1 1 8 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 8 1 10 7 1 12 1 1 9 12 8 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 10 12 1 100 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 7 1 1 1 10 12 1 1 1 1 1 1 1 100 1 100 1 10 10 12 1 11 100 1 12 1 1 11 100 1 12 1 1 10 12 1 1 10 12 1 11 12 1 10 12 1 10 12 1 10 100 1 12 1 1 9 7 1 12 1 1 18 12 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 8 1 10 12 1 1 10 7 1 12 1 1 10 12 1 8 1 7 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 8 1 5 0 10 12 1 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 100 1 10 12 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 10 8 1 10 12 1 18 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 100 100 1 10 10 12 1 10 18 1 1 1 18 1 7 1 1 8 1 1 1 1 1 1 1 3 1 1 10 12 1 1 8 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 8 1 1 1 9 7 1 12 1 100 1 10 10 7 1 12 1 1 9 100 1 12 1 10 12 1 8 1 18 12 1 8 10 12 18 8 10 12 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 18 8 10 12 18 8 18 8 18 10 12 8 1 18 10 12 8 1 10 12 18 18 10 12 18 10 12 9 12 1 1 1 1 1 1 1 1 1 18 10 12 1 1 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 10 12 1 1 18 18 18 10 12 1 1 18 10 12 1 1 10 12 1 18 18 18 1 1 1 10 12 10 12 1 1 9 12 1 10 12 1 1 10 7 1 10 12 1 10 12 1 1 10 7 1 1 9 12 1 1 1 100 10 12 1 1 1 100 7 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 9 12 10 12 1 1 1 10 7 1 9 12 9 12 9 12 7 1 9 12 7 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 1 9 12 9 7 1 12 9 10 12 1 9 7 1 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 5 0 9 12 11 12 1 1 9 12 1 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 10 12 1 1 9 12 1 1 9 12 1 1 7 1 10 9 12 9 12 1 10 12 1 1 9 12 9 12 1 9 12 9 12 1 1 1 1 9 12 1 1 9 12 9 7 1 12 1 9 12 7 1 100 1 9 12 10 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 9 12 9 12 7 1 100 1 10 12 1 9 12 1 7 1 10 12 10 100 1 12 1 7 1 9 12 1 1 10 7 1 12 1 7 1 7 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 100 1 10 12 1 9 10 12 1 9 10 12 1 9 9 12 1 1 9 9 9 12 9 10 12 1 9 7 1 10 12 1 9 9 7 1 10 12 1 9 10 12 1 7 1 100 1 7 1 7 1 7 1 10 12 1 9 12 1 7 1 9 9 12 9 12 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 10 12 1 10 12 1 9 100 1 3 9 12 9 12 10 12 1 1 1 9 12 1 10 12 1 9 12 1 9 12 1 9 7 1 12 1 9 12 9 12 1 10 12 1 1 3 10 12 9 12 1 9 12 1 1 1 1 1 3 10 12 1 100 1 1 1 1 9 12 10 12 1 1 9 9 12 9 12 1 10 12 1 1 9 12 1 10 12 1 1 9 10 12 1 10 12 1 9 12 1 9 12 1 1 9 7 1 9 10 12 1 1 9 12 1 1 1 1 1 10 10 7 1 9 12 1 1 9 7 1 12 1 10 12 1 1 9 3 7 1 9 12 1 10 12 1 9 1 1 1 1 1 9 12 7 1 7 1 9 12 7 9 12 9 9 9 12 1 1 100 9 9 9 9 9 9 12 1 9 9 9 9 12 9 12 9 12 10 12 1 9 12 9 12 9 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 10 12 1 1 1 10 12 1 1 1 9 12 1 1 10 12 1 9 12 9 9 9 12 9 10 12 1 9 9 12 10 12 9 12 9 12 1 1 9 1 1 5 0 10 12 10 12 1 1 9 12 1 10 12 1 1 9 12 1 1 1 1 1 9 12 10 12 1 10 12 9 10 12 1 10 12 1 9 12 9 10 12 1 10 12 1 1 1 1 7 1 9 12 1 1 10 12 1 9 1 7 1 9 3 9 9 9 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 1 1 7 1 10 9 12 9 12 10 12 1 1 9 12 9 9 3 9 9 9 1 1 1 1 1 10 12 1 9 12 10 12 1 1 100 1 10 12 1 1 100 1 10 12 1 10 1 100 1 1 7 1 10 7 1 10 7 1 9 3 7 1 10 12 1 1 10 12 1 7 1 10 7 1 9 12 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 9 12 1 9 10 10 12 1 1 9 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 9 9 12 1 1 100 1 10 12 1 10 12 1 1 1 1 1 7 1 10 12 1 10 12 1 1 1 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 9 9 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 7 1 3 10 12 1 9 9 9 1 1 1 1 1 1 1 9 12 1 1 9 12 1 9 9 9 10 12 1 9 9 9 9 9 1 1 1 1 10 10 12 1 10 12 1 1 1 1 9 9 9 9 9 1 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 9 12 1 1 1 9 12 1 1 1 1 9 12 1 1 1 10 12 1 10 12 10 12 1 1 1 9 12 9 12 1 1 1 9 9 1 1 9 1 1 1 1 1 1 7 1 10 12 1 1 1 1 1 9 12 1 10 7 1 12 1 1 7 1 9 12 1 1 9 9 9 9 9 10 12 1 9 9 9 9 1 1 1 100 1 9 9 10 12 1 1 9 12 1 1 10 9 12 1 9 9 9 9 9 12 100 1 1 1 1 9 100 1 9 9 3 9 9 9 9 9 1 1 1 10 12 1 1 9 1 10 12 1 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 9 12 1 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 10 12 1 1 9 12 1 7 1 10 12 10 100 1 12 1 1 1 1 1 1 1 10 12 1 1 7 1 9 12 1 9 9 1 1 1 9 12 1 9 12 1 9 12 10 12 1 1 1 10 12 1 1 9 9 9 10 12 1 1 1 1 1 1 1 1 100 1 1 1 1 1 9 12 1 1 1 1 1 10 12 11 100 1 12 1 1 100 1 9 10 12 1 1 1 1 10 12 10 12 1 1 9 9 9 9 9 9 9 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 9 10 12 1 1 9 12 1 1 1 1 1 100 1 9 12 9 9 9 9 9 1 1 1 1 9 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 7 1 10 1 1 9 12 1 1 1 9 9 9 10 12 1 1 1 9 1 10 9 9 12 1 1 1 1 9 9 12 1 1 1 7 1 10 12 1 9 10 9 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 7 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 100 1 10 12 1 1 7 1 10 10 12 1 1 1 1 1 10 12 1 1 10 12 1 9 1 1 1 10 12 1 1 1 10 12 1 1 1 1 1 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 7 1 10 9 10 12 1 1 10 12 1 9 7 1 12 1 1 10 12 1 1 100 1 10 18 12 1 1 10 12 1 1 100 1 9 12 1 10 18 9 18 7 9 12 1 9 9 9 9 9 9 18 12 1 1 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 9 12 1 3 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 7 1 10 12 1 7 1 10 12 1 10 9 9 9 9 9 12 10 100 1 12 1 1 9 100 1 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 7 1 10 12 1 9 9 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 7 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 9 9 9 10 12 1 10 12 1 1 1 1 9 12 1 1 10 100 1 9 12 1 3 1 9 12 9 12 1 1 10 10 9 9 9 1 10 12 1 9 9 12 1 1 1 9 10 12 9 12 1 9 12 1 9 10 12 1 1 1 100 1 9 12 1 1 10 12 1 1 9 9 12 1 9 9 10 7 1 12 1 1 9 10 12 1 10 12 1 1 1 1 1 10 12 1 9 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 10 12 1 1 7 1 10 9 12 1 1 9 9 1 1 1 10 12 1 1 1 9 12 1 10 12 1 1 1 1 1 1 100 1 9 12 1 1 1 100 1 9 9 100 1 10 12 1 1 1 1 100 1 10 12 1 10 12 1 9 9 9 9 9 9 1 1 100 1 9 9 100 1 1 1 1 9 3 10 12 1 9 9 9 9 1 100 1 10 9 9 9 9 9 1 1 1 1 1 1 100 1 9 12 1 1 9 9 1 1 1 10 12 1 1 100 1 9 9 1 1 10 12 9 9 9 1 1 1 100 1 10 9 12 1 9 9 9 9 1 1 1 1 9 100 1 1 9 12 1 1 1 1 1 1 10 12 1 9 9 9 9 9 9 10 12 1 1 9 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 9 1 1 1 1 1 1 1 1 1 9 12 1 9 9 100 1 1 9 1 1 1 1 1 1 1 1 7 1 10 12 1 9 1 1 1 10 12 1 10 12 1 1 1 1 100 1 10 12 1 1 7 1 10 1 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 9 12 9 12 1 9 9 12 1 1 1 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 1 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 1 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 9 100 1 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 9 7 1 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 10 12 1 10 12 10 12 1 1 9 100 1 12 1 10 12 1 1 1 7 1 10 12 10 12 1 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 9 10 12 1 9 12 1 9 12 1 1 1 1 1 9 9 12 1 10 12 1 1 9 7 1 12 1 10 12 1 10 12 10 12 1 10 12 1 1 1 1 1 1 1 9 10 12 1 1 10 12 1 10 12 11 7 1 12 1 9 7 1 12 1 9 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 9 7 1 9 9 12 1 1 1 1 1 10 12 1 10 12 10 12 1 1 1 1 1 9 12 10 12 1 9 12 1 1 1 1 1 7 1 10 12 1 10 12 9 12 1 10 12 1 1 9 12 1 9 12 10 12 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 1 1 1 10 12 1 7 1 10 9 12 1 9 9 1 1 10 12 1 9 9 10 12 1 7 1 10 100 1 10 12 1 1 1 7 1 10 100 1 10 12 1 7 1 10 12 1 1 1 1 1 7 1 10 1 10 12 1 100 1 10 12 1 7 1 10 12 1 9 12 7 1 10 100 1 10 9 12 9 9 9 12 1 9 9 9 10 12 1 1 1 1 100 1 10 12 1 7 1 10 7 1 10 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 9 9 1 1 1 1 1 1 100 7 1 10 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 1 1 1 1 9 12 9 12 10 100 1 12 1 10 12 1 1 1 9 12 1 7 1 10 12 1 9 12 1 10 12 1 10 12 1 9 10 12 1 1 9 3 1 1 1 1 10 12 1 10 12 1 7 1 100 1 10 9 12 1 10 12 1 10 12 1 100 1 9 12 1 9 10 12 1 10 12 1 1 10 100 1 12 1 11 100 1 12 1 1 18 11 100 1 100 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 10 12 9 12 1 10 12 1 9 12 1 10 12 1 3 3 10 12 1 10 12 10 12 1 10 7 1 12 1 1 10 7 1 12 1 1 100 1 10 7 1 10 10 10 12 1 10 12 1 1 10 12 7 1 10 7 1 10 10 9 12 1 9 9 1 1 1 9 12 1 1 10 9 9 9 9 9 10 12 1 10 12 1 1 1 1 10 100 1 12 1 1 9 9 9 12 1 1 1 1 1 100 1 10 9 12 10 12 1 1 9 12 9 12 1 1 10 12 1 9 9 12 1 1 1 1 10 12 1 1 7 1 10 10 12 1 1 1 1 1 1 7 1 9 12 1 10 10 10 12 1 1 1 7 1 10 9 9 10 12 1 1 1 1 9 12 10 12 1 11 12 1 9 12 1 10 12 1 1 9 12 1 1 9 9 12 1 10 12 1 1 10 1 1 100 1 10 10 12 1 11 12 1 1 100 1 10 12 1 1 9 12 1 1 1 100 1 10 9 9 12 1 1 11 100 1 12 1 10 12 1 1 9 9 12 1 10 12 1 1 10 12 10 12 1 11 9 9 9 9 9 9 9 12 1 9 12 1 9 12 1 9 9 9 12 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 9 10 12 1 1 9 9 9 9 9 10 10 12 10 12 1 9 9 10 12 1 1 9 12 1 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 9 9 9 9 10 12 1 1 1 1 10 1 10 1 10 12 1 1 10 12 1 1 1 1 10 12 1 1 1 1 1 1 7 1 1 9 12 1 1 1 9 12 10 12 10 12 1 10 12 1 9 12 10 12 1 9 12 1 10 12 1 8 1 10 12 8 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 10 1 1 1 1 1 1 9 9 12 1 9 9 12 9 12 10 7 1 12 1 1 10 12 10 12 1 1 9 12 1 9 10 12 10 12 1 1 1 1 1 1 1 1 1 1 100 1 9 10 9 10 12 1 1 10 12 1 1 7 1 10 12 1 100 1 10 12 1 1 10 12 1 9 1 1 1 1 1 9 1 9 12 1 1 1 1 1 1 1 1 9 12 1 1 1 1 1 1 1 10 12 1 1 1 9 12 1 1 1 1 1 1 1 1 9 12 10 12 1 10 12 10 12 1 100 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 9 12 9 12 9 12 9 12 1 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 9 1 9 12 9 12 9 12 10 12 1 1 1 1 9 12 1 10 12 10 9 3 1 1 9 12 1 9 12 10 12 1 10 12 1 1 10 9 1 10 12 1 10 12 10 12 1 1 10 12 10 12 10 12 1 10 12 10 12 1 10 12 1 10 10 12 1 1 10 12 10 12 10 12 10 12 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 9 9 10 12 1 9 1 1 1 1 1 1 100 1 9 12 1 10 12 10 12 10 12 1 10 12 1 10 12 10 12 100 1 1 1 1 1 10 12 1 10 12 1 10 12 10 12 1 9 12 1 10 12 1 10 7 1 12 1 10 12 1 10 12 1 1 10 10 12 1 10 100 1 10 12 1 11 9 12 1 10 12 1 1 10 12 1 9 100 1 1 1 1 1 1 1 1 1 9 9 1 10 10 12 1 1 1 10 12 10 12 1 1 1 1 10 12 9 12 1 18 12 1 1 18 18 12 1 18 100 1 10 12 1 9 12 1 10 12 1 1 11 11 12 1 100 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 10 12 1 1 1 10 12 1 1 1 1 10 12 1 1 1 10 12 1 9 12 1 1 1 10 12 1 100 1 10 100 1 10 9 12 1 9 12 1 1 10 12 1 9 10 12 1 1 1 100 1 9 12 1 1 10 12 1 1 10 12 1 1 10 100 1 12 1 1 100 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 9 1 10 12 10 12 10 12 1 10 12 1 1 1 10 12 18 18 12 1 10 12 1 18 12 1 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 10 18 1 10 12 1 9 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 10 12 1 1 100 1 9 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 11 1 1 1 1 1 10 7 1 12 1 15 8 1 8 1 8 1 10 7 1 12 1 1 15 1 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 8 1 1 12 10 1 7 10 1 7 1 1 12 10 1 12 10 1 7 1 12 10 1 12 10 1 7 1 12 10 +staticfield org/eclipse/jdt/internal/compiler/parser/Parser FALL_THROUGH_TAG [C 14 +staticfield org/eclipse/jdt/internal/compiler/parser/Parser CASES_OMITTED_TAG [C 15 +staticfield org/eclipse/jdt/internal/compiler/parser/Parser $assertionsDisabled Z 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants 1 1 1598 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 1 1 8 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 7 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 9 12 8 1 8 1 9 12 8 1 8 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 8 1 9 12 8 1 9 12 8 1 8 1 9 12 8 1 9 12 7 1 10 12 1 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 7 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 8 1 9 12 8 1 8 1 8 1 8 1 9 12 8 1 8 1 9 12 8 1 8 1 8 1 8 1 8 1 9 12 8 1 9 12 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 9 12 8 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 9 12 8 1 9 12 8 1 9 12 8 1 9 12 9 12 9 12 9 12 8 1 9 12 8 1 9 12 1 1 1 1 1 100 1 1 1 100 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAC [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAKARTA [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LANG [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BASE [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IO [C 2 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NIO [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UTIL [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ZIP [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REFLECT [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LENGTH [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLONE [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants EQUALS [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GETCLASS [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants HASHCODE [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TOSTRING [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OBJECT [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MAIN [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SERIALVERSIONUID [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SERIALPERSISTENTFIELDS [C 22 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants READRESOLVE [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WRITEREPLACE [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants READOBJECT [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WRITEOBJECT [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_OBJECT [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_ENUM [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_RECORD [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_RECORD_SLASH [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_LANG_ANNOTATION_ANNOTATION [C 31 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTINPUTSTREAM [C 25 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTOUTPUTSTREAM [C 26 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CharArray_JAVA_IO_OBJECTSTREAMFIELD [C 25 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYM_PREFIX [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYM_SUFFIX [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_NAME [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_SUPER [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_EXTENDS [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_MINUS [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_STAR [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_PLUS [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_NAME_PREFIX [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_NAME_SUFFIX [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE_SIGNABLE_NAME_SUFFIX [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants WILDCARD_CAPTURE [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CAPTURE18 [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BYTE [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SHORT [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INT [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LONG [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FLOAT [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DOUBLE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHAR [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BOOLEAN [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NULL [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VOID [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUE [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUES [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALUEOF [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_SOURCE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_CLASS [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_RUNTIME [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION_PREFIX [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANNOTATION_SUFFIX [C 2 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_FIELD [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_METHOD [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_PARAMETER [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_CONSTRUCTOR [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_LOCAL_VARIABLE [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_ANNOTATION_TYPE [C 15 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_PACKAGE [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ANONYMOUS_METHOD [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DESERIALIZE_LAMBDA [C 19 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LAMBDA_TYPE [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_MODULE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants UPPER_RECORD_COMPONENT [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants YIELD [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants STRING_CONCAT_MARKER_1 [C 1 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VAR [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RECORD_RESTRICTED_IDENTIFIER [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RECORD_CLASS [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PERMITS [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SEALED [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NON_SEALED [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE_USE_TARGET [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPE_PARAMETER_TARGET [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ECLIPSE [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CORE [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RUNTIME [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COMMONS [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LANG3 [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GOOGLE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDT [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INTERNAL [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COMPILER [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LOOKUP [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants TYPEBINDING [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DOM [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ITYPEBINDING [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SPRING [C 15 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_BASE [[C 2 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG [[C 2 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO [[C 2 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_ANNOTATION [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ASSERTIONERROR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLASS [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLASSNOTFOUNDEXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_NOSUCHFIELDERROR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CLONEABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ENUM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_EXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ERROR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ILLEGALARGUMENTEXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INCOMPATIBLECLASSCHANGEERROR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ITERABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_NOCLASSDEFFOUNDERROR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_OBJECT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RECORD [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRING [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRINGBUFFER [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_STRINGBUILDER [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SYSTEM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIMEEXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_THROWABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_CONSTRUCTOR [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_PRINTSTREAM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_SERIALIZABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_BYTE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SHORT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CHARACTER [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INTEGER [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_LONG [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_FLOAT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_DOUBLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_BOOLEAN [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_VOID [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_COLLECTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ITERATOR [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NEXT [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_OBJECTS [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_LIST [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ARRAYS [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_DEPRECATED [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FOR_REMOVAL [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SINCE [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ESSENTIAL_API [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_DOCUMENTED [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_INHERITED [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_REPEATABLE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_OVERRIDE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_FUNCTIONAL_INTERFACE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_RETENTION [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SUPPRESSWARNINGS [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_TARGET [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_RETENTIONPOLICY [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ANNOTATION_ELEMENTTYPE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_PREVIEW_FEATURE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_JAVAC_PREVIEW_FEATURE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_FIELD [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_REFLECT_METHOD [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_CLOSEABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTSTREAMEXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_EXTERNALIZABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_IOEXCEPTION [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTOUTPUTSTREAM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_OBJECTINPUTSTREAM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_IO [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_NIO_FILE_FILES [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX_RMI_CORBA_STUB [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_SAFEVARARGS [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INVOKE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE_POLYMORPHICSIGNATURE [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE_$_POLYMORPHICSIGNATURE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_LAMBDAMETAFACTORY [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_SERIALIZEDLAMBDA [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLES [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_METHODHANDLE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_VARHANDLE [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_STRING_CONCAT_FACTORY [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_AUTOCLOSEABLE [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLOSE [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIME_OBJECTMETHODS [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_RUNTIME_SWITCHBOOTSTRAPS [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_INVOKE_CONSTANTBOOTSTRAP [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PRIMITIVE_CLASS [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PRIMITIVE_CLASS__SIGNATURE [C 93 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET_STATIC_FINAL [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET_STATIC_FINAL__SIGNATURE [C 94 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_ENUM_ENUMDESC [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_LANG_CONSTANT_CLASSDESC [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GUAVA_CLOSEABLES [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE_IOUTILS [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants APACHE_DBUTILS [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLOSE_QUIETLY [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants closeMethods [Lorg/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord; 9 [Lorg/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord; +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_WRAPPER_CLOSEABLES [[C 18 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_ZIP_WRAPPER_CLOSEABLES [[C 12 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OTHER_WRAPPER_CLOSEABLES [[[C 5 [[[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_IO_RESOURCE_FREE_CLOSEABLES [[C 7 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_STREAM [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RESOURCE_FREE_CLOSEABLE_J_U_STREAMS [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ONE_UTIL_STREAMEX [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RESOURCE_FREE_CLOSEABLE_STREAMEX [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHANNELS [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FLUENT_RESOURCE_CLASSES [[[C 16 [[[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_STREAM__STREAM [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FILTER [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_CLASS [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERTIONS_CLASS [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_CORE_RUNTIME_ASSERT [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_NOTNULL [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUNIT [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FRAMEWORK [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUPITER [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PARAMS [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PROVIDER [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants API [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JUNIT_FRAMEWORK_ASSERT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_ASSERT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_JUPITER_API_ASSERTIONS [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_NULL [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_NOTNULL [C 13 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_TRUE [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ASSERT_FALSE [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants METHOD_SOURCE [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_JUNIT_METHOD_SOURCE [[C 6 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants VALIDATE_CLASS [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_APACHE_COMMONS_LANG_VALIDATE [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_APACHE_COMMONS_LANG3_VALIDATE [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_JDT_INTERNAL_COMPILER_LOOKUP_TYPEBINDING [[C 7 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_ECLIPSE_JDT_CORE_DOM_ITYPEBINDING [[C 6 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_TRUE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NOT_NULL [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM_GOOGLE_COMMON_BASE_PRECONDITIONS [[C 5 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_NOT_NULL [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_ARGUMENT [C 13 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CHECK_STATE [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REQUIRE_NON_NULL [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INJECT_PACKAGE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INJECT_TYPE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVAX_ANNOTATION_INJECT_INJECT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAKARTA_ANNOTATION_INJECT_INJECT [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants COM_GOOGLE_INJECT_INJECT [[C 4 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants OPTIONAL [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_INSTANCE [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants NON_NULL [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants IS_NULL [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_UTIL_MAP [[C 3 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants GET [C 3 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REMOVE [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REMOVE_ALL [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_ALL [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants RETAIN_ALL [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_KEY [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS_VALUE [C 13 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CONTAINS [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INDEX_OF [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants LAST_INDEX_OF [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants AUTOWIRED [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants BEANS [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants FACTORY [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants ORG_SPRING_AUTOWIRED [[C 6 [[C +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants REQUIRED [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants INIT [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants CLINIT [C 8 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_SWITCH_ENUM_TABLE [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENUM_VALUES [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ASSERT_DISABLED [C 19 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_CLASS [C 6 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_OUTER_LOCAL_PREFIX [C 4 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENCLOSING_INSTANCE_PREFIX [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ACCESS_METHOD_PREFIX [C 7 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_ENUM_CONSTANT_INITIALIZATION_METHOD_PREFIX [C 30 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants SYNTHETIC_STATIC_FACTORY [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__PARAMETER [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__RETURN_TYPE [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__FIELD [C 5 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_ARGUMENT [C 13 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_PARAMETER [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__TYPE_BOUND [C 10 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants DEFAULT_LOCATION__ARRAY_CONTENTS [C 14 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants PACKAGE_INFO_NAME [C 12 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_NAME [C 11 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_FILE_NAME [C 16 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants MODULE_INFO_CLASS_NAME [C 17 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JAVA_DOT_BASE [C 9 +staticfield org/eclipse/jdt/internal/compiler/lookup/TypeConstants JDK_INTERNAL_VALUEBASED [[C 3 [[C +instanceKlass org/eclipse/jdt/internal/compiler/ast/Javadoc +instanceKlass org/eclipse/jdt/internal/compiler/ast/MemberValuePair +instanceKlass org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration +instanceKlass org/eclipse/jdt/internal/compiler/ast/ImportReference +instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleDeclaration +instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleReference +instanceKlass org/eclipse/jdt/internal/compiler/ast/ModuleStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/Statement +instanceKlass org/eclipse/jdt/internal/compiler/ast/AbstractMethodDeclaration +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/ASTNode 1 1 1462 7 1 7 1 100 1 100 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 5 0 1 1 3 1 1 3 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 7 1 9 12 1 1 1 1 10 12 9 12 1 1 1 1 10 7 1 12 1 1 7 1 9 12 1 1 9 12 1 9 12 1 1 9 7 1 9 12 1 10 7 1 12 1 100 1 10 7 1 12 1 1 9 12 1 1 10 7 1 12 1 1 9 12 1 1 10 12 1 1 7 1 100 1 9 12 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 9 7 1 12 1 100 1 5 0 9 7 1 12 1 10 12 1 10 12 1 9 12 1 1 10 7 1 12 1 10 12 1 9 12 1 100 1 5 0 7 1 9 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 10 12 1 1 9 12 10 10 12 1 9 12 10 12 1 10 7 1 12 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 1 1 1 1 1 10 7 1 9 12 1 5 0 10 9 12 9 12 5 0 10 12 1 1 1 1 1 1 10 7 1 12 1 10 12 1 1 10 12 1 9 12 1 9 12 100 1 9 10 12 9 10 12 1 1 10 12 1 1 9 100 1 12 1 10 10 100 1 12 1 1 9 100 1 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 10 12 1 1 9 10 12 1 10 1 1 10 12 1 10 12 1 1 10 7 1 12 1 1 9 12 1 10 12 1 1 10 100 1 12 1 1 9 12 1 1 10 100 1 12 1 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 9 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 10 12 1 7 1 9 10 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 1 1 1 1 1 1 8 1 10 100 1 12 1 1 10 7 1 12 10 12 1 1 1 1 1 1 1 1 8 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 100 100 1 1 10 12 1 1 9 7 1 12 1 10 12 1 1 1 1 7 1 100 1 10 12 1 100 1 9 12 1 11 12 1 10 12 10 7 1 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 100 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 10 100 1 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 3 10 12 1 9 12 1 10 12 1 1 10 7 1 12 1 7 1 11 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 7 1 10 12 1 1 1 10 100 1 9 5 0 9 10 12 1 1 10 10 100 1 9 10 9 10 12 1 9 9 10 9 12 10 12 1 1 100 1 9 9 12 1 1 9 100 1 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 100 1 10 12 1 11 100 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 11 12 1 1 11 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 12 1 10 10 12 1 1 1 1 1 1 100 1 1 10 12 1 10 12 1 9 10 12 1 1 9 10 12 1 1 10 12 1 1 1 1 1 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 1 9 10 12 1 1 9 10 9 12 10 12 1 1 10 12 1 5 0 9 12 9 12 1 10 100 1 12 1 1 9 100 1 9 9 10 12 1 1 9 9 9 10 12 1 100 1 9 12 9 10 12 1 1 5 0 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 10 11 100 1 12 1 11 12 1 1 1 1 1 1 1 1 1 1 1 100 1 10 10 12 11 12 1 10 10 12 1 100 1 9 12 1 1 9 100 1 9 12 1 10 12 1 1 10 9 5 0 9 100 1 12 1 1 10 12 1 1 10 12 1 10 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 9 12 1 1 10 12 1 10 9 5 0 5 0 10 12 1 1 9 100 1 12 1 9 12 1 9 12 100 1 1 1 1 1 100 1 1 1 1 1 1 1 10 10 10 12 1 1 1 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_ARGUMENTS [Lorg/eclipse/jdt/internal/compiler/ast/Argument; 0 [Lorg/eclipse/jdt/internal/compiler/ast/Argument; +staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_RECORD_COMPONENTS [Lorg/eclipse/jdt/internal/compiler/ast/RecordComponent; 0 [Lorg/eclipse/jdt/internal/compiler/ast/RecordComponent; +staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_TYPE_PATTERNS [Lorg/eclipse/jdt/internal/compiler/ast/TypePattern; 0 [Lorg/eclipse/jdt/internal/compiler/ast/TypePattern; +staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode NO_VARIABLES [Lorg/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/LocalVariableBinding; +staticfield org/eclipse/jdt/internal/compiler/ast/ASTNode $assertionsDisabled Z 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/DoStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/WhileStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/IfStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/LabeledStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/StatementWithFinallyBlock +instanceKlass org/eclipse/jdt/internal/compiler/ast/ThrowStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/ForStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/BranchStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/EmptyStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/AssertStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/Block +instanceKlass org/eclipse/jdt/internal/compiler/ast/ForeachStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/ExplicitConstructorCall +instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeDeclaration +instanceKlass org/eclipse/jdt/internal/compiler/ast/ReturnStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/CaseStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/Expression +instanceKlass org/eclipse/jdt/internal/compiler/ast/AbstractVariableDeclaration +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/Statement 1 1 539 7 1 7 1 1 1 1 3 1 3 1 3 1 1 1 10 12 1 1 1 1 1 1 7 1 9 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 7 1 12 1 1 100 1 5 0 10 7 1 12 1 10 12 1 1 10 7 1 12 1 9 12 1 1 9 12 1 1 10 12 1 9 7 1 12 1 1 9 7 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 9 12 1 1 10 12 1 1 7 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 100 1 10 12 1 9 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 100 1 10 10 12 1 1 11 100 1 12 1 1 11 100 1 12 1 1 10 11 12 1 10 1 1 1 1 1 1 1 9 12 1 10 100 1 12 1 1 10 12 1 10 12 1 1 10 100 1 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 10 100 1 12 1 9 12 1 9 12 1 9 10 12 1 1 100 1 5 0 100 1 1 1 1 1 1 10 12 1 1 1 9 100 1 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 7 1 9 12 1 9 7 1 12 1 9 12 1 1 9 100 1 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 9 12 1 3 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 1 1 10 12 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 100 1 1 1 10 12 1 1 10 12 1 10 12 1 10 5 0 100 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 9 12 1 1 1 1 1 1 10 12 1 1 10 12 10 12 1 1 100 1 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 7 1 12 1 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/RecordComponent +instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeParameter +instanceKlass org/eclipse/jdt/internal/compiler/ast/LocalDeclaration +instanceKlass org/eclipse/jdt/internal/compiler/ast/FieldDeclaration +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/AbstractVariableDeclaration 1 1 162 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 10 100 1 12 1 1 1 1 1 1 10 12 1 9 12 10 12 1 9 12 10 12 1 1 9 12 10 100 1 12 1 9 12 10 12 1 9 12 10 100 1 12 1 8 1 10 12 1 1 1 1 1 1 1 1 1 9 12 1 1 1 1 9 100 1 12 1 1 10 100 1 12 1 1 9 100 1 12 1 1 9 12 1 1 10 12 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionParser$2 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionParser$1 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InferenceContext18$4 +instanceKlass org/eclipse/jdt/internal/compiler/ast/JavadocModuleReference +instanceKlass org/eclipse/jdt/internal/compiler/ast/JavadocArgumentExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/SwitchStatement +instanceKlass org/eclipse/jdt/internal/compiler/ast/Literal +instanceKlass org/eclipse/jdt/internal/compiler/ast/ArrayInitializer +instanceKlass org/eclipse/jdt/internal/compiler/ast/OperatorExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/ClassLiteralAccess +instanceKlass org/eclipse/jdt/internal/compiler/ast/Assignment +instanceKlass org/eclipse/jdt/internal/compiler/ast/ArrayAllocationExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/CastExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/AllocationExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/FunctionalExpression +instanceKlass org/eclipse/jdt/internal/compiler/ast/Pattern +instanceKlass org/eclipse/jdt/internal/compiler/ast/Reference +instanceKlass org/eclipse/jdt/internal/compiler/ast/MessageSend +instanceKlass org/eclipse/jdt/internal/compiler/ast/Annotation +instanceKlass org/eclipse/jdt/internal/compiler/ast/TypeReference +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/Expression 1 1 890 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 9 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 12 9 12 1 9 12 100 1 100 1 1 1 10 7 1 12 1 1 9 7 1 12 1 1 100 1 5 0 5 0 10 7 1 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 7 1 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 9 12 1 10 12 1 1 10 12 1 10 10 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 1 9 100 1 12 1 10 12 1 9 12 1 1 10 100 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 100 1 1 9 12 9 12 1 100 1 5 0 5 0 10 12 1 1 9 7 1 12 1 5 0 9 12 1 100 1 3 7 1 10 12 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 10 12 1 10 12 1 1 1 10 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 3 10 12 1 1 1 9 7 1 12 1 10 12 1 1 9 12 1 10 12 1 1 100 1 9 100 1 12 1 1 10 12 1 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 1 1 1 1 100 1 1 1 10 12 1 1 10 7 1 12 1 10 12 1 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 9 12 1 10 7 1 12 1 1 11 7 1 12 1 1 11 12 1 10 12 1 1 11 12 1 10 10 12 1 1 9 100 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 10 10 12 1 1 10 10 12 1 1 1 1 1 1 3 7 1 9 12 1 7 1 9 12 1 10 12 1 7 1 9 12 1 7 1 9 12 1 10 12 100 1 7 1 9 12 1 9 12 1 1 9 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 8 1 1 1 10 12 1 1 1 1 10 12 1 1 10 12 1 1 1 100 1 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 1 1 1 1 1 1 100 1 9 10 100 1 12 1 9 5 0 100 1 9 100 1 9 12 9 12 1 9 12 1 10 100 1 12 1 9 100 1 9 12 1 100 1 9 10 12 1 1 11 100 1 12 1 1 10 100 1 100 1 9 12 1 10 12 9 12 1 100 1 10 12 1 1 11 100 1 12 1 1 11 100 1 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 100 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionOnMarkerAnnotationName +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/MarkerAnnotation 1 1 66 7 1 7 1 1 1 1 10 12 1 9 12 1 1 9 12 1 1 9 7 1 12 1 9 1 1 1 1 1 1 9 12 1 1 1 1 10 7 1 12 1 1 10 12 10 12 1 1 1 1 1 1 1 1 10 12 1 10 12 10 12 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionOnLocalName +instanceKlass org/eclipse/jdt/internal/compiler/ast/FakedTrackingVariable +instanceKlass org/eclipse/jdt/internal/compiler/ast/Argument +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/LocalDeclaration 1 1 704 7 1 7 1 1 1 1 1 1 10 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 1 1 1 1 1 9 7 1 12 1 9 12 1 100 1 3 9 12 1 1 9 12 10 7 1 12 1 1 9 12 1 10 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 10 12 1 1 9 7 1 12 1 1 9 12 1 1 10 7 1 12 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 100 1 12 1 1 9 12 1 9 7 1 12 1 100 1 5 0 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 100 1 3 3 3 1 1 9 12 1 10 7 1 12 1 3 9 12 1 9 12 1 1 9 7 1 12 1 10 12 1 10 12 1 7 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 100 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 9 7 1 10 12 1 1 1 1 100 1 100 1 1 100 1 100 1 9 12 1 10 12 9 12 1 100 1 10 12 1 1 11 100 1 12 1 1 11 100 1 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 3 10 12 9 12 1 1 10 12 1 7 1 9 12 1 10 12 1 10 12 1 1 10 12 1 3 10 12 1 9 12 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 1 100 1 3 100 1 10 12 1 10 12 1 9 5 0 10 12 1 10 12 1 1 10 12 1 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 7 1 12 1 10 100 1 7 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 7 1 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 9 10 12 1 1 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 5 0 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 3 10 12 1 1 1 10 7 1 12 1 1 10 10 10 10 12 1 1 1 1 1 1 1 9 7 1 12 1 100 1 100 1 100 1 10 12 1 10 1 1 1 1 1 1 1 7 1 1 12 10 1 1 12 10 1 100 1 100 1 7 1 1 12 10 1 1 12 10 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionOnArgumentName +instanceKlass org/eclipse/jdt/internal/compiler/ast/Receiver +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/Argument 1 1 450 7 1 7 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 8 1 10 7 1 12 1 1 9 12 1 1 1 1 1 10 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 7 1 7 1 3 3 1 1 1 1 1 1 100 1 3 1 1 1 1 9 12 1 1 7 1 10 12 1 9 12 1 10 7 1 12 1 10 7 1 12 1 1 9 7 1 12 1 9 100 1 12 1 100 1 5 0 9 5 0 9 12 1 1 10 12 1 1 9 7 1 12 1 100 1 5 0 10 12 1 1 10 12 1 1 10 12 1 1 5 0 10 7 1 12 1 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 100 10 12 1 9 9 12 1 1 100 1 10 12 1 100 1 10 12 10 12 1 1 9 12 10 12 1 1 10 100 1 12 1 1 9 100 1 1 1 1 1 1 1 1 100 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 9 12 1 10 7 1 12 1 1 10 12 7 1 10 12 1 1 10 9 12 1 3 10 12 1 10 12 1 1 9 12 1 1 100 1 10 12 1 7 1 10 12 1 10 12 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 10 12 1 1 10 12 1 1 1 1 10 12 1 10 12 1 10 12 1 1 10 100 1 12 1 1 8 1 10 12 1 10 12 10 12 1 1 1 1 1 10 1 1 10 12 1 1 10 12 1 10 12 1 10 7 1 10 12 1 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 3 7 1 10 12 1 5 0 10 9 12 1 9 100 1 12 1 10 12 1 1 10 9 7 1 12 1 1 10 12 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 10 10 12 1 1 1 1 1 1 1 10 12 1 10 12 10 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/Argument SET [C 3 +staticfield org/eclipse/jdt/internal/compiler/ast/Argument $assertionsDisabled Z 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/parser/ScannerHelper 1 1 458 7 1 100 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 3 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 100 1 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 5 0 9 12 9 12 1 1 1 1 1 10 12 1 1 1 8 1 10 12 1 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 10 12 1 9 12 7 1 7 7 1 7 1 18 12 1 1 10 7 1 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 100 1 12 1 1 10 100 1 12 1 18 18 18 18 18 18 1 1 1 1 1 1 1 1 100 1 100 18 18 18 18 18 18 18 18 18 1 1 100 1 1 1 1 1 10 7 1 12 1 1 1 10 12 1 1 1 1 1 10 12 1 1 1 3 3 10 12 1 1 100 1 5 0 10 12 10 12 5 0 10 12 5 0 10 12 5 0 10 12 5 0 10 12 5 0 10 12 5 0 10 12 10 12 1 10 12 1 1 1 1 1 10 12 10 12 1 10 12 10 12 100 1 3 3 3 1 1 100 1 10 12 1 1 10 12 1 1 1 10 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 10 7 1 12 1 15 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 100 1 1 +staticfield org/eclipse/jdt/internal/compiler/parser/ScannerHelper Bits [J 64 +staticfield org/eclipse/jdt/internal/compiler/parser/ScannerHelper OBVIOUS_IDENT_CHAR_NATURES [I 128 +ciInstanceKlass org/eclipse/jdt/internal/compiler/util/Util 1 1 1029 7 1 100 1 100 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 8 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 8 1 10 7 1 12 1 1 9 12 7 1 9 7 1 12 1 1 10 12 1 1 9 12 9 12 9 12 9 12 7 1 10 12 9 12 11 7 1 12 1 1 1 1 10 1 1 1 1 1 100 1 9 7 1 12 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 18 12 1 18 12 1 18 18 18 18 10 12 1 10 12 1 1 10 12 1 10 12 1 9 100 1 12 1 10 12 1 1 10 12 1 1 10 9 12 1 100 1 10 10 12 1 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 10 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 100 1 12 1 100 1 100 1 9 12 1 1 1 1 1 1 10 12 1 1 10 7 1 12 1 1 1 1 1 10 12 1 1 1 1 1 100 1 10 12 10 12 1 18 18 18 18 1 1 1 1 10 7 1 12 1 1 1 1 1 10 12 1 1 1 1 10 12 1 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 11 12 1 1 7 10 12 1 1 10 12 1 1 7 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 10 7 1 12 1 1 10 12 1 10 100 1 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 10 12 1 1 10 12 1 10 100 1 11 100 1 11 12 1 1 10 12 1 11 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 1 10 100 1 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 100 1 12 1 18 12 10 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 100 1 8 1 10 10 100 1 12 1 1 8 1 1 1 1 1 8 1 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 100 1 9 12 1 9 12 1 1 100 1 8 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 9 100 1 12 1 1 9 12 1 1 1 100 1 10 10 12 1 1 8 1 8 1 11 100 1 12 1 1 1 1 1 1 10 12 100 1 10 12 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 1 1 1 1 1 1 1 1 9 12 1 1 7 1 10 11 7 1 12 1 1 11 12 1 10 7 1 12 1 9 12 1 1 100 1 5 0 7 1 10 12 1 1 9 7 1 10 12 9 12 1 1 10 12 1 100 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 7 1 12 1 1 10 12 1 1 10 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 8 1 1 1 1 1 1 10 12 1 1 11 100 1 12 1 1 1 1 1 1 1 1 1 1 10 12 1 1 8 1 10 100 1 12 1 1 1 1 1 1 1 8 1 10 12 1 100 1 10 5 0 100 1 10 10 12 10 100 1 12 1 1 11 8 1 8 1 8 1 10 9 12 1 8 1 8 1 10 12 8 1 10 12 1 8 1 10 100 1 12 1 1 11 12 1 1 11 100 1 12 1 1 10 12 1 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 10 12 10 12 1 1 10 10 12 1 1 10 12 1 100 1 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 10 12 1 1 1 10 12 1 10 10 12 1 1 1 1 1 1 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 100 1 12 1 1 8 1 1 18 12 1 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 1 100 1 100 1 1 100 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/util/Util LINE_SEPARATOR Ljava/lang/String; "\u000d\u000a"staticfield org/eclipse/jdt/internal/compiler/util/Util EMPTY_STRING Ljava/lang/String; ""staticfield org/eclipse/jdt/internal/compiler/util/Util COMMA_SEPARATOR Ljava/lang/String; ","staticfield org/eclipse/jdt/internal/compiler/util/Util EMPTY_INT_ARRAY [I 0 +instanceKlass org/eclipse/jdt/internal/compiler/SourceElementParser$1 +instanceKlass org/eclipse/jdt/internal/codeassist/SelectionEngine$1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemReporter 1 1 4773 7 1 7 1 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 7 1 10 12 1 9 12 11 7 1 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 1 1 100 1 10 12 100 1 100 1 3 3 1 1 1 1 10 12 1 1 7 1 9 7 1 12 1 9 12 1 10 12 1 1 1 1 1 1 100 1 1 3 1 1 1 1 3 1 1 1 3 1 1 3 10 100 1 12 1 1 10 12 1 9 7 1 12 1 1 10 7 1 12 1 10 10 7 1 12 1 1 10 12 1 10 10 12 1 10 12 10 12 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 1 10 100 1 12 1 1 9 100 1 12 1 1 10 7 1 12 1 1 9 7 1 12 1 1 9 7 1 12 1 3 9 9 3 1 1 1 1 1 1 1 3 10 10 3 1 3 9 10 12 1 1 3 10 10 1 1 3 1 1 3 9 12 1 10 12 1 1 10 12 1 1 1 1 3 1 1 1 10 12 1 1 3 1 1 1 1 10 7 1 12 1 1 3 10 10 9 100 1 9 3 1 1 1 1 1 1 1 3 9 100 1 9 1 1 1 3 1 1 3 9 100 1 9 1 1 1 1 3 9 100 1 9 1 1 1 3 1 1 3 1 1 1 1 3 9 7 1 9 1 1 1 1 1 1 1 3 1 3 1 1 3 3 1 1 1 3 1 1 9 7 1 3 1 1 1 1 3 9 12 1 1 3 1 1 3 10 12 1 9 100 1 9 9 12 1 1 1 1 1 9 100 1 9 1 1 1 3 9 100 1 9 1 1 1 1 3 1 1 9 12 10 12 1 10 12 1 3 3 1 1 1 1 1 3 1 3 1 1 9 100 1 12 9 12 1 3 10 10 1 1 1 1 3 9 12 1 10 12 1 3 10 12 1 1 3 1 3 1 9 100 1 9 10 12 1 1 1 1 1 1 3 9 8 1 10 10 10 12 1 1 10 12 1 1 1 9 7 1 12 1 1 100 1 5 0 3 5 0 3 3 10 1 1 1 1 3 1 1 3 9 100 1 9 1 1 1 1 3 1 1 1 10 12 1 1 3 1 1 1 1 1 1 9 7 1 12 1 1 10 12 1 1 3 9 9 10 12 1 1 1 1 1 3 1 1 1 3 10 9 100 1 9 1 1 1 1 1 9 100 1 12 1 9 100 1 12 1 9 100 1 12 1 1 100 1 9 12 1 8 1 10 100 1 12 1 1 3 9 12 1 1 10 100 1 12 1 1 10 100 1 12 1 1 10 100 1 12 1 1 10 100 1 12 1 1 10 100 1 12 1 18 12 1 1 3 1 1 1 1 1 1 1 3 1 1 10 100 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 1 1 3 10 12 1 1 9 10 100 1 10 1 1 3 1 3 1 1 3 9 100 1 10 1 1 1 3 1 3 9 12 1 1 1 10 12 1 3 3 1 1 1 1 1 1 3 1 1 1 1 3 1 1 3 1 3 1 1 1 1 3 1 1 3 1 3 1 3 1 1 9 3 1 1 3 1 1 1 3 1 1 1 1 3 1 9 12 1 9 12 1 9 12 1 8 1 9 12 1 8 1 3 9 12 1 1 1 3 9 100 1 9 1 1 1 1 3 1 1 10 100 1 12 1 3 9 9 1 1 1 1 1 3 10 12 1 1 1 1 1 1 3 1 1 3 1 18 12 1 1 10 12 1 1 9 5 0 3 3 3 3 1 1 1 1 10 100 1 10 12 1 100 1 9 12 1 9 18 12 1 18 3 3 3 3 3 3 3 3 1 1 1 1 1 1 1 1 100 1 3 10 12 1 10 12 1 1 10 12 1 18 12 1 1 10 12 1 1 7 1 9 12 1 1 18 12 1 9 3 3 10 12 1 3 3 1 1 1 1 1 1 18 12 1 9 100 1 10 12 3 3 9 100 1 9 3 3 1 1 1 1 1 1 9 12 1 100 1 5 0 9 12 11 100 1 12 1 100 1 10 100 1 12 1 1 9 12 1 100 1 10 12 1 1 10 100 1 12 9 7 1 12 1 10 12 1 9 12 1 100 1 10 12 1 1 1 1 1 1 1 1 1 1 7 1 100 1 1 1 3 9 7 1 9 9 1 1 1 3 1 3 1 1 3 1 1 5 0 3 3 1 1 9 100 1 3 9 9 1 1 1 3 1 1 3 9 100 1 9 1 1 1 3 1 1 3 1 1 3 9 9 1 1 3 1 1 10 12 1 3 10 12 1 3 10 12 1 1 9 12 1 1 10 12 1 3 1 1 1 1 1 3 1 10 12 1 3 3 1 3 1 1 3 3 1 1 1 3 1 1 3 1 3 1 1 9 7 1 3 3 9 9 1 1 1 1 9 3 1 1 3 1 1 10 100 1 12 1 1 3 1 1 1 3 9 100 1 9 9 1 1 1 1 10 12 1 3 10 12 1 1 1 3 1 3 10 10 1 1 1 3 1 3 1 3 1 1 7 1 10 8 1 10 12 1 1 10 12 1 3 3 9 10 12 9 9 1 1 1 1 1 1 1 1 1 100 1 100 1 10 12 1 8 1 8 3 1 3 1 3 1 9 12 1 9 12 1 3 1 1 1 9 12 9 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 9 12 10 12 1 1 9 12 1 10 12 1 9 12 1 3 3 1 1 1 1 1 100 1 1 3 1 1 3 9 100 1 9 1 1 1 3 10 10 1 1 9 12 5 0 3 10 100 1 1 1 1 1 3 10 12 10 12 1 1 1 1 11 100 1 11 12 1 1 1 1 1 3 10 12 1 1 1 3 10 10 1 9 12 9 12 1 1 9 100 1 9 12 3 11 10 12 1 1 1 1 1 1 1 9 12 1 1 1 1 3 1 1 1 3 3 1 1 3 1 3 3 1 1 9 12 1 10 12 1 9 12 3 1 1 3 1 3 1 1 3 1 1 3 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 8 1 3 3 1 1 1 1 1 1 1 10 12 1 1 9 12 1 3 3 3 10 12 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 1 9 100 1 12 1 3 10 10 1 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 1 3 3 3 1 1 1 3 1 3 1 3 1 3 1 3 3 1 9 12 3 3 3 1 1 3 1 3 10 12 1 1 1 3 1 1 9 10 12 1 3 9 9 100 1 3 1 1 1 10 12 1 1 3 9 9 1 1 3 1 3 1 3 1 1 3 9 100 1 9 1 1 1 1 3 9 12 1 9 1 3 1 3 9 1 3 1 1 3 9 100 1 9 1 1 1 1 3 9 100 1 9 1 1 1 3 1 1 10 100 1 12 1 3 3 9 9 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 9 3 3 10 12 100 1 3 3 3 3 10 100 1 9 12 1 3 9 100 1 9 3 10 12 1 1 1 1 1 1 9 100 1 12 1 1 11 100 1 12 1 1 18 12 1 1 11 100 1 12 1 1 18 12 1 1 11 12 1 1 11 12 1 10 100 1 12 1 1 11 12 1 1 9 3 1 1 1 1 1 1 18 1 1 1 1 1 1 1 18 3 1 1 1 1 10 12 1 10 12 1 3 3 3 1 3 3 9 12 100 1 9 12 1 1 9 10 12 1 7 1 9 1 1 1 1 100 1 1 10 12 1 3 10 12 1 1 10 12 1 3 1 1 3 9 12 1 1 5 0 9 3 10 3 3 3 1 1 1 3 1 3 1 9 12 3 1 1 1 1 3 1 1 1 1 10 12 1 10 10 1 1 3 1 1 1 1 1 1 1 3 1 1 1 3 1 1 3 9 100 1 1 1 1 1 3 10 1 1 3 1 3 9 9 12 9 1 3 1 1 10 12 1 9 12 1 9 12 1 3 10 100 1 9 12 1 5 0 10 12 1 3 3 3 3 3 3 3 3 3 100 1 10 9 10 12 1 1 3 10 12 1 1 9 12 1 9 12 1 3 3 3 9 12 3 3 3 9 8 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 10 10 12 9 3 10 3 3 18 18 1 1 3 1 3 1 3 1 3 1 1 9 7 1 12 1 9 10 9 12 9 12 1 10 12 1 1 3 3 3 1 1 1 1 7 1 9 10 12 1 100 1 9 9 10 12 1 1 1 1 1 1 3 10 12 1 1 9 9 1 3 1 1 3 1 1 3 9 9 10 12 1 10 12 1 10 12 1 3 3 3 3 3 3 3 10 12 3 3 3 3 3 3 9 12 1 1 9 100 1 12 1 10 12 1 3 18 12 18 10 12 1 1 3 3 1 1 1 1 1 1 1 1 1 100 1 1 3 1 1 3 10 100 1 12 1 18 18 9 9 1 1 1 1 1 1 1 1 10 100 1 18 18 9 9 1 1 1 10 100 1 9 9 1 1 3 1 3 9 10 12 1 100 1 9 12 100 1 10 12 1 1 11 100 1 12 1 1 11 100 1 12 1 11 12 1 3 3 3 3 9 12 1 9 9 7 1 9 9 7 1 9 9 12 1 100 1 9 12 1 9 9 5 0 1 1 1 1 1 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 1 3 1 1 1 3 9 9 1 1 1 3 1 1 1 1 3 9 9 1 1 1 9 12 1 1 3 1 3 1 3 9 1 3 1 1 3 1 1 1 3 1 3 1 10 12 1 100 1 10 12 1 3 1 1 11 11 10 10 3 3 9 12 1 10 12 1 1 3 1 1 1 1 1 1 1 1 100 1 1 10 100 1 12 9 100 1 12 1 1 1 1 1 1 3 9 12 1 10 12 1 1 10 1 1 3 1 1 3 3 1 10 12 1 3 10 12 1 9 3 1 1 3 1 3 1 3 1 1 3 1 1 1 3 1 3 1 1 3 9 100 1 12 1 1 1 3 3 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 1 1 3 3 3 3 3 3 3 3 1 1 1 3 3 3 9 9 1 3 1 3 1 1 3 9 10 12 1 1 1 3 3 3 3 3 3 3 3 3 1 3 1 3 1 3 1 3 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 3 3 3 3 3 3 1 3 1 3 1 3 1 3 1 3 10 12 1 9 12 1 9 12 1 10 12 1 1 1 1 1 8 1 1 3 1 3 1 3 1 3 9 12 1 9 12 1 1 3 1 1 3 1 3 1 3 1 3 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 100 1 1 8 1 8 1 8 1 8 1 1 1 3 3 9 12 1 10 12 1 3 3 1 1 3 10 12 1 9 12 1 9 3 1 1 3 1 1 5 0 5 0 3 10 12 1 1 10 12 1 10 12 100 1 9 3 3 9 100 1 100 1 10 12 1 10 3 3 10 12 1 1 9 100 1 12 1 1 3 3 3 3 100 1 100 1 100 1 100 1 9 3 3 1 1 1 1 1 3 9 100 1 9 1 1 1 9 12 1 10 12 1 3 1 3 3 1 3 1 10 12 1 9 12 1 9 10 12 1 3 1 1 9 12 1 1 1 1 1 10 12 1 10 12 10 12 1 5 0 10 12 1 3 3 1 1 3 1 3 1 3 3 1 3 1 3 1 3 3 1 1 1 3 1 3 1 9 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 9 12 1 10 12 1 1 9 9 10 12 1 1 1 3 3 3 1 1 3 3 3 1 1 1 3 1 3 1 3 1 3 1 3 1 3 10 12 1 18 10 12 11 12 1 9 12 1 3 1 1 10 18 3 18 3 1 1 1 3 1 1 1 3 1 1 3 9 100 1 12 1 1 1 3 3 1 1 3 10 3 1 10 12 1 3 1 3 1 9 12 9 12 1 1 1 1 100 9 1 1 100 1 3 3 1 3 1 3 1 3 1 3 1 1 3 1 10 12 1 3 1 3 1 3 3 9 10 3 3 1 1 1 1 3 100 1 10 12 1 1 100 1 3 100 1 1 1 1 3 1 3 1 3 1 3 1 1 1 18 3 3 3 3 1 1 1 1 3 1 3 1 1 9 12 3 1 9 12 1 1 11 100 1 12 1 8 1 9 3 1 1 3 9 12 1 9 12 9 12 1 1 8 1 1 1 1 3 1 1 10 12 1 3 3 3 10 10 12 3 1 1 1 1 1 1 1 1 1 1 3 10 12 1 1 1 1 1 3 1 1 3 1 1 3 1 1 3 1 1 1 3 1 3 1 3 1 3 1 3 1 1 3 1 10 12 1 1 3 1 9 12 1 9 12 1 9 12 1 9 12 1 3 1 1 3 1 3 1 3 1 1 3 10 1 3 1 1 3 9 1 3 1 1 3 1 1 3 1 1 1 1 3 9 9 1 1 1 1 3 1 1 1 3 1 1 1 1 3 1 1 3 1 1 3 1 1 1 1 3 1 1 1 3 1 3 1 1 3 1 1 9 12 1 3 1 1 10 3 10 12 1 1 11 12 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 9 12 1 10 12 1 100 1 1 1 1 1 1 1 9 12 1 1 9 100 1 12 1 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 9 12 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 8 1 8 1 3 8 1 3 8 1 3 8 1 3 8 1 3 9 12 1 1 1 1 1 1 3 1 10 12 1 3 3 1 1 3 1 10 3 3 1 1 3 1 1 3 1 1 3 1 3 1 1 3 1 3 1 1 3 1 1 3 1 1 11 12 1 10 12 1 1 1 10 12 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 3 1 1 1 1 3 1 3 1 3 1 3 1 1 3 9 9 1 1 3 1 1 1 1 1 1 3 1 3 1 1 3 1 1 3 9 12 1 3 1 1 1 3 1 1 1 3 1 1 3 1 1 1 1 1 1 3 1 1 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 1 1 1 3 1 1 9 100 1 12 1 3 9 9 1 1 1 3 1 1 1 3 1 1 1 3 1 3 1 9 12 1 3 3 1 9 3 10 1 9 12 10 3 1 3 3 1 3 3 1 1 10 12 1 1 3 3 9 12 1 10 100 1 12 1 9 12 1 9 12 1 1 1 3 1 1 1 3 9 1 1 1 3 1 1 3 1 1 3 9 9 9 1 1 1 1 3 1 1 3 3 1 1 1 9 3 10 12 10 12 3 1 1 3 1 9 12 1 3 1 1 1 9 3 3 1 1 3 9 1 1 3 1 3 1 1 3 10 1 1 3 3 1 1 3 3 1 1 3 1 3 9 12 1 10 12 1 1 1 3 1 3 1 3 1 1 1 3 3 1 3 1 1 3 9 100 1 9 9 12 1 1 1 3 1 3 1 1 3 9 9 1 3 9 12 1 10 12 1 1 9 1 1 3 9 1 3 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 10 12 1 1 1 3 9 1 3 1 3 1 1 1 1 3 1 1 3 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 3 3 9 100 1 12 1 1 10 12 1 1 3 10 1 1 1 3 1 3 1 1 3 3 3 1 1 1 1 3 10 10 3 1 1 1 1 3 1 1 1 3 1 3 1 9 3 1 1 1 9 100 1 3 9 9 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 1 1 10 12 1 100 1 9 12 1 100 1 3 3 1 1 1 1 1 1 3 1 1 3 1 1 3 1 1 1 1 1 3 1 1 9 10 3 1 1 3 1 3 1 3 1 3 1 1 1 3 1 1 10 7 1 12 1 1 9 12 1 3 9 9 3 1 1 1 10 12 1 3 3 3 3 1 1 1 9 3 1 9 12 1 3 1 3 1 3 1 1 3 1 3 1 3 1 10 12 1 1 3 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 10 12 1 10 12 1 9 100 1 12 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 3 10 12 1 100 1 9 12 1 10 12 1 1 10 12 1 1 1 3 10 12 1 3 3 3 1 1 3 10 12 1 1 9 10 3 3 1 100 1 3 1 3 1 1 3 1 1 1 1 3 1 1 1 9 3 3 1 1 1 1 1 10 12 1 3 3 8 1 1 1 1 1 3 3 1 3 1 1 3 1 3 1 1 18 18 3 1 1 1 10 12 1 1 9 12 1 9 3 9 1 9 9 1 1 1 9 12 1 3 3 3 3 3 3 3 1 1 1 10 12 1 3 10 12 1 1 3 3 1 1 3 1 1 1 3 1 1 3 1 1 1 1 1 3 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 10 12 1 1 3 3 1 3 9 1 3 1 1 1 1 3 1 1 1 3 9 100 1 12 1 1 1 1 1 9 12 10 12 1 9 12 1 9 12 1 10 12 1 3 3 3 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 3 10 12 9 12 1 3 1 1 1 1 1 10 12 3 1 1 1 10 12 1 5 0 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 3 1 1 1 3 1 1 1 3 1 1 3 1 1 1 3 3 1 10 12 3 1 1 1 3 1 1 1 3 1 3 1 1 10 12 1 1 1 1 8 1 10 12 1 8 1 8 1 9 12 1 9 100 1 12 1 10 10 12 1 1 10 12 1 1 3 9 9 1 1 1 1 1 1 1 1 100 1 3 1 3 1 1 1 1 3 1 1 1 3 9 100 1 9 1 1 1 9 100 1 12 1 10 9 12 1 1 1 1 9 3 1 1 1 1 1 1 1 1 1 1 3 10 9 9 1 1 3 1 1 1 9 100 1 12 1 1 1 1 3 1 3 1 1 9 12 10 3 1 1 3 1 3 1 1 3 1 1 1 1 1 3 1 1 1 1 3 1 3 1 3 1 1 9 12 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 1 3 1 1 3 1 1 3 1 1 3 9 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 9 3 1 3 1 3 1 1 3 9 100 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 10 12 1 3 3 1 1 3 3 1 10 3 8 1 10 12 8 1 3 1 1 1 3 1 1 3 1 1 5 0 9 3 1 1 3 1 1 1 1 1 1 9 12 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 10 3 9 9 1 1 1 3 1 3 1 10 9 12 1 3 3 1 1 1 1 3 1 3 1 1 3 1 3 1 3 1 10 3 1 3 1 3 18 12 1 10 12 1 1 1 1 1 100 1 1 1 10 12 1 1 1 1 10 1 10 1 1 1 10 1 1 10 1 1 9 100 1 1 1 1 1 1 1 1 11 12 1 1 1 1 10 100 1 12 1 15 8 1 10 100 1 12 1 1 15 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 16 10 12 1 1 15 1 16 16 10 12 15 16 16 10 12 15 16 16 10 12 15 16 8 1 8 1 8 1 8 1 8 1 8 1 16 10 12 15 16 8 1 16 10 12 15 16 1 100 1 100 1 1 1 1 1 12 10 1 12 10 1 100 1 8 1 1 12 10 1 100 10 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration 1 1 901 7 1 7 1 100 1 100 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 9 12 1 1 1 10 9 12 9 12 10 7 1 12 1 1 9 12 9 12 9 12 9 12 1 9 12 1 1 1 1 1 1 100 1 10 12 1 100 1 10 100 1 10 1 1 1 1 1 9 12 9 12 10 7 1 12 1 9 12 10 100 1 10 12 1 1 1 1 1 100 1 10 12 1 11 7 1 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 100 1 10 12 9 12 1 1 11 12 1 1 9 12 9 12 10 7 1 9 7 1 12 1 1 10 12 1 1 9 7 1 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 10 7 1 12 1 10 12 1 1 1 1 1 1 1 1 1 100 9 12 1 9 12 1 10 7 1 12 1 9 12 1 10 1 1 1 9 12 1 9 7 1 12 1 9 7 1 12 1 10 12 1 10 7 1 12 1 1 1 1 1 100 1 1 10 12 1 9 7 1 12 1 1 9 12 1 9 12 1 9 12 9 1 1 1 10 12 1 1 1 100 1 10 12 1 9 12 1 9 12 1 1 9 12 7 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 10 12 1 9 7 1 12 1 10 12 1 10 12 1 9 12 9 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 3 10 12 1 10 12 1 10 7 1 12 1 1 9 7 1 9 12 1 10 7 1 12 1 1 9 12 1 1 7 1 9 12 1 1 9 7 1 12 1 1 9 7 1 12 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 9 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 1 9 10 12 10 12 1 1 1 1 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 11 7 1 12 1 100 1 9 12 9 12 1 10 1 9 12 1 1 10 12 1 1 1 1 9 12 1 1 1 10 12 1 8 1 10 100 1 12 1 1 10 12 1 8 1 8 1 10 12 1 8 1 10 12 10 8 1 10 1 1 1 1 100 9 12 9 12 1 10 7 1 12 1 1 9 3 10 12 1 1 1 9 12 9 100 1 10 100 1 12 1 10 12 1 9 12 10 9 12 10 7 1 12 1 1 1 1 1 1 1 1 7 1 10 12 1 1 7 1 9 12 1 9 9 9 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 10 12 1 1 1 1 1 1 9 12 1 100 1 10 9 10 100 1 12 1 1 11 12 1 1 1 1 100 1 10 12 1 100 1 10 12 1 1 10 12 1 10 12 1 1 1 1 9 12 1 1 10 7 1 12 1 1 9 12 10 12 1 1 1 10 12 10 12 100 1 9 12 1 10 12 1 10 12 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 100 1 3 10 12 1 9 9 12 1 10 12 1 1 10 9 12 1 10 12 1 1 10 12 10 12 10 12 1 1 1 1 9 12 9 100 1 12 9 12 10 12 1 10 100 1 12 1 1 10 12 1 1 100 1 9 12 1 10 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 100 1 12 1 1 10 12 1 10 10 12 10 10 10 12 1 1 1 1 1 1 1 100 1 100 1 1 11 12 9 7 1 9 12 11 12 1 10 12 1 1 9 12 1 1 1 100 1 100 1 1 1 1 1 100 1 1 100 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration STRING_LITERAL_COMPARATOR Ljava/util/Comparator; org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration$1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/CompilationResult 1 1 452 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 9 12 7 1 10 12 1 9 12 1 1 1 10 9 12 9 12 7 1 10 12 1 9 12 9 12 9 12 9 12 9 12 7 1 10 9 12 9 12 9 12 9 12 9 12 1 1 1 11 7 1 12 1 1 9 12 1 1 3 3 10 7 1 12 1 1 10 12 1 1 9 12 11 7 1 12 1 1 100 1 100 1 10 12 1 9 12 11 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 11 12 1 7 1 11 12 1 1 11 7 1 12 1 1 1 1 1 1 1 9 12 1 1 1 1 1 1 1 9 12 100 9 12 10 7 1 12 1 1 10 12 1 1 10 7 1 12 1 1 1 10 12 1 100 1 3 11 12 1 9 100 1 12 1 10 100 1 12 1 1 1 1 9 12 9 12 1 9 12 9 12 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 9 12 1 1 1 10 12 1 1 1 3 10 12 1 1 7 1 10 7 1 10 11 12 11 12 1 11 12 1 1 3 1 1 1 1 9 12 1 1 10 7 1 12 1 10 12 1 1 1 1 1 1 11 12 1 11 12 1 1 1 1 100 1 10 8 1 10 12 1 1 10 12 1 10 12 1 8 1 11 12 1 1 11 12 1 1 11 100 1 12 1 1 7 8 1 11 12 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 1 1 1 1 9 12 10 11 100 1 1 1 1 11 100 1 11 12 1 9 12 1 9 12 10 7 1 12 11 12 1 1 1 1 1 10 12 1 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/CompilationResult EMPTY_LINE_ENDS [I 0 +staticfield org/eclipse/jdt/internal/compiler/CompilationResult PROBLEM_COMPARATOR Ljava/util/Comparator; org/eclipse/jdt/internal/compiler/CompilationResult$1 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionScanner +instanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner$VanguardScanner +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveryScanner +instanceKlass org/eclipse/jdt/internal/compiler/parser/JavadocScanner +ciInstanceKlass org/eclipse/jdt/internal/compiler/parser/Scanner 1 1 1453 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1 1 8 1 1 8 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 9 7 1 12 1 9 12 8 1 10 7 1 12 1 1 9 12 9 12 8 1 9 12 1 1 1 100 1 5 0 10 12 1 1 1 1 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 10 7 1 12 1 1 9 12 100 1 3 9 12 9 12 10 12 1 9 12 9 12 9 12 7 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 100 1 10 12 1 1 9 12 1 1 1 100 1 9 12 9 12 10 7 1 12 1 1 10 12 1 10 12 1 1 9 12 9 7 1 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 9 12 9 12 10 12 1 1 1 1 1 1 1 1 10 12 1 1 1 9 12 10 7 1 1 10 12 1 10 12 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 10 12 1 11 100 1 12 1 1 11 12 1 11 12 1 1 100 1 10 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 1 1 100 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 1 5 0 10 12 1 1 10 12 1 1 1 1 10 12 10 12 1 1 1 1 1 1 10 12 1 1 5 0 10 12 10 12 1 1 1 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 1 1 1 1 1 1 1 1 100 1 8 1 10 12 1 1 1 10 12 1 9 7 1 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 10 12 9 7 1 12 1 1 10 12 1 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 10 10 12 1 10 12 9 12 9 12 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 9 12 100 1 1 1 9 12 1 1 1 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 11 7 1 12 1 1 100 1 10 9 9 100 1 10 12 1 10 12 1 1 1 1 1 5 0 10 12 1 10 12 10 12 1 1 1 1 1 10 12 9 12 1 5 0 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 1 1 1 1 1 9 7 1 12 1 1 11 100 1 12 1 10 12 9 12 1 1 1 1 1 1 10 12 10 12 18 12 1 1 18 8 1 18 10 12 1 8 1 10 12 1 10 12 8 1 10 12 1 1 18 8 1 1 1 1 10 12 18 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 18 18 18 18 18 18 18 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 18 8 1 1 1 1 1 1 1 1 1 9 12 7 1 10 12 1 9 12 7 1 10 12 1 10 12 1 1 10 10 1 10 12 1 1 1 1 1 11 12 1 1 1 1 11 12 1 1 9 12 1 10 12 1 1 1 10 12 10 12 1 10 12 10 12 10 12 1 1 5 0 10 12 10 12 1 10 12 10 12 1 1 5 0 9 7 1 12 1 1 9 12 1 100 1 8 1 10 10 12 9 12 1 10 12 1 1 1 10 12 9 12 1 9 12 1 10 12 9 12 1 10 12 10 12 9 12 1 1 10 12 10 9 12 1 1 1 1 1 10 10 12 9 12 1 10 12 1 1 1 10 8 1 1 1 18 12 1 10 1 1 1 1 1 9 12 10 12 1 1 100 1 1 1 1 10 100 1 12 1 15 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 100 1 100 1 1 1 1 1 1 1 1 100 1 100 1 +staticfield org/eclipse/jdt/internal/compiler/parser/Scanner EMPTY_LINE_ENDS [I 0 +staticfield org/eclipse/jdt/internal/compiler/parser/Scanner TAG_PREFIX [C 11 +staticfield org/eclipse/jdt/internal/compiler/parser/Scanner TAG_PREFIX_LENGTH I 11 +staticfield org/eclipse/jdt/internal/compiler/parser/Scanner IDENTITY_COMPARISON_TAG [C 23 +ciInstanceKlass org/eclipse/jdt/internal/compiler/util/CharDeduplication 1 1 140 7 1 7 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 9 12 7 9 12 18 12 1 1 10 7 1 12 1 1 9 12 1 1 1 1 1 1 10 12 1 7 1 10 10 12 1 10 12 1 10 12 1 1 1 10 9 12 9 12 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 10 12 10 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 15 16 10 12 15 16 1 100 1 100 1 1 +staticfield org/eclipse/jdt/internal/compiler/util/CharDeduplication CHAR_ARRAY0 [C 0 +staticfield org/eclipse/jdt/internal/compiler/util/CharDeduplication ASCII_CHARS [[C 128 [[C +staticfield org/eclipse/jdt/internal/compiler/util/CharDeduplication mutableCache Ljava/lang/ThreadLocal; java/lang/ThreadLocal$SuppliedThreadLocal +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionOnLambdaExpression +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/LambdaExpression 1 1 1560 7 1 7 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 9 12 7 1 10 12 1 1 9 12 1 1 1 10 12 1 9 12 9 12 9 12 9 12 9 12 7 1 10 12 9 12 9 12 9 12 9 12 9 12 1 9 12 9 12 9 12 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 10 12 9 7 1 9 12 7 1 9 12 1 100 1 1 9 12 7 1 1 1 1 9 12 1 1 1 1 9 12 1 9 12 1 1 9 7 1 12 1 100 1 10 7 1 12 1 1 7 1 10 7 1 12 1 1 9 7 1 12 1 7 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 1 12 1 9 9 12 1 1 10 9 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 9 12 1 7 1 10 12 1 1 9 12 1 1 10 7 1 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 7 1 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 7 1 1 1 9 12 1 1 9 12 1 10 100 1 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 100 1 10 12 1 1 9 12 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 9 7 1 12 1 10 100 1 9 12 1 1 9 7 1 12 1 7 1 10 12 1 10 12 1 1 9 12 10 12 1 1 7 1 9 12 1 9 12 1 10 12 1 9 12 9 12 1 10 3 9 7 1 12 1 10 7 1 12 1 10 7 1 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 100 1 3 9 12 1 1 100 1 5 0 9 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 5 0 9 5 0 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 10 10 12 1 1 100 1 100 1 10 12 1 10 12 1 1 9 7 1 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 3 10 12 1 1 9 12 1 1 5 0 100 1 9 12 1 9 12 10 12 1 1 9 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 9 12 1 10 7 1 12 1 1 10 12 1 1 5 0 3 10 12 1 9 12 1 9 12 7 1 10 12 1 7 1 9 9 12 1 10 12 1 10 12 1 9 10 12 1 10 12 1 10 9 12 9 12 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 100 100 10 12 1 7 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 9 12 1 100 1 9 12 1 100 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 10 12 1 1 10 9 12 1 7 1 9 7 1 12 1 1 10 12 1 10 12 1 1 9 7 1 12 1 10 7 1 12 1 1 10 12 1 1 9 7 1 12 1 10 7 1 12 1 1 100 1 10 12 1 9 12 100 1 1 1 1 1 100 1 9 12 1 10 12 1 1 10 7 1 12 1 1 10 10 12 1 1 10 12 1 1 9 12 1 9 3 10 12 1 9 12 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 5 0 10 12 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 12 1 10 100 1 12 1 1 10 12 1 10 12 1 10 100 1 12 1 1 10 12 1 1 10 100 1 12 1 1 5 0 5 0 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 10 12 1 1 1 1 10 12 10 7 1 10 12 1 10 12 1 1 100 1 1 1 1 1 1 100 1 1 1 1 10 12 1 1 1 3 8 1 18 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 10 8 1 1 1 1 1 10 7 1 12 1 1 10 10 12 1 1 1 1 1 1 7 1 10 12 1 10 10 12 1 1 10 12 1 1 9 7 1 12 1 1 9 12 1 10 12 1 1 10 9 12 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 100 1 1 1 1 9 12 10 12 1 10 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 11 12 1 9 12 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 1 9 12 10 12 1 1 10 12 1 1 1 1 1 1 100 1 1 1 1 1 10 12 10 12 1 1 9 10 12 1 1 10 10 12 1 1 10 12 1 10 10 12 1 10 12 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 9 12 1 1 100 1 10 12 1 100 1 10 100 1 10 100 1 10 1 1 1 1 10 12 1 1 9 100 1 12 1 1 100 1 1 1 9 12 1 9 12 1 10 12 1 11 12 9 1 1 1 1 1 9 12 9 12 1 9 12 1 10 12 1 9 9 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 1 1 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 11 100 1 100 1 9 12 1 11 12 1 10 12 1 10 12 1 10 12 10 12 1 18 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 9 10 12 1 1 100 1 1 1 1 1 1 1 100 1 10 12 9 12 1 9 1 1 1 1 10 12 1 1 1 1 1 9 12 1 9 12 1 1 1 1 100 1 10 9 12 1 10 12 1 10 12 1 11 12 1 1 11 11 12 1 1 1 1 1 1 1 1 1 9 12 100 1 10 1 1 9 12 9 100 1 10 12 1 1 11 100 1 1 1 100 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 100 1 100 1 9 12 1 1 1 1 100 1 1 10 12 1 1 10 12 1 1 1 1 1 10 100 1 12 1 15 8 1 10 7 1 12 1 1 15 16 10 12 15 16 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/LambdaExpression NO_SYNTHETIC_ARGUMENTS [Lorg/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding; 0 [Lorg/eclipse/jdt/internal/compiler/lookup/SyntheticArgumentBinding; +staticfield org/eclipse/jdt/internal/compiler/ast/LambdaExpression NO_BODY Lorg/eclipse/jdt/internal/compiler/ast/Block; org/eclipse/jdt/internal/compiler/ast/Block +instanceKlass org/eclipse/jdt/internal/compiler/impl/ShortConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/FloatConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/ByteConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/CharConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/LongConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/IntConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/BooleanConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/DoubleConstant +instanceKlass org/eclipse/jdt/internal/compiler/impl/StringConstant +ciInstanceKlass org/eclipse/jdt/internal/compiler/impl/Constant 1 1 319 7 1 7 1 100 1 100 1 1 1 1 1 1 1 1 100 1 6 0 10 7 1 12 1 1 9 12 6 0 9 12 1 1 1 10 12 1 1 1 100 1 9 100 1 12 1 1 100 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 1 8 1 1 1 10 12 1 1 10 100 1 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 10 100 1 12 1 10 100 1 12 1 10 100 1 12 1 10 100 1 12 1 10 7 1 12 1 1 1 8 1 1 1 10 12 10 100 1 12 1 10 12 1 1 10 100 1 12 1 1 4 10 12 1 1 6 0 10 12 1 5 0 1 1 1 1 1 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 10 12 1 1 10 12 1 18 12 1 1 10 7 1 12 1 18 18 18 18 18 18 18 18 10 12 1 1 18 10 12 1 18 10 12 1 18 10 12 1 18 18 18 10 12 1 18 18 18 12 1 8 1 8 1 10 12 1 10 12 1 1 1 1 8 1 8 1 9 12 1 8 1 8 1 1 8 1 10 12 8 1 8 1 1 1 1 10 7 1 12 1 15 8 1 1 100 1 100 1 1 +staticfield org/eclipse/jdt/internal/compiler/impl/Constant NotAConstant Lorg/eclipse/jdt/internal/compiler/impl/Constant; org/eclipse/jdt/internal/compiler/impl/DoubleConstant +staticfield org/eclipse/jdt/internal/compiler/impl/Constant NotAConstantList [Lorg/eclipse/jdt/internal/compiler/impl/Constant; 1 [Lorg/eclipse/jdt/internal/compiler/impl/Constant; +ciInstanceKlass org/eclipse/jdt/internal/core/builder/SourceFile 1 1 204 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 10 12 1 1 9 12 9 12 1 1 1 1 1 10 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 1 1 11 12 1 1 9 7 1 12 1 1 11 7 1 11 12 1 1 10 7 1 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 10 12 1 1 100 1 100 1 11 12 1 10 12 1 10 12 1 100 1 1 1 1 10 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 10 12 1 1 1 10 12 1 1 9 12 1 1 9 12 1 1 1 11 12 1 10 12 1 1 18 12 1 1 10 12 1 1 11 100 1 12 1 1 1 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredStatement +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredField +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredMethod +instanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredUnit +ciInstanceKlass org/eclipse/jdt/internal/compiler/parser/RecoveredElement 0 0 263 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 9 12 9 12 9 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 9 100 1 12 1 10 12 1 1 1 9 100 1 12 1 10 12 1 1 1 9 100 1 10 12 1 1 1 9 100 1 10 12 1 1 1 9 100 1 10 12 1 1 1 9 100 1 10 12 1 1 1 100 1 9 12 1 1 9 100 1 12 1 100 1 9 100 1 9 9 12 1 9 10 12 1 1 1 9 100 1 10 12 1 1 1 9 10 12 1 1 9 100 1 12 1 9 12 1 1 10 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 1 1 1 1 1 9 12 1 9 10 12 9 100 1 12 1 1 9 100 1 12 1 1 9 12 1 10 100 1 12 1 1 9 12 1 1 1 1 1 1 100 1 10 12 9 1 1 1 100 1 10 8 1 10 12 1 1 10 12 1 1 1 1 1 1 1 10 12 10 1 1 9 12 1 1 1 1 10 12 1 1 1 10 12 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/StringLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/NumberLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/MagicLiteral +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/Literal 1 1 84 7 1 7 1 1 1 1 10 12 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 10 100 1 12 1 1 1 1 1 1 10 12 9 12 1 1 10 12 9 12 1 1 10 100 1 12 1 1 10 100 1 12 1 1 9 100 1 12 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/NullLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/TrueLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/FalseLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/FakeDefaultLiteral +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/MagicLiteral 1 1 23 100 1 7 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/CharLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/DoubleLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/FloatLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/LongLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/IntLiteral +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/NumberLiteral 1 1 65 7 1 7 1 1 1 1 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 10 1 1 1 1 1 100 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/compiler/ast/IntLiteralMinValue +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/IntLiteral 1 1 189 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 10 7 1 12 1 1 10 12 1 1 9 12 1 1 1 1 10 12 1 1 10 100 1 12 1 1 100 1 10 12 1 10 1 1 1 1 1 100 10 12 1 9 12 1 1 1 9 12 9 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 10 7 1 12 1 1 1 1 1 1 9 12 1 100 1 3 9 12 1 9 12 1 1 1 9 7 1 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral HEXA_MIN_VALUE [C 10 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral HEXA_MINUS_ONE_VALUE [C 10 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral OCTAL_MIN_VALUE [C 12 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral OCTAL_MINUS_ONE_VALUE [C 12 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral DECIMAL_MIN_VALUE [C 10 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral DECIMAL_MAX_VALUE [C 10 +staticfield org/eclipse/jdt/internal/compiler/ast/IntLiteral One Lorg/eclipse/jdt/internal/compiler/ast/IntLiteral; org/eclipse/jdt/internal/compiler/ast/IntLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/LongLiteralMinValue +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/LongLiteral 1 1 187 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 8 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 8 1 9 12 1 1 1 1 10 12 1 1 10 7 1 12 1 1 7 1 10 12 1 1 10 1 1 1 1 1 1 100 10 12 1 9 12 1 1 1 1 1 1 9 12 1 100 1 3 9 12 1 10 12 1 9 12 1 9 12 1 1 10 100 1 12 1 1 9 12 1 1 10 12 1 1 5 0 10 12 1 1 1 1 1 1 10 100 1 12 1 1 1 1 1 1 1 9 100 1 12 1 9 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 100 1 12 1 1 1 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral HEXA_MIN_VALUE [C 19 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral HEXA_MINUS_ONE_VALUE [C 19 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral OCTAL_MIN_VALUE [C 24 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral OCTAL_MINUS_ONE_VALUE [C 24 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral DECIMAL_MIN_VALUE [C 20 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteral DECIMAL_MAX_VALUE [C 20 +instanceKlass org/eclipse/jdt/internal/compiler/ast/ExtendedStringLiteral +instanceKlass org/eclipse/jdt/internal/compiler/ast/StringLiteralConcatenation +instanceKlass org/eclipse/jdt/internal/compiler/ast/TextBlock +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/StringLiteral 1 1 184 7 1 7 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 9 12 9 12 9 12 1 1 1 1 10 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 9 12 1 1 1 1 9 100 1 12 1 1 7 1 9 12 1 9 12 1 10 12 1 1 10 1 1 1 1 9 1 1 100 1 10 12 1 1 1 9 7 1 12 1 10 7 1 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 1 1 1 10 100 1 12 1 1 10 100 1 12 1 1 1 1 1 7 10 12 1 10 12 1 1 1 1 1 10 12 1 10 7 1 12 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/TextBlock 0 0 59 100 1 100 1 1 1 1 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 8 1 10 100 1 12 1 1 10 12 1 1 10 100 1 12 1 1 8 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/FloatLiteral 0 0 139 100 1 100 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 100 1 12 1 1 10 12 1 1 10 100 1 12 1 1 10 100 1 12 1 10 100 1 12 1 1 4 10 12 1 1 9 12 10 100 1 12 1 1 9 12 1 1 10 12 1 1 4 4 100 1 1 1 1 1 1 1 1 1 1 1 1 9 100 1 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 9 100 1 12 1 1 1 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/DoubleLiteral 1 1 142 7 1 7 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 1 10 7 1 12 1 1 10 12 1 1 10 7 1 12 1 1 10 7 1 12 1 10 100 1 12 1 1 6 0 10 12 1 1 9 12 10 7 1 12 1 1 9 12 1 1 10 12 1 1 6 0 6 0 100 1 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 10 100 1 12 1 1 10 12 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/CharLiteral 1 1 104 7 1 7 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 1 1 1 1 1 1 1 9 12 10 7 1 12 1 1 9 12 1 1 9 12 1 10 100 1 12 1 1 1 1 1 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/FalseLiteral 1 1 97 7 1 7 1 1 1 1 1 1 9 12 1 1 1 1 10 12 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 1 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/FalseLiteral source [C 5 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/TrueLiteral 1 1 97 7 1 7 1 1 1 1 1 1 9 12 1 1 1 1 10 12 1 1 1 1 1 1 10 7 1 12 1 1 9 12 1 1 1 1 9 7 1 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/TrueLiteral source [C 4 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/NullLiteral 1 1 98 7 1 7 1 1 1 1 1 1 9 12 1 1 1 1 10 12 1 1 1 1 1 1 9 7 1 12 1 1 9 12 1 1 1 9 7 1 12 1 10 12 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 7 1 12 1 1 1 1 1 100 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/NullLiteral source [C 4 +ciInstanceKlass org/eclipse/jdt/internal/compiler/impl/JavaFeature 1 1 227 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 100 1 5 0 9 7 1 12 1 10 12 1 1 7 1 9 7 1 12 1 10 12 1 1 9 12 8 5 0 9 12 1 9 12 8 5 0 9 12 1 9 12 8 9 12 1 9 12 1 9 12 8 5 0 9 12 1 9 12 1 9 12 1 9 12 1 9 12 8 5 0 9 12 1 9 12 8 9 12 1 9 12 8 5 0 9 12 1 9 12 8 5 0 9 12 1 9 12 8 9 12 1 9 12 8 9 12 1 9 12 8 9 12 1 9 7 1 12 1 9 12 8 9 12 1 9 12 9 12 1 1 1 9 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 7 1 12 1 10 12 9 12 1 1 1 1 1 1 1 1 10 12 1 1 1 9 12 1 10 12 1 1 1 10 7 1 12 1 1 1 1 10 12 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature SWITCH_EXPRESSIONS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature TEXT_BLOCKS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature PATTERN_MATCHING_IN_INSTANCEOF Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature RECORDS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature SEALED_CLASSES Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature PATTERN_MATCHING_IN_SWITCH Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature RECORD_PATTERNS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature UNNAMMED_PATTERNS_AND_VARS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature IMPLICIT_CLASSES_AND_INSTANCE_MAIN_METHODS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature FLEXIBLE_CONSTRUCTOR_BODIES Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature PRIMITIVES_IN_PATTERNS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature MODULE_IMPORTS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature MARKDOWN_COMMENTS Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; org/eclipse/jdt/internal/compiler/impl/JavaFeature +staticfield org/eclipse/jdt/internal/compiler/impl/JavaFeature ENUM$VALUES [Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; 13 [Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature; +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/LongLiteralMinValue 1 1 42 7 1 7 1 1 1 1 1 1 9 12 1 1 1 1 10 12 100 1 5 0 10 7 1 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield org/eclipse/jdt/internal/compiler/ast/LongLiteralMinValue CharValue [C 21 +ciInstanceKlass org/eclipse/jdt/internal/compiler/ast/IntLiteralMinValue 0 0 38 100 1 100 1 1 1 1 1 1 9 12 1 1 1 1 100 1 3 10 100 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass org/eclipse/jdt/internal/compiler/impl/CharConstant 1 1 82 7 1 7 1 1 1 1 1 1 10 12 1 1 1 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 1 18 12 1 1 100 1 1 1 1 10 100 1 12 1 1 1 1 1 1 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1 +ciInstanceKlass org/eclipse/jdt/internal/core/BasicCompilationUnit 1 1 190 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 10 7 1 12 1 1 9 12 9 12 1 1 1 1 1 1 1 1 10 12 9 12 1 10 12 1 1 1 1 11 7 1 12 1 1 7 1 11 12 1 1 7 1 11 7 1 11 12 1 11 12 1 1 100 1 11 12 1 1 100 1 11 11 12 1 1 11 7 1 12 1 9 12 11 12 1 1 11 12 1 1 11 7 1 12 1 100 1 1 1 1 1 1 1 1 1 1 1 100 1 10 12 1 10 12 1 10 100 1 12 1 1 9 7 1 12 1 100 1 1 1 9 12 10 12 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 18 12 1 1 1 1 1 1 10 100 1 12 1 15 8 1 1 100 1 100 1 1 +ciInstanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionScanner 1 1 68 7 1 7 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 9 12 1 9 12 9 12 1 1 1 1 9 12 9 12 1 9 12 1 10 7 1 12 1 1 9 12 1 10 12 1 1 1 10 12 100 1 1 1 1 +ciMethod java/lang/Object ()V 1024 0 3328542 0 128 +ciMethod java/lang/System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V 256 0 128 0 -1 +ciMethod java/lang/Character getNumericValue (C)I 0 0 1 0 -1 +ciMethod java/lang/Math min (II)I 520 0 408824 0 -1 +ciMethod java/util/Arrays equals ([C[C)Z 4460 0 121340 0 -1 +ciMethod java/util/Arrays copyOfRange ([CII)[C 4258 0 4292 0 0 +ciMethodData java/lang/Object ()V 2 3328542 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 4 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethod org/eclipse/jdt/core/compiler/CharOperation equals ([C[C)Z 34638 0 754534 0 288 +ciMethod org/eclipse/jdt/core/compiler/CharOperation lastIndexOf (C[C)I 27982 1796996 45378 0 -1 +ciMethod org/eclipse/jdt/core/compiler/CharOperation subarray ([CII)[C 4234 0 103840 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/env/ICompilationUnit getMainTypeName ()[C 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/core/util/CommentRecorderParser flushCommentsDefinedPriorTo (I)I 4112 1062 5656 0 0 +ciMethod org/eclipse/jdt/internal/core/util/CommentRecorderParser getCommentPtr ()I 4188 0 8369 0 -1 +ciMethod org/eclipse/jdt/internal/core/util/CommentRecorderParser pushOnCommentsStack (II)V 4124 1706 5446 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 1956 0 2669 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser consumeNestedType ()V 2 0 243 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser consumeLambdaHeader ()V 0 0 81 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser consumeTextBlock ()V 0 0 1 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser createTextBlock ([CII)Lorg/eclipse/jdt/internal/compiler/ast/TextBlock; 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser consumeToken (I)V 11216 0 56513 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser createStringLiteral ([CIII)Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral; 1216 0 993 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser flushCommentsDefinedPriorTo (I)I 180 38 627 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser problemReporter ()Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter; 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ([CJ)V 4154 0 18435 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ()V 4130 0 18449 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1024 0 1429 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStack (Lorg/eclipse/jdt/internal/compiler/ast/Expression;)V 6228 0 6562 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 6860 0 6368 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 4588 0 30250 0 160 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser resetModifiers ()V 4628 0 5772 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Parser isParsingModuleDeclaration ()Z 16 0 581 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 3952 0 10680 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/Statement ()V 3316 0 9917 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/Expression ()V 4214 0 10113 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/LocalDeclaration isReceiver ()Z 820 0 410 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/ScannerHelper getNumericValue (C)I 0 0 1 0 0 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter illegalThis (Lorg/eclipse/jdt/internal/compiler/ast/Argument;)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter validateJavaFeatureSupport (Lorg/eclipse/jdt/internal/compiler/impl/JavaFeature;II)Z 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter useAssertAsAnIdentifier (II)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter useEnumAsAnIdentifier (II)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter illegalUseOfUnderscoreAsAnIdentifier (IIZZ)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/problem/ProblemReporter StrictfpNotRequired (II)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/util/Util getLineNumber (I[III)I 4590 18554 7718 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration getMainTypeName ()[C 4134 0 3472 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration isModuleInfo ()Z 680 0 1201 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration recordStringLiteral (Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral;Z)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/CompilationResult getFileName ()[C 256 0 128 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentIdentifierSource ()[C 4182 0 23570 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSource ()[C 56 0 284 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSourceString ()[C 1394 0 993 0 0 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTextBlock ()[C 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner getSource ()[C 260 0 130 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner copyCommentInfo (II)V 126 0 143 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/Scanner copyAllCommentInfo (III)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/util/CharDeduplication sharedCopyOfRange ([CII)[C 4162 31178 13180 0 2400 +ciMethod org/eclipse/jdt/internal/compiler/util/CharDeduplication hashCode ([CII)I 4126 61762 6893 0 384 +ciMethod org/eclipse/jdt/internal/compiler/util/CharDeduplication equals ([CII[C)Z 4280 29168 13041 0 480 +ciMethodData java/util/Arrays copyOfRange ([CII)[C 2 4292 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 51 0x50007 0x873 0x120 0x0 0x100002 0x0 0x140005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x210005 0x0 0x0 0x0 0x0 0x0 0x0 0x240002 0x0 0x370002 0x873 0x3a0002 0x873 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/core/compiler/CharOperation equals ([C[C)Z 2 754534 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x20002 0xb3fcc 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffffffffffff 0xffffffffffffffff oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/util/CharDeduplication hashCode ([CII)I 2 120013 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0xa0003 0x12de 0x18 0x1f0007 0x15c2c 0x0 0x12df 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/util/CharDeduplication sharedCopyOfRange ([CII)[C 2 96420 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 69 0x70008 0x6 0x2927 0x60 0x0 0x60 0x234 0x40 0x270007 0x0 0x20 0x234 0x390005 0x2927 0x0 0x0 0x0 0x0 0x0 0x4c0003 0x2927 0xa8 0x650007 0x7bcb 0x38 0xbff5 0x6c0003 0xbff5 0x70 0x750005 0x7bcb 0x0 0x0 0x0 0x0 0x0 0x780007 0x6064 0x20 0x1b67 0x850007 0x13bbf 0xffffffffffffff70 0xdc1 0x8b0002 0xdc1 0x930007 0xc4c 0x20 0x175 0xba0004 0x0 0x0 0x17669093980 0xdc1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 1 53 [C methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/util/CharDeduplication equals ([CII[C)Z 2 80564 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 26 0x60007 0x15ed 0x20 0x14a9 0xe0003 0x15ed 0x38 0x1c0007 0xf9ca 0x20 0x7f2 0x270007 0x101bc 0xffffffffffffffe0 0xdfb 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/LambdaExpression setArguments ([Lorg/eclipse/jdt/internal/compiler/ast/Argument;)V 324 0 162 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/LambdaExpression setArrowPosition (I)V 162 0 81 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/parser/RecoveredElement addModifier (II)V 0 0 1 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/MagicLiteral (II)V 2 0 262 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/Literal (II)V 400 0 821 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/IntLiteral buildIntLiteral ([CII)Lorg/eclipse/jdt/internal/compiler/ast/IntLiteral; 2 0 221 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/IntLiteral ([C[CII)V 442 0 221 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/NumberLiteral ([CII)V 156 0 261 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/NumberLiteral (II)V 156 0 261 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/NumberLiteral removePrefixZerosAndUnderscores ([CZ)[C 450 698 225 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/LongLiteral buildLongLiteral ([CII)Lorg/eclipse/jdt/internal/compiler/ast/LongLiteral; 8 0 4 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/LongLiteral ([C[CII)V 8 0 4 0 -1 +ciMethod org/eclipse/jdt/internal/compiler/ast/StringLiteral ([CIII)V 1986 0 993 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/StringLiteral (Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral;Ljava/lang/Object;III)V 704 0 387 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/DoubleLiteral ([CII)V 2 0 14 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/CharLiteral ([CII)V 26 0 21 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/CharLiteral computeValue ()V 26 0 21 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/FalseLiteral (II)V 36 0 65 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/TrueLiteral (II)V 2 0 87 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/NullLiteral (II)V 2 0 110 0 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentIdentifierSource ()[C 2 23570 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 28 0x40007 0x53eb 0x30 0x0 0x190002 0x0 0x2d0007 0x4633 0x20 0xdb9 0x450005 0x0 0x0 0x1766b49ab40 0x4634 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 1 13 org/eclipse/jdt/internal/compiler/util/CharDeduplication methods 0 +ciMethod org/eclipse/jdt/internal/compiler/impl/JavaFeature getCompliance ()J 348 0 174 0 0 +ciMethod org/eclipse/jdt/internal/compiler/impl/JavaFeature isSupported (Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;)Z 1822 0 17291 0 0 +ciMethod org/eclipse/jdt/internal/compiler/ast/LongLiteralMinValue ([C[CII)V 2 0 1 0 -1 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 2 30250 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x120007 0x6d36 0x30 0x0 0x280002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffff80000400 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration getMainTypeName ()[C 2 3472 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 49 0x70007 0x561 0x108 0x1c 0xe0005 0x0 0x0 0x1766e448d10 0x1c 0x0 0x0 0x150002 0x1c 0x1c0007 0x0 0x50 0x1c 0x230002 0x1c 0x260007 0x1c 0x30 0x0 0x2c0002 0x0 0x350002 0x1c 0x3b0007 0x1c 0x20 0x0 0x440002 0x1c 0x4f0005 0x114 0x0 0x1766e5c4e80 0x239 0x1766e5c4f30 0x214 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 3 7 org/eclipse/jdt/internal/compiler/CompilationResult 36 org/eclipse/jdt/internal/core/builder/SourceFile 38 org/eclipse/jdt/internal/core/BasicCompilationUnit methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 2 6368 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x120007 0xb7a 0x30 0x0 0x280002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffff80000030 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStack (Lorg/eclipse/jdt/internal/compiler/ast/Expression;)V 2 6562 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 32 0x120007 0xd78 0x30 0x0 0x280002 0x0 0x340104 0x0 0x0 0x1766a9e7110 0x233 0x176782baa10 0x1da 0x470007 0xd78 0x30 0x0 0x5c0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffff80000030 0x0 oops 2 9 org/eclipse/jdt/internal/compiler/ast/MarkerAnnotation 11 org/eclipse/jdt/internal/compiler/ast/StringLiteral methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser consumeNestedType ()V 1 243 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 19 0x120007 0xf2 0x40 0x0 0x270002 0x0 0x3c0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffff80040000 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser consumeToken (I)V 2 56513 orig 80 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 1469 0x8000000600010008 0x108 0x11f2 0x2978 0x36 0x2668 0x0 0x2668 0xc3 0x2650 0x1d 0x2650 0x3a 0x2978 0x7 0x8a0 0xb 0x2940 0xf 0x2978 0x5 0x2978 0x3f9 0x27d8 0x0 0x2978 0x2 0x2978 0x9d 0x2978 0x2bd 0x2978 0x4 0x2978 0x10 0x2978 0x1 0x2978 0x3fe1 0x908 0x33 0x2978 0x33 0x2978 0x4 0x2978 0x119c 0x26b0 0x0 0x2978 0x119c 0x2698 0xd2c 0x2680 0x0 0x26c8 0xa 0x2978 0x115 0x2750 0x17 0x2978 0x3e 0x2978 0x533 0x2978 0x76c 0x2680 0x0 0x908 0x1ab 0x2700 0xb1 0x2200 0x117 0x2200 0xc4 0x12b8 0x0 0x2978 0x180 0x2418 0x0 0x13e8 0x76a 0x2650 0x0 0x1048 0x9 0xb80 0x1d2 0xc90 0x2 0xd18 0x0 0xda0 0x2b5 0xeb0 0x45 0xf38 0x342 0xfc0 0x0 0xc08 0x0 0x1120 0x0 0x1230 0x41 0x20e0 0x6d 0x21a0 0x56 0x2140 0xd8 0x1b30 0x4 0x1bc8 0x0 0x1c60 0xe 0x1cf8 0x15 0x1d90 0x3c3 0x1e28 0x0 0x2090 0x1d 0x8b8 0x1 0x2390 0x4e 0x2978 0x3f 0x2650 0x136 0x2650 0x0 0x2978 0x3a 0x2638 0x73 0x24a0 0x3 0xaf8 0x2d 0x2978 0x0 0x2978 0x4 0x2528 0x0 0x24a0 0x15 0x25b0 0x3be 0x2878 0x4 0x2250 0x9 0x2250 0x0 0x2250 0xa 0x2250 0x5 0x2250 0x0 0x2250 0x40 0x2250 0xe5 0x2250 0x90 0x2250 0x73 0x22a0 0x0 0x2978 0x0 0x2250 0x2a 0x2250 0x37 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0x0 0x2978 0xc7 0x1530 0x5 0x15f0 0x5 0x2340 0x74 0x2978 0x0 0x16b0 0xb5 0x1770 0x6 0x1830 0x2eb 0x2250 0x96 0x18f0 0x6a 0x19b0 0x2 0x1a70 0x276 0x1470 0x0 0x2250 0x0 0x2978 0xe 0x2978 0x7 0x2828 0x51 0x850 0x52 0x2978 0x0 0xe28 0x0 0x2250 0x0 0x2250 0x0 0x2250 0x0 0x2250 0x0 0x2250 0x0 0x11a8 0x0 0x2978 0x0 0x22f0 0x0 0x2978 0x0 0x10d0 0x21d0005 0x0 0x0 0x1766dcb8800 0x2a 0x1766dcbc0a0 0x27 0x2200003 0x51 0x20f0 0x2300003 0x7 0x20d8 0x23b0005 0x0 0x0 0x1766dcb8800 0xf 0x1766dcbc0a0 0xe 0x23f0003 0x1d 0x2088 0x2430005 0x8f5 0x0 0x1766dcb8800 0xbba 0x1766dcbc0a0 0x2b32 0x24d0007 0x3fe6 0xd0 0x0 0x25b0007 0x0 0xb0 0x0 0x26c0007 0x0 0x90 0x0 0x2700005 0x0 0x0 0x0 0x0 0x0 0x0 0x27a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2840007 0x3fe6 0x1f68 0x0 0x2920007 0x0 0x1f48 0x0 0x2a30007 0x0 0x1f28 0x0 0x2a70005 0x0 0x0 0x0 0x0 0x0 0x0 0x2b10005 0x0 0x0 0x0 0x0 0x0 0x0 0x2b40003 0x0 0x1e98 0x2c10005 0x0 0x0 0x1766dcbc0a0 0x3 0x0 0x0 0x2cc0005 0x0 0x0 0x1766dcbc0a0 0x3 0x0 0x0 0x2cf0003 0x3 0x1e10 0x2d60005 0x0 0x0 0x1766dcbc0a0 0x9 0x0 0x0 0x2db0005 0x0 0x0 0x1766dcbc0a0 0x9 0x0 0x0 0x2de0003 0x9 0x1d88 0x2e50005 0x0 0x0 0x0 0x0 0x0 0x0 0x2ea0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2ed0003 0x0 0x1d00 0x2f30005 0x1cb 0x0 0x1766dcb8800 0x3 0x1766dcbc150 0x4 0x2f80005 0x1cb 0x0 0x1766dcb8800 0x3 0x1766dcbc150 0x4 0x2fb0003 0x1d2 0x1c78 0x3020005 0x0 0x0 0x1766dcbc0a0 0x2 0x0 0x0 0x3070005 0x0 0x0 0x1766dcbc0a0 0x2 0x0 0x0 0x30a0003 0x2 0x1bf0 0x3110005 0x0 0x0 0x0 0x0 0x0 0x0 0x3160005 0x0 0x0 0x0 0x0 0x0 0x0 0x3190003 0x0 0x1b68 0x31f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3240005 0x0 0x0 0x0 0x0 0x0 0x0 0x3270003 0x0 0x1ae0 0x32c0005 0x8a 0x0 0x1766dcb8800 0x2 0x1766dcbc0a0 0x22a 0x3310005 0x8a 0x0 0x1766dcb8800 0x2 0x1766dcbc0a0 0x22a 0x3340003 0x2b6 0x1a58 0x3390005 0x0 0x0 0x1766dcbc0a0 0x45 0x0 0x0 0x33e0005 0x0 0x0 0x1766dcbc0a0 0x45 0x0 0x0 0x3410003 0x45 0x19d0 0x3460005 0xa8 0x0 0x1766dcb8800 0xc 0x1766dcbc0a0 0x28f 0x34b0005 0xa8 0x0 0x1766dcb8800 0xc 0x1766dcbc0a0 0x28f 0x34e0003 0x343 0x1948 0x3550005 0x0 0x0 0x0 0x0 0x0 0x0 0x35a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x35d0003 0x0 0x18c0 0x3680005 0x0 0x0 0x0 0x0 0x0 0x0 0x36b0003 0x0 0x1870 0x3720005 0x0 0x0 0x0 0x0 0x0 0x0 0x3770005 0x0 0x0 0x0 0x0 0x0 0x0 0x37a0003 0x0 0x17e8 0x3800005 0x0 0x0 0x0 0x0 0x0 0x0 0x3850005 0x0 0x0 0x0 0x0 0x0 0x0 0x3880003 0x0 0x1760 0x38e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3930005 0x0 0x0 0x0 0x0 0x0 0x0 0x3960003 0x0 0x16d8 0x39a0005 0x8 0x0 0x1766dcb8800 0x1 0x1766dcbc0a0 0xbb 0x39d0007 0xc4 0x70 0x0 0x3a30005 0x0 0x0 0x0 0x0 0x0 0x0 0x3a60003 0x0 0x50 0x3ac0005 0x8 0x0 0x1766dcb8800 0x1 0x1766dcbc0a0 0xbb 0x3b10005 0x8 0x0 0x1766dcb8800 0x1 0x1766dcbc0a0 0xbb 0x3b40003 0xc4 0x15a8 0x3c50005 0x0 0x0 0x0 0x0 0x0 0x0 0x3ca0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3cd0003 0x0 0x1520 0x3d30005 0xc4 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0x1af 0x3e00005 0xc4 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0x1af 0x3eb0005 0xc4 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0x1af 0x3ee0003 0x276 0x1460 0x3f40005 0x8 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0xbc 0x4010005 0x8 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0xbc 0x40c0005 0x8 0x0 0x1766dcb8800 0x3 0x1766dcbc0a0 0xbc 0x40f0003 0xc7 0x13a0 0x4150005 0x0 0x0 0x1766dcbc0a0 0x5 0x0 0x0 0x4220005 0x0 0x0 0x1766dcbc0a0 0x5 0x0 0x0 0x42d0005 0x0 0x0 0x1766dcbc0a0 0x5 0x0 0x0 0x4300003 0x5 0x12e0 0x4360005 0x0 0x0 0x0 0x0 0x0 0x0 0x4430005 0x0 0x0 0x0 0x0 0x0 0x0 0x44e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4510003 0x0 0x1220 0x4570005 0x0 0x0 0x1766dcbc0a0 0xb5 0x0 0x0 0x4640005 0x0 0x0 0x1766dcbc0a0 0xb5 0x0 0x0 0x46f0005 0x0 0x0 0x1766dcbc0a0 0xb5 0x0 0x0 0x4720003 0xb5 0x1160 0x4780005 0x0 0x0 0x1766dcbc0a0 0x6 0x0 0x0 0x4850005 0x0 0x0 0x1766dcbc0a0 0x6 0x0 0x0 0x4900005 0x0 0x0 0x1766dcbc0a0 0x6 0x0 0x0 0x4930003 0x6 0x10a0 0x4990005 0x0 0x0 0x1766dcb8800 0xd 0x1766dcbc0a0 0x89 0x4a60005 0x0 0x0 0x1766dcb8800 0xd 0x1766dcbc0a0 0x89 0x4b10005 0x0 0x0 0x1766dcb8800 0xd 0x1766dcbc0a0 0x89 0x4b40003 0x96 0xfe0 0x4ba0005 0x0 0x0 0x1766dcb8800 0x7 0x1766dcbc0a0 0x63 0x4c70005 0x0 0x0 0x1766dcb8800 0x7 0x1766dcbc0a0 0x63 0x4d20005 0x0 0x0 0x1766dcb8800 0x7 0x1766dcbc0a0 0x63 0x4d50003 0x6a 0xf20 0x4db0005 0x0 0x0 0x1766dcbc0a0 0x2 0x0 0x0 0x4e80005 0x0 0x0 0x1766dcbc0a0 0x2 0x0 0x0 0x4f30005 0x0 0x0 0x1766dcbc0a0 0x2 0x0 0x0 0x4f60003 0x2 0xe60 0x4fe0005 0x0 0x0 0x1766dcbc200 0xd8 0x0 0x0 0x5110002 0xd8 0x5140005 0x2 0x0 0x1766dcb8800 0x3e 0x1766dcbc0a0 0x98 0x5170003 0xd8 0xdc8 0x51f0005 0x0 0x0 0x1766dcbc200 0x4 0x0 0x0 0x5320002 0x0 0x5350005 0x0 0x0 0x1766dcbc0a0 0x4 0x0 0x0 0x5380003 0x4 0xd30 0x5440005 0x0 0x0 0x0 0x0 0x0 0x0 0x5570002 0x0 0x55a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x55d0003 0x0 0xc98 0x5690005 0x0 0x0 0x1766dcbc200 0xe 0x0 0x0 0x57c0002 0xe 0x57f0005 0xb 0x0 0x1766dcb8800 0x1 0x1766dcbc150 0x2 0x5820003 0xe 0xc00 0x58e0005 0x0 0x0 0x1766dcbc200 0x15 0x0 0x0 0x5a10002 0x15 0x5a40005 0x0 0x0 0x1766dcb8800 0xd 0x1766dcbc0a0 0x8 0x5a70003 0x15 0xb68 0x5ae0007 0x3d 0x1a8 0x386 0x5b50007 0x13 0x188 0x373 0x5bc0007 0x373 0x168 0x0 0x5ca0007 0x0 0x148 0x0 0x5d10007 0x0 0x128 0x0 0x5d90005 0x0 0x0 0x0 0x0 0x0 0x0 0x6020002 0x0 0x6050005 0x0 0x0 0x0 0x0 0x0 0x0 0x6120007 0x0 0x38 0x0 0x6160003 0x0 0x18 0x61a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x61d0003 0x0 0x88 0x6250005 0x0 0x0 0x1766dcbc200 0x3c3 0x0 0x0 0x6390005 0x8 0x0 0x1766dcb8800 0x184 0x1766dcbc0a0 0x237 0x63f0005 0x8 0x0 0x1766dcb8800 0x184 0x1766dcbc0a0 0x237 0x6420003 0x3c3 0x900 0x6460005 0x0 0x0 0x0 0x0 0x0 0x0 0x6490003 0x0 0x8b0 0x6610002 0x41 0x6640005 0x0 0x0 0x1766dcb8800 0x12 0x1766dcbc0a0 0x2f 0x6670003 0x41 0x850 0x67f0002 0x56 0x6820005 0x14 0x0 0x1766dcb8800 0x13 0x1766dcbc0a0 0x2f 0x6850003 0x56 0x7f0 0x69d0002 0x6d 0x6a00005 0x0 0x0 0x1766dcb8800 0x17 0x1766dcbc0a0 0x56 0x6a30003 0x6d 0x790 0x6bb0005 0x16 0x0 0x1766dcb8800 0x5c 0x1766dcbc0a0 0x156 0x6be0003 0x1c8 0x740 0x6d40005 0x162 0x0 0x1766dcb8800 0xaa 0x1766dcbc0a0 0x2da 0x6d70003 0x4e6 0x6f0 0x6e20005 0x0 0x0 0x1766dcb8800 0x2f 0x1766dcbc0a0 0x44 0x6e50003 0x74 0x6a0 0x6f00005 0x0 0x0 0x0 0x0 0x0 0x0 0x6f30003 0x0 0x650 0x6fe0005 0x0 0x0 0x1766dcbc0a0 0x5 0x0 0x0 0x7010003 0x5 0x600 0x7050005 0x0 0x0 0x1766dcbc0a0 0x1 0x0 0x0 0x7270005 0x0 0x0 0x1766dcbc0a0 0x1 0x0 0x0 0x72a0003 0x1 0x578 0x72e0005 0x18 0x0 0x1766dcb8800 0x6d 0x1766dcbc0a0 0xfb 0x7390005 0x18 0x0 0x1766dcb8800 0x6d 0x1766dcbc0a0 0xfc 0x73c0003 0x181 0x4f0 0x7490005 0x13 0x0 0x1766dcb8800 0xe 0x1766dcbc0a0 0x52 0x7540005 0x13 0x0 0x1766dcb8800 0xe 0x1766dcbc0a0 0x52 0x7570003 0x73 0x468 0x7640005 0x0 0x0 0x1766dcb8800 0x1 0x1766dcbc0a0 0x3 0x76f0005 0x0 0x0 0x1766dcb8800 0x1 0x1766dcbc0a0 0x3 0x7720003 0x4 0x3e0 0x77d0005 0x0 0x0 0x1766dcbc0a0 0x15 0x0 0x0 0x78a0005 0x0 0x0 0x1766dcbc0a0 0x15 0x0 0x0 0x78d0003 0x15 0x358 0x7b30003 0x3a 0x340 0x7ce0003 0x9c0 0x328 0x7e90003 0x36 0x310 0x8060003 0x1498 0x2f8 0x8160003 0x119c 0x2e0 0x8240003 0x119b 0x2c8 0x8310005 0x0 0x0 0x0 0x0 0x0 0x0 0x8410005 0x44 0x0 0x1766dcb8800 0x18 0x1766dcbc0a0 0x14f 0x8440003 0x1ab 0x240 0x84f0005 0x0 0x0 0x1766dcb8800 0x5 0x1766dcbc0a0 0x110 0x85c0005 0x0 0x0 0x1766dcb8800 0x5 0x1766dcbc0a0 0x110 0x85f0003 0x115 0x1b8 0x86a0005 0x52 0x0 0x1766dcb8800 0x41 0x1766dcbc0a0 0x366 0x86d0003 0x3f9 0x168 0x87a0005 0x0 0x0 0x1766dcbc0a0 0x7 0x0 0x0 0x87d0003 0x7 0x118 0x8870104 0x0 0x0 0x0 0x0 0x0 0x0 0x88a0007 0x3bd 0xc8 0x0 0x88f0004 0x0 0x0 0x0 0x0 0x0 0x0 0x8980007 0x0 0x70 0x0 0x8a80003 0x0 0x50 0x8b50005 0x0 0x0 0x1766dcb8800 0x2 0x1766dcbc0a0 0x9 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 124 269 org/eclipse/jdt/internal/compiler/parser/Parser 271 org/eclipse/jdt/internal/compiler/SourceElementParser 282 org/eclipse/jdt/internal/compiler/parser/Parser 284 org/eclipse/jdt/internal/compiler/SourceElementParser 292 org/eclipse/jdt/internal/compiler/parser/Parser 294 org/eclipse/jdt/internal/compiler/SourceElementParser 354 org/eclipse/jdt/internal/compiler/SourceElementParser 361 org/eclipse/jdt/internal/compiler/SourceElementParser 371 org/eclipse/jdt/internal/compiler/SourceElementParser 378 org/eclipse/jdt/internal/compiler/SourceElementParser 405 org/eclipse/jdt/internal/compiler/parser/Parser 407 org/eclipse/jdt/internal/core/util/CommentRecorderParser 412 org/eclipse/jdt/internal/compiler/parser/Parser 414 org/eclipse/jdt/internal/core/util/CommentRecorderParser 422 org/eclipse/jdt/internal/compiler/SourceElementParser 429 org/eclipse/jdt/internal/compiler/SourceElementParser 473 org/eclipse/jdt/internal/compiler/parser/Parser 475 org/eclipse/jdt/internal/compiler/SourceElementParser 480 org/eclipse/jdt/internal/compiler/parser/Parser 482 org/eclipse/jdt/internal/compiler/SourceElementParser 490 org/eclipse/jdt/internal/compiler/SourceElementParser 497 org/eclipse/jdt/internal/compiler/SourceElementParser 507 org/eclipse/jdt/internal/compiler/parser/Parser 509 org/eclipse/jdt/internal/compiler/SourceElementParser 514 org/eclipse/jdt/internal/compiler/parser/Parser 516 org/eclipse/jdt/internal/compiler/SourceElementParser 602 org/eclipse/jdt/internal/compiler/parser/Parser 604 org/eclipse/jdt/internal/compiler/SourceElementParser 623 org/eclipse/jdt/internal/compiler/parser/Parser 625 org/eclipse/jdt/internal/compiler/SourceElementParser 630 org/eclipse/jdt/internal/compiler/parser/Parser 632 org/eclipse/jdt/internal/compiler/SourceElementParser 657 org/eclipse/jdt/internal/compiler/parser/Parser 659 org/eclipse/jdt/internal/compiler/SourceElementParser 664 org/eclipse/jdt/internal/compiler/parser/Parser 666 org/eclipse/jdt/internal/compiler/SourceElementParser 671 org/eclipse/jdt/internal/compiler/parser/Parser 673 org/eclipse/jdt/internal/compiler/SourceElementParser 681 org/eclipse/jdt/internal/compiler/parser/Parser 683 org/eclipse/jdt/internal/compiler/SourceElementParser 688 org/eclipse/jdt/internal/compiler/parser/Parser 690 org/eclipse/jdt/internal/compiler/SourceElementParser 695 org/eclipse/jdt/internal/compiler/parser/Parser 697 org/eclipse/jdt/internal/compiler/SourceElementParser 705 org/eclipse/jdt/internal/compiler/SourceElementParser 712 org/eclipse/jdt/internal/compiler/SourceElementParser 719 org/eclipse/jdt/internal/compiler/SourceElementParser 753 org/eclipse/jdt/internal/compiler/SourceElementParser 760 org/eclipse/jdt/internal/compiler/SourceElementParser 767 org/eclipse/jdt/internal/compiler/SourceElementParser 777 org/eclipse/jdt/internal/compiler/SourceElementParser 784 org/eclipse/jdt/internal/compiler/SourceElementParser 791 org/eclipse/jdt/internal/compiler/SourceElementParser 801 org/eclipse/jdt/internal/compiler/parser/Parser 803 org/eclipse/jdt/internal/compiler/SourceElementParser 808 org/eclipse/jdt/internal/compiler/parser/Parser 810 org/eclipse/jdt/internal/compiler/SourceElementParser 815 org/eclipse/jdt/internal/compiler/parser/Parser 817 org/eclipse/jdt/internal/compiler/SourceElementParser 825 org/eclipse/jdt/internal/compiler/parser/Parser 827 org/eclipse/jdt/internal/compiler/SourceElementParser 832 org/eclipse/jdt/internal/compiler/parser/Parser 834 org/eclipse/jdt/internal/compiler/SourceElementParser 839 org/eclipse/jdt/internal/compiler/parser/Parser 841 org/eclipse/jdt/internal/compiler/SourceElementParser 849 org/eclipse/jdt/internal/compiler/SourceElementParser 856 org/eclipse/jdt/internal/compiler/SourceElementParser 863 org/eclipse/jdt/internal/compiler/SourceElementParser 873 org/eclipse/jdt/internal/compiler/parser/Scanner 882 org/eclipse/jdt/internal/compiler/parser/Parser 884 org/eclipse/jdt/internal/compiler/SourceElementParser 892 org/eclipse/jdt/internal/compiler/parser/Scanner 901 org/eclipse/jdt/internal/compiler/SourceElementParser 930 org/eclipse/jdt/internal/compiler/parser/Scanner 939 org/eclipse/jdt/internal/compiler/parser/Parser 941 org/eclipse/jdt/internal/core/util/CommentRecorderParser 949 org/eclipse/jdt/internal/compiler/parser/Scanner 958 org/eclipse/jdt/internal/compiler/parser/Parser 960 org/eclipse/jdt/internal/compiler/SourceElementParser 1021 org/eclipse/jdt/internal/compiler/parser/Scanner 1028 org/eclipse/jdt/internal/compiler/parser/Parser 1030 org/eclipse/jdt/internal/compiler/SourceElementParser 1035 org/eclipse/jdt/internal/compiler/parser/Parser 1037 org/eclipse/jdt/internal/compiler/SourceElementParser 1057 org/eclipse/jdt/internal/compiler/parser/Parser 1059 org/eclipse/jdt/internal/compiler/SourceElementParser 1069 org/eclipse/jdt/internal/compiler/parser/Parser 1071 org/eclipse/jdt/internal/compiler/SourceElementParser 1081 org/eclipse/jdt/internal/compiler/parser/Parser 1083 org/eclipse/jdt/internal/compiler/SourceElementParser 1091 org/eclipse/jdt/internal/compiler/parser/Parser 1093 org/eclipse/jdt/internal/compiler/SourceElementParser 1101 org/eclipse/jdt/internal/compiler/parser/Parser 1103 org/eclipse/jdt/internal/compiler/SourceElementParser 1111 org/eclipse/jdt/internal/compiler/parser/Parser 1113 org/eclipse/jdt/internal/compiler/SourceElementParser 1131 org/eclipse/jdt/internal/compiler/SourceElementParser 1141 org/eclipse/jdt/internal/compiler/SourceElementParser 1148 org/eclipse/jdt/internal/compiler/SourceElementParser 1158 org/eclipse/jdt/internal/compiler/parser/Parser 1160 org/eclipse/jdt/internal/compiler/SourceElementParser 1165 org/eclipse/jdt/internal/compiler/parser/Parser 1167 org/eclipse/jdt/internal/compiler/SourceElementParser 1175 org/eclipse/jdt/internal/compiler/parser/Parser 1177 org/eclipse/jdt/internal/compiler/SourceElementParser 1182 org/eclipse/jdt/internal/compiler/parser/Parser 1184 org/eclipse/jdt/internal/compiler/SourceElementParser 1192 org/eclipse/jdt/internal/compiler/parser/Parser 1194 org/eclipse/jdt/internal/compiler/SourceElementParser 1199 org/eclipse/jdt/internal/compiler/parser/Parser 1201 org/eclipse/jdt/internal/compiler/SourceElementParser 1209 org/eclipse/jdt/internal/compiler/SourceElementParser 1216 org/eclipse/jdt/internal/compiler/SourceElementParser 1251 org/eclipse/jdt/internal/compiler/parser/Parser 1253 org/eclipse/jdt/internal/compiler/SourceElementParser 1261 org/eclipse/jdt/internal/compiler/parser/Parser 1263 org/eclipse/jdt/internal/compiler/SourceElementParser 1268 org/eclipse/jdt/internal/compiler/parser/Parser 1270 org/eclipse/jdt/internal/compiler/SourceElementParser 1278 org/eclipse/jdt/internal/compiler/parser/Parser 1280 org/eclipse/jdt/internal/compiler/SourceElementParser 1288 org/eclipse/jdt/internal/compiler/SourceElementParser 1323 org/eclipse/jdt/internal/compiler/parser/Parser 1325 org/eclipse/jdt/internal/compiler/SourceElementParser methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ()V 2 18449 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 23 0x8000000400050005 0x0 0x0 0x1766dcbc200 0x3f81 0x1766e44be10 0x82 0x1e0005 0x8f9 0x0 0x1766dcb8800 0x963 0x1766dcbc0a0 0x2dab 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 4 3 org/eclipse/jdt/internal/compiler/parser/Scanner 5 org/eclipse/jdt/internal/codeassist/select/SelectionScanner 10 org/eclipse/jdt/internal/compiler/parser/Parser 12 org/eclipse/jdt/internal/compiler/SourceElementParser methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser problemReporter ()Lorg/eclipse/jdt/internal/compiler/problem/ProblemReporter; 1 1 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x70007 0x0 0x58 0x1 0x150005 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser isParsingModuleDeclaration ()Z 1 581 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 28 0x40007 0x31 0x98 0x20c 0xb0007 0x0 0x78 0x20c 0x120005 0x0 0x0 0x176782bbc70 0x20c 0x0 0x0 0x150007 0x20c 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 1 11 org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration isModuleInfo ()Z 1 1201 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x10005 0x0 0x0 0x176782bbc70 0x35d 0x0 0x0 0x70002 0x35d 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 1 3 org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 2 2669 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 54 0x40007 0x69b 0xb0 0x0 0xb0007 0x0 0x90 0x0 0xf0005 0x0 0x0 0x0 0x0 0x0 0x0 0x220005 0x0 0x0 0x0 0x0 0x0 0x0 0x2b0007 0x69b 0x20 0x0 0x480007 0x29c 0x20 0x3ff 0x5a0007 0x69b 0x58 0x0 0x660005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/TrueLiteral (II)V 1 87 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0x56 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/MagicLiteral (II)V 1 262 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0x105 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/Literal (II)V 1 821 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x10002 0x26d 0x0 0x0 0x0 0x0 0x9 0x3 0x1e 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/Expression ()V 2 10113 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x1f46 0x0 0x0 0x0 0x0 0x9 0x1 0x1c oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/Statement ()V 2 9917 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x2043 0x0 0x0 0x9 0x1 0xc oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 2 10680 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x2200 0x0 0x0 0x0 0x0 0x9 0x1 0xc oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSource ()[C 1 284 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x40007 0x100 0x48 0x0 0x190002 0x0 0x1c0003 0x0 0x28 0x380002 0x100 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSourceString ()[C 1 993 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x40007 0x124 0x48 0x4 0x1d0002 0x4 0x200003 0x4 0x28 0x400002 0x124 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser createStringLiteral ([CIII)Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral; 1 993 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x90002 0x181 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser consumeTextBlock ()V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 44 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0x170005 0x0 0x0 0x0 0x0 0x0 0x0 0x1f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x350005 0x0 0x0 0x0 0x0 0x0 0x0 0x3b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser flushCommentsDefinedPriorTo (I)I 1 627 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 104 0x90007 0x69 0x20 0x1b0 0x130003 0x69 0x70 0x230007 0x12 0x20 0x66 0x2e0007 0x3c 0x38 0x3c 0x310003 0x3c 0x38 0x3b0007 0x78 0xffffffffffffffa8 0x2d 0x400007 0x30 0x80 0x39 0x530007 0x10 0x60 0x29 0x690002 0x29 0x7d0002 0x29 0x800007 0xb 0x20 0x1e 0x8d0007 0x5a 0x20 0xf 0x940008 0x8 0x0 0x140 0x4b 0x50 0xf 0xf0 0x0 0x68 0xb00003 0x4b 0x128 0xbb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xc60005 0x0 0x0 0x0 0x0 0x0 0x0 0xc90003 0x0 0xa0 0xd40005 0x0 0x0 0x1766dcbc200 0xf 0x0 0x0 0xd70003 0xf 0x50 0xe40005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 1 75 org/eclipse/jdt/internal/compiler/parser/Scanner methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 1429 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x120007 0x395 0x30 0x0 0x270002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffff80000200 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser consumeLambdaHeader ()V 1 81 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 167 0x280007 0x16 0x30 0x3b 0x3d0002 0x3b 0x430003 0x51 0x2b0 0x4e0005 0x0 0x0 0x1766c1d5040 0x42 0x0 0x0 0x510007 0x42 0x90 0x0 0x550005 0x0 0x0 0x0 0x0 0x0 0x0 0x5a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x610007 0x0 0x1d0 0x42 0x6b0005 0x42 0x0 0x0 0x0 0x0 0x0 0x6e0007 0x0 0x178 0x42 0x780007 0x29 0x158 0x19 0x840007 0x19 0x138 0x0 0x8b0007 0x0 0xa8 0x0 0x8f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x9f0005 0x0 0x0 0x0 0x0 0x0 0x0 0xa30003 0x0 0x88 0xa70005 0x0 0x0 0x0 0x0 0x0 0x0 0xb60005 0x0 0x0 0x0 0x0 0x0 0x0 0xbf0007 0x42 0xfffffffffffffd68 0x51 0xcb0004 0x0 0x0 0x1766c1d7690 0x51 0x0 0x0 0xd30005 0x0 0x0 0x1766c1d7690 0x51 0x0 0x0 0xd90005 0x0 0x0 0x1766c1d7690 0x51 0x0 0x0 0x10c0005 0x0 0x0 0x1766dcbc200 0x51 0x0 0x0 0x1170007 0x34 0x38 0x1d 0x11b0003 0x1d 0x18 0x1280007 0x3b 0x38 0x16 0x12c0003 0x16 0x18 0x13e0007 0x51 0x20 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 5 12 org/eclipse/jdt/internal/compiler/ast/Argument 99 org/eclipse/jdt/internal/compiler/ast/LambdaExpression 106 org/eclipse/jdt/internal/compiler/ast/LambdaExpression 113 org/eclipse/jdt/internal/compiler/ast/LambdaExpression 120 org/eclipse/jdt/internal/compiler/parser/Scanner methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ([CJ)V 2 18435 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 106 0x140007 0x3ffb 0x40 0x0 0x2c0002 0x0 0x430002 0x0 0x4f0004 0x0 0x0 0x17669093980 0x3ffb 0x0 0x0 0x6e0007 0x3ffb 0x30 0x0 0x850002 0x0 0x960007 0x0 0x1f0 0x3ffb 0xa00005 0x3ffb 0x0 0x0 0x0 0x0 0x0 0xa30007 0x0 0x198 0x3ffb 0xa90007 0x3bb2 0x178 0x44a 0xb10007 0x44a 0x158 0x0 0xb80007 0x0 0x138 0x0 0xbf0007 0x0 0xa8 0x0 0xc30005 0x0 0x0 0x0 0x0 0x0 0x0 0xd00005 0x0 0x0 0x0 0x0 0x0 0x0 0xd40003 0x0 0x88 0xd80005 0x0 0x0 0x0 0x0 0x0 0x0 0xe70005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 1 11 [C methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/impl/JavaFeature isSupported (Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;)Z 2 17291 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x40007 0x3ffc 0x20 0x0 0xd0005 0x3ffc 0x0 0x0 0x0 0x0 0x0 0x150007 0x3ffb 0x20 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/IntLiteral buildIntLiteral ([CII)Lorg/eclipse/jdt/internal/compiler/ast/IntLiteral; 1 221 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 62 0x20002 0xdc 0x80008 0x8 0xdc 0x140 0x0 0x50 0x0 0x140 0x0 0xc8 0x280002 0x0 0x2b0007 0x0 0xe0 0x0 0x350007 0x0 0x38 0x0 0x390003 0x0 0x18 0x3f0002 0x0 0x470002 0x0 0x4a0007 0x0 0x68 0x0 0x540007 0x0 0x38 0x0 0x580003 0x0 0x18 0x5e0002 0x0 0x690007 0xdc 0x38 0x0 0x6d0003 0x0 0x18 0x730002 0xdc 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0xffffffffffffffff 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/NullLiteral (II)V 1 110 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0x6d 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethod org/eclipse/jdt/internal/compiler/impl/CharConstant fromValue (C)Lorg/eclipse/jdt/internal/compiler/impl/Constant; 6 0 19 0 0 +ciMethod org/eclipse/jdt/internal/compiler/impl/CharConstant (C)V 6 0 19 0 -1 +ciMethodData org/eclipse/jdt/internal/compiler/impl/CharConstant fromValue (C)Lorg/eclipse/jdt/internal/compiler/impl/Constant; 1 19 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x50002 0x10 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/StringLiteral (Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral;Ljava/lang/Object;III)V 1 387 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 118 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0x40002 0x23 0x0 0x0 0x0 0x0 0x9 0x6 0xfe 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/StringLiteral ([CIII)V 1 993 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x90002 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/FalseLiteral (II)V 1 65 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0x2f 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/DoubleLiteral ([CII)V 1 14 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x40002 0xd 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/NumberLiteral ([CII)V 1 261 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x30002 0xb7 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/NumberLiteral (II)V 1 261 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x30002 0xb7 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/CharLiteral ([CII)V 1 21 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 21 0x40002 0x8 0x80005 0x8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/compiler/ast/CharLiteral computeValue ()V 1 21 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 90 0xd0007 0x0 0x20 0x8 0x190008 0x14 0x0 0x188 0x0 0x140 0x0 0x158 0x0 0x170 0x0 0xc8 0x0 0x110 0x0 0xf8 0x0 0x128 0x0 0xb0 0x0 0xe0 0x720003 0x0 0x188 0x7b0003 0x0 0x170 0x840003 0x0 0x158 0x8d0003 0x0 0x140 0x960003 0x0 0x128 0x9f0003 0x0 0x110 0xa80003 0x0 0xf8 0xb10003 0x0 0xe0 0xba0003 0x0 0xc8 0xbe0002 0x0 0xcc0007 0x0 0x48 0x0 0xd40002 0x0 0xd90003 0x0 0x40 0xe40002 0x0 0xea0003 0x0 0x48 0xf70007 0x0 0x30 0x0 0xff0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/eclipse/jdt/internal/core/util/CommentRecorderParser flushCommentsDefinedPriorTo (I)I 2 5656 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 127 0x10005 0x1b 0x0 0x1766dcbc0a0 0x94a 0x1766dcbc150 0x4ad 0x60007 0x20e 0x20 0xc05 0x100003 0x20e 0x70 0x200007 0xcb 0x20 0x1d2 0x2b0007 0x19d 0x38 0x100 0x2e0003 0x100 0x38 0x380007 0x29c 0xffffffffffffffa8 0x10e 0x3d0007 0xbf 0xd0 0x14f 0x430003 0x14f 0x70 0x590002 0x98 0x6d0002 0x98 0x700007 0x26 0x38 0x72 0x730003 0x72 0x58 0x810007 0x24 0x40 0x150 0x930007 0x98 0xffffffffffffff88 0xb9 0x970007 0x126 0x20 0xe8 0x9f0005 0x126 0x0 0x0 0x0 0x0 0x0 0xa40008 0x8 0x0 0x140 0xe3 0x50 0x40 0xf0 0x3 0x68 0xc00003 0xe3 0x128 0xcb0005 0x0 0x0 0x1766dcbc200 0x3 0x0 0x0 0xd60005 0x0 0x0 0x1766dcbc200 0x3 0x0 0x0 0xd90003 0x3 0xa0 0xe40005 0x0 0x0 0x1766dcbc200 0x40 0x0 0x0 0xe70003 0x40 0x50 0xf40005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 5 3 org/eclipse/jdt/internal/compiler/SourceElementParser 5 org/eclipse/jdt/internal/core/util/CommentRecorderParser 82 org/eclipse/jdt/internal/compiler/parser/Scanner 89 org/eclipse/jdt/internal/compiler/parser/Scanner 99 org/eclipse/jdt/internal/compiler/parser/Scanner methods 0 +ciMethod org/eclipse/jdt/internal/codeassist/select/SelectionScanner getCurrentIdentifierSource ()[C 260 0 130 0 0 +compile org/eclipse/jdt/internal/compiler/parser/Parser consumeToken (I)V -1 4 inline 97 0 -1 org/eclipse/jdt/internal/compiler/parser/Parser consumeToken (I)V 1 979 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 992 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1003 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1210 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 1223 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1234 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1177 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 1190 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1201 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1111 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 1124 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1135 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1012 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier (I)V 1 1025 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1036 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1762 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1748 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1865 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1876 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 1573 org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSourceString ()[C 1 1593 org/eclipse/jdt/internal/compiler/parser/Parser createStringLiteral ([CIII)Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral; 2 9 org/eclipse/jdt/internal/compiler/ast/StringLiteral ([CIII)V 3 9 org/eclipse/jdt/internal/compiler/ast/StringLiteral (Lorg/eclipse/jdt/internal/compiler/ast/StringLiteral;Ljava/lang/Object;III)V 4 4 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 5 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 6 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 7 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 8 1 java/lang/Object ()V 1 1599 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStack (Lorg/eclipse/jdt/internal/compiler/ast/Expression;)V 1 1441 org/eclipse/jdt/internal/compiler/ast/CharLiteral ([CII)V 2 4 org/eclipse/jdt/internal/compiler/ast/NumberLiteral ([CII)V 3 3 org/eclipse/jdt/internal/compiler/ast/NumberLiteral (II)V 4 3 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 5 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 6 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 7 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 8 1 java/lang/Object ()V 2 8 org/eclipse/jdt/internal/compiler/ast/CharLiteral computeValue ()V 1 1404 org/eclipse/jdt/internal/compiler/ast/DoubleLiteral ([CII)V 2 4 org/eclipse/jdt/internal/compiler/ast/NumberLiteral ([CII)V 3 3 org/eclipse/jdt/internal/compiler/ast/NumberLiteral (II)V 4 3 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 5 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 6 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 7 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 8 1 java/lang/Object ()V 1 1278 org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentTokenSource ()[C 1 1300 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStack (Lorg/eclipse/jdt/internal/compiler/ast/Expression;)V 1 1663 org/eclipse/jdt/internal/compiler/ast/TrueLiteral (II)V 2 3 org/eclipse/jdt/internal/compiler/ast/MagicLiteral (II)V 3 3 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 4 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 5 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 6 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 7 1 java/lang/Object ()V 1 1693 org/eclipse/jdt/internal/compiler/ast/NullLiteral (II)V 2 3 org/eclipse/jdt/internal/compiler/ast/MagicLiteral (II)V 3 3 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 4 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 5 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 6 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 7 1 java/lang/Object ()V 1 1696 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStack (Lorg/eclipse/jdt/internal/compiler/ast/Expression;)V 1 1633 org/eclipse/jdt/internal/compiler/ast/FalseLiteral (II)V 2 3 org/eclipse/jdt/internal/compiler/ast/MagicLiteral (II)V 3 3 org/eclipse/jdt/internal/compiler/ast/Literal (II)V 4 1 org/eclipse/jdt/internal/compiler/ast/Expression ()V 5 1 org/eclipse/jdt/internal/compiler/ast/Statement ()V 6 1 org/eclipse/jdt/internal/compiler/ast/ASTNode ()V 7 1 java/lang/Object ()V 1 838 org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 1 843 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 1 812 org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 1 817 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 1 755 org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 1 760 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 1 1849 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 922 org/eclipse/jdt/internal/compiler/parser/Parser isParsingModuleDeclaration ()Z 2 18 org/eclipse/jdt/internal/compiler/ast/CompilationUnitDeclaration isModuleInfo ()Z 3 7 org/eclipse/jdt/core/compiler/CharOperation equals ([C[C)Z 1 940 org/eclipse/jdt/internal/compiler/parser/Parser checkAndSetModifiers (I)V 1 945 org/eclipse/jdt/internal/compiler/parser/Parser pushOnExpressionStackLengthStack (I)V 1 1723 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 579 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ()V 2 5 org/eclipse/jdt/internal/compiler/parser/Scanner getCurrentIdentifierSource ()[C 3 69 org/eclipse/jdt/internal/compiler/util/CharDeduplication sharedCopyOfRange ([CII)[C 4 57 org/eclipse/jdt/internal/compiler/util/CharDeduplication hashCode ([CII)I 4 117 org/eclipse/jdt/internal/compiler/util/CharDeduplication equals ([CII[C)Z 4 139 java/util/Arrays copyOfRange ([CII)[C 2 30 org/eclipse/jdt/internal/compiler/parser/Parser pushIdentifier ([CJ)V 3 160 org/eclipse/jdt/internal/compiler/impl/JavaFeature isSupported (Lorg/eclipse/jdt/internal/compiler/impl/CompilerOptions;)Z 4 13 org/eclipse/jdt/internal/compiler/impl/JavaFeature getCompliance ()J 1 2127 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 2140 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 2113 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V 1 2154 org/eclipse/jdt/internal/compiler/parser/Parser pushOnIntStack (I)V From c097449cdb94b3c9ad12b55259c24a84bba23e67 Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Wed, 4 Dec 2024 16:41:43 +0100 Subject: [PATCH 8/9] =?UTF-8?q?Ajout=20des=20graphes=20a=20la=20vol=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/app/src/main/java/sae/App.java | 2 +- .../sae/view/EvolutionGrapheController.java | 77 ++++++++++++++++++- .../sae/view/grapheEvolutifSalle.fxml | 10 +-- 3 files changed, 82 insertions(+), 7 deletions(-) diff --git a/Application/app/src/main/java/sae/App.java b/Application/app/src/main/java/sae/App.java index 500da10d..28b1bb85 100644 --- a/Application/app/src/main/java/sae/App.java +++ b/Application/app/src/main/java/sae/App.java @@ -388,7 +388,7 @@ public void loadGraphe2(String numSalle, Map< String, Map > map) // Transmission des données nécessaires au contrôleur graphe.setDatas(stage, this); - //graphe.lignePts(numSalle, map); + graphe.afficherGraphes(numSalle, map); // Remplacement du contenu central de rootPane par la vue chargée this.rootPane.setCenter(vueListe); diff --git a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java index 7343a7db..deafa60e 100644 --- a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java +++ b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java @@ -1,9 +1,18 @@ package sae.view; +import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javafx.fxml.FXML; import javafx.scene.Scene; +import javafx.scene.chart.CategoryAxis; +import javafx.scene.chart.LineChart; +import javafx.scene.chart.NumberAxis; +import javafx.scene.chart.XYChart; +import javafx.scene.control.Alert; +import javafx.scene.control.Alert.AlertType; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.BorderPane; @@ -32,11 +41,77 @@ public void setDatas(Stage fenetre, App app) { @FXML private void actionRetour() { + this.fenetrePrincipale.setMaximized(false); application.loadParametrageSalles(); } - public void afficherGraphes(String salle, Map> dico){ + + + public void afficherGraphes(String salle, Map> dico) { + this.titreSalle.setText("Historique de : " + salle); + // Index pour positionnement dans le GridPane + int row = 0; + int col = 0; + + // Parcours des catégories + Set categories = new HashSet<>(); + for (Map data : dico.values()) { + categories.addAll(data.keySet()); // Récupérer toutes les catégories uniques + } + + // Création des graphiques pour chaque catégorie + for (String category : categories) { + // Créer un LineChart pour chaque catégorie + final CategoryAxis xAxis = new CategoryAxis(); + final NumberAxis yAxis = new NumberAxis(); + LineChart lineChart = new LineChart<>(xAxis, yAxis); + lineChart.setTitle(category.toUpperCase()); + + // Créer une série pour la catégorie + XYChart.Series series = new XYChart.Series<>(); + series.setName(category); + + // Remplir la série avec les données + for (Map.Entry> entry : dico.entrySet()) { + String mois = entry.getKey(); + Map data = entry.getValue(); + + // Ajouter la donnée à la série si elle existe + if (data.containsKey(category)) { + Object value = data.get(category); + series.getData().add(new XYChart.Data<>(mois, getConvertedValue(value))); + } + } + + // Ajouter la série au graphique + lineChart.getData().add(series); + + // Ajouter le graphique au GridPane + gridDynamique.add(lineChart, col, row); + + // Alterner entre colonnes et lignes + if (col == 0) { + col = 1; // Aller à la colonne suivante + } else { + col = 0; // Revenir à la première colonne + row++; // Passer à la ligne suivante + } + } + } + + // Méthode pour convertir les valeurs en Double + private Double getConvertedValue(Object value) { + if (value instanceof Double) { + return (Double) value; + } else if (value instanceof Long) { + return ((Long) value).doubleValue(); + } else { + // Gestion d'erreur si la valeur n'est ni un Long ni un Double + Alert alert=new Alert(AlertType.ERROR, "Erreur Critique l'application trouve des valeurs innatendues!"); + alert.show(); + return 0.0; // Retourne une valeur par défaut en cas d'erreur + } } diff --git a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml index f0320637..bc1c2ce2 100644 --- a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml +++ b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml @@ -7,9 +7,9 @@ - +
- + @@ -21,13 +21,13 @@ -
From c26af6b6daec9be1b80344f065297431356bcb2b Mon Sep 17 00:00:00 2001 From: IUT BLAGNAC Date: Wed, 4 Dec 2024 18:38:36 +0100 Subject: [PATCH 9/9] Ajout du gridpane dynamique pour les graphes --- Application/app/src/main/java/sae/App.java | 3 +- .../sae/view/EvolutionGrapheController.java | 33 +- .../sae/view/grapheEvolutifSalle.fxml | 43 +- .../app/src/main/resources/sae/view/menu.fxml | 4 +- hs_err_pid6220.log | 723 +++++ hs_err_pid8296.log | 568 ++++ replay_pid6220.log | 2531 +++++++++++++++++ 7 files changed, 3872 insertions(+), 33 deletions(-) create mode 100644 hs_err_pid6220.log create mode 100644 hs_err_pid8296.log create mode 100644 replay_pid6220.log diff --git a/Application/app/src/main/java/sae/App.java b/Application/app/src/main/java/sae/App.java index 28b1bb85..ca014919 100644 --- a/Application/app/src/main/java/sae/App.java +++ b/Application/app/src/main/java/sae/App.java @@ -387,9 +387,10 @@ public void loadGraphe2(String numSalle, Map< String, Map > map) EvolutionGrapheController graphe = loader.getController(); // Transmission des données nécessaires au contrôleur - graphe.setDatas(stage, this); + graphe.setDatas(stage, this,vueListe); graphe.afficherGraphes(numSalle, map); + // Remplacement du contenu central de rootPane par la vue chargée this.rootPane.setCenter(vueListe); diff --git a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java index deafa60e..37ae9079 100644 --- a/Application/app/src/main/java/sae/view/EvolutionGrapheController.java +++ b/Application/app/src/main/java/sae/view/EvolutionGrapheController.java @@ -16,7 +16,10 @@ import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.BorderPane; +import javafx.scene.layout.ColumnConstraints; +import javafx.scene.layout.FlowPane; import javafx.scene.layout.GridPane; +import javafx.scene.layout.RowConstraints; import javafx.stage.Stage; import sae.App; @@ -26,17 +29,20 @@ public class EvolutionGrapheController { private App application; @FXML - private GridPane gridDynamique; + private FlowPane gridDynamique; @FXML private Button retour; @FXML private Label titreSalle; - public void setDatas(Stage fenetre, App app) { + public void setDatas(Stage fenetre, App app, BorderPane vueListe) { this.application = app; this.fenetrePrincipale = fenetre; this.fenetrePrincipale.setMaximized(true); + + // vueListe.setMinSize(this.fenetrePrincipale.getHeight(), this.fenetrePrincipale.getHeight()); + } @FXML @@ -59,6 +65,9 @@ public void afficherGraphes(String salle, Map> dico) categories.addAll(data.keySet()); // Récupérer toutes les catégories uniques } + + + // Création des graphiques pour chaque catégorie for (String category : categories) { // Créer un LineChart pour chaque catégorie @@ -67,6 +76,7 @@ public void afficherGraphes(String salle, Map> dico) LineChart lineChart = new LineChart<>(xAxis, yAxis); lineChart.setTitle(category.toUpperCase()); + // Créer une série pour la catégorie XYChart.Series series = new XYChart.Series<>(); series.setName(category); @@ -85,10 +95,23 @@ public void afficherGraphes(String salle, Map> dico) // Ajouter la série au graphique lineChart.getData().add(series); - + + // Ajouter le graphique au GridPane - gridDynamique.add(lineChart, col, row); - + gridDynamique.getChildren().add(lineChart); + + ColumnConstraints col1 = new ColumnConstraints(); + col1.setMaxWidth(600); // Largeur maximale + RowConstraints row1 = new RowConstraints(); + row1.setMaxHeight(400); // Hauteur maximale + + // Appliquez ces contraintes au GridPane + // gridDynamique.getColumnConstraints().add(col1); + // gridDynamique.getRowConstraints().add(row1); + + // for(javafx.scene.Node nd : gridDynamique.getChildren()){ + // ((LineChart)nd).setMinWidth(this.fenetrePrincipale.getWidth()/3); + // } // Alterner entre colonnes et lignes if (col == 0) { col = 1; // Aller à la colonne suivante diff --git a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml index bc1c2ce2..690653b2 100644 --- a/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml +++ b/Application/app/src/main/resources/sae/view/grapheEvolutifSalle.fxml @@ -1,34 +1,27 @@ + - - - + - + + + + + + +
- - - - - - - - - - - - -
diff --git a/Application/app/src/main/resources/sae/view/menu.fxml b/Application/app/src/main/resources/sae/view/menu.fxml index 6c5857dc..51e798da 100644 --- a/Application/app/src/main/resources/sae/view/menu.fxml +++ b/Application/app/src/main/resources/sae/view/menu.fxml @@ -9,9 +9,9 @@ - +
- + diff --git a/hs_err_pid6220.log b/hs_err_pid6220.log new file mode 100644 index 00000000..ecf7e73c --- /dev/null +++ b/hs_err_pid6220.log @@ -0,0 +1,723 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 32744 bytes for Chunk::new +# Possible reasons: +# The system is out of physical RAM or swap space +# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# JVM is running with Unscaled Compressed Oops mode in which the Java heap is +# placed in the first 4GB address space. The Java Heap base address is the +# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress +# to set the Java Heap base and to place the Java Heap above 4GB virtual address. +# This output file may be truncated or incomplete. +# +# Out of Memory Error (arena.cpp:168), pid=6220, tid=7272 +# +# JRE version: Java(TM) SE Runtime Environment (21.0.3+7) (build 21.0.3+7-LTS-152) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.3+7-LTS-152, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) +# No core dump will be written. Minidumps are not enabled by default on client versions of Windows +# + +--------------- S U M M A R Y ------------ + +Command Line: -XX:+ShowCodeDetailsInExceptionMessages sae.Main + +Host: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, 8 cores, 7G, Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +Time: Wed Dec 4 17:14:25 2024 Paris, Madrid elapsed time: 1.232449 seconds (0d 0h 0m 1s) + +--------------- T H R E A D --------------- + +Current thread (0x000001514c6d1550): JavaThread "C1 CompilerThread0" daemon [_thread_in_native, id=7272, stack(0x0000000dd0b00000,0x0000000dd0c00000) (1024K)] + + +Current CompileTask: +C1: 1232 1263 ! 3 com.sun.javafx.css.ParsedValueImpl::readBinary (691 bytes) + +Stack: [0x0000000dd0b00000,0x0000000dd0c00000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x6c63b9] +V [jvm.dll+0x84fa11] +V [jvm.dll+0x851f3e] +V [jvm.dll+0x852613] +V [jvm.dll+0x27cd46] +V [jvm.dll+0xc4aad] +V [jvm.dll+0xc4fe3] +V [jvm.dll+0x16b937] +V [jvm.dll+0x19b49b] +V [jvm.dll+0x1985d9] +V [jvm.dll+0x1533b3] +V [jvm.dll+0x152bf8] +V [jvm.dll+0x152e44] +V [jvm.dll+0x152276] +V [jvm.dll+0x15404d] +V [jvm.dll+0x254609] +V [jvm.dll+0x252b9a] +V [jvm.dll+0x3eb056] +V [jvm.dll+0x7f9ffb] +V [jvm.dll+0x6c4a9d] +C [ucrtbase.dll+0x21bb2] +C [KERNEL32.DLL+0x17034] +C [ntdll.dll+0x52651] + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x0000015196bfe140, length=18, elements={ +0x000001512dc2c610, 0x000001514c69b900, 0x000001514c69c9d0, 0x000001514c6a2650, +0x000001514c6a3330, 0x000001514c6a4890, 0x000001514c6a54a0, 0x000001514c6aca90, +0x000001514c6d1550, 0x000001514c976010, 0x000001514c992620, 0x000001514ca0aeb0, +0x000001514cae20f0, 0x00000151924a6ec0, 0x000001519276fc40, 0x0000015192754790, +0x0000015196a2a480, 0x0000015196cdf320 +} + +Java Threads: ( => current thread ) + 0x000001512dc2c610 JavaThread "main" [_thread_blocked, id=13320, stack(0x0000000dcfc00000,0x0000000dcfd00000) (1024K)] + 0x000001514c69b900 JavaThread "Reference Handler" daemon [_thread_blocked, id=6068, stack(0x0000000dd0400000,0x0000000dd0500000) (1024K)] + 0x000001514c69c9d0 JavaThread "Finalizer" daemon [_thread_blocked, id=5680, stack(0x0000000dd0500000,0x0000000dd0600000) (1024K)] + 0x000001514c6a2650 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4984, stack(0x0000000dd0600000,0x0000000dd0700000) (1024K)] + 0x000001514c6a3330 JavaThread "Attach Listener" daemon [_thread_blocked, id=5888, stack(0x0000000dd0700000,0x0000000dd0800000) (1024K)] + 0x000001514c6a4890 JavaThread "Service Thread" daemon [_thread_blocked, id=11024, stack(0x0000000dd0800000,0x0000000dd0900000) (1024K)] + 0x000001514c6a54a0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=1080, stack(0x0000000dd0900000,0x0000000dd0a00000) (1024K)] + 0x000001514c6aca90 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=12744, stack(0x0000000dd0a00000,0x0000000dd0b00000) (1024K)] +=>0x000001514c6d1550 JavaThread "C1 CompilerThread0" daemon [_thread_in_native, id=7272, stack(0x0000000dd0b00000,0x0000000dd0c00000) (1024K)] + 0x000001514c976010 JavaThread "Notification Thread" daemon [_thread_blocked, id=13132, stack(0x0000000dd0c00000,0x0000000dd0d00000) (1024K)] + 0x000001514c992620 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2784, stack(0x0000000dd0d00000,0x0000000dd0e00000) (1024K)] + 0x000001514ca0aeb0 JavaThread "JavaFX-Launcher" [_thread_blocked, id=13496, stack(0x0000000dd0e00000,0x0000000dd0f00000) (1024K)] + 0x000001514cae20f0 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=6664, stack(0x0000000dd0f00000,0x0000000dd1000000) (1024K)] + 0x00000151924a6ec0 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=6864, stack(0x0000000dd1000000,0x0000000dd1100000) (1024K)] + 0x000001519276fc40 JavaThread "InvokeLaterDispatcher" daemon [_thread_blocked, id=10848, stack(0x0000000dd1100000,0x0000000dd1200000) (1024K)] + 0x0000015192754790 JavaThread "JavaFX Application Thread" [_thread_in_vm, id=12652, stack(0x0000000dd1200000,0x0000000dd1300000) (1024K)] + 0x0000015196a2a480 JavaThread "Thread-2" daemon [_thread_in_native, id=12772, stack(0x0000000dd1600000,0x0000000dd1700000) (1024K)] + 0x0000015196cdf320 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=9740, stack(0x0000000dd1e00000,0x0000000dd1f00000) (1024K)] +Total: 18 + +Other Threads: + 0x000001514c678140 VMThread "VM Thread" [id=13044, stack(0x0000000dd0300000,0x0000000dd0400000) (1024K)] + 0x000001514c6625a0 WatcherThread "VM Periodic Task Thread" [id=13072, stack(0x0000000dd0200000,0x0000000dd0300000) (1024K)] + 0x000001512fd7c870 WorkerThread "GC Thread#0" [id=8792, stack(0x0000000dcfd00000,0x0000000dcfe00000) (1024K)] + 0x0000015196b31e70 WorkerThread "GC Thread#1" [id=8772, stack(0x0000000dd1700000,0x0000000dd1800000) (1024K)] + 0x0000015196bac860 WorkerThread "GC Thread#2" [id=14164, stack(0x0000000dd1800000,0x0000000dd1900000) (1024K)] + 0x0000015196bacc00 WorkerThread "GC Thread#3" [id=10392, stack(0x0000000dd1900000,0x0000000dd1a00000) (1024K)] + 0x0000015196b12a00 WorkerThread "GC Thread#4" [id=14012, stack(0x0000000dd1a00000,0x0000000dd1b00000) (1024K)] + 0x0000015196b12da0 WorkerThread "GC Thread#5" [id=12736, stack(0x0000000dd1b00000,0x0000000dd1c00000) (1024K)] + 0x0000015196beceb0 WorkerThread "GC Thread#6" [id=13224, stack(0x0000000dd1c00000,0x0000000dd1d00000) (1024K)] + 0x0000015196ca2190 WorkerThread "GC Thread#7" [id=8304, stack(0x0000000dd1d00000,0x0000000dd1e00000) (1024K)] + 0x000001512fd8d640 ConcurrentGCThread "G1 Main Marker" [id=6708, stack(0x0000000dcfe00000,0x0000000dcff00000) (1024K)] + 0x000001512fd8e8e0 WorkerThread "G1 Conc#0" [id=1204, stack(0x0000000dcff00000,0x0000000dd0000000) (1024K)] + 0x000001514c5220c0 ConcurrentGCThread "G1 Refine#0" [id=13252, stack(0x0000000dd0000000,0x0000000dd0100000) (1024K)] + 0x000001514c522b40 ConcurrentGCThread "G1 Service" [id=2612, stack(0x0000000dd0100000,0x0000000dd0200000) (1024K)] +Total: 14 + +Threads with active compile tasks: +C1 CompilerThread0 1283 1263 ! 3 com.sun.javafx.css.ParsedValueImpl::readBinary (691 bytes) +C2 CompilerThread1 1283 1244 ! 4 java.io.BufferedInputStream::read (69 bytes) +C2 CompilerThread2 1283 1293 4 java.io.DataInputStream::readByte (6 bytes) +Total: 3 + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) +[0x00007ffe486a0d28] Metaspace_lock - owner thread: 0x0000015192754790 + +Heap address: 0x0000000081e00000, size: 2018 MB, Compressed Oops mode: 32-bit + +CDS archive(s) mapped at: [0x000001514d000000-0x000001514dc90000-0x000001514dc90000), size 13172736, SharedBaseAddress: 0x000001514d000000, ArchiveRelocationMode: 1. +Compressed class space mapped at: 0x000001514e000000-0x000001518e000000, reserved size: 1073741824 +Narrow klass base: 0x000001514d000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 + +GC Precious Log: + CardTable entry size: 512 + Card Set container configuration: InlinePtr #cards 5 size 8 Array Of Cards #cards 12 size 40 Howl #buckets 4 coarsen threshold 1843 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 2048 + CPUs: 8 total, 8 available + Memory: 8067M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (32-bit) + Heap Region Size: 1M + Heap Min Capacity: 8M + Heap Initial Capacity: 128M + Heap Max Capacity: 2018M + Pre-touch: Disabled + Parallel Workers: 8 + Concurrent Workers: 2 + Concurrent Refinement Workers: 8 + Periodic GC: Disabled + +Heap: + garbage-first heap total 131072K, used 9475K [0x0000000081e00000, 0x0000000100000000) + region size 1024K, 9 young (9216K), 3 survivors (3072K) + Metaspace used 9585K, committed 9792K, reserved 1114112K + class space used 1290K, committed 1344K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom +| 0|0x0000000081e00000, 0x0000000081f00000, 0x0000000081f00000|100%| O| |TAMS 0x0000000081e00000| PB 0x0000000081e00000| Untracked +| 1|0x0000000081f00000, 0x0000000081f40fd0, 0x0000000082000000| 25%| O| |TAMS 0x0000000081f00000| PB 0x0000000081f00000| Untracked +| 2|0x0000000082000000, 0x0000000082000000, 0x0000000082100000| 0%| F| |TAMS 0x0000000082000000| PB 0x0000000082000000| Untracked +| 3|0x0000000082100000, 0x0000000082100000, 0x0000000082200000| 0%| F| |TAMS 0x0000000082100000| PB 0x0000000082100000| Untracked +| 4|0x0000000082200000, 0x0000000082200000, 0x0000000082300000| 0%| F| |TAMS 0x0000000082200000| PB 0x0000000082200000| Untracked +| 5|0x0000000082300000, 0x0000000082300000, 0x0000000082400000| 0%| F| |TAMS 0x0000000082300000| PB 0x0000000082300000| Untracked +| 6|0x0000000082400000, 0x0000000082400000, 0x0000000082500000| 0%| F| |TAMS 0x0000000082400000| PB 0x0000000082400000| Untracked +| 7|0x0000000082500000, 0x0000000082500000, 0x0000000082600000| 0%| F| |TAMS 0x0000000082500000| PB 0x0000000082500000| Untracked +| 8|0x0000000082600000, 0x0000000082600000, 0x0000000082700000| 0%| F| |TAMS 0x0000000082600000| PB 0x0000000082600000| Untracked +| 9|0x0000000082700000, 0x0000000082700000, 0x0000000082800000| 0%| F| |TAMS 0x0000000082700000| PB 0x0000000082700000| Untracked +| 10|0x0000000082800000, 0x0000000082800000, 0x0000000082900000| 0%| F| |TAMS 0x0000000082800000| PB 0x0000000082800000| Untracked +| 11|0x0000000082900000, 0x0000000082900000, 0x0000000082a00000| 0%| F| |TAMS 0x0000000082900000| PB 0x0000000082900000| Untracked +| 12|0x0000000082a00000, 0x0000000082a00000, 0x0000000082b00000| 0%| F| |TAMS 0x0000000082a00000| PB 0x0000000082a00000| Untracked +| 13|0x0000000082b00000, 0x0000000082b00000, 0x0000000082c00000| 0%| F| |TAMS 0x0000000082b00000| PB 0x0000000082b00000| Untracked +| 14|0x0000000082c00000, 0x0000000082c00000, 0x0000000082d00000| 0%| F| |TAMS 0x0000000082c00000| PB 0x0000000082c00000| Untracked +| 15|0x0000000082d00000, 0x0000000082d00000, 0x0000000082e00000| 0%| F| |TAMS 0x0000000082d00000| PB 0x0000000082d00000| Untracked +| 16|0x0000000082e00000, 0x0000000082e00000, 0x0000000082f00000| 0%| F| |TAMS 0x0000000082e00000| PB 0x0000000082e00000| Untracked +| 17|0x0000000082f00000, 0x0000000082f00000, 0x0000000083000000| 0%| F| |TAMS 0x0000000082f00000| PB 0x0000000082f00000| Untracked +| 18|0x0000000083000000, 0x0000000083000000, 0x0000000083100000| 0%| F| |TAMS 0x0000000083000000| PB 0x0000000083000000| Untracked +| 19|0x0000000083100000, 0x0000000083100000, 0x0000000083200000| 0%| F| |TAMS 0x0000000083100000| PB 0x0000000083100000| Untracked +| 20|0x0000000083200000, 0x0000000083200000, 0x0000000083300000| 0%| F| |TAMS 0x0000000083200000| PB 0x0000000083200000| Untracked +| 21|0x0000000083300000, 0x0000000083300000, 0x0000000083400000| 0%| F| |TAMS 0x0000000083300000| PB 0x0000000083300000| Untracked +| 22|0x0000000083400000, 0x0000000083400000, 0x0000000083500000| 0%| F| |TAMS 0x0000000083400000| PB 0x0000000083400000| Untracked +| 23|0x0000000083500000, 0x0000000083500000, 0x0000000083600000| 0%| F| |TAMS 0x0000000083500000| PB 0x0000000083500000| Untracked +| 24|0x0000000083600000, 0x0000000083600000, 0x0000000083700000| 0%| F| |TAMS 0x0000000083600000| PB 0x0000000083600000| Untracked +| 25|0x0000000083700000, 0x0000000083700000, 0x0000000083800000| 0%| F| |TAMS 0x0000000083700000| PB 0x0000000083700000| Untracked +| 26|0x0000000083800000, 0x0000000083800000, 0x0000000083900000| 0%| F| |TAMS 0x0000000083800000| PB 0x0000000083800000| Untracked +| 27|0x0000000083900000, 0x0000000083900000, 0x0000000083a00000| 0%| F| |TAMS 0x0000000083900000| PB 0x0000000083900000| Untracked +| 28|0x0000000083a00000, 0x0000000083a00000, 0x0000000083b00000| 0%| F| |TAMS 0x0000000083a00000| PB 0x0000000083a00000| Untracked +| 29|0x0000000083b00000, 0x0000000083b00000, 0x0000000083c00000| 0%| F| |TAMS 0x0000000083b00000| PB 0x0000000083b00000| Untracked +| 30|0x0000000083c00000, 0x0000000083c00000, 0x0000000083d00000| 0%| F| |TAMS 0x0000000083c00000| PB 0x0000000083c00000| Untracked +| 31|0x0000000083d00000, 0x0000000083d00000, 0x0000000083e00000| 0%| F| |TAMS 0x0000000083d00000| PB 0x0000000083d00000| Untracked +| 32|0x0000000083e00000, 0x0000000083e00000, 0x0000000083f00000| 0%| F| |TAMS 0x0000000083e00000| PB 0x0000000083e00000| Untracked +| 33|0x0000000083f00000, 0x0000000083f00000, 0x0000000084000000| 0%| F| |TAMS 0x0000000083f00000| PB 0x0000000083f00000| Untracked +| 34|0x0000000084000000, 0x0000000084000000, 0x0000000084100000| 0%| F| |TAMS 0x0000000084000000| PB 0x0000000084000000| Untracked +| 35|0x0000000084100000, 0x0000000084100000, 0x0000000084200000| 0%| F| |TAMS 0x0000000084100000| PB 0x0000000084100000| Untracked +| 36|0x0000000084200000, 0x0000000084200000, 0x0000000084300000| 0%| F| |TAMS 0x0000000084200000| PB 0x0000000084200000| Untracked +| 37|0x0000000084300000, 0x0000000084300000, 0x0000000084400000| 0%| F| |TAMS 0x0000000084300000| PB 0x0000000084300000| Untracked +| 38|0x0000000084400000, 0x0000000084400000, 0x0000000084500000| 0%| F| |TAMS 0x0000000084400000| PB 0x0000000084400000| Untracked +| 39|0x0000000084500000, 0x0000000084500000, 0x0000000084600000| 0%| F| |TAMS 0x0000000084500000| PB 0x0000000084500000| Untracked +| 40|0x0000000084600000, 0x0000000084600000, 0x0000000084700000| 0%| F| |TAMS 0x0000000084600000| PB 0x0000000084600000| Untracked +| 41|0x0000000084700000, 0x0000000084700000, 0x0000000084800000| 0%| F| |TAMS 0x0000000084700000| PB 0x0000000084700000| Untracked +| 42|0x0000000084800000, 0x0000000084800000, 0x0000000084900000| 0%| F| |TAMS 0x0000000084800000| PB 0x0000000084800000| Untracked +| 43|0x0000000084900000, 0x0000000084900000, 0x0000000084a00000| 0%| F| |TAMS 0x0000000084900000| PB 0x0000000084900000| Untracked +| 44|0x0000000084a00000, 0x0000000084a00000, 0x0000000084b00000| 0%| F| |TAMS 0x0000000084a00000| PB 0x0000000084a00000| Untracked +| 45|0x0000000084b00000, 0x0000000084b00000, 0x0000000084c00000| 0%| F| |TAMS 0x0000000084b00000| PB 0x0000000084b00000| Untracked +| 46|0x0000000084c00000, 0x0000000084c00000, 0x0000000084d00000| 0%| F| |TAMS 0x0000000084c00000| PB 0x0000000084c00000| Untracked +| 47|0x0000000084d00000, 0x0000000084d00000, 0x0000000084e00000| 0%| F| |TAMS 0x0000000084d00000| PB 0x0000000084d00000| Untracked +| 48|0x0000000084e00000, 0x0000000084e00000, 0x0000000084f00000| 0%| F| |TAMS 0x0000000084e00000| PB 0x0000000084e00000| Untracked +| 49|0x0000000084f00000, 0x0000000084f00000, 0x0000000085000000| 0%| F| |TAMS 0x0000000084f00000| PB 0x0000000084f00000| Untracked +| 50|0x0000000085000000, 0x0000000085000000, 0x0000000085100000| 0%| F| |TAMS 0x0000000085000000| PB 0x0000000085000000| Untracked +| 51|0x0000000085100000, 0x0000000085100000, 0x0000000085200000| 0%| F| |TAMS 0x0000000085100000| PB 0x0000000085100000| Untracked +| 52|0x0000000085200000, 0x0000000085200000, 0x0000000085300000| 0%| F| |TAMS 0x0000000085200000| PB 0x0000000085200000| Untracked +| 53|0x0000000085300000, 0x0000000085300000, 0x0000000085400000| 0%| F| |TAMS 0x0000000085300000| PB 0x0000000085300000| Untracked +| 54|0x0000000085400000, 0x0000000085400000, 0x0000000085500000| 0%| F| |TAMS 0x0000000085400000| PB 0x0000000085400000| Untracked +| 55|0x0000000085500000, 0x0000000085500000, 0x0000000085600000| 0%| F| |TAMS 0x0000000085500000| PB 0x0000000085500000| Untracked +| 56|0x0000000085600000, 0x0000000085600000, 0x0000000085700000| 0%| F| |TAMS 0x0000000085600000| PB 0x0000000085600000| Untracked +| 57|0x0000000085700000, 0x0000000085700000, 0x0000000085800000| 0%| F| |TAMS 0x0000000085700000| PB 0x0000000085700000| Untracked +| 58|0x0000000085800000, 0x0000000085800000, 0x0000000085900000| 0%| F| |TAMS 0x0000000085800000| PB 0x0000000085800000| Untracked +| 59|0x0000000085900000, 0x0000000085900000, 0x0000000085a00000| 0%| F| |TAMS 0x0000000085900000| PB 0x0000000085900000| Untracked +| 60|0x0000000085a00000, 0x0000000085a00000, 0x0000000085b00000| 0%| F| |TAMS 0x0000000085a00000| PB 0x0000000085a00000| Untracked +| 61|0x0000000085b00000, 0x0000000085b00000, 0x0000000085c00000| 0%| F| |TAMS 0x0000000085b00000| PB 0x0000000085b00000| Untracked +| 62|0x0000000085c00000, 0x0000000085c00000, 0x0000000085d00000| 0%| F| |TAMS 0x0000000085c00000| PB 0x0000000085c00000| Untracked +| 63|0x0000000085d00000, 0x0000000085d00000, 0x0000000085e00000| 0%| F| |TAMS 0x0000000085d00000| PB 0x0000000085d00000| Untracked +| 64|0x0000000085e00000, 0x0000000085e00000, 0x0000000085f00000| 0%| F| |TAMS 0x0000000085e00000| PB 0x0000000085e00000| Untracked +| 65|0x0000000085f00000, 0x0000000085f00000, 0x0000000086000000| 0%| F| |TAMS 0x0000000085f00000| PB 0x0000000085f00000| Untracked +| 66|0x0000000086000000, 0x0000000086000000, 0x0000000086100000| 0%| F| |TAMS 0x0000000086000000| PB 0x0000000086000000| Untracked +| 67|0x0000000086100000, 0x0000000086100000, 0x0000000086200000| 0%| F| |TAMS 0x0000000086100000| PB 0x0000000086100000| Untracked +| 68|0x0000000086200000, 0x0000000086200000, 0x0000000086300000| 0%| F| |TAMS 0x0000000086200000| PB 0x0000000086200000| Untracked +| 69|0x0000000086300000, 0x0000000086300000, 0x0000000086400000| 0%| F| |TAMS 0x0000000086300000| PB 0x0000000086300000| Untracked +| 70|0x0000000086400000, 0x0000000086400000, 0x0000000086500000| 0%| F| |TAMS 0x0000000086400000| PB 0x0000000086400000| Untracked +| 71|0x0000000086500000, 0x0000000086500000, 0x0000000086600000| 0%| F| |TAMS 0x0000000086500000| PB 0x0000000086500000| Untracked +| 72|0x0000000086600000, 0x0000000086600000, 0x0000000086700000| 0%| F| |TAMS 0x0000000086600000| PB 0x0000000086600000| Untracked +| 73|0x0000000086700000, 0x0000000086700000, 0x0000000086800000| 0%| F| |TAMS 0x0000000086700000| PB 0x0000000086700000| Untracked +| 74|0x0000000086800000, 0x0000000086800000, 0x0000000086900000| 0%| F| |TAMS 0x0000000086800000| PB 0x0000000086800000| Untracked +| 75|0x0000000086900000, 0x0000000086900000, 0x0000000086a00000| 0%| F| |TAMS 0x0000000086900000| PB 0x0000000086900000| Untracked +| 76|0x0000000086a00000, 0x0000000086a00000, 0x0000000086b00000| 0%| F| |TAMS 0x0000000086a00000| PB 0x0000000086a00000| Untracked +| 77|0x0000000086b00000, 0x0000000086b00000, 0x0000000086c00000| 0%| F| |TAMS 0x0000000086b00000| PB 0x0000000086b00000| Untracked +| 78|0x0000000086c00000, 0x0000000086c00000, 0x0000000086d00000| 0%| F| |TAMS 0x0000000086c00000| PB 0x0000000086c00000| Untracked +| 79|0x0000000086d00000, 0x0000000086d00000, 0x0000000086e00000| 0%| F| |TAMS 0x0000000086d00000| PB 0x0000000086d00000| Untracked +| 80|0x0000000086e00000, 0x0000000086e00000, 0x0000000086f00000| 0%| F| |TAMS 0x0000000086e00000| PB 0x0000000086e00000| Untracked +| 81|0x0000000086f00000, 0x0000000086f00000, 0x0000000087000000| 0%| F| |TAMS 0x0000000086f00000| PB 0x0000000086f00000| Untracked +| 82|0x0000000087000000, 0x0000000087000000, 0x0000000087100000| 0%| F| |TAMS 0x0000000087000000| PB 0x0000000087000000| Untracked +| 83|0x0000000087100000, 0x0000000087100000, 0x0000000087200000| 0%| F| |TAMS 0x0000000087100000| PB 0x0000000087100000| Untracked +| 84|0x0000000087200000, 0x0000000087200000, 0x0000000087300000| 0%| F| |TAMS 0x0000000087200000| PB 0x0000000087200000| Untracked +| 85|0x0000000087300000, 0x0000000087300000, 0x0000000087400000| 0%| F| |TAMS 0x0000000087300000| PB 0x0000000087300000| Untracked +| 86|0x0000000087400000, 0x0000000087400000, 0x0000000087500000| 0%| F| |TAMS 0x0000000087400000| PB 0x0000000087400000| Untracked +| 87|0x0000000087500000, 0x0000000087500000, 0x0000000087600000| 0%| F| |TAMS 0x0000000087500000| PB 0x0000000087500000| Untracked +| 88|0x0000000087600000, 0x0000000087600000, 0x0000000087700000| 0%| F| |TAMS 0x0000000087600000| PB 0x0000000087600000| Untracked +| 89|0x0000000087700000, 0x0000000087700000, 0x0000000087800000| 0%| F| |TAMS 0x0000000087700000| PB 0x0000000087700000| Untracked +| 90|0x0000000087800000, 0x0000000087800000, 0x0000000087900000| 0%| F| |TAMS 0x0000000087800000| PB 0x0000000087800000| Untracked +| 91|0x0000000087900000, 0x0000000087900000, 0x0000000087a00000| 0%| F| |TAMS 0x0000000087900000| PB 0x0000000087900000| Untracked +| 92|0x0000000087a00000, 0x0000000087a00000, 0x0000000087b00000| 0%| F| |TAMS 0x0000000087a00000| PB 0x0000000087a00000| Untracked +| 93|0x0000000087b00000, 0x0000000087b00000, 0x0000000087c00000| 0%| F| |TAMS 0x0000000087b00000| PB 0x0000000087b00000| Untracked +| 94|0x0000000087c00000, 0x0000000087c00000, 0x0000000087d00000| 0%| F| |TAMS 0x0000000087c00000| PB 0x0000000087c00000| Untracked +| 95|0x0000000087d00000, 0x0000000087d00000, 0x0000000087e00000| 0%| F| |TAMS 0x0000000087d00000| PB 0x0000000087d00000| Untracked +| 96|0x0000000087e00000, 0x0000000087e00000, 0x0000000087f00000| 0%| F| |TAMS 0x0000000087e00000| PB 0x0000000087e00000| Untracked +| 97|0x0000000087f00000, 0x0000000087f00000, 0x0000000088000000| 0%| F| |TAMS 0x0000000087f00000| PB 0x0000000087f00000| Untracked +| 98|0x0000000088000000, 0x0000000088000000, 0x0000000088100000| 0%| F| |TAMS 0x0000000088000000| PB 0x0000000088000000| Untracked +| 99|0x0000000088100000, 0x0000000088100000, 0x0000000088200000| 0%| F| |TAMS 0x0000000088100000| PB 0x0000000088100000| Untracked +| 100|0x0000000088200000, 0x0000000088200000, 0x0000000088300000| 0%| F| |TAMS 0x0000000088200000| PB 0x0000000088200000| Untracked +| 101|0x0000000088300000, 0x0000000088300000, 0x0000000088400000| 0%| F| |TAMS 0x0000000088300000| PB 0x0000000088300000| Untracked +| 102|0x0000000088400000, 0x0000000088500000, 0x0000000088500000|100%| S|CS|TAMS 0x0000000088400000| PB 0x0000000088400000| Complete +| 103|0x0000000088500000, 0x0000000088600000, 0x0000000088600000|100%| S|CS|TAMS 0x0000000088500000| PB 0x0000000088500000| Complete +| 104|0x0000000088600000, 0x0000000088700000, 0x0000000088700000|100%| S|CS|TAMS 0x0000000088600000| PB 0x0000000088600000| Complete +| 105|0x0000000088700000, 0x0000000088700000, 0x0000000088800000| 0%| F| |TAMS 0x0000000088700000| PB 0x0000000088700000| Untracked +| 106|0x0000000088800000, 0x0000000088800000, 0x0000000088900000| 0%| F| |TAMS 0x0000000088800000| PB 0x0000000088800000| Untracked +| 107|0x0000000088900000, 0x0000000088900000, 0x0000000088a00000| 0%| F| |TAMS 0x0000000088900000| PB 0x0000000088900000| Untracked +| 108|0x0000000088a00000, 0x0000000088a00000, 0x0000000088b00000| 0%| F| |TAMS 0x0000000088a00000| PB 0x0000000088a00000| Untracked +| 109|0x0000000088b00000, 0x0000000088b00000, 0x0000000088c00000| 0%| F| |TAMS 0x0000000088b00000| PB 0x0000000088b00000| Untracked +| 110|0x0000000088c00000, 0x0000000088c00000, 0x0000000088d00000| 0%| F| |TAMS 0x0000000088c00000| PB 0x0000000088c00000| Untracked +| 111|0x0000000088d00000, 0x0000000088d00000, 0x0000000088e00000| 0%| F| |TAMS 0x0000000088d00000| PB 0x0000000088d00000| Untracked +| 112|0x0000000088e00000, 0x0000000088e00000, 0x0000000088f00000| 0%| F| |TAMS 0x0000000088e00000| PB 0x0000000088e00000| Untracked +| 113|0x0000000088f00000, 0x0000000088f00000, 0x0000000089000000| 0%| F| |TAMS 0x0000000088f00000| PB 0x0000000088f00000| Untracked +| 114|0x0000000089000000, 0x0000000089000000, 0x0000000089100000| 0%| F| |TAMS 0x0000000089000000| PB 0x0000000089000000| Untracked +| 115|0x0000000089100000, 0x0000000089100000, 0x0000000089200000| 0%| F| |TAMS 0x0000000089100000| PB 0x0000000089100000| Untracked +| 116|0x0000000089200000, 0x0000000089200000, 0x0000000089300000| 0%| F| |TAMS 0x0000000089200000| PB 0x0000000089200000| Untracked +| 117|0x0000000089300000, 0x0000000089300000, 0x0000000089400000| 0%| F| |TAMS 0x0000000089300000| PB 0x0000000089300000| Untracked +| 118|0x0000000089400000, 0x0000000089400000, 0x0000000089500000| 0%| F| |TAMS 0x0000000089400000| PB 0x0000000089400000| Untracked +| 119|0x0000000089500000, 0x0000000089500000, 0x0000000089600000| 0%| F| |TAMS 0x0000000089500000| PB 0x0000000089500000| Untracked +| 120|0x0000000089600000, 0x0000000089600000, 0x0000000089700000| 0%| F| |TAMS 0x0000000089600000| PB 0x0000000089600000| Untracked +| 121|0x0000000089700000, 0x0000000089700000, 0x0000000089800000| 0%| F| |TAMS 0x0000000089700000| PB 0x0000000089700000| Untracked +| 122|0x0000000089800000, 0x00000000898d0688, 0x0000000089900000| 81%| E| |TAMS 0x0000000089800000| PB 0x0000000089800000| Complete +| 123|0x0000000089900000, 0x0000000089a00000, 0x0000000089a00000|100%| E|CS|TAMS 0x0000000089900000| PB 0x0000000089900000| Complete +| 124|0x0000000089a00000, 0x0000000089b00000, 0x0000000089b00000|100%| E|CS|TAMS 0x0000000089a00000| PB 0x0000000089a00000| Complete +| 125|0x0000000089b00000, 0x0000000089c00000, 0x0000000089c00000|100%| E|CS|TAMS 0x0000000089b00000| PB 0x0000000089b00000| Complete +| 126|0x0000000089c00000, 0x0000000089d00000, 0x0000000089d00000|100%| E|CS|TAMS 0x0000000089c00000| PB 0x0000000089c00000| Complete +| 127|0x0000000089d00000, 0x0000000089e00000, 0x0000000089e00000|100%| E|CS|TAMS 0x0000000089d00000| PB 0x0000000089d00000| Complete + +Card table byte_map: [0x00000151478f0000,0x0000015147cf0000] _byte_map_base: 0x00000151474e1000 + +Marking Bits: (CMBitMap*) 0x000001512fd7cf70 + Bits: [0x0000015147cf0000, 0x0000015149c78000) + +Polling page: 0x000001512dbc0000 + +Metaspace: + +Usage: + Non-class: 8.10 MB used. + Class: 1.26 MB used. + Both: 9.36 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 8.25 MB ( 13%) committed, 1 nodes. + Class space: 1.00 GB reserved, 1.31 MB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 9.56 MB ( <1%) committed. + +Chunk freelists: + Non-Class: 6.89 MB + Class: 14.50 MB + Both: 21.39 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 21.00 MB +CDS: on + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - use_allocation_guard: 0. + + +Internal statistics: + +num_allocs_failed_limit: 0. +num_arena_births: 200. +num_arena_deaths: 0. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 153. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 0. +num_chunks_taken_from_freelist: 465. +num_chunk_merges: 0. +num_chunk_splits: 327. +num_chunks_enlarged: 240. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=120000Kb used=455Kb max_used=455Kb free=119544Kb + bounds [0x000001513fc80000, 0x000001513fef0000, 0x00000151471b0000] +CodeHeap 'profiled nmethods': size=120000Kb used=2242Kb max_used=2242Kb free=117757Kb + bounds [0x00000151381b0000, 0x0000015138420000, 0x000001513f6e0000] +CodeHeap 'non-nmethods': size=5760Kb used=1566Kb max_used=1600Kb free=4193Kb + bounds [0x000001513f6e0000, 0x000001513f950000, 0x000001513fc80000] + total_blobs=1900 nmethods=1270 adapters=535 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 1.210 Thread 0x000001514c6d1550 nmethod 1223 0x00000151383dca90 code [0x00000151383dcc40, 0x00000151383dcdb0] +Event: 1.210 Thread 0x000001514c6d1550 1224 3 com.sun.javafx.css.BitSet::add (125 bytes) +Event: 1.210 Thread 0x000001514c6d1550 nmethod 1224 0x00000151383dce90 code [0x00000151383dd0a0, 0x00000151383dd818] +Event: 1.211 Thread 0x000001514c6d1550 1225 3 com.sun.javafx.collections.SetListenerHelper::hasListeners (10 bytes) +Event: 1.211 Thread 0x000001514c6d1550 nmethod 1225 0x00000151383dda90 code [0x00000151383ddc20, 0x00000151383ddd68] +Event: 1.211 Thread 0x000001514c6d1550 1248 3 java.util.Collections$UnmodifiableRandomAccessList:: (6 bytes) +Event: 1.211 Thread 0x000001514c6d1550 nmethod 1248 0x00000151383dde10 code [0x00000151383ddfe0, 0x00000151383de3c0] +Event: 1.212 Thread 0x000001514c6d1550 1249 3 java.util.Collections$UnmodifiableList:: (11 bytes) +Event: 1.212 Thread 0x000001514c6d1550 nmethod 1249 0x00000151383de510 code [0x00000151383de6e0, 0x00000151383dea68] +Event: 1.216 Thread 0x000001514cae20f0 nmethod 1243 0x000001513fce7010 code [0x000001513fce7200, 0x000001513fce77e0] +Event: 1.216 Thread 0x000001514cae20f0 1244 ! 4 java.io.BufferedInputStream::read (69 bytes) +Event: 1.216 Thread 0x000001514c6d1550 1259 3 java.lang.reflect.Method::isCallerSensitive (38 bytes) +Event: 1.217 Thread 0x000001514c6d1550 nmethod 1259 0x00000151383deb90 code [0x00000151383dede0, 0x00000151383df780] +Event: 1.218 Thread 0x000001514c6d1550 1260 s 3 java.io.ByteArrayInputStream::read (73 bytes) +Event: 1.218 Thread 0x000001514c6d1550 nmethod 1260 0x00000151383dfa90 code [0x00000151383dfc80, 0x00000151383e0280] +Event: 1.218 Thread 0x000001514c6d1550 1261 3 java.io.DataInputStream::readBoolean (13 bytes) +Event: 1.218 Thread 0x000001514c6d1550 nmethod 1261 0x00000151383e0410 code [0x00000151383e05e0, 0x00000151383e0968] +Event: 1.218 Thread 0x000001514c6d1550 1263 ! 3 com.sun.javafx.css.ParsedValueImpl::readBinary (691 bytes) +Event: 1.223 Thread 0x0000015196cdf320 nmethod 1245 0x000001513fce7b10 code [0x000001513fce7da0, 0x000001513fce8ce8] +Event: 1.225 Thread 0x0000015196cdf320 1266 4 java.util.HashMap::getNode (150 bytes) + +GC Heap History (2 events): +Event: 1.073 GC heap before +{Heap before GC invocations=0 (full 0): + garbage-first heap total 131072K, used 22528K [0x0000000081e00000, 0x0000000100000000) + region size 1024K, 23 young (23552K), 0 survivors (0K) + Metaspace used 8288K, committed 8512K, reserved 1114112K + class space used 1052K, committed 1152K, reserved 1048576K +} +Event: 1.079 GC heap after +{Heap after GC invocations=1 (full 0): + garbage-first heap total 131072K, used 4355K [0x0000000081e00000, 0x0000000100000000) + region size 1024K, 3 young (3072K), 3 survivors (3072K) + Metaspace used 8288K, committed 8512K, reserved 1114112K + class space used 1052K, committed 1152K, reserved 1048576K +} + +Dll operation events (20 events): +Event: 0.502 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-heap-l1-1-0.dll +Event: 0.507 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-locale-l1-1-0.dll +Event: 0.512 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-math-l1-1-0.dll +Event: 0.516 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-multibyte-l1-1-0.dll +Event: 0.522 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-private-l1-1-0.dll +Event: 0.526 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-process-l1-1-0.dll +Event: 0.530 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-runtime-l1-1-0.dll +Event: 0.534 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-stdio-l1-1-0.dll +Event: 0.539 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-string-l1-1-0.dll +Event: 0.543 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-time-l1-1-0.dll +Event: 0.548 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-utility-l1-1-0.dll +Event: 0.572 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\ucrtbase.dll +Event: 0.578 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\vcruntime140.dll +Event: 0.583 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\vcruntime140_1.dll +Event: 0.598 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140.dll +Event: 0.601 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140_1.dll +Event: 0.608 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140_2.dll +Event: 0.661 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\prism_d3d.dll +Event: 0.719 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\glass.dll +Event: 0.935 Loaded shared library C:\Users\Etudiant\.openjfx\cache\21+31\amd64\javafx_font.dll + +Deoptimization events (20 events): +Event: 1.188 Thread 0x0000015192754790 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001513fcb1590 relative=0x00000000000000d0 +Event: 1.188 Thread 0x0000015192754790 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001513fcb1590 method=jdk.internal.misc.Unsafe.convEndian(ZI)I @ 4 c2 +Event: 1.188 Thread 0x0000015192754790 DEOPT PACKING pc=0x000001513fcb1590 sp=0x0000000dd12fca90 +Event: 1.188 Thread 0x0000015192754790 DEOPT UNPACKING pc=0x000001513f7346a2 sp=0x0000000dd12fc928 mode 2 +Event: 1.191 Thread 0x0000015192754790 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001513fca9718 relative=0x0000000000001438 +Event: 1.191 Thread 0x0000015192754790 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001513fca9718 method=java.io.BufferedInputStream.implRead([BII)I @ 100 c2 +Event: 1.192 Thread 0x0000015192754790 DEOPT PACKING pc=0x000001513fca9718 sp=0x0000000dd12fcb30 +Event: 1.192 Thread 0x0000015192754790 DEOPT UNPACKING pc=0x000001513f7346a2 sp=0x0000000dd12fca10 mode 2 +Event: 1.192 Thread 0x0000015192754790 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001513fca9718 relative=0x0000000000001438 +Event: 1.192 Thread 0x0000015192754790 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001513fca9718 method=java.io.BufferedInputStream.implRead([BII)I @ 100 c2 +Event: 1.192 Thread 0x0000015192754790 DEOPT PACKING pc=0x000001513fca9718 sp=0x0000000dd12fcb30 +Event: 1.192 Thread 0x0000015192754790 DEOPT UNPACKING pc=0x000001513f7346a2 sp=0x0000000dd12fca10 mode 2 +Event: 1.193 Thread 0x0000015192754790 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001513fca9718 relative=0x0000000000001438 +Event: 1.193 Thread 0x0000015192754790 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001513fca9718 method=java.io.BufferedInputStream.implRead([BII)I @ 100 c2 +Event: 1.193 Thread 0x0000015192754790 DEOPT PACKING pc=0x000001513fca9718 sp=0x0000000dd12fcb30 +Event: 1.193 Thread 0x0000015192754790 DEOPT UNPACKING pc=0x000001513f7346a2 sp=0x0000000dd12fca10 mode 2 +Event: 1.196 Thread 0x0000015192754790 Uncommon trap: trap_request=0xffffffde fr.pc=0x000001513fca9718 relative=0x0000000000001438 +Event: 1.196 Thread 0x0000015192754790 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000001513fca9718 method=java.io.BufferedInputStream.implRead([BII)I @ 100 c2 +Event: 1.196 Thread 0x0000015192754790 DEOPT PACKING pc=0x000001513fca9718 sp=0x0000000dd12fcb30 +Event: 1.196 Thread 0x0000015192754790 DEOPT UNPACKING pc=0x000001513f7346a2 sp=0x0000000dd12fca10 mode 2 + +Classes loaded (20 events): +Event: 1.158 Loading class java/util/ImmutableCollections$Access$1 +Event: 1.158 Loading class jdk/internal/access/JavaUtilCollectionAccess +Event: 1.158 Loading class jdk/internal/access/JavaUtilCollectionAccess done +Event: 1.158 Loading class java/util/ImmutableCollections$Access$1 done +Event: 1.159 Loading class java/util/stream/Nodes$SpinedNodeBuilder +Event: 1.159 Loading class java/util/stream/SpinedBuffer +Event: 1.159 Loading class java/util/stream/AbstractSpinedBuffer +Event: 1.159 Loading class java/util/stream/AbstractSpinedBuffer done +Event: 1.159 Loading class java/util/stream/SpinedBuffer done +Event: 1.159 Loading class java/util/stream/Nodes$SpinedNodeBuilder done +Event: 1.160 Loading class java/util/ResourceBundle$Control$2 +Event: 1.160 Loading class java/util/ResourceBundle$Control$2 done +Event: 1.160 Loading class java/util/PropertyResourceBundle +Event: 1.160 Loading class java/util/PropertyResourceBundle done +Event: 1.160 Loading class sun/util/PropertyResourceBundleCharset +Event: 1.160 Loading class sun/util/PropertyResourceBundleCharset done +Event: 1.160 Loading class sun/util/PropertyResourceBundleCharset$PropertiesFileDecoder +Event: 1.160 Loading class sun/util/PropertyResourceBundleCharset$PropertiesFileDecoder done +Event: 1.179 Loading class java/text/CharacterIterator +Event: 1.179 Loading class java/text/CharacterIterator done + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (19 events): +Event: 0.180 Thread 0x000001512dc2c610 Exception (0x0000000089a4e050) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.181 Thread 0x000001514ca0aeb0 Exception (0x0000000089cfed40) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.260 Thread 0x000001514ca0aeb0 Exception (0x0000000089828f68) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.263 Thread 0x000001514ca0aeb0 Exception (0x0000000089837588) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.269 Thread 0x000001514ca0aeb0 Exception (0x000000008986a538) +thrown [s\open\src\hotspot\share\classfile\systemDictionary.cpp, line 312] +Event: 0.649 Thread 0x000001514ca0aeb0 Exception (0x0000000089201bd0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.695 Thread 0x000001514ca0aeb0 Exception (0x0000000089219cb0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.723 Thread 0x000001514ca0aeb0 Exception (0x000000008912fbb0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.724 Thread 0x000001514ca0aeb0 Exception (0x0000000089133a58) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.789 Thread 0x0000015192754790 Exception (0x0000000088fb5e68) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.794 Thread 0x000001514ca0aeb0 Exception (0x00000000891423c8) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.869 Thread 0x0000015192754790 Exception (0x0000000088c5eac8) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 0.871 Thread 0x0000015192754790 Exception (0x0000000088c68158) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 1372] +Event: 1.100 Thread 0x0000015192754790 Exception (0x0000000089c4dba0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 1.114 Thread 0x0000015192754790 Exception (0x0000000089c90cb8) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 1.115 Thread 0x0000015192754790 Exception (0x0000000089c9b8a0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 1.117 Thread 0x0000015192754790 Exception (0x0000000089cad2e0) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 1.119 Thread 0x0000015192754790 Exception (0x0000000089cb8410) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 1.158 Thread 0x0000015192754790 Exception (0x0000000089b53478) +thrown [s\open\src\hotspot\share\interpreter\linkResolver.cpp, line 773] + +ZGC Phase Switch (0 events): +No events + +VM Operations (10 events): +Event: 0.154 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 0.154 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 0.313 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 0.313 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 0.333 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 0.333 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 0.708 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 0.708 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 1.073 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) +Event: 1.079 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done + +Events (18 events): +Event: 0.068 Thread 0x000001512dc2c610 Thread added: 0x000001512dc2c610 +Event: 0.089 Thread 0x000001514c69b900 Thread added: 0x000001514c69b900 +Event: 0.089 Thread 0x000001514c69c9d0 Thread added: 0x000001514c69c9d0 +Event: 0.089 Thread 0x000001514c6a2650 Thread added: 0x000001514c6a2650 +Event: 0.089 Thread 0x000001514c6a3330 Thread added: 0x000001514c6a3330 +Event: 0.089 Thread 0x000001514c6a4890 Thread added: 0x000001514c6a4890 +Event: 0.090 Thread 0x000001514c6a54a0 Thread added: 0x000001514c6a54a0 +Event: 0.090 Thread 0x000001514c6aca90 Thread added: 0x000001514c6aca90 +Event: 0.090 Thread 0x000001514c6d1550 Thread added: 0x000001514c6d1550 +Event: 0.111 Thread 0x000001514c976010 Thread added: 0x000001514c976010 +Event: 0.114 Thread 0x000001514c992620 Thread added: 0x000001514c992620 +Event: 0.181 Thread 0x000001514ca0aeb0 Thread added: 0x000001514ca0aeb0 +Event: 0.224 Thread 0x000001514cae20f0 Thread added: 0x000001514cae20f0 +Event: 0.649 Thread 0x00000151924a6ec0 Thread added: 0x00000151924a6ec0 +Event: 0.722 Thread 0x000001519276fc40 Thread added: 0x000001519276fc40 +Event: 0.725 Thread 0x0000015192754790 Thread added: 0x0000015192754790 +Event: 0.815 Thread 0x0000015196a2a480 Thread added: 0x0000015196a2a480 +Event: 1.198 Thread 0x0000015196cdf320 Thread added: 0x0000015196cdf320 + + +Dynamic libraries: +0x00007ff75dbb0000 - 0x00007ff75dbc0000 C:\Program Files\Java\jdk-21\bin\java.exe +0x00007ffebe9d0000 - 0x00007ffebebc8000 C:\Windows\SYSTEM32\ntdll.dll +0x00007ffebcf80000 - 0x00007ffebd03d000 C:\Windows\System32\KERNEL32.DLL +0x00007ffebc680000 - 0x00007ffebc94e000 C:\Windows\System32\KERNELBASE.dll +0x00007ffebc140000 - 0x00007ffebc240000 C:\Windows\System32\ucrtbase.dll +0x00007ffeb98a0000 - 0x00007ffeb98b9000 C:\Program Files\Java\jdk-21\bin\jli.dll +0x00007ffeb35a0000 - 0x00007ffeb35bb000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll +0x00007ffebcb80000 - 0x00007ffebcc2e000 C:\Windows\System32\ADVAPI32.dll +0x00007ffebdec0000 - 0x00007ffebdf5e000 C:\Windows\System32\msvcrt.dll +0x00007ffebd3a0000 - 0x00007ffebd43c000 C:\Windows\System32\sechost.dll +0x00007ffebe860000 - 0x00007ffebe985000 C:\Windows\System32\RPCRT4.dll +0x00007ffebcde0000 - 0x00007ffebcf80000 C:\Windows\System32\USER32.dll +0x00007ffe921b0000 - 0x00007ffe9244a000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll +0x00007ffebc350000 - 0x00007ffebc372000 C:\Windows\System32\win32u.dll +0x00007ffebe1a0000 - 0x00007ffebe1ca000 C:\Windows\System32\GDI32.dll +0x00007ffebc240000 - 0x00007ffebc34b000 C:\Windows\System32\gdi32full.dll +0x00007ffebc380000 - 0x00007ffebc41d000 C:\Windows\System32\msvcp_win.dll +0x00007ffeb6c10000 - 0x00007ffeb6c1a000 C:\Windows\SYSTEM32\VERSION.dll +0x00007ffebe170000 - 0x00007ffebe1a0000 C:\Windows\System32\IMM32.DLL +0x00007ffeb9890000 - 0x00007ffeb989c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll +0x00007ffe78910000 - 0x00007ffe7899e000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll +0x00007ffe47a70000 - 0x00007ffe4877d000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll +0x00007ffebe640000 - 0x00007ffebe6ab000 C:\Windows\System32\WS2_32.dll +0x00007ffebbeb0000 - 0x00007ffebbefb000 C:\Windows\SYSTEM32\POWRPROF.dll +0x00007ffea6450000 - 0x00007ffea6477000 C:\Windows\SYSTEM32\WINMM.dll +0x00007ffebbe90000 - 0x00007ffebbea2000 C:\Windows\SYSTEM32\UMPDC.dll +0x00007ffeb9fd0000 - 0x00007ffeb9fe2000 C:\Windows\SYSTEM32\kernel.appcore.dll +0x00007ffeb4210000 - 0x00007ffeb421a000 C:\Program Files\Java\jdk-21\bin\jimage.dll +0x00007ffea64a0000 - 0x00007ffea6684000 C:\Windows\SYSTEM32\DBGHELP.DLL +0x00007ffea62d0000 - 0x00007ffea62fc000 C:\Windows\SYSTEM32\dbgcore.DLL +0x00007ffebc490000 - 0x00007ffebc512000 C:\Windows\System32\bcryptPrimitives.dll +0x00007ffeb3580000 - 0x00007ffeb359f000 C:\Program Files\Java\jdk-21\bin\java.dll +0x00007ffebd6e0000 - 0x00007ffebde24000 C:\Windows\System32\SHELL32.dll +0x00007ffeba1d0000 - 0x00007ffeba964000 C:\Windows\SYSTEM32\windows.storage.dll +0x00007ffebd040000 - 0x00007ffebd394000 C:\Windows\System32\combase.dll +0x00007ffebb9a0000 - 0x00007ffebb9d0000 C:\Windows\SYSTEM32\Wldp.dll +0x00007ffebd620000 - 0x00007ffebd6cd000 C:\Windows\System32\SHCORE.dll +0x00007ffebde60000 - 0x00007ffebdeb5000 C:\Windows\System32\shlwapi.dll +0x00007ffebc030000 - 0x00007ffebc04f000 C:\Windows\SYSTEM32\profapi.dll +0x00007ffe555c0000 - 0x00007ffe55697000 C:\Program Files\Java\jdk-21\bin\jsvml.dll +0x00007ffeab3f0000 - 0x00007ffeab400000 C:\Program Files\Java\jdk-21\bin\net.dll +0x00007ffeb6410000 - 0x00007ffeb651a000 C:\Windows\SYSTEM32\WINHTTP.dll +0x00007ffebb780000 - 0x00007ffebb7ea000 C:\Windows\system32\mswsock.dll +0x00007ffeab3d0000 - 0x00007ffeab3e6000 C:\Program Files\Java\jdk-21\bin\nio.dll +0x00007ffe90c40000 - 0x00007ffe90c58000 C:\Program Files\Java\jdk-21\bin\zip.dll +0x000001512de90000 - 0x000001512de93000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-console-l1-1-0.dll +0x000001512dea0000 - 0x000001512dea3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-console-l1-2-0.dll +0x000001512deb0000 - 0x000001512deb3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-datetime-l1-1-0.dll +0x000001512dec0000 - 0x000001512dec3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-debug-l1-1-0.dll +0x000001512ded0000 - 0x000001512ded3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-errorhandling-l1-1-0.dll +0x000001512fcc0000 - 0x000001512fcc4000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-file-l1-1-0.dll +0x000001512fcd0000 - 0x000001512fcd3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-file-l1-2-0.dll +0x000001512fce0000 - 0x000001512fce3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-file-l2-1-0.dll +0x000001512fcf0000 - 0x000001512fcf3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-handle-l1-1-0.dll +0x000001514cc30000 - 0x000001514cc33000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-heap-l1-1-0.dll +0x000001514cc40000 - 0x000001514cc43000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-interlocked-l1-1-0.dll +0x000001514cc50000 - 0x000001514cc53000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-libraryloader-l1-1-0.dll +0x000001514cc60000 - 0x000001514cc63000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-localization-l1-2-0.dll +0x000001514cc70000 - 0x000001514cc73000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-memory-l1-1-0.dll +0x000001514cc80000 - 0x000001514cc83000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-namedpipe-l1-1-0.dll +0x000001514cc90000 - 0x000001514cc93000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-processenvironment-l1-1-0.dll +0x000001514cca0000 - 0x000001514cca3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-processthreads-l1-1-0.dll +0x000001514ccb0000 - 0x000001514ccb3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-processthreads-l1-1-1.dll +0x000001514ccc0000 - 0x000001514ccc3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-profile-l1-1-0.dll +0x000001514ccd0000 - 0x000001514ccd3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-rtlsupport-l1-1-0.dll +0x000001514cce0000 - 0x000001514cce3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-string-l1-1-0.dll +0x000001514ccf0000 - 0x000001514ccf3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-synch-l1-1-0.dll +0x000001514cd00000 - 0x000001514cd03000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-synch-l1-2-0.dll +0x000001514cd10000 - 0x000001514cd13000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-sysinfo-l1-1-0.dll +0x000001514cd20000 - 0x000001514cd23000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-timezone-l1-1-0.dll +0x000001514cd30000 - 0x000001514cd33000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-core-util-l1-1-0.dll +0x000001514cd40000 - 0x000001514cd43000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-conio-l1-1-0.dll +0x000001514cd50000 - 0x000001514cd54000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-convert-l1-1-0.dll +0x000001514cd60000 - 0x000001514cd63000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-environment-l1-1-0.dll +0x000001514cd70000 - 0x000001514cd73000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-filesystem-l1-1-0.dll +0x000001514cd80000 - 0x000001514cd83000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-heap-l1-1-0.dll +0x000001514cd90000 - 0x000001514cd93000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-locale-l1-1-0.dll +0x000001514cda0000 - 0x000001514cda5000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-math-l1-1-0.dll +0x000001514cdb0000 - 0x000001514cdb5000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-multibyte-l1-1-0.dll +0x000001514cdc0000 - 0x000001514cdd0000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-private-l1-1-0.dll +0x000001514cdd0000 - 0x000001514cdd3000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-process-l1-1-0.dll +0x000001514cde0000 - 0x000001514cde4000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-runtime-l1-1-0.dll +0x000001514cdf0000 - 0x000001514cdf4000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-stdio-l1-1-0.dll +0x000001514ce00000 - 0x000001514ce04000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-string-l1-1-0.dll +0x000001514ce10000 - 0x000001514ce13000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-time-l1-1-0.dll +0x000001514ce20000 - 0x000001514ce23000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\api-ms-win-crt-utility-l1-1-0.dll +0x00007ffe4ac30000 - 0x00007ffe4ad2c000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\ucrtbase.dll +0x00007ffe80470000 - 0x00007ffe8048b000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\vcruntime140.dll +0x00007ffeab3c0000 - 0x00007ffeab3cc000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\vcruntime140_1.dll +0x00007ffe4aa90000 - 0x00007ffe4ab1e000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140.dll +0x00007ffebd4f0000 - 0x00007ffebd61a000 C:\Windows\System32\ole32.dll +0x00007ffea82d0000 - 0x00007ffea82d9000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140_1.dll +0x00007ffe80350000 - 0x00007ffe8037f000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\msvcp140_2.dll +0x00007ffe7f770000 - 0x00007ffe7f79f000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\prism_d3d.dll +0x00007ffe6a840000 - 0x00007ffe6aa0f000 C:\Windows\system32\d3d9.dll +0x00007ffeb9ce0000 - 0x00007ffeb9d0f000 C:\Windows\SYSTEM32\dwmapi.dll +0x00007ffeb9af0000 - 0x00007ffeb9b8e000 C:\Windows\system32\uxtheme.dll +0x00007ffe6a6d0000 - 0x00007ffe6a835000 C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d\igdumdim64.dll +0x00007ffebca00000 - 0x00007ffebca27000 C:\Windows\System32\bcrypt.dll +0x00007ffe66a40000 - 0x00007ffe6a6cb000 C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d\igd9dxva64.dll +0x00007ffebdf60000 - 0x00007ffebe02d000 C:\Windows\System32\OLEAUT32.dll +0x00007ffebe1d0000 - 0x00007ffebe63f000 C:\Windows\System32\SETUPAPI.dll +0x00007ffebc0f0000 - 0x00007ffebc13e000 C:\Windows\System32\cfgmgr32.dll +0x00007ffeb3cd0000 - 0x00007ffeb4006000 C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d\igdgmm64.dll +0x00007ffe7ef50000 - 0x00007ffe7ef92000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\glass.dll +0x00007ffebca30000 - 0x00007ffebcb0a000 C:\Windows\System32\COMDLG32.dll +0x00007ffebcc30000 - 0x00007ffebcd45000 C:\Windows\System32\MSCTF.dll +0x00007ffe56ac0000 - 0x00007ffe56ae7000 C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d\igdinfo64.dll +0x00007ffeade60000 - 0x00007ffeb0bef000 C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d\igc64.dll +0x00007ffeb4cd0000 - 0x00007ffeb4d0b000 C:\Windows\SYSTEM32\dxcore.dll +0x00007ffe80330000 - 0x00007ffe80344000 C:\Users\Etudiant\.openjfx\cache\21+31\amd64\javafx_font.dll +0x00007ffeac940000 - 0x00007ffeacbbf000 C:\Windows\SYSTEM32\dwrite.dll + +dbghelp: loaded successfully - version: 4.0.5 - missing functions: none +symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Etudiant\.openjfx\cache\21+31\amd64;C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_22e8552b44b17c6d + +VM Arguments: +jvm_args: -XX:+ShowCodeDetailsInExceptionMessages +java_command: sae.Main +java_class_path (initial): C:\Users\Etudiant\Documents\GitHub\sae-3-01-devapp-2024-2025-g1b5\Application\app\target\classes;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-controls\21\javafx-controls-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-controls\21\javafx-controls-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-graphics\21\javafx-graphics-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-graphics\21\javafx-graphics-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-fxml\21\javafx-fxml-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-fxml\21\javafx-fxml-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-base\21\javafx-base-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-base\21\javafx-base-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-web\21\javafx-web-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-web\21\javafx-web-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-media\21\javafx-media-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-media\21\javafx-media-21-win.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.15.2\jackson-databind-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.15.2\jackson-annotations-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.15.2\jackson-core-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\googlecode\json-simple\json-simple\1.1.1\json-simple-1.1.1.jar;C:\Users\Etudiant\.m2\repository\junit\junit\4.10\junit-4.10.jar;C:\Users\Etudiant\.m2\repository\org\hamcrest\hamcrest-core\1.1\hamcrest-core-1.1.jar;C:\Users\Etudiant\.m2\repository\org\eclipse\paho\org.eclipse.paho.client.mqttv3\1.2.5\org.eclipse.paho.client.mqttv3-1.2.5.jar +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 4 {product} {ergonomic} + uint ConcGCThreads = 2 {product} {ergonomic} + uint G1ConcRefinementThreads = 8 {product} {ergonomic} + size_t G1HeapRegionSize = 1048576 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 134217728 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 2116026368 {product} {ergonomic} + size_t MaxNewSize = 1268776960 {product} {ergonomic} + size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + bool ShowCodeDetailsInExceptionMessages = true {manageable} {command line} + size_t SoftMaxHeapSize = 2116026368 {manageable} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags foldmultilines=false + #1: stderr all=off uptime,level,tags foldmultilines=false + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk-21 +PATH=C:\Program Files\PowerShell\7;C:\Python312\Scripts\;C:\Python312\;C:\app\Etudiant\product\21c\dbhomeXE\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Python310\Scripts\;C:\Program Files\Python310\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files\Microsoft VS Code\bin;C:\ProgramData\chocolatey\bin;C:\Program Files\Java\jdk-17.0.3.1\bin;C:\apache-ant-1.10.7\bin;C:\apache-maven-3.6.2\bin;C:\GnuCobol3.1\bin;C:\Gradle\bin;C:\Program Files\Graphviz\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\TortoiseGit\bin;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;C:\bin;C:\src\flutter\bin;C:\tools\dart-sdk\bin;C:\Program Files\Php;C:\Program Files\PowerShell\7\;C:\Program Files\nodejs\;C:\Users\Etudiant\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Oracle\VirtualBox;C:\Users\Etudiant\AppData\Roaming\npm;C:\Users\Etudiant\AppData\Local\GitHubDesktop\bin;C:\Users\Etudiant\AppData\Local\Programs\Git\cmd +USERNAME=Etudiant +LANG=en_US.UTF-8 +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel +TMP=C:\Users\Etudiant\AppData\Local\Temp +TEMP=C:\Users\Etudiant\AppData\Local\Temp + + + + +Periodic native trim disabled + +--------------- S Y S T E M --------------- + +OS: + Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +OS uptime: 0 days 4:39 hours +Hyper-V role detected + +CPU: total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 94 stepping 3 microcode 0xf0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c +Processor Information for all 8 processors : + Max Mhz: 3408, Current Mhz: 3408, Mhz Limit: 3408 + +Memory: 4k page, system-wide physical 8067M (724M free) +TotalPageFile size 11011M (AvailPageFile size 2M) +current process WorkingSet (physical memory assigned to process): 118M, peak: 118M +current process commit charge ("private bytes"): 259M, peak: 259M + +vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.3+7-LTS-152) for windows-amd64 JRE (21.0.3+7-LTS-152), built on 2024-03-11T17:42:26Z by "mach5one" with MS VC++ 17.6 (VS2022) + +END. diff --git a/hs_err_pid8296.log b/hs_err_pid8296.log new file mode 100644 index 00000000..371aed79 --- /dev/null +++ b/hs_err_pid8296.log @@ -0,0 +1,568 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (mmap) failed to map 65536 bytes for Failed to commit metaspace. +# Possible reasons: +# The system is out of physical RAM or swap space +# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap +# Possible solutions: +# Reduce memory load on the system +# Increase physical memory or swap space +# Check if swap backing store is full +# Decrease Java heap size (-Xmx/-Xms) +# Decrease number of Java threads +# Decrease Java thread stack sizes (-Xss) +# Set larger code cache with -XX:ReservedCodeCacheSize= +# JVM is running with Unscaled Compressed Oops mode in which the Java heap is +# placed in the first 4GB address space. The Java Heap base address is the +# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress +# to set the Java Heap base and to place the Java Heap above 4GB virtual address. +# This output file may be truncated or incomplete. +# +# Out of Memory Error (virtualSpaceNode.cpp:112), pid=8296, tid=4188 +# +# JRE version: Java(TM) SE Runtime Environment (21.0.3+7) (build 21.0.3+7-LTS-152) +# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.3+7-LTS-152, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) +# No core dump will be written. Minidumps are not enabled by default on client versions of Windows +# + +--------------- S U M M A R Y ------------ + +Command Line: -XX:+ShowCodeDetailsInExceptionMessages sae.Main + +Host: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz, 8 cores, 7G, Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +Time: Wed Dec 4 18:30:55 2024 Paris, Madrid elapsed time: 0.241190 seconds (0d 0h 0m 0s) + +--------------- T H R E A D --------------- + +Current thread (0x0000018ac6daf0f0): JavaThread "main" [_thread_in_vm, id=4188, stack(0x0000004fc8700000,0x0000004fc8800000) (1024K)] + +Stack: [0x0000004fc8700000,0x0000004fc8800000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x6c63b9] +V [jvm.dll+0x84fa11] +V [jvm.dll+0x851f3e] +V [jvm.dll+0x852613] +V [jvm.dll+0x27cd46] +V [jvm.dll+0x84b63e] +V [jvm.dll+0x66a1b5] +V [jvm.dll+0x1e399c] +V [jvm.dll+0x1e376e] +V [jvm.dll+0x66cae3] +V [jvm.dll+0x66c902] +V [jvm.dll+0x66ab8e] +V [jvm.dll+0x3b9e7f] +V [jvm.dll+0x20c81b] +V [jvm.dll+0x5a96c6] +V [jvm.dll+0x7c9e66] +V [jvm.dll+0x46d4d0] +V [jvm.dll+0x473328] +C [java.dll+0x17ec] + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j java.lang.ClassLoader.defineClass1(Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0 java.base@21.0.3 +j java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27 java.base@21.0.3 +j java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.defineClass(Ljava/lang/String;Ljdk/internal/loader/Resource;)Ljava/lang/Class;+117 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(Ljava/lang/String;)Ljava/lang/Class;+37 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(Ljava/lang/String;Z)Ljava/lang/Class;+111 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+3 java.base@21.0.3 +j jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+36 java.base@21.0.3 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3 java.base@21.0.3 +v ~StubRoutines::call_stub 0x0000018ad89b100d +j java.lang.ClassLoader.defineClass1(Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0 java.base@21.0.3 +j java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27 java.base@21.0.3 +j java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.defineClass(Ljava/lang/String;Ljdk/internal/loader/Resource;)Ljava/lang/Class;+117 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(Ljava/lang/String;)Ljava/lang/Class;+37 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(Ljava/lang/String;Z)Ljava/lang/Class;+111 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+3 java.base@21.0.3 +j jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+36 java.base@21.0.3 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3 java.base@21.0.3 +v ~StubRoutines::call_stub 0x0000018ad89b100d +j java.lang.ClassLoader.defineClass1(Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;Ljava/lang/String;)Ljava/lang/Class;+0 java.base@21.0.3 +j java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;+27 java.base@21.0.3 +j java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;+12 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.defineClass(Ljava/lang/String;Ljdk/internal/loader/Resource;)Ljava/lang/Class;+117 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(Ljava/lang/String;)Ljava/lang/Class;+37 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(Ljava/lang/String;Z)Ljava/lang/Class;+111 java.base@21.0.3 +j jdk.internal.loader.BuiltinClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+3 java.base@21.0.3 +j jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class;+36 java.base@21.0.3 +j java.lang.ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+3 java.base@21.0.3 +v ~StubRoutines::call_stub 0x0000018ad89b100d +j sae.Main.main([Ljava/lang/String;)V+19 +v ~StubRoutines::call_stub 0x0000018ad89b100d + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x0000018a84225010, length=11, elements={ +0x0000018ac6daf0f0, 0x0000018a84073340, 0x0000018a8405b3f0, 0x0000018a84066da0, +0x0000018a84067800, 0x0000018a84064fd0, 0x0000018a84068670, 0x0000018a84069e10, +0x0000018a840886b0, 0x0000018a84220d40, 0x0000018a84224620 +} + +Java Threads: ( => current thread ) +=>0x0000018ac6daf0f0 JavaThread "main" [_thread_in_vm, id=4188, stack(0x0000004fc8700000,0x0000004fc8800000) (1024K)] + 0x0000018a84073340 JavaThread "Reference Handler" daemon [_thread_blocked, id=9836, stack(0x0000004fc8f00000,0x0000004fc9000000) (1024K)] + 0x0000018a8405b3f0 JavaThread "Finalizer" daemon [_thread_blocked, id=4900, stack(0x0000004fc9000000,0x0000004fc9100000) (1024K)] + 0x0000018a84066da0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8784, stack(0x0000004fc9100000,0x0000004fc9200000) (1024K)] + 0x0000018a84067800 JavaThread "Attach Listener" daemon [_thread_blocked, id=6768, stack(0x0000004fc9200000,0x0000004fc9300000) (1024K)] + 0x0000018a84064fd0 JavaThread "Service Thread" daemon [_thread_blocked, id=13348, stack(0x0000004fc9300000,0x0000004fc9400000) (1024K)] + 0x0000018a84068670 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=13692, stack(0x0000004fc9400000,0x0000004fc9500000) (1024K)] + 0x0000018a84069e10 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13752, stack(0x0000004fc9500000,0x0000004fc9600000) (1024K)] + 0x0000018a840886b0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=9416, stack(0x0000004fc9600000,0x0000004fc9700000) (1024K)] + 0x0000018a84220d40 JavaThread "Notification Thread" daemon [_thread_blocked, id=2764, stack(0x0000004fc9700000,0x0000004fc9800000) (1024K)] + 0x0000018a84224620 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=6148, stack(0x0000004fc9800000,0x0000004fc9900000) (1024K)] +Total: 11 + +Other Threads: + 0x0000018ae59ae700 VMThread "VM Thread" [id=12056, stack(0x0000004fc8e00000,0x0000004fc8f00000) (1024K)] + 0x0000018ae592c9b0 WatcherThread "VM Periodic Task Thread" [id=4780, stack(0x0000004fc8d00000,0x0000004fc8e00000) (1024K)] + 0x0000018ac904ce80 WorkerThread "GC Thread#0" [id=7064, stack(0x0000004fc8800000,0x0000004fc8900000) (1024K)] + 0x0000018ac905dc50 ConcurrentGCThread "G1 Main Marker" [id=13412, stack(0x0000004fc8900000,0x0000004fc8a00000) (1024K)] + 0x0000018ac905e750 WorkerThread "G1 Conc#0" [id=7204, stack(0x0000004fc8a00000,0x0000004fc8b00000) (1024K)] + 0x0000018ae57e84f0 ConcurrentGCThread "G1 Refine#0" [id=3188, stack(0x0000004fc8b00000,0x0000004fc8c00000) (1024K)] + 0x0000018ae57eb2e0 ConcurrentGCThread "G1 Service" [id=2540, stack(0x0000004fc8c00000,0x0000004fc8d00000) (1024K)] +Total: 7 + +Threads with active compile tasks: +Total: 0 + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event]) +[0x00007ffe486a0d28] Metaspace_lock - owner thread: 0x0000018ac6daf0f0 + +Heap address: 0x0000000081e00000, size: 2018 MB, Compressed Oops mode: 32-bit + +CDS archive(s) not mapped +Compressed class space mapped at: 0x0000000100000000-0x0000000140000000, reserved size: 1073741824 +Narrow klass base: 0x0000000000000000, Narrow klass shift: 3, Narrow klass range: 0x140000000 + +GC Precious Log: + CardTable entry size: 512 + Card Set container configuration: InlinePtr #cards 5 size 8 Array Of Cards #cards 12 size 40 Howl #buckets 4 coarsen threshold 1843 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 2048 + CPUs: 8 total, 8 available + Memory: 8067M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (32-bit) + Heap Region Size: 1M + Heap Min Capacity: 8M + Heap Initial Capacity: 128M + Heap Max Capacity: 2018M + Pre-touch: Disabled + Parallel Workers: 8 + Concurrent Workers: 2 + Concurrent Refinement Workers: 8 + Periodic GC: Disabled + +Heap: + garbage-first heap total 131072K, used 2048K [0x0000000081e00000, 0x0000000100000000) + region size 1024K, 4 young (4096K), 0 survivors (0K) + Metaspace used 6569K, committed 6656K, reserved 1114112K + class space used 504K, committed 512K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom +| 0|0x0000000081e00000, 0x0000000081e00000, 0x0000000081f00000| 0%| F| |TAMS 0x0000000081e00000| PB 0x0000000081e00000| Untracked +| 1|0x0000000081f00000, 0x0000000081f00000, 0x0000000082000000| 0%| F| |TAMS 0x0000000081f00000| PB 0x0000000081f00000| Untracked +| 2|0x0000000082000000, 0x0000000082000000, 0x0000000082100000| 0%| F| |TAMS 0x0000000082000000| PB 0x0000000082000000| Untracked +| 3|0x0000000082100000, 0x0000000082100000, 0x0000000082200000| 0%| F| |TAMS 0x0000000082100000| PB 0x0000000082100000| Untracked +| 4|0x0000000082200000, 0x0000000082200000, 0x0000000082300000| 0%| F| |TAMS 0x0000000082200000| PB 0x0000000082200000| Untracked +| 5|0x0000000082300000, 0x0000000082300000, 0x0000000082400000| 0%| F| |TAMS 0x0000000082300000| PB 0x0000000082300000| Untracked +| 6|0x0000000082400000, 0x0000000082400000, 0x0000000082500000| 0%| F| |TAMS 0x0000000082400000| PB 0x0000000082400000| Untracked +| 7|0x0000000082500000, 0x0000000082500000, 0x0000000082600000| 0%| F| |TAMS 0x0000000082500000| PB 0x0000000082500000| Untracked +| 8|0x0000000082600000, 0x0000000082600000, 0x0000000082700000| 0%| F| |TAMS 0x0000000082600000| PB 0x0000000082600000| Untracked +| 9|0x0000000082700000, 0x0000000082700000, 0x0000000082800000| 0%| F| |TAMS 0x0000000082700000| PB 0x0000000082700000| Untracked +| 10|0x0000000082800000, 0x0000000082800000, 0x0000000082900000| 0%| F| |TAMS 0x0000000082800000| PB 0x0000000082800000| Untracked +| 11|0x0000000082900000, 0x0000000082900000, 0x0000000082a00000| 0%| F| |TAMS 0x0000000082900000| PB 0x0000000082900000| Untracked +| 12|0x0000000082a00000, 0x0000000082a00000, 0x0000000082b00000| 0%| F| |TAMS 0x0000000082a00000| PB 0x0000000082a00000| Untracked +| 13|0x0000000082b00000, 0x0000000082b00000, 0x0000000082c00000| 0%| F| |TAMS 0x0000000082b00000| PB 0x0000000082b00000| Untracked +| 14|0x0000000082c00000, 0x0000000082c00000, 0x0000000082d00000| 0%| F| |TAMS 0x0000000082c00000| PB 0x0000000082c00000| Untracked +| 15|0x0000000082d00000, 0x0000000082d00000, 0x0000000082e00000| 0%| F| |TAMS 0x0000000082d00000| PB 0x0000000082d00000| Untracked +| 16|0x0000000082e00000, 0x0000000082e00000, 0x0000000082f00000| 0%| F| |TAMS 0x0000000082e00000| PB 0x0000000082e00000| Untracked +| 17|0x0000000082f00000, 0x0000000082f00000, 0x0000000083000000| 0%| F| |TAMS 0x0000000082f00000| PB 0x0000000082f00000| Untracked +| 18|0x0000000083000000, 0x0000000083000000, 0x0000000083100000| 0%| F| |TAMS 0x0000000083000000| PB 0x0000000083000000| Untracked +| 19|0x0000000083100000, 0x0000000083100000, 0x0000000083200000| 0%| F| |TAMS 0x0000000083100000| PB 0x0000000083100000| Untracked +| 20|0x0000000083200000, 0x0000000083200000, 0x0000000083300000| 0%| F| |TAMS 0x0000000083200000| PB 0x0000000083200000| Untracked +| 21|0x0000000083300000, 0x0000000083300000, 0x0000000083400000| 0%| F| |TAMS 0x0000000083300000| PB 0x0000000083300000| Untracked +| 22|0x0000000083400000, 0x0000000083400000, 0x0000000083500000| 0%| F| |TAMS 0x0000000083400000| PB 0x0000000083400000| Untracked +| 23|0x0000000083500000, 0x0000000083500000, 0x0000000083600000| 0%| F| |TAMS 0x0000000083500000| PB 0x0000000083500000| Untracked +| 24|0x0000000083600000, 0x0000000083600000, 0x0000000083700000| 0%| F| |TAMS 0x0000000083600000| PB 0x0000000083600000| Untracked +| 25|0x0000000083700000, 0x0000000083700000, 0x0000000083800000| 0%| F| |TAMS 0x0000000083700000| PB 0x0000000083700000| Untracked +| 26|0x0000000083800000, 0x0000000083800000, 0x0000000083900000| 0%| F| |TAMS 0x0000000083800000| PB 0x0000000083800000| Untracked +| 27|0x0000000083900000, 0x0000000083900000, 0x0000000083a00000| 0%| F| |TAMS 0x0000000083900000| PB 0x0000000083900000| Untracked +| 28|0x0000000083a00000, 0x0000000083a00000, 0x0000000083b00000| 0%| F| |TAMS 0x0000000083a00000| PB 0x0000000083a00000| Untracked +| 29|0x0000000083b00000, 0x0000000083b00000, 0x0000000083c00000| 0%| F| |TAMS 0x0000000083b00000| PB 0x0000000083b00000| Untracked +| 30|0x0000000083c00000, 0x0000000083c00000, 0x0000000083d00000| 0%| F| |TAMS 0x0000000083c00000| PB 0x0000000083c00000| Untracked +| 31|0x0000000083d00000, 0x0000000083d00000, 0x0000000083e00000| 0%| F| |TAMS 0x0000000083d00000| PB 0x0000000083d00000| Untracked +| 32|0x0000000083e00000, 0x0000000083e00000, 0x0000000083f00000| 0%| F| |TAMS 0x0000000083e00000| PB 0x0000000083e00000| Untracked +| 33|0x0000000083f00000, 0x0000000083f00000, 0x0000000084000000| 0%| F| |TAMS 0x0000000083f00000| PB 0x0000000083f00000| Untracked +| 34|0x0000000084000000, 0x0000000084000000, 0x0000000084100000| 0%| F| |TAMS 0x0000000084000000| PB 0x0000000084000000| Untracked +| 35|0x0000000084100000, 0x0000000084100000, 0x0000000084200000| 0%| F| |TAMS 0x0000000084100000| PB 0x0000000084100000| Untracked +| 36|0x0000000084200000, 0x0000000084200000, 0x0000000084300000| 0%| F| |TAMS 0x0000000084200000| PB 0x0000000084200000| Untracked +| 37|0x0000000084300000, 0x0000000084300000, 0x0000000084400000| 0%| F| |TAMS 0x0000000084300000| PB 0x0000000084300000| Untracked +| 38|0x0000000084400000, 0x0000000084400000, 0x0000000084500000| 0%| F| |TAMS 0x0000000084400000| PB 0x0000000084400000| Untracked +| 39|0x0000000084500000, 0x0000000084500000, 0x0000000084600000| 0%| F| |TAMS 0x0000000084500000| PB 0x0000000084500000| Untracked +| 40|0x0000000084600000, 0x0000000084600000, 0x0000000084700000| 0%| F| |TAMS 0x0000000084600000| PB 0x0000000084600000| Untracked +| 41|0x0000000084700000, 0x0000000084700000, 0x0000000084800000| 0%| F| |TAMS 0x0000000084700000| PB 0x0000000084700000| Untracked +| 42|0x0000000084800000, 0x0000000084800000, 0x0000000084900000| 0%| F| |TAMS 0x0000000084800000| PB 0x0000000084800000| Untracked +| 43|0x0000000084900000, 0x0000000084900000, 0x0000000084a00000| 0%| F| |TAMS 0x0000000084900000| PB 0x0000000084900000| Untracked +| 44|0x0000000084a00000, 0x0000000084a00000, 0x0000000084b00000| 0%| F| |TAMS 0x0000000084a00000| PB 0x0000000084a00000| Untracked +| 45|0x0000000084b00000, 0x0000000084b00000, 0x0000000084c00000| 0%| F| |TAMS 0x0000000084b00000| PB 0x0000000084b00000| Untracked +| 46|0x0000000084c00000, 0x0000000084c00000, 0x0000000084d00000| 0%| F| |TAMS 0x0000000084c00000| PB 0x0000000084c00000| Untracked +| 47|0x0000000084d00000, 0x0000000084d00000, 0x0000000084e00000| 0%| F| |TAMS 0x0000000084d00000| PB 0x0000000084d00000| Untracked +| 48|0x0000000084e00000, 0x0000000084e00000, 0x0000000084f00000| 0%| F| |TAMS 0x0000000084e00000| PB 0x0000000084e00000| Untracked +| 49|0x0000000084f00000, 0x0000000084f00000, 0x0000000085000000| 0%| F| |TAMS 0x0000000084f00000| PB 0x0000000084f00000| Untracked +| 50|0x0000000085000000, 0x0000000085000000, 0x0000000085100000| 0%| F| |TAMS 0x0000000085000000| PB 0x0000000085000000| Untracked +| 51|0x0000000085100000, 0x0000000085100000, 0x0000000085200000| 0%| F| |TAMS 0x0000000085100000| PB 0x0000000085100000| Untracked +| 52|0x0000000085200000, 0x0000000085200000, 0x0000000085300000| 0%| F| |TAMS 0x0000000085200000| PB 0x0000000085200000| Untracked +| 53|0x0000000085300000, 0x0000000085300000, 0x0000000085400000| 0%| F| |TAMS 0x0000000085300000| PB 0x0000000085300000| Untracked +| 54|0x0000000085400000, 0x0000000085400000, 0x0000000085500000| 0%| F| |TAMS 0x0000000085400000| PB 0x0000000085400000| Untracked +| 55|0x0000000085500000, 0x0000000085500000, 0x0000000085600000| 0%| F| |TAMS 0x0000000085500000| PB 0x0000000085500000| Untracked +| 56|0x0000000085600000, 0x0000000085600000, 0x0000000085700000| 0%| F| |TAMS 0x0000000085600000| PB 0x0000000085600000| Untracked +| 57|0x0000000085700000, 0x0000000085700000, 0x0000000085800000| 0%| F| |TAMS 0x0000000085700000| PB 0x0000000085700000| Untracked +| 58|0x0000000085800000, 0x0000000085800000, 0x0000000085900000| 0%| F| |TAMS 0x0000000085800000| PB 0x0000000085800000| Untracked +| 59|0x0000000085900000, 0x0000000085900000, 0x0000000085a00000| 0%| F| |TAMS 0x0000000085900000| PB 0x0000000085900000| Untracked +| 60|0x0000000085a00000, 0x0000000085a00000, 0x0000000085b00000| 0%| F| |TAMS 0x0000000085a00000| PB 0x0000000085a00000| Untracked +| 61|0x0000000085b00000, 0x0000000085b00000, 0x0000000085c00000| 0%| F| |TAMS 0x0000000085b00000| PB 0x0000000085b00000| Untracked +| 62|0x0000000085c00000, 0x0000000085c00000, 0x0000000085d00000| 0%| F| |TAMS 0x0000000085c00000| PB 0x0000000085c00000| Untracked +| 63|0x0000000085d00000, 0x0000000085d00000, 0x0000000085e00000| 0%| F| |TAMS 0x0000000085d00000| PB 0x0000000085d00000| Untracked +| 64|0x0000000085e00000, 0x0000000085e00000, 0x0000000085f00000| 0%| F| |TAMS 0x0000000085e00000| PB 0x0000000085e00000| Untracked +| 65|0x0000000085f00000, 0x0000000085f00000, 0x0000000086000000| 0%| F| |TAMS 0x0000000085f00000| PB 0x0000000085f00000| Untracked +| 66|0x0000000086000000, 0x0000000086000000, 0x0000000086100000| 0%| F| |TAMS 0x0000000086000000| PB 0x0000000086000000| Untracked +| 67|0x0000000086100000, 0x0000000086100000, 0x0000000086200000| 0%| F| |TAMS 0x0000000086100000| PB 0x0000000086100000| Untracked +| 68|0x0000000086200000, 0x0000000086200000, 0x0000000086300000| 0%| F| |TAMS 0x0000000086200000| PB 0x0000000086200000| Untracked +| 69|0x0000000086300000, 0x0000000086300000, 0x0000000086400000| 0%| F| |TAMS 0x0000000086300000| PB 0x0000000086300000| Untracked +| 70|0x0000000086400000, 0x0000000086400000, 0x0000000086500000| 0%| F| |TAMS 0x0000000086400000| PB 0x0000000086400000| Untracked +| 71|0x0000000086500000, 0x0000000086500000, 0x0000000086600000| 0%| F| |TAMS 0x0000000086500000| PB 0x0000000086500000| Untracked +| 72|0x0000000086600000, 0x0000000086600000, 0x0000000086700000| 0%| F| |TAMS 0x0000000086600000| PB 0x0000000086600000| Untracked +| 73|0x0000000086700000, 0x0000000086700000, 0x0000000086800000| 0%| F| |TAMS 0x0000000086700000| PB 0x0000000086700000| Untracked +| 74|0x0000000086800000, 0x0000000086800000, 0x0000000086900000| 0%| F| |TAMS 0x0000000086800000| PB 0x0000000086800000| Untracked +| 75|0x0000000086900000, 0x0000000086900000, 0x0000000086a00000| 0%| F| |TAMS 0x0000000086900000| PB 0x0000000086900000| Untracked +| 76|0x0000000086a00000, 0x0000000086a00000, 0x0000000086b00000| 0%| F| |TAMS 0x0000000086a00000| PB 0x0000000086a00000| Untracked +| 77|0x0000000086b00000, 0x0000000086b00000, 0x0000000086c00000| 0%| F| |TAMS 0x0000000086b00000| PB 0x0000000086b00000| Untracked +| 78|0x0000000086c00000, 0x0000000086c00000, 0x0000000086d00000| 0%| F| |TAMS 0x0000000086c00000| PB 0x0000000086c00000| Untracked +| 79|0x0000000086d00000, 0x0000000086d00000, 0x0000000086e00000| 0%| F| |TAMS 0x0000000086d00000| PB 0x0000000086d00000| Untracked +| 80|0x0000000086e00000, 0x0000000086e00000, 0x0000000086f00000| 0%| F| |TAMS 0x0000000086e00000| PB 0x0000000086e00000| Untracked +| 81|0x0000000086f00000, 0x0000000086f00000, 0x0000000087000000| 0%| F| |TAMS 0x0000000086f00000| PB 0x0000000086f00000| Untracked +| 82|0x0000000087000000, 0x0000000087000000, 0x0000000087100000| 0%| F| |TAMS 0x0000000087000000| PB 0x0000000087000000| Untracked +| 83|0x0000000087100000, 0x0000000087100000, 0x0000000087200000| 0%| F| |TAMS 0x0000000087100000| PB 0x0000000087100000| Untracked +| 84|0x0000000087200000, 0x0000000087200000, 0x0000000087300000| 0%| F| |TAMS 0x0000000087200000| PB 0x0000000087200000| Untracked +| 85|0x0000000087300000, 0x0000000087300000, 0x0000000087400000| 0%| F| |TAMS 0x0000000087300000| PB 0x0000000087300000| Untracked +| 86|0x0000000087400000, 0x0000000087400000, 0x0000000087500000| 0%| F| |TAMS 0x0000000087400000| PB 0x0000000087400000| Untracked +| 87|0x0000000087500000, 0x0000000087500000, 0x0000000087600000| 0%| F| |TAMS 0x0000000087500000| PB 0x0000000087500000| Untracked +| 88|0x0000000087600000, 0x0000000087600000, 0x0000000087700000| 0%| F| |TAMS 0x0000000087600000| PB 0x0000000087600000| Untracked +| 89|0x0000000087700000, 0x0000000087700000, 0x0000000087800000| 0%| F| |TAMS 0x0000000087700000| PB 0x0000000087700000| Untracked +| 90|0x0000000087800000, 0x0000000087800000, 0x0000000087900000| 0%| F| |TAMS 0x0000000087800000| PB 0x0000000087800000| Untracked +| 91|0x0000000087900000, 0x0000000087900000, 0x0000000087a00000| 0%| F| |TAMS 0x0000000087900000| PB 0x0000000087900000| Untracked +| 92|0x0000000087a00000, 0x0000000087a00000, 0x0000000087b00000| 0%| F| |TAMS 0x0000000087a00000| PB 0x0000000087a00000| Untracked +| 93|0x0000000087b00000, 0x0000000087b00000, 0x0000000087c00000| 0%| F| |TAMS 0x0000000087b00000| PB 0x0000000087b00000| Untracked +| 94|0x0000000087c00000, 0x0000000087c00000, 0x0000000087d00000| 0%| F| |TAMS 0x0000000087c00000| PB 0x0000000087c00000| Untracked +| 95|0x0000000087d00000, 0x0000000087d00000, 0x0000000087e00000| 0%| F| |TAMS 0x0000000087d00000| PB 0x0000000087d00000| Untracked +| 96|0x0000000087e00000, 0x0000000087e00000, 0x0000000087f00000| 0%| F| |TAMS 0x0000000087e00000| PB 0x0000000087e00000| Untracked +| 97|0x0000000087f00000, 0x0000000087f00000, 0x0000000088000000| 0%| F| |TAMS 0x0000000087f00000| PB 0x0000000087f00000| Untracked +| 98|0x0000000088000000, 0x0000000088000000, 0x0000000088100000| 0%| F| |TAMS 0x0000000088000000| PB 0x0000000088000000| Untracked +| 99|0x0000000088100000, 0x0000000088100000, 0x0000000088200000| 0%| F| |TAMS 0x0000000088100000| PB 0x0000000088100000| Untracked +| 100|0x0000000088200000, 0x0000000088200000, 0x0000000088300000| 0%| F| |TAMS 0x0000000088200000| PB 0x0000000088200000| Untracked +| 101|0x0000000088300000, 0x0000000088300000, 0x0000000088400000| 0%| F| |TAMS 0x0000000088300000| PB 0x0000000088300000| Untracked +| 102|0x0000000088400000, 0x0000000088400000, 0x0000000088500000| 0%| F| |TAMS 0x0000000088400000| PB 0x0000000088400000| Untracked +| 103|0x0000000088500000, 0x0000000088500000, 0x0000000088600000| 0%| F| |TAMS 0x0000000088500000| PB 0x0000000088500000| Untracked +| 104|0x0000000088600000, 0x0000000088600000, 0x0000000088700000| 0%| F| |TAMS 0x0000000088600000| PB 0x0000000088600000| Untracked +| 105|0x0000000088700000, 0x0000000088700000, 0x0000000088800000| 0%| F| |TAMS 0x0000000088700000| PB 0x0000000088700000| Untracked +| 106|0x0000000088800000, 0x0000000088800000, 0x0000000088900000| 0%| F| |TAMS 0x0000000088800000| PB 0x0000000088800000| Untracked +| 107|0x0000000088900000, 0x0000000088900000, 0x0000000088a00000| 0%| F| |TAMS 0x0000000088900000| PB 0x0000000088900000| Untracked +| 108|0x0000000088a00000, 0x0000000088a00000, 0x0000000088b00000| 0%| F| |TAMS 0x0000000088a00000| PB 0x0000000088a00000| Untracked +| 109|0x0000000088b00000, 0x0000000088b00000, 0x0000000088c00000| 0%| F| |TAMS 0x0000000088b00000| PB 0x0000000088b00000| Untracked +| 110|0x0000000088c00000, 0x0000000088c00000, 0x0000000088d00000| 0%| F| |TAMS 0x0000000088c00000| PB 0x0000000088c00000| Untracked +| 111|0x0000000088d00000, 0x0000000088d00000, 0x0000000088e00000| 0%| F| |TAMS 0x0000000088d00000| PB 0x0000000088d00000| Untracked +| 112|0x0000000088e00000, 0x0000000088e00000, 0x0000000088f00000| 0%| F| |TAMS 0x0000000088e00000| PB 0x0000000088e00000| Untracked +| 113|0x0000000088f00000, 0x0000000088f00000, 0x0000000089000000| 0%| F| |TAMS 0x0000000088f00000| PB 0x0000000088f00000| Untracked +| 114|0x0000000089000000, 0x0000000089000000, 0x0000000089100000| 0%| F| |TAMS 0x0000000089000000| PB 0x0000000089000000| Untracked +| 115|0x0000000089100000, 0x0000000089100000, 0x0000000089200000| 0%| F| |TAMS 0x0000000089100000| PB 0x0000000089100000| Untracked +| 116|0x0000000089200000, 0x0000000089200000, 0x0000000089300000| 0%| F| |TAMS 0x0000000089200000| PB 0x0000000089200000| Untracked +| 117|0x0000000089300000, 0x0000000089300000, 0x0000000089400000| 0%| F| |TAMS 0x0000000089300000| PB 0x0000000089300000| Untracked +| 118|0x0000000089400000, 0x0000000089400000, 0x0000000089500000| 0%| F| |TAMS 0x0000000089400000| PB 0x0000000089400000| Untracked +| 119|0x0000000089500000, 0x0000000089500000, 0x0000000089600000| 0%| F| |TAMS 0x0000000089500000| PB 0x0000000089500000| Untracked +| 120|0x0000000089600000, 0x0000000089600000, 0x0000000089700000| 0%| F| |TAMS 0x0000000089600000| PB 0x0000000089600000| Untracked +| 121|0x0000000089700000, 0x0000000089700000, 0x0000000089800000| 0%| F| |TAMS 0x0000000089700000| PB 0x0000000089700000| Untracked +| 122|0x0000000089800000, 0x0000000089800000, 0x0000000089900000| 0%| F| |TAMS 0x0000000089800000| PB 0x0000000089800000| Untracked +| 123|0x0000000089900000, 0x0000000089900000, 0x0000000089a00000| 0%| F| |TAMS 0x0000000089900000| PB 0x0000000089900000| Untracked +| 124|0x0000000089a00000, 0x0000000089a15a08, 0x0000000089b00000| 8%| E| |TAMS 0x0000000089a00000| PB 0x0000000089a00000| Complete +| 125|0x0000000089b00000, 0x0000000089c00000, 0x0000000089c00000|100%| E|CS|TAMS 0x0000000089b00000| PB 0x0000000089b00000| Complete +| 126|0x0000000089c00000, 0x0000000089cfe610, 0x0000000089d00000| 99%| E| |TAMS 0x0000000089c00000| PB 0x0000000089c00000| Complete +| 127|0x0000000089d00000, 0x0000000089e00000, 0x0000000089e00000|100%| E|CS|TAMS 0x0000000089d00000| PB 0x0000000089d00000| Complete + +Card table byte_map: [0x0000018ae0bb0000,0x0000018ae0fb0000] _byte_map_base: 0x0000018ae07a1000 + +Marking Bits: (CMBitMap*) 0x0000018ac904d580 + Bits: [0x0000018ae0fb0000, 0x0000018ae2f38000) + +Polling page: 0x0000018ac87d0000 + +Metaspace: + +Usage: + Non-class: 5.92 MB used. + Class: 504.66 KB used. + Both: 6.42 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 6.00 MB ( 9%) committed, 1 nodes. + Class space: 1.00 GB reserved, 512.00 KB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 6.50 MB ( <1%) committed. + +Chunk freelists: + Non-Class: 9.98 MB + Class: 15.49 MB + Both: 25.48 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 21.00 MB +CDS: off + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - use_allocation_guard: 0. + + +Internal statistics: + +num_allocs_failed_limit: 0. +num_arena_births: 20. +num_arena_deaths: 0. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 104. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 0. +num_chunks_taken_from_freelist: 42. +num_chunk_merges: 0. +num_chunk_splits: 24. +num_chunks_enlarged: 13. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=120000Kb used=62Kb max_used=62Kb free=119937Kb + bounds [0x0000018ad8f50000, 0x0000018ad91c0000, 0x0000018ae0480000] +CodeHeap 'profiled nmethods': size=120000Kb used=210Kb max_used=210Kb free=119790Kb + bounds [0x0000018ad1480000, 0x0000018ad16f0000, 0x0000018ad89b0000] +CodeHeap 'non-nmethods': size=5760Kb used=1272Kb max_used=1289Kb free=4487Kb + bounds [0x0000018ad89b0000, 0x0000018ad8c20000, 0x0000018ad8f50000] + total_blobs=585 nmethods=194 adapters=296 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 0.230 Thread 0x0000018a840886b0 184 3 java.lang.System::allowSecurityManager (13 bytes) +Event: 0.230 Thread 0x0000018a840886b0 nmethod 184 0x0000018ad14b0c10 code [0x0000018ad14b0da0, 0x0000018ad14b0ea0] +Event: 0.230 Thread 0x0000018a840886b0 185 3 jdk.internal.misc.Unsafe::pickPos (14 bytes) +Event: 0.230 Thread 0x0000018a840886b0 nmethod 185 0x0000018ad14b0f10 code [0x0000018ad14b10a0, 0x0000018ad14b11a0] +Event: 0.231 Thread 0x0000018a840886b0 186 3 java.util.Arrays::copyOf (33 bytes) +Event: 0.231 Thread 0x0000018a840886b0 nmethod 186 0x0000018ad14b1210 code [0x0000018ad14b1400, 0x0000018ad14b18d0] +Event: 0.232 Thread 0x0000018a840886b0 187 3 java.lang.String::substring (58 bytes) +Event: 0.234 Thread 0x0000018a840886b0 nmethod 187 0x0000018ad14b1a10 code [0x0000018ad14b1c40, 0x0000018ad14b2240] +Event: 0.234 Thread 0x0000018a840886b0 188 3 java.lang.AbstractStringBuilder:: (39 bytes) +Event: 0.234 Thread 0x0000018a840886b0 nmethod 188 0x0000018ad14b2490 code [0x0000018ad14b2640, 0x0000018ad14b28c0] +Event: 0.234 Thread 0x0000018a840886b0 189 3 java.lang.StringBuilder::toString (9 bytes) +Event: 0.234 Thread 0x0000018a840886b0 nmethod 189 0x0000018ad14b2990 code [0x0000018ad14b2b40, 0x0000018ad14b2d48] +Event: 0.234 Thread 0x0000018a840886b0 190 3 java.lang.StringLatin1::lastIndexOf (40 bytes) +Event: 0.235 Thread 0x0000018a840886b0 nmethod 190 0x0000018ad14b2e10 code [0x0000018ad14b2fe0, 0x0000018ad14b33d0] +Event: 0.235 Thread 0x0000018a840886b0 191 3 jdk.internal.misc.Unsafe::toUnsignedLong (7 bytes) +Event: 0.235 Thread 0x0000018a840886b0 nmethod 191 0x0000018ad14b3510 code [0x0000018ad14b36a0, 0x0000018ad14b37a0] +Event: 0.237 Thread 0x0000018a840886b0 193 3 java.lang.String::startsWith (123 bytes) +Event: 0.238 Thread 0x0000018a840886b0 nmethod 193 0x0000018ad14b3810 code [0x0000018ad14b3a40, 0x0000018ad14b41b8] +Event: 0.238 Thread 0x0000018a840886b0 194 3 jdk.internal.util.Preconditions::checkIndex (18 bytes) +Event: 0.238 Thread 0x0000018a840886b0 nmethod 194 0x0000018ad14b4410 code [0x0000018ad14b45c0, 0x0000018ad14b4760] + +GC Heap History (0 events): +No events + +Dll operation events (5 events): +Event: 0.012 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll +Event: 0.101 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll +Event: 0.201 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll +Event: 0.202 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll +Event: 0.208 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll + +Deoptimization events (6 events): +Event: 0.216 Thread 0x0000018ac6daf0f0 DEOPT PACKING pc=0x0000018ad14a6255 sp=0x0000004fc87fc3d0 +Event: 0.216 Thread 0x0000018ac6daf0f0 DEOPT UNPACKING pc=0x0000018ad8a04e42 sp=0x0000004fc87fb840 mode 0 +Event: 0.216 Thread 0x0000018ac6daf0f0 DEOPT PACKING pc=0x0000018ad14a6255 sp=0x0000004fc87fc3d0 +Event: 0.216 Thread 0x0000018ac6daf0f0 DEOPT UNPACKING pc=0x0000018ad8a04e42 sp=0x0000004fc87fb840 mode 0 +Event: 0.217 Thread 0x0000018ac6daf0f0 DEOPT PACKING pc=0x0000018ad14a6255 sp=0x0000004fc87fc3d0 +Event: 0.217 Thread 0x0000018ac6daf0f0 DEOPT UNPACKING pc=0x0000018ad8a04e42 sp=0x0000004fc87fb840 mode 0 + +Classes loaded (20 events): +Event: 0.218 Loading class java/util/LinkedHashMap +Event: 0.218 Loading class java/util/SequencedMap +Event: 0.218 Loading class java/util/SequencedMap done +Event: 0.218 Loading class java/util/LinkedHashMap done +Event: 0.219 Loading class java/util/jar/Manifest$FastInputStream +Event: 0.219 Loading class java/util/jar/Manifest$FastInputStream done +Event: 0.219 Loading class java/io/ByteArrayOutputStream +Event: 0.219 Loading class java/io/ByteArrayOutputStream done +Event: 0.219 Loading class java/util/jar/Attributes$Name +Event: 0.219 Loading class java/util/jar/Attributes$Name done +Event: 0.220 Loading class java/util/zip/CRC32 +Event: 0.220 Loading class java/util/zip/Checksum +Event: 0.220 Loading class java/util/zip/Checksum done +Event: 0.220 Loading class java/util/zip/CRC32 done +Event: 0.220 Loading class java/util/zip/Checksum$1 +Event: 0.220 Loading class java/util/zip/Checksum$1 done +Event: 0.221 Loading class java/util/concurrent/ConcurrentHashMap$ForwardingNode +Event: 0.221 Loading class java/util/concurrent/ConcurrentHashMap$ForwardingNode done +Event: 0.221 Loading class java/io/IOException +Event: 0.221 Loading class java/io/IOException done + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (0 events): +No events + +ZGC Phase Switch (0 events): +No events + +VM Operations (2 events): +Event: 0.218 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 0.218 Executing VM operation: HandshakeAllThreads (Deoptimize) done + +Events (11 events): +Event: 0.031 Thread 0x0000018ac6daf0f0 Thread added: 0x0000018ac6daf0f0 +Event: 0.096 Thread 0x0000018a84073340 Thread added: 0x0000018a84073340 +Event: 0.096 Thread 0x0000018a8405b3f0 Thread added: 0x0000018a8405b3f0 +Event: 0.099 Thread 0x0000018a84066da0 Thread added: 0x0000018a84066da0 +Event: 0.099 Thread 0x0000018a84067800 Thread added: 0x0000018a84067800 +Event: 0.099 Thread 0x0000018a84064fd0 Thread added: 0x0000018a84064fd0 +Event: 0.099 Thread 0x0000018a84068670 Thread added: 0x0000018a84068670 +Event: 0.099 Thread 0x0000018a84069e10 Thread added: 0x0000018a84069e10 +Event: 0.099 Thread 0x0000018a840886b0 Thread added: 0x0000018a840886b0 +Event: 0.149 Thread 0x0000018a84220d40 Thread added: 0x0000018a84220d40 +Event: 0.155 Thread 0x0000018a84224620 Thread added: 0x0000018a84224620 + + +Dynamic libraries: +0x00007ff75dbb0000 - 0x00007ff75dbc0000 C:\Program Files\Java\jdk-21\bin\java.exe +0x00007ffebe9d0000 - 0x00007ffebebc8000 C:\Windows\SYSTEM32\ntdll.dll +0x00007ffebcf80000 - 0x00007ffebd03d000 C:\Windows\System32\KERNEL32.DLL +0x00007ffebc680000 - 0x00007ffebc94e000 C:\Windows\System32\KERNELBASE.dll +0x00007ffebc140000 - 0x00007ffebc240000 C:\Windows\System32\ucrtbase.dll +0x00007ffe879f0000 - 0x00007ffe87a0b000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll +0x00007ffe87ad0000 - 0x00007ffe87ae9000 C:\Program Files\Java\jdk-21\bin\jli.dll +0x00007ffebcb80000 - 0x00007ffebcc2e000 C:\Windows\System32\ADVAPI32.dll +0x00007ffebdec0000 - 0x00007ffebdf5e000 C:\Windows\System32\msvcrt.dll +0x00007ffebd3a0000 - 0x00007ffebd43c000 C:\Windows\System32\sechost.dll +0x00007ffebe860000 - 0x00007ffebe985000 C:\Windows\System32\RPCRT4.dll +0x00007ffebcde0000 - 0x00007ffebcf80000 C:\Windows\System32\USER32.dll +0x00007ffebc350000 - 0x00007ffebc372000 C:\Windows\System32\win32u.dll +0x00007ffebe1a0000 - 0x00007ffebe1ca000 C:\Windows\System32\GDI32.dll +0x00007ffebc240000 - 0x00007ffebc34b000 C:\Windows\System32\gdi32full.dll +0x00007ffebc380000 - 0x00007ffebc41d000 C:\Windows\System32\msvcp_win.dll +0x00007ffe921b0000 - 0x00007ffe9244a000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll +0x00007ffeb6c10000 - 0x00007ffeb6c1a000 C:\Windows\SYSTEM32\VERSION.dll +0x00007ffebe170000 - 0x00007ffebe1a0000 C:\Windows\System32\IMM32.DLL +0x00007ffeac7e0000 - 0x00007ffeac7ec000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll +0x00007ffe7f7a0000 - 0x00007ffe7f82e000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll +0x00007ffe47a70000 - 0x00007ffe4877d000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll +0x00007ffebe640000 - 0x00007ffebe6ab000 C:\Windows\System32\WS2_32.dll +0x00007ffebbeb0000 - 0x00007ffebbefb000 C:\Windows\SYSTEM32\POWRPROF.dll +0x00007ffea6450000 - 0x00007ffea6477000 C:\Windows\SYSTEM32\WINMM.dll +0x00007ffebbe90000 - 0x00007ffebbea2000 C:\Windows\SYSTEM32\UMPDC.dll +0x00007ffeb9fd0000 - 0x00007ffeb9fe2000 C:\Windows\SYSTEM32\kernel.appcore.dll +0x00007ffeab450000 - 0x00007ffeab45a000 C:\Program Files\Java\jdk-21\bin\jimage.dll +0x00007ffea64a0000 - 0x00007ffea6684000 C:\Windows\SYSTEM32\DBGHELP.DLL +0x00007ffea62d0000 - 0x00007ffea62fc000 C:\Windows\SYSTEM32\dbgcore.DLL +0x00007ffebc490000 - 0x00007ffebc512000 C:\Windows\System32\bcryptPrimitives.dll +0x00007ffe87840000 - 0x00007ffe8785f000 C:\Program Files\Java\jdk-21\bin\java.dll +0x00007ffebd6e0000 - 0x00007ffebde24000 C:\Windows\System32\SHELL32.dll +0x00007ffeba1d0000 - 0x00007ffeba964000 C:\Windows\SYSTEM32\windows.storage.dll +0x00007ffebd040000 - 0x00007ffebd394000 C:\Windows\System32\combase.dll +0x00007ffebb9a0000 - 0x00007ffebb9d0000 C:\Windows\SYSTEM32\Wldp.dll +0x00007ffebd620000 - 0x00007ffebd6cd000 C:\Windows\System32\SHCORE.dll +0x00007ffebde60000 - 0x00007ffebdeb5000 C:\Windows\System32\shlwapi.dll +0x00007ffebc030000 - 0x00007ffebc04f000 C:\Windows\SYSTEM32\profapi.dll +0x00007ffe71090000 - 0x00007ffe71167000 C:\Program Files\Java\jdk-21\bin\jsvml.dll +0x00007ffeab370000 - 0x00007ffeab380000 C:\Program Files\Java\jdk-21\bin\net.dll +0x00007ffeb6410000 - 0x00007ffeb651a000 C:\Windows\SYSTEM32\WINHTTP.dll +0x00007ffebb780000 - 0x00007ffebb7ea000 C:\Windows\system32\mswsock.dll +0x00007ffe87670000 - 0x00007ffe87686000 C:\Program Files\Java\jdk-21\bin\nio.dll +0x00007ffe87650000 - 0x00007ffe87668000 C:\Program Files\Java\jdk-21\bin\zip.dll + +dbghelp: loaded successfully - version: 4.0.5 - missing functions: none +symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e;C:\Program Files\Java\jdk-21\bin\server + +VM Arguments: +jvm_args: -XX:+ShowCodeDetailsInExceptionMessages +java_command: sae.Main +java_class_path (initial): C:\Users\Etudiant\Documents\GitHub\sae-3-01-devapp-2024-2025-g1b5\Application\app\target\classes;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-controls\21\javafx-controls-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-controls\21\javafx-controls-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-graphics\21\javafx-graphics-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-graphics\21\javafx-graphics-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-fxml\21\javafx-fxml-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-fxml\21\javafx-fxml-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-base\21\javafx-base-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-base\21\javafx-base-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-web\21\javafx-web-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-web\21\javafx-web-21-win.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-media\21\javafx-media-21.jar;C:\Users\Etudiant\.m2\repository\org\openjfx\javafx-media\21\javafx-media-21-win.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.15.2\jackson-databind-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.15.2\jackson-annotations-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.15.2\jackson-core-2.15.2.jar;C:\Users\Etudiant\.m2\repository\com\googlecode\json-simple\json-simple\1.1.1\json-simple-1.1.1.jar;C:\Users\Etudiant\.m2\repository\junit\junit\4.10\junit-4.10.jar;C:\Users\Etudiant\.m2\repository\org\hamcrest\hamcrest-core\1.1\hamcrest-core-1.1.jar;C:\Users\Etudiant\.m2\repository\org\eclipse\paho\org.eclipse.paho.client.mqttv3\1.2.5\org.eclipse.paho.client.mqttv3-1.2.5.jar +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 4 {product} {ergonomic} + uint ConcGCThreads = 2 {product} {ergonomic} + uint G1ConcRefinementThreads = 8 {product} {ergonomic} + size_t G1HeapRegionSize = 1048576 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 134217728 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 2116026368 {product} {ergonomic} + size_t MaxNewSize = 1268776960 {product} {ergonomic} + size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + bool ShowCodeDetailsInExceptionMessages = true {manageable} {command line} + size_t SoftMaxHeapSize = 2116026368 {manageable} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags foldmultilines=false + #1: stderr all=off uptime,level,tags foldmultilines=false + +Environment Variables: +JAVA_HOME=C:\Program Files\Java\jdk-21 +PATH=C:\Program Files\PowerShell\7;C:\Python312\Scripts\;C:\Python312\;C:\app\Etudiant\product\21c\dbhomeXE\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Python310\Scripts\;C:\Program Files\Python310\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files\Microsoft VS Code\bin;C:\ProgramData\chocolatey\bin;C:\Program Files\Java\jdk-17.0.3.1\bin;C:\apache-ant-1.10.7\bin;C:\apache-maven-3.6.2\bin;C:\GnuCobol3.1\bin;C:\Gradle\bin;C:\Program Files\Graphviz\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\TortoiseGit\bin;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;C:\bin;C:\src\flutter\bin;C:\tools\dart-sdk\bin;C:\Program Files\Php;C:\Program Files\PowerShell\7\;C:\Program Files\nodejs\;C:\Users\Etudiant\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Oracle\VirtualBox;C:\Users\Etudiant\AppData\Roaming\npm;C:\Users\Etudiant\AppData\Local\GitHubDesktop\bin;C:\Users\Etudiant\AppData\Local\Programs\Git\cmd +USERNAME=Etudiant +LANG=en_US.UTF-8 +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel +TMP=C:\Users\Etudiant\AppData\Local\Temp +TEMP=C:\Users\Etudiant\AppData\Local\Temp + + + + +Periodic native trim disabled + +--------------- S Y S T E M --------------- + +OS: + Windows 10 , 64 bit Build 19041 (10.0.19041.1806) +OS uptime: 0 days 5:55 hours +Hyper-V role detected + +CPU: total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 94 stepping 3 microcode 0xf0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c +Processor Information for all 8 processors : + Max Mhz: 3408, Current Mhz: 3408, Mhz Limit: 3408 + +Memory: 4k page, system-wide physical 8067M (775M free) +TotalPageFile size 11011M (AvailPageFile size 13M) +current process WorkingSet (physical memory assigned to process): 33M, peak: 33M +current process commit charge ("private bytes"): 205M, peak: 205M + +vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.3+7-LTS-152) for windows-amd64 JRE (21.0.3+7-LTS-152), built on 2024-03-11T17:42:26Z by "mach5one" with MS VC++ 17.6 (VS2022) + +END. diff --git a/replay_pid6220.log b/replay_pid6220.log new file mode 100644 index 00000000..0e4081c5 --- /dev/null +++ b/replay_pid6220.log @@ -0,0 +1,2531 @@ +version 2 +JvmtiExport can_access_local_variables 0 +JvmtiExport can_hotswap_or_post_breakpoint 0 +JvmtiExport can_post_on_exceptions 0 +# 289 ciObject found +instanceKlass com/sun/javafx/css/ParsedValueImpl +ciInstanceKlass java/lang/Cloneable 1 0 7 100 1 100 1 1 1 +instanceKlass com/sun/javafx/css/StyleManager$RefList +instanceKlass javafx/css/converter/FontConverter$FontSizeConverter$Holder +instanceKlass com/sun/javafx/css/SelectorPartitioning$Slot +instanceKlass com/sun/javafx/css/BitSet$1 +instanceKlass com/sun/javafx/css/SelectorPartitioning$Partition +instanceKlass javafx/css/converter/StopConverter$Holder +instanceKlass javafx/css/converter/LadderConverter$Holder +instanceKlass javafx/css/converter/DeriveColorConverter$Holder +instanceKlass javafx/css/Size +instanceKlass javafx/css/Declaration +instanceKlass javafx/css/Rule$Observables +instanceKlass @bci com/sun/javafx/css/SelectorPartitioning ()V 28 argL0 ; # com/sun/javafx/css/SelectorPartitioning$$Lambda+0x000001514e139100 +instanceKlass com/sun/javafx/css/SelectorPartitioning$PartitionKey +instanceKlass com/sun/javafx/css/SelectorPartitioning +instanceKlass com/sun/javafx/css/StyleManager$StylesheetContainer +instanceKlass javafx/css/StyleClass +instanceKlass javafx/css/Rule +instanceKlass javafx/css/StyleConverter$StringStore +instanceKlass javafx/css/Stylesheet +instanceKlass com/sun/javafx/scene/text/TextLine +instanceKlass com/sun/javafx/scene/text/GlyphList +instanceKlass java/text/CharacterIterator +instanceKlass com/sun/javafx/text/PrismTextLayout +instanceKlass com/sun/javafx/scene/text/TextLayout +instanceKlass com/sun/javafx/text/PrismTextLayoutFactory +instanceKlass @bci javafx/scene/text/Text ()V 64 member ; # javafx/scene/text/Text$$Lambda+0x000001514e134ca8 +instanceKlass @bci javafx/scene/text/Text ()V 37 member ; # javafx/scene/text/Text$$Lambda+0x000001514e134a88 +instanceKlass javafx/beans/WeakInvalidationListener +instanceKlass javafx/scene/text/Text$1 +instanceKlass javafx/scene/shape/Shape$1 +instanceKlass com/sun/javafx/scene/text/TextSpan +instanceKlass com/sun/javafx/scene/shape/TextHelper$TextAccessor +instanceKlass com/sun/javafx/scene/shape/ShapeHelper$ShapeAccessor +instanceKlass com/sun/javafx/beans/event/AbstractNotifyListener +instanceKlass com/sun/javafx/scene/control/skin/Utils +instanceKlass @bci com/sun/javafx/css/StyleManager loadStylesheetUnPrivileged (Ljava/lang/String;)Ljavafx/css/Stylesheet; 7 member ; # com/sun/javafx/css/StyleManager$$Lambda+0x000001514e12a3b0 +instanceKlass @bci com/sun/javafx/application/PlatformImpl _setPlatformUserAgentStylesheet (Ljava/lang/String;)V 370 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e12a190 +instanceKlass @bci com/sun/javafx/application/PlatformImpl _setAccessibilityTheme (Ljava/lang/String;)V 0 argL0 ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e129f78 +instanceKlass @bci com/sun/glass/ui/win/WinApplication getHighContrastScheme (Ljava/lang/String;)Ljava/lang/String; 11 member ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e129d38 +instanceKlass java/util/ResourceBundle$Control$2 +instanceKlass java/util/stream/AbstractSpinedBuffer +instanceKlass java/util/stream/Node$Builder +instanceKlass java/util/stream/Node$OfDouble +instanceKlass java/util/stream/Node$OfLong +instanceKlass java/util/stream/Node$OfInt +instanceKlass java/util/stream/Node$OfPrimitive +instanceKlass java/util/stream/Nodes$EmptyNode +instanceKlass java/util/stream/Node +instanceKlass java/util/stream/Nodes +instanceKlass @bci java/util/stream/ReferencePipeline toArray ()[Ljava/lang/Object; 1 argL0 ; # java/util/stream/ReferencePipeline$$Lambda+0x000001514e14e340 +instanceKlass java/util/function/IntFunction +instanceKlass java/util/ImmutableCollections$Access$1 +instanceKlass jdk/internal/access/JavaUtilCollectionAccess +instanceKlass java/util/ImmutableCollections$Access +instanceKlass @bci java/util/ResourceBundle$ResourceBundleControlProviderHolder lambda$static$0 ()Ljava/util/List; 11 argL0 ; # java/util/ResourceBundle$ResourceBundleControlProviderHolder$$Lambda+0x000001514e14dae0 +instanceKlass @cpi java/util/ResourceBundle$ResourceBundleControlProviderHolder 125 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e12c000 +instanceKlass java/util/ServiceLoader$ProviderSpliterator +instanceKlass java/util/spi/ResourceBundleControlProvider +instanceKlass @bci java/util/ResourceBundle$ResourceBundleControlProviderHolder ()V 0 argL0 ; # java/util/ResourceBundle$ResourceBundleControlProviderHolder$$Lambda+0x000001514e14d438 +instanceKlass @bci com/sun/javafx/css/SelectorPartitioning ()V 28 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e11bc00 +instanceKlass java/util/ResourceBundle$ResourceBundleControlProviderHolder +instanceKlass com/sun/javafx/tk/quantum/QuantumToolkit$6 +instanceKlass @bci com/sun/javafx/application/PlatformImpl _setPlatformUserAgentStylesheet (Ljava/lang/String;)V 8 argL0 ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e1290b8 +instanceKlass javafx/scene/control/Control$1 +instanceKlass javafx/scene/control/Skin +instanceKlass com/sun/javafx/scene/control/ControlHelper$ControlAccessor +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e11b800 +instanceKlass java/lang/invoke/MethodHandle$1 +instanceKlass java/util/AbstractList$SubList$1 +instanceKlass javafx/collections/ModifiableObservableListBase$SubObservableList +instanceKlass sun/reflect/generics/reflectiveObjects/LazyReflectiveObjectGenerator +instanceKlass sun/reflect/generics/tree/TypeVariableSignature +instanceKlass sun/reflect/generics/tree/ClassSignature +instanceKlass sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl +instanceKlass java/lang/reflect/ParameterizedType +instanceKlass sun/reflect/generics/tree/MethodTypeSignature +instanceKlass sun/reflect/generics/tree/Signature +instanceKlass sun/reflect/generics/tree/FormalTypeParameter +instanceKlass sun/reflect/generics/repository/AbstractRepository +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e11b400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e11b000 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e11ac00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e11a800 +# instanceKlass java/lang/invoke/LambdaForm$BMH+0x000001514e11a400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e11a000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e119c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e119800 +instanceKlass java/lang/invoke/ClassSpecializer$Factory$1Var +# instanceKlass java/lang/invoke/LambdaForm$BMH+0x000001514e119400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e119000 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e118c00 +instanceKlass sun/invoke/util/ValueConversions$1 +instanceKlass sun/invoke/util/ValueConversions$WrapperCache +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e118800 +instanceKlass com/sun/javafx/util/WeakReferenceQueue$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e118400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e118000 +instanceKlass java/util/LinkedList$ListItr +instanceKlass com/sun/javafx/util/WeakReferenceQueue +instanceKlass javafx/scene/layout/GridPane$CompositeSize +instanceKlass @bci javafx/scene/layout/GridPane ()V 53 member ; # javafx/scene/layout/GridPane$$Lambda+0x000001514e10bbc0 +instanceKlass @bci javafx/scene/layout/GridPane ()V 16 argL0 ; # javafx/scene/layout/GridPane$$Lambda+0x000001514e10b0b0 +instanceKlass @bci jdk/internal/reflect/MethodHandleObjectFieldAccessorImpl set (Ljava/lang/Object;Ljava/lang/Object;)V 41 ; # java/lang/invoke/LambdaForm$MH+0x000001514e111c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e111800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e111400 +instanceKlass javafx/fxml/FXML +instanceKlass java/lang/Process +instanceKlass javafx/fxml/FXMLLoader$ControllerAccessor$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e111000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e110c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e110800 +instanceKlass java/lang/reflect/AnnotatedType +instanceKlass java/lang/reflect/TypeVariable +instanceKlass @bci com/sun/javafx/fxml/ModuleHelper ()V 0 argL0 ; # com/sun/javafx/fxml/ModuleHelper$$Lambda+0x000001514e1088a8 +instanceKlass com/sun/javafx/fxml/ModuleHelper +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e110400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e110000 +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 form names 8 function resolvedHandle form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e10fc00 +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e10f800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10f400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10f000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10ec00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10e800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10e400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10e000 +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 form names 12 function resolvedHandle form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e10dc00 +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e10d800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10d400 +instanceKlass @bci com/sun/javafx/fxml/BeanAdapter getMethodName (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; 14 argL1 argL0 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e10d000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10cc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10c800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10c400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e10c000 +instanceKlass javafx/scene/Node$AccessibilityProperties +instanceKlass javafx/scene/Cursor +instanceKlass javafx/scene/SnapshotParameters +instanceKlass com/sun/javafx/scene/EventHandlerProperties +instanceKlass javafx/scene/Node$NodeTransformation +instanceKlass javafx/scene/input/Clipboard +instanceKlass com/sun/javafx/geom/Point2D +instanceKlass javafx/geometry/Point2D +instanceKlass javafx/scene/Node$MiscProperties +instanceKlass javafx/css/Selector +instanceKlass com/sun/javafx/scene/input/PickResultChooser +instanceKlass com/sun/javafx/geom/PickRay +instanceKlass com/sun/javafx/fxml/BeanAdapter$MethodCache +instanceKlass com/sun/javafx/fxml/BeanAdapter$1 +instanceKlass java/lang/Class$AnnotationData +instanceKlass java/lang/annotation/Target +instanceKlass sun/reflect/annotation/ExceptionProxy +instanceKlass java/lang/annotation/Documented +instanceKlass java/lang/reflect/Proxy$ProxyBuilder$1 +instanceKlass jdk/internal/org/objectweb/asm/Edge +instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/Method;Ljava/lang/Class;)V 23 argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x000001514e1457d0 +instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/ProxyGenerator$ProxyMethod;)V 10 argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x000001514e145598 +instanceKlass java/util/StringJoiner +instanceKlass java/lang/reflect/ProxyGenerator$ProxyMethod +instanceKlass @bci java/lang/reflect/Proxy getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 member ; # java/lang/reflect/Proxy$$Lambda+0x000001514e144e58 +instanceKlass @bci java/lang/WeakPairMap computeIfAbsent (Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object; 18 member ; # java/lang/WeakPairMap$$Lambda+0x000001514e144a10 +instanceKlass @bci java/lang/Module implAddExportsOrOpens (Ljava/lang/String;Ljava/lang/Module;ZZ)V 145 argL0 ; # java/lang/Module$$Lambda+0x000001514e1447e8 +instanceKlass @bci java/lang/module/ModuleDescriptor$Builder packages (Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Builder; 17 argL0 ; # java/lang/module/ModuleDescriptor$Builder$$Lambda+0x800000002 +instanceKlass java/lang/WeakPairMap$Pair$Lookup +instanceKlass java/lang/WeakPairMap$Pair +instanceKlass java/lang/WeakPairMap +instanceKlass java/lang/Module$ReflectionData +instanceKlass java/lang/module/ModuleDescriptor$Builder +instanceKlass @bci java/lang/reflect/Proxy$ProxyBuilder getDynamicModule (Ljava/lang/ClassLoader;)Ljava/lang/Module; 4 argL0 ; # java/lang/reflect/Proxy$ProxyBuilder$$Lambda+0x000001514e143eb0 +instanceKlass java/lang/PublicMethods +instanceKlass java/util/Collections$1 +instanceKlass java/lang/reflect/Proxy$ProxyBuilder +instanceKlass @bci java/lang/reflect/Proxy getProxyConstructor (Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor; 35 argL0 ; # java/lang/reflect/Proxy$$Lambda+0x000001514e142c10 +instanceKlass java/lang/reflect/Proxy +instanceKlass sun/reflect/annotation/AnnotationInvocationHandler +instanceKlass java/lang/reflect/InvocationHandler +instanceKlass sun/reflect/annotation/AnnotationParser$1 +instanceKlass java/lang/annotation/Inherited +instanceKlass java/lang/annotation/Retention +instanceKlass sun/reflect/annotation/AnnotationType$1 +instanceKlass sun/reflect/annotation/AnnotationType +instanceKlass java/lang/reflect/GenericArrayType +instanceKlass javafx/beans/DefaultProperty +instanceKlass sun/reflect/generics/visitor/Reifier +instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor +instanceKlass sun/reflect/generics/factory/CoreReflectionFactory +instanceKlass sun/reflect/generics/factory/GenericsFactory +instanceKlass sun/reflect/generics/scope/AbstractScope +instanceKlass sun/reflect/generics/scope/Scope +instanceKlass sun/reflect/generics/tree/ClassTypeSignature +instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature +instanceKlass sun/reflect/generics/tree/FieldTypeSignature +instanceKlass sun/reflect/generics/tree/BaseType +instanceKlass sun/reflect/generics/tree/TypeSignature +instanceKlass sun/reflect/generics/tree/ReturnType +instanceKlass sun/reflect/generics/tree/TypeArgument +instanceKlass sun/reflect/generics/tree/TypeTree +instanceKlass sun/reflect/generics/tree/Tree +instanceKlass sun/reflect/generics/parser/SignatureParser +instanceKlass com/sun/javafx/beans/IDProperty +instanceKlass java/util/StringTokenizer +instanceKlass com/sun/javafx/reflect/ConstructorUtil +instanceKlass javafx/scene/shape/Mesh +instanceKlass com/sun/javafx/reflect/ReflectUtil +instanceKlass sae/view/MenuController +instanceKlass javafx/fxml/FXMLLoader$Attribute +instanceKlass javafx/collections/MapChangeListener +instanceKlass javafx/beans/value/ChangeListener +instanceKlass javafx/scene/layout/ConstraintsBase +instanceKlass javafx/scene/control/Skinnable +instanceKlass java/util/LinkedList$Node +instanceKlass com/sun/org/apache/xerces/internal/util/XMLChar +instanceKlass com/sun/xml/internal/stream/util/BufferAllocator +instanceKlass com/sun/xml/internal/stream/util/ThreadLocalBufferAllocator +instanceKlass com/sun/xml/internal/stream/Entity +instanceKlass com/sun/org/apache/xerces/internal/util/XMLSymbols +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer +instanceKlass com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/util/MessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLErrorReporter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLLocator +instanceKlass com/sun/xml/internal/stream/XMLEntityStorage +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLEntityResolver +instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceContextWrapper +instanceKlass javax/xml/namespace/NamespaceContext +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLDTDDescription +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLGrammarDescription +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$TrailingMiscDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$PrologDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$XMLDeclDriver +instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceSupport +instanceKlass com/sun/org/apache/xerces/internal/xni/NamespaceContext +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl$AugmentationsItemsContainer +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/Augmentations +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl$Attribute +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLAttributes +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$FragmentContentDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$Driver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack2 +instanceKlass com/sun/org/apache/xerces/internal/xni/QName +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack +instanceKlass com/sun/org/apache/xerces/internal/util/XMLResourceIdentifierImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLResourceIdentifier +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLString +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner +instanceKlass com/sun/xml/internal/stream/XMLBufferListener +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponent +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentSource +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable$Entry +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLStreamReaderImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLInputSource +instanceKlass javax/xml/stream/util/StreamReaderDelegate +instanceKlass @bci javax/xml/stream/FactoryFinder newInstance (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;ZZ)Ljava/lang/Object; 104 member ; # javax/xml/stream/FactoryFinder$$Lambda+0x000001514e0711a0 +instanceKlass jdk/xml/internal/JdkConstants +instanceKlass javax/xml/parsers/SAXParserFactory +instanceKlass jdk/xml/internal/JdkXmlUtils +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager +instanceKlass com/sun/org/apache/xerces/internal/impl/PropertyManager +instanceKlass @bci jdk/xml/internal/SecuritySupport getContextClassLoader ()Ljava/lang/ClassLoader; 0 argL0 ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000001514e06e490 +instanceKlass @bci javax/xml/stream/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Object; 168 member ; # javax/xml/stream/FactoryFinder$$Lambda+0x000001514e06e270 +instanceKlass javax/xml/stream/FactoryFinder$1 +instanceKlass @bci jdk/xml/internal/SecuritySupport getFileInputStream (Ljava/io/File;)Ljava/io/FileInputStream; 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000001514e06de28 +instanceKlass @bci jdk/xml/internal/SecuritySupport doesFileExist (Ljava/io/File;)Z 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000001514e06dc08 +instanceKlass @bci javax/xml/stream/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Object; 1 member ; # javax/xml/stream/FactoryFinder$$Lambda+0x000001514e06d9e8 +instanceKlass @bci jdk/xml/internal/SecuritySupport getSystemProperty (Ljava/lang/String;)Ljava/lang/String; 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x000001514e06d7c8 +instanceKlass jdk/xml/internal/SecuritySupport +instanceKlass javax/xml/stream/FactoryFinder +instanceKlass javax/xml/stream/XMLInputFactory +instanceKlass javafx/fxml/FXMLLoader$ControllerAccessor +instanceKlass javafx/collections/MapChangeListener$Change +instanceKlass com/sun/javafx/collections/ObservableMapWrapper +instanceKlass com/sun/javafx/fxml/FXMLLoaderHelper +instanceKlass javafx/fxml/FXMLLoader$2 +instanceKlass @bci javafx/fxml/FXMLLoader ()V 72 argL0 ; # javafx/fxml/FXMLLoader$$Lambda+0x000001514e0fcc28 +instanceKlass javafx/fxml/FXMLLoader$1 +instanceKlass com/sun/javafx/application/PlatformImpl$2 +instanceKlass javafx/application/Platform +instanceKlass javafx/util/Builder +instanceKlass javafx/fxml/JavaFXBuilderFactory +instanceKlass @bci java/util/regex/CharPredicates ASCII_SPACE ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000027 +instanceKlass @bci javafx/fxml/FXMLLoader ()V 13 argL0 ; # javafx/fxml/FXMLLoader$$Lambda+0x000001514e0fb070 +instanceKlass javafx/fxml/FXMLLoader$Element +instanceKlass javax/xml/stream/XMLStreamReader +instanceKlass javax/xml/stream/XMLStreamConstants +instanceKlass java/io/Reader +instanceKlass javax/script/Bindings +instanceKlass com/sun/javafx/fxml/FXMLLoaderHelper$FXMLLoaderAccessor +instanceKlass javafx/util/BuilderFactory +instanceKlass javafx/fxml/FXMLLoader +instanceKlass javafx/event/WeakEventHandler +instanceKlass com/sun/javafx/event/CompositeEventHandler$EventProcessorRecord +instanceKlass com/sun/javafx/event/CompositeEventHandler +instanceKlass java/util/WeakHashMap$HashIterator +instanceKlass javafx/event/EventType +instanceKlass @bci javafx/event/Event ()V 0 argL0 ; # javafx/event/Event$$Lambda+0x000001514e0f6810 +instanceKlass @bci javafx/scene/Scene (Ljavafx/scene/Parent;DDLjavafx/scene/paint/Paint;ZLjavafx/scene/SceneAntialiasing;)V 318 member ; # javafx/scene/Scene$$Lambda+0x000001514e0f65f0 +instanceKlass javafx/event/EventHandler +instanceKlass java/util/EventListener +instanceKlass com/sun/javafx/logging/PlatformLogger$1 +instanceKlass javafx/scene/effect/Effect +instanceKlass javafx/css/converter/EffectConverter$Holder +instanceKlass javafx/css/converter/CursorConverter$Holder +instanceKlass javafx/scene/Node$StyleableProperties +instanceKlass javafx/css/converter/BooleanConverter$Holder +instanceKlass javafx/scene/layout/BorderWidths +instanceKlass com/sun/javafx/scene/layout/region/BorderImageSlices +instanceKlass com/sun/javafx/scene/layout/region/Margins +instanceKlass com/sun/javafx/scene/layout/region/Margins$Holder +instanceKlass javafx/scene/layout/Border +instanceKlass javafx/scene/layout/BackgroundSize +instanceKlass javafx/scene/layout/BackgroundPosition +instanceKlass com/sun/javafx/scene/layout/region/RepeatStruct +instanceKlass javafx/css/converter/URLConverter$Holder +instanceKlass javafx/scene/layout/CornerRadii +instanceKlass javafx/css/converter/PaintConverter$Holder +instanceKlass javafx/scene/layout/Background +instanceKlass javafx/css/converter/InsetsConverter$Holder +instanceKlass javafx/scene/layout/Region$StyleableProperties +instanceKlass @bci com/sun/javafx/css/StyleMap ()V 30 argL0 ; # com/sun/javafx/css/StyleMap$$Lambda+0x000001514e0eaf88 +instanceKlass com/sun/javafx/css/CascadingStyle +instanceKlass com/sun/javafx/css/StyleMap +instanceKlass @bci com/sun/javafx/css/StyleManager findMatchingStyles (Ljavafx/scene/Node;Ljavafx/scene/SubScene;[Ljava/util/Set;)Lcom/sun/javafx/css/StyleMap; 251 argL0 ; # com/sun/javafx/css/StyleManager$$Lambda+0x000001514e0ea8e8 +instanceKlass com/sun/javafx/css/StyleManager$CacheContainer +instanceKlass com/sun/javafx/css/StyleManager$ImageCache +instanceKlass com/sun/javafx/css/StyleManager$InstanceHolder +instanceKlass com/sun/javafx/css/StyleManager +instanceKlass javafx/css/converter/FontConverter$FontWeightConverter$Holder +instanceKlass javafx/css/converter/FontConverter$FontStyleConverter$Holder +instanceKlass javafx/css/converter/SizeConverter$Holder +instanceKlass javafx/css/converter/StringConverter$Holder +instanceKlass javafx/css/converter/FontConverter$Holder +instanceKlass com/sun/javafx/font/PrismFont +instanceKlass com/sun/javafx/font/CharToGlyphMapper +instanceKlass com/sun/javafx/font/FontStrike +instanceKlass com/sun/javafx/font/LogicalFont +instanceKlass com/sun/javafx/font/CompositeFontResource +instanceKlass com/sun/javafx/font/directwrite/IUnknown +instanceKlass @bci com/sun/javafx/font/directwrite/OS ()V 0 argL0 ; # com/sun/javafx/font/directwrite/OS$$Lambda+0x000001514e0e48a0 +instanceKlass com/sun/javafx/font/directwrite/OS +instanceKlass com/sun/javafx/font/FontFallbackInfo +instanceKlass com/sun/javafx/font/PrismFontFile +instanceKlass com/sun/javafx/font/FontConstants +instanceKlass com/sun/javafx/text/GlyphLayout +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e0e0000 +instanceKlass @bci com/sun/javafx/font/PrismFontFactory ()V 59 member ; # com/sun/javafx/font/PrismFontFactory$$Lambda+0x000001514e0def78 +instanceKlass java/io/FilenameFilter +instanceKlass com/sun/javafx/font/FontResource +instanceKlass com/sun/javafx/font/PGFont +instanceKlass com/sun/javafx/font/PrismFontFactory +instanceKlass com/sun/javafx/scene/text/FontHelper +instanceKlass javafx/scene/text/Font$1 +instanceKlass com/sun/javafx/scene/text/FontHelper$FontAccessor +instanceKlass javafx/scene/text/Font +instanceKlass javafx/css/StyleConverter +instanceKlass javafx/css/ParsedValue +instanceKlass javafx/css/CssMetaData +instanceKlass javafx/scene/CssStyleHelper +instanceKlass javafx/scene/Scene$ClickCounter +instanceKlass javafx/scene/Scene$ClickGenerator +instanceKlass javafx/scene/Scene$MouseHandler$1 +instanceKlass com/sun/javafx/event/EventQueue +instanceKlass javafx/scene/Scene$MouseHandler +instanceKlass com/sun/javafx/scene/traversal/TraversalEngine$BaseEngineContext +instanceKlass com/sun/javafx/scene/traversal/ContainerTabOrder +instanceKlass com/sun/javafx/scene/traversal/Algorithm +instanceKlass com/sun/javafx/scene/traversal/TraversalContext +instanceKlass @bci javafx/scene/Scene (Ljavafx/scene/Parent;DDLjavafx/scene/paint/Paint;ZLjavafx/scene/SceneAntialiasing;)V 172 member ; # javafx/scene/Scene$$Lambda+0x000001514e0da270 +instanceKlass javafx/scene/Scene$TouchMap +instanceKlass javafx/scene/Scene$TouchGesture +instanceKlass javafx/scene/Scene$TargetWrapper +instanceKlass javafx/scene/Scene$ScenePulseListener +instanceKlass javafx/scene/SceneAntialiasing +instanceKlass javafx/scene/paint/Paint$1 +instanceKlass com/sun/javafx/tk/Toolkit$PaintAccessor +instanceKlass @bci javafx/scene/Scene ()V 76 argL0 ; # javafx/scene/Scene$$Lambda+0x000001514e0d7ce8 +instanceKlass com/sun/javafx/scene/SceneHelper +instanceKlass javafx/scene/Scene$2 +instanceKlass javafx/scene/input/InputMethodRequests +instanceKlass com/sun/javafx/tk/TKDropTargetListener +instanceKlass com/sun/javafx/tk/TKScenePaintListener +instanceKlass com/sun/javafx/tk/TKSceneListener +instanceKlass com/sun/javafx/scene/SceneHelper$SceneAccessor +instanceKlass com/sun/javafx/perf/PerformanceTracker$SceneAccessor +instanceKlass com/sun/javafx/scene/traversal/TraversalEngine +instanceKlass javafx/scene/Scene +instanceKlass javafx/geometry/Insets +instanceKlass @bci javafx/scene/layout/Region ()V 6 member ; # javafx/scene/layout/Region$$Lambda+0x000001514e0c7ab8 +instanceKlass javafx/collections/SetChangeListener +instanceKlass javafx/scene/layout/Pane$1 +instanceKlass com/sun/javafx/geom/Vec2d +instanceKlass javafx/scene/layout/Region$1 +instanceKlass javafx/scene/Parent$1 +instanceKlass @bci javafx/scene/PropertyHelper getBooleanProperty (Ljava/lang/String;)Z 1 member ; # javafx/scene/PropertyHelper$$Lambda+0x000001514e0be078 +instanceKlass javafx/scene/PropertyHelper +instanceKlass @bci javafx/scene/Node ()V 123 argL0 ; # javafx/scene/Node$$Lambda+0x000001514e0bdc60 +instanceKlass @cpi javafx/scene/Node 3284 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e0c0000 +instanceKlass com/sun/javafx/scene/BoundsAccessor +instanceKlass javafx/collections/SetChangeListener$Change +instanceKlass javafx/css/PseudoClass +instanceKlass javafx/geometry/Point3D +instanceKlass com/sun/javafx/scene/transform/TransformHelper +instanceKlass javafx/scene/transform/Transform$1 +instanceKlass com/sun/javafx/scene/transform/TransformHelper$TransformAccessor +instanceKlass javafx/scene/transform/Transform +instanceKlass com/sun/javafx/scene/NodeHelper +instanceKlass javafx/scene/Node$1 +instanceKlass com/sun/javafx/scene/layout/PaneHelper$PaneAccessor +instanceKlass com/sun/javafx/scene/layout/RegionHelper$RegionAccessor +instanceKlass com/sun/javafx/scene/ParentHelper$ParentAccessor +instanceKlass com/sun/javafx/sg/prism/NGNode +instanceKlass com/sun/javafx/scene/NodeHelper$NodeAccessor +instanceKlass com/sun/glass/ui/Accessible$EventHandler +instanceKlass javafx/css/StyleableProperty +instanceKlass @bci com/sun/javafx/collections/VetoableListDecorator (Ljavafx/collections/ObservableList;)V 14 member ; # com/sun/javafx/collections/VetoableListDecorator$$Lambda+0x000001514e0a3958 +instanceKlass @bci com/sun/javafx/collections/TrackableObservableList ()V 13 member ; # com/sun/javafx/collections/TrackableObservableList$$Lambda+0x000001514e0a3738 +instanceKlass com/sun/javafx/collections/VetoableListDecorator$ModCountAccessor +instanceKlass com/sun/javafx/collections/VetoableListDecorator +instanceKlass com/sun/javafx/event/EventDispatchChainImpl +instanceKlass javafx/event/EventDispatchChain +instanceKlass com/sun/javafx/event/BasicEventDispatcher +instanceKlass javafx/event/EventDispatcher +instanceKlass java/util/EventObject +instanceKlass javafx/beans/binding/NumberBinding +instanceKlass javafx/stage/Window$TKBoundsConfigurator +instanceKlass com/sun/javafx/tk/TKPulseListener +instanceKlass javafx/stage/Stage$2 +instanceKlass javafx/stage/Stage$1 +instanceKlass com/sun/javafx/stage/WindowHelper +instanceKlass javafx/stage/Window$1 +instanceKlass com/sun/javafx/stage/WindowPeerListener +instanceKlass com/sun/javafx/tk/TKStageListener +instanceKlass javafx/beans/binding/StringExpression +instanceKlass javafx/beans/value/ObservableStringValue +instanceKlass javafx/beans/value/WritableStringValue +instanceKlass com/sun/javafx/stage/StagePeerListener$StageAccessor +instanceKlass com/sun/javafx/stage/StageHelper$StageAccessor +instanceKlass com/sun/javafx/stage/WindowHelper$WindowAccessor +instanceKlass javafx/beans/value/WritableDoubleValue +instanceKlass javafx/beans/value/WritableNumberValue +instanceKlass javafx/stage/Window +instanceKlass @bci com/sun/javafx/application/LauncherImpl launchApplication1 (Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/String;)V 415 member ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e08d078 +instanceKlass @bci com/sun/javafx/application/PlatformImpl setApplicationName (Ljava/lang/Class;)V 1 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e08ce58 +instanceKlass @bci com/sun/javafx/application/PlatformImpl lambda$runLater$11 (Ljava/lang/Runnable;Ljava/security/AccessControlContext;)V 1 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e08cc38 +instanceKlass com/sun/scenario/animation/AbstractPrimaryTimer$MainLoop +instanceKlass com/sun/scenario/DelayedRunnable +instanceKlass com/sun/scenario/animation/shared/TimerReceiver +instanceKlass com/sun/glass/ui/InvokeLaterDispatcher$Future +instanceKlass com/sun/scenario/animation/shared/PulseReceiver +instanceKlass java/util/concurrent/LinkedBlockingDeque$Node +instanceKlass @bci com/sun/javafx/application/PlatformImpl runLater (Ljava/lang/Runnable;Z)V 68 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e087ba0 +instanceKlass com/sun/javafx/animation/TickCalculation +instanceKlass @bci com/sun/javafx/application/PlatformImpl runAndWait (Ljava/lang/Runnable;Z)V 43 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e087780 +instanceKlass @bci com/sun/javafx/application/LauncherImpl launchApplication1 (Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/String;)V 303 member ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e087560 +instanceKlass @bci com/sun/scenario/animation/AbstractPrimaryTimer ()V 16 argL0 ; # com/sun/scenario/animation/AbstractPrimaryTimer$$Lambda+0x000001514e087348 +instanceKlass @cpi com/sun/javafx/application/LauncherImpl 888 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e088400 +instanceKlass com/sun/scenario/Settings +instanceKlass com/sun/javafx/application/LauncherImpl$1 +instanceKlass java/util/AbstractList$Itr +instanceKlass javafx/collections/ListChangeBuilder$SubChange +instanceKlass javafx/collections/ListChangeBuilder +instanceKlass javafx/geometry/Rectangle2D +instanceKlass @bci javafx/stage/Screen ()V 29 argL0 ; # javafx/stage/Screen$$Lambda+0x000001514e086160 +instanceKlass @cpi javafx/stage/Screen 283 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e088000 +instanceKlass com/sun/javafx/tk/TKScreenConfigurationListener +instanceKlass com/sun/javafx/binding/ExpressionHelperBase +instanceKlass javafx/collections/WeakListChangeListener +instanceKlass javafx/beans/WeakListener +instanceKlass @bci javafx/collections/FXCollections$UnmodifiableObservableListImpl (Ljavafx/collections/ObservableList;)V 11 member ; # javafx/collections/FXCollections$UnmodifiableObservableListImpl$$Lambda+0x000001514e084e58 +instanceKlass javafx/collections/ListChangeListener +instanceKlass javafx/collections/ListChangeListener$Change +instanceKlass javafx/util/Callback +instanceKlass com/sun/javafx/collections/SortableList +instanceKlass javafx/collections/FXCollections$EmptyObservableSet$1 +instanceKlass javafx/collections/FXCollections$EmptyObservableList$1 +instanceKlass javafx/collections/ObservableIntegerArray +instanceKlass javafx/collections/ObservableFloatArray +instanceKlass javafx/collections/ObservableArray +instanceKlass javafx/collections/ObservableList +instanceKlass javafx/collections/ObservableSet +instanceKlass javafx/collections/ObservableMap +instanceKlass javafx/collections/FXCollections +instanceKlass javafx/stage/Screen +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit runToolkit ()V 55 member ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e039410 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit runToolkit ()V 45 member ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e0391f0 +instanceKlass com/sun/prism/impl/ps/BaseShaderContext$State +instanceKlass com/sun/javafx/geom/Vec3d +instanceKlass com/sun/prism/impl/VertexBuffer +instanceKlass com/sun/javafx/geom/BaseBounds +instanceKlass com/sun/javafx/geom/transform/GeneralTransform3D +instanceKlass com/sun/javafx/geom/transform/BaseTransform +instanceKlass com/sun/javafx/geom/transform/CanTransformVec3d +instanceKlass com/sun/prism/MaskTextureGraphics +instanceKlass com/sun/prism/ReadbackGraphics +instanceKlass com/sun/prism/ps/ShaderGraphics +instanceKlass com/sun/prism/impl/BaseGraphics +instanceKlass com/sun/prism/RectShadowGraphics +instanceKlass com/sun/prism/Graphics +instanceKlass com/sun/prism/impl/BaseContext +instanceKlass com/sun/prism/ps/Shader +instanceKlass com/sun/prism/MeshView +instanceKlass com/sun/prism/RTTexture +instanceKlass com/sun/prism/Texture +instanceKlass com/sun/prism/Presentable +instanceKlass com/sun/prism/RenderTarget +instanceKlass com/sun/prism/Surface +instanceKlass com/sun/prism/impl/TextureResourcePool +instanceKlass com/sun/prism/impl/ResourcePool +instanceKlass com/sun/prism/PhongMaterial +instanceKlass com/sun/prism/Material +instanceKlass com/sun/prism/Mesh +instanceKlass com/sun/prism/shape/ShapeRep +instanceKlass java/util/concurrent/Executors$RunnableAdapter +instanceKlass java/util/concurrent/FutureTask$WaitNode +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer createResourceFactory ()V 16 argL0 ; # com/sun/javafx/tk/quantum/QuantumRenderer$$Lambda+0x000001514e035a90 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer createResourceFactory ()V 10 member ; # com/sun/javafx/tk/quantum/QuantumRenderer$$Lambda+0x000001514e035870 +instanceKlass java/util/concurrent/FutureTask +instanceKlass @bci com/sun/glass/ui/Screen ()V 4 argL0 ; # com/sun/glass/ui/Screen$$Lambda+0x000001514e035138 +instanceKlass @bci com/sun/glass/ui/win/WinApplication lambda$runLoop$4 (ILjava/lang/Runnable;)Ljava/lang/Thread; 7 member ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e034f18 +instanceKlass @cpi com/sun/glass/ui/win/WinApplication 503 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e038c00 +instanceKlass @bci com/sun/glass/ui/win/WinApplication runLoop (Ljava/lang/Runnable;)V 58 ; # java/lang/invoke/LambdaForm$MH+0x000001514e038800 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001514e038400 +instanceKlass @bci com/sun/glass/ui/win/WinApplication runLoop (Ljava/lang/Runnable;)V 58 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e038000 +instanceKlass @bci com/sun/glass/ui/win/WinApplication runLoop (Ljava/lang/Runnable;)V 58 member ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e034cf8 +instanceKlass @bci com/sun/glass/ui/win/WinApplication getDesiredAwarenesslevel ()I 8 argL0 ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e034ae0 +instanceKlass @bci com/sun/glass/ui/win/WinApplication runLoop (Ljava/lang/Runnable;)V 0 argL0 ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e0348c8 +instanceKlass @bci com/sun/glass/ui/Application run (Ljava/lang/Runnable;)V 29 member ; # com/sun/glass/ui/Application$$Lambda+0x000001514e0346a8 +instanceKlass java/util/concurrent/BlockingDeque +instanceKlass @bci com/sun/glass/ui/win/WinApplication ()V 4 argL0 ; # com/sun/glass/ui/win/WinApplication$$Lambda+0x000001514e034178 +instanceKlass java/lang/ProcessEnvironment$CheckedEntry +instanceKlass java/lang/ProcessEnvironment$CheckedEntrySet$1 +instanceKlass java/lang/ProcessEnvironment$EntryComparator +instanceKlass java/lang/ProcessEnvironment$NameComparator +instanceKlass com/sun/glass/ui/win/WinApplication$1 +instanceKlass com/sun/glass/ui/Cursor +instanceKlass com/sun/glass/ui/Window +instanceKlass com/sun/glass/ui/GlassRobot +instanceKlass com/sun/glass/ui/Pixels +instanceKlass com/sun/glass/ui/Timer +instanceKlass com/sun/glass/ui/View +instanceKlass com/sun/glass/ui/Accessible +instanceKlass com/sun/glass/ui/delegate/MenuDelegate +instanceKlass com/sun/glass/ui/delegate/ClipboardDelegate +instanceKlass com/sun/glass/ui/delegate/MenuItemDelegate +instanceKlass com/sun/glass/ui/delegate/MenuBarDelegate +instanceKlass com/sun/glass/ui/InvokeLaterDispatcher$InvokeLaterSubmitter +instanceKlass @bci com/sun/glass/ui/Platform determinePlatform ()Ljava/lang/String; 6 argL0 ; # com/sun/glass/ui/Platform$$Lambda+0x000001514e030200 +instanceKlass com/sun/glass/ui/Platform +instanceKlass com/sun/glass/ui/PlatformFactory +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit startup (Ljava/lang/Runnable;)V 16 member ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e02fb00 +instanceKlass @bci com/sun/javafx/application/PlatformImpl startup (Ljava/lang/Runnable;Z)V 234 member ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e02f8e0 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit init ()Z 37 member ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e02f6c0 +instanceKlass @bci com/sun/javafx/tk/quantum/PaintCollector ()V 16 argL0 ; # com/sun/javafx/tk/quantum/PaintCollector$$Lambda+0x000001514e02f430 +instanceKlass @cpi com/sun/javafx/css/SelectorPartitioning 231 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e02dc00 +instanceKlass com/sun/javafx/tk/quantum/GlassScene +instanceKlass com/sun/javafx/tk/TKScene +instanceKlass com/sun/javafx/tk/quantum/PaintCollector +instanceKlass com/sun/javafx/tk/CompletionListener +instanceKlass java/util/concurrent/ForkJoinPool$2 +instanceKlass jdk/internal/access/JavaUtilConcurrentFJPAccess +instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory +instanceKlass java/util/concurrent/ForkJoinPool$WorkQueue +instanceKlass java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory +instanceKlass com/sun/glass/ui/View$Capability +instanceKlass com/sun/glass/ui/Screen +instanceKlass com/sun/prism/impl/BaseResourceFactory +instanceKlass com/sun/prism/ps/ShaderFactory +instanceKlass @bci com/sun/prism/d3d/D3DPipeline ()V 0 argL0 ; # com/sun/prism/d3d/D3DPipeline$$Lambda+0x000001514e02a260 +instanceKlass com/sun/prism/ResourceFactory +instanceKlass com/sun/prism/GraphicsResource +instanceKlass com/sun/javafx/font/FontFactory +instanceKlass com/sun/prism/GraphicsPipeline +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory lambda$newThread$1 (Lcom/sun/javafx/tk/quantum/QuantumRenderer$PipelineRunnable;)Ljava/lang/Thread; 31 argL0 ; # com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory$$Lambda+0x000001514e029538 +instanceKlass @cpi com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory 156 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e02d800 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory lambda$newThread$1 (Lcom/sun/javafx/tk/quantum/QuantumRenderer$PipelineRunnable;)Ljava/lang/Thread; 17 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e02d400 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory lambda$newThread$1 (Lcom/sun/javafx/tk/quantum/QuantumRenderer$PipelineRunnable;)Ljava/lang/Thread; 17 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e02d000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e02cc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e02c800 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory lambda$newThread$1 (Lcom/sun/javafx/tk/quantum/QuantumRenderer$PipelineRunnable;)Ljava/lang/Thread; 17 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e02c400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e02c000 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; 19 member ; # com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory$$Lambda+0x000001514e029318 +instanceKlass com/sun/javafx/tk/quantum/QuantumRenderer$PipelineRunnable +instanceKlass com/sun/javafx/tk/quantum/QuantumRenderer$QuantumThreadFactory +instanceKlass jdk/internal/vm/ThreadContainers +instanceKlass jdk/internal/vm/StackableScope +instanceKlass java/util/concurrent/Executors$DefaultThreadFactory +instanceKlass java/util/concurrent/Executors +instanceKlass java/util/concurrent/LinkedBlockingQueue$Node +instanceKlass java/util/concurrent/atomic/AtomicReference +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumRenderer ()V 16 argL0 ; # com/sun/javafx/tk/quantum/QuantumRenderer$$Lambda+0x000001514e028ca0 +instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy +instanceKlass java/util/concurrent/RejectedExecutionHandler +instanceKlass java/util/concurrent/RunnableFuture +instanceKlass java/util/concurrent/Future +instanceKlass java/util/concurrent/BlockingQueue +instanceKlass java/util/concurrent/AbstractExecutorService +instanceKlass java/util/concurrent/ExecutorService +instanceKlass java/util/concurrent/Executor +instanceKlass @bci com/sun/javafx/tk/quantum/GlassSystemMenu ()V 16 member ; # com/sun/javafx/tk/quantum/GlassSystemMenu$$Lambda+0x000001514e028660 +instanceKlass javafx/scene/input/KeyCombination +instanceKlass com/sun/glass/ui/MenuItem$Callback +instanceKlass com/sun/glass/ui/Menu$EventHandler +instanceKlass com/sun/javafx/menu/MenuItemBase +instanceKlass com/sun/javafx/tk/quantum/GlassSystemMenu +instanceKlass @bci com/sun/prism/impl/PrismSettings ()V 0 argL0 ; # com/sun/prism/impl/PrismSettings$$Lambda+0x000001514e026f40 +instanceKlass com/sun/prism/impl/PrismSettings +instanceKlass com/sun/javafx/tk/quantum/PerformanceTrackerHelper$1 +instanceKlass com/sun/javafx/tk/quantum/PerformanceTrackerHelper +instanceKlass com/sun/javafx/tk/quantum/QuantumToolkit$PulseTask +instanceKlass com/sun/javafx/geom/PathConsumer2D +instanceKlass com/sun/javafx/geom/Shape +instanceKlass com/sun/prism/BasicStroke +instanceKlass com/sun/javafx/tk/quantum/QuantumToolkit$3 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 149 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e024488 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 132 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e024270 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 115 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e024058 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 98 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e023e40 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 84 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e023c28 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 67 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e023a10 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 50 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e0237f8 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 33 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e0235e0 +instanceKlass @bci com/sun/javafx/tk/quantum/QuantumToolkit ()V 16 argL0 ; # com/sun/javafx/tk/quantum/QuantumToolkit$$Lambda+0x000001514e0233c8 +instanceKlass com/sun/glass/ui/Screen$EventHandler +instanceKlass com/sun/javafx/tk/ScreenConfigurationAccessor +instanceKlass com/sun/javafx/scene/text/TextLayoutFactory +instanceKlass com/sun/javafx/perf/PerformanceTracker +instanceKlass javafx/scene/shape/PathElement +instanceKlass com/sun/javafx/tk/PlatformImage +instanceKlass com/sun/glass/ui/Application$EventHandler +instanceKlass com/sun/scenario/animation/AbstractPrimaryTimer +instanceKlass com/sun/scenario/effect/FilterContext +instanceKlass com/sun/javafx/tk/TKSystemMenu +instanceKlass com/sun/scenario/effect/Filterable +instanceKlass com/sun/scenario/effect/LockableResource +instanceKlass com/sun/javafx/tk/FontLoader +instanceKlass com/sun/javafx/tk/ImageLoader +instanceKlass com/sun/javafx/runtime/async/AbstractAsyncOperation +instanceKlass java/util/concurrent/Callable +instanceKlass com/sun/javafx/runtime/async/AsyncOperation +instanceKlass com/sun/javafx/tk/TKStage +instanceKlass jdk/internal/foreign/MemorySessionImpl +instanceKlass java/lang/foreign/MemorySegment$Scope +instanceKlass sun/security/provider/ByteArrayAccess +instanceKlass sun/security/provider/ByteArrayAccess$LE +instanceKlass sun/security/util/MessageDigestSpi2 +instanceKlass sun/security/jca/GetInstance$Instance +instanceKlass jdk/internal/event/Event +instanceKlass java/util/LinkedHashMap$LinkedHashIterator +instanceKlass sun/security/util/SecurityProviderConstants +instanceKlass java/security/Provider$UString +instanceKlass java/security/Provider$Service +instanceKlass sun/security/provider/NativePRNG$NonBlocking +instanceKlass sun/security/provider/NativePRNG$Blocking +instanceKlass sun/security/provider/NativePRNG +instanceKlass sun/security/provider/SunEntries$1 +instanceKlass sun/security/provider/SunEntries +instanceKlass sun/security/jca/ProviderList$2 +instanceKlass java/security/Provider$EngineDescription +instanceKlass java/security/Provider$ServiceKey +instanceKlass sun/security/jca/ProviderConfig +instanceKlass sun/security/jca/ProviderList +instanceKlass sun/security/jca/Providers +instanceKlass sun/security/jca/GetInstance +instanceKlass java/security/MessageDigestSpi +instanceKlass sun/net/www/MessageHeader +instanceKlass sun/net/www/protocol/jar/JarFileFactory +instanceKlass sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController +instanceKlass java/net/URLConnection +instanceKlass @bci com/sun/glass/utils/NativeLibLoader installLibraryFromResource (Ljava/lang/String;Ljava/util/List;Ljava/lang/Class;Z)Z 51 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e01e400 +instanceKlass @bci com/sun/javafx/font/PrismFontFactory getJDKFontDir ()Ljava/lang/String; 13 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e01e000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01dc00 +instanceKlass @bci com/sun/javafx/font/PrismFontFactory getJDKFontDir ()Ljava/lang/String; 13 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e01d800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01d400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01d000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01cc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01c800 +instanceKlass @bci com/sun/javafx/font/PrismFontFactory getJDKFontDir ()Ljava/lang/String; 13 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e01c400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e01c000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e014c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e014800 +instanceKlass @bci com/sun/glass/utils/NativeLibLoader loadLibrary (Ljava/lang/String;)V 10 argL0 ; # com/sun/glass/utils/NativeLibLoader$$Lambda+0x000001514e01b8c8 +instanceKlass @bci com/sun/glass/utils/NativeLibLoader ()V 28 argL0 ; # com/sun/glass/utils/NativeLibLoader$$Lambda+0x000001514e01b6b0 +instanceKlass com/sun/glass/utils/NativeLibLoader +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIConverter +instanceKlass jdk/internal/math/FloatingDecimal +instanceKlass @bci com/sun/javafx/PlatformUtil ()V 72 argL0 ; # com/sun/javafx/PlatformUtil$$Lambda+0x000001514e01b298 +instanceKlass @bci com/sun/javafx/PlatformUtil ()V 56 argL0 ; # com/sun/javafx/PlatformUtil$$Lambda+0x000001514e01b080 +instanceKlass @bci com/sun/javafx/PlatformUtil ()V 37 argL0 ; # com/sun/javafx/PlatformUtil$$Lambda+0x000001514e01ae68 +instanceKlass @bci com/sun/javafx/PlatformUtil ()V 18 argL0 ; # com/sun/javafx/PlatformUtil$$Lambda+0x000001514e01ac50 +instanceKlass com/sun/javafx/PlatformUtil +instanceKlass com/sun/javafx/runtime/VersionInfo +instanceKlass @bci com/sun/javafx/tk/Toolkit getToolkit ()Lcom/sun/javafx/tk/Toolkit; 10 argL0 ; # com/sun/javafx/tk/Toolkit$$Lambda+0x000001514e01a638 +instanceKlass @bci java/util/regex/Pattern DOT ()Ljava/util/regex/Pattern$CharPredicate; 0 argL0 ; # java/util/regex/Pattern$$Lambda+0x000001514e056ac8 +instanceKlass @bci java/util/regex/CharPredicates ctype (I)Ljava/util/regex/Pattern$CharPredicate; 1 member ; # java/util/regex/CharPredicates$$Lambda+0x000001514e056840 +instanceKlass javafx/scene/image/Image$1 +instanceKlass com/sun/javafx/tk/Toolkit$ImageAccessor +instanceKlass javafx/scene/image/PixelReader +instanceKlass javafx/beans/binding/NumberExpressionBase +instanceKlass javafx/beans/binding/NumberExpression +instanceKlass javafx/beans/value/ObservableDoubleValue +instanceKlass javafx/beans/value/ObservableNumberValue +instanceKlass javafx/geometry/Bounds +instanceKlass com/sun/javafx/util/Utils +instanceKlass javafx/scene/image/Image +instanceKlass @bci com/sun/javafx/tk/Toolkit ()V 14 argL0 ; # com/sun/javafx/tk/Toolkit$$Lambda+0x000001514e016d48 +instanceKlass com/sun/javafx/tk/TKClipboard +instanceKlass javafx/animation/Interpolatable +instanceKlass javafx/scene/paint/Paint +instanceKlass com/sun/javafx/tk/Toolkit +instanceKlass com/sun/javafx/application/PlatformImpl$1 +instanceKlass @bci com/sun/javafx/application/PlatformImpl startup (Ljava/lang/Runnable;Z)V 145 argL0 ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e009b88 +instanceKlass java/util/Formattable +instanceKlass java/time/LocalTime$1 +instanceKlass java/lang/StringUTF16$CharsSpliterator +instanceKlass java/util/stream/Sink$ChainedInt +instanceKlass @bci java/util/stream/FindOps$FindSink$OfInt ()V 43 argL0 ; # java/util/stream/FindOps$FindSink$OfInt$$Lambda+0x800000049 +instanceKlass @bci java/util/stream/FindOps$FindSink$OfInt ()V 38 argL0 ; # java/util/stream/FindOps$FindSink$OfInt$$Lambda+0x80000004b +instanceKlass @bci java/util/stream/FindOps$FindSink$OfInt ()V 16 argL0 ; # java/util/stream/FindOps$FindSink$OfInt$$Lambda+0x80000004a +instanceKlass @bci java/util/stream/FindOps$FindSink$OfInt ()V 11 argL0 ; # java/util/stream/FindOps$FindSink$OfInt$$Lambda+0x80000004c +instanceKlass java/util/OptionalInt +instanceKlass java/util/stream/Sink$OfInt +instanceKlass java/util/function/IntConsumer +instanceKlass @bci java/text/DecimalFormatSymbols findNonFormatChar (Ljava/lang/String;C)C 4 argL0 ; # java/text/DecimalFormatSymbols$$Lambda+0x80000000d +instanceKlass java/util/function/IntPredicate +instanceKlass java/util/stream/IntStream +instanceKlass java/lang/StringLatin1$CharsSpliterator +instanceKlass sun/util/locale/provider/LocaleResources +instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDecimalFormatSymbolsProvider ()Ljava/text/spi/DecimalFormatSymbolsProvider; 8 member ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x80000006b +instanceKlass java/text/DecimalFormatSymbols +instanceKlass sun/util/resources/Bundles$2 +instanceKlass sun/util/resources/Bundles$CacheKeyReference +instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter applyAliases (Ljava/util/Locale;)Ljava/util/Locale; 4 argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x800000064 +instanceKlass sun/util/resources/LocaleData$LocaleDataResourceBundleProvider +instanceKlass java/util/spi/ResourceBundleProvider +instanceKlass sun/util/resources/Bundles$CacheKey +instanceKlass sun/util/resources/Bundles +instanceKlass sun/util/resources/LocaleData$LocaleDataStrategy +instanceKlass sun/util/resources/Bundles$Strategy +instanceKlass sun/util/resources/LocaleData$1 +instanceKlass sun/util/resources/LocaleData +instanceKlass java/util/Locale$Builder +instanceKlass sun/util/locale/provider/CalendarDataUtility +instanceKlass sun/util/locale/provider/AvailableLanguageTags +instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDateFormatSymbolsProvider ()Ljava/text/spi/DateFormatSymbolsProvider; 8 member ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x80000006a +instanceKlass sun/util/resources/cldr/provider/CLDRLocaleDataMetaInfo +instanceKlass jdk/internal/module/ModulePatcher$PatchedModuleReader +instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter ()V 4 argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x800000066 +instanceKlass sun/util/locale/BaseLocale$Key +instanceKlass sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar +instanceKlass sun/util/locale/InternalLocaleBuilder +instanceKlass sun/util/locale/StringTokenIterator +instanceKlass sun/util/locale/ParseStatus +instanceKlass sun/util/locale/LanguageTag +instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo +instanceKlass sun/util/locale/provider/LocaleDataMetaInfo +instanceKlass sun/util/locale/provider/ResourceBundleBasedAdapter +instanceKlass sun/util/locale/provider/LocaleProviderAdapter +instanceKlass java/util/spi/LocaleServiceProvider +instanceKlass java/text/DateFormatSymbols +instanceKlass java/time/ZonedDateTime$1 +instanceKlass java/util/Calendar +instanceKlass java/util/Date +instanceKlass java/util/Formatter$FixedString +instanceKlass java/util/Formatter$DateTime +instanceKlass java/util/Formatter$Flags +instanceKlass java/util/Formatter$FormatSpecifier +instanceKlass java/util/Formatter$FormatString +instanceKlass java/util/regex/ASCII +instanceKlass java/util/regex/IntHashSet +instanceKlass java/util/regex/Matcher +instanceKlass java/util/regex/MatchResult +instanceKlass java/util/Formatter$Conversion +instanceKlass java/util/regex/Pattern$TreeInfo +instanceKlass @bci java/util/regex/Pattern union (Ljava/util/regex/Pattern$CharPredicate;Ljava/util/regex/Pattern$CharPredicate;Z)Ljava/util/regex/Pattern$CharPredicate; 6 member ; # java/util/regex/Pattern$$Lambda+0x800000033 +instanceKlass @bci java/util/regex/Pattern Range (II)Ljava/util/regex/Pattern$CharPredicate; 23 member ; # java/util/regex/Pattern$$Lambda+0x80000002b +instanceKlass java/util/regex/Pattern$BitClass +instanceKlass @bci java/util/regex/CharPredicates ASCII_DIGIT ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000026 +instanceKlass java/util/regex/CharPredicates +instanceKlass @bci java/util/regex/Pattern Single (I)Ljava/util/regex/Pattern$BmpCharPredicate; 1 member ; # java/util/regex/Pattern$$Lambda+0x80000002a +instanceKlass java/util/regex/Pattern$BmpCharPredicate +instanceKlass java/util/regex/Pattern$CharPredicate +instanceKlass java/util/regex/Pattern$Node +instanceKlass java/util/regex/Pattern +instanceKlass java/util/Formatter +instanceKlass @bci jdk/internal/module/SystemModuleFinders$SystemModuleReader open (Ljava/lang/String;)Ljava/util/Optional; 6 member ; # jdk/internal/module/SystemModuleFinders$SystemModuleReader$$Lambda+0x000001514e053758 +instanceKlass jdk/internal/module/Checks +instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadPropertyResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 14 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000001514e053538 +instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper newResourceBundle (Ljava/lang/Class;)Ljava/util/ResourceBundle; 22 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x800000012 +instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 13 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000001514e052e60 +instanceKlass java/util/ResourceBundle$ResourceBundleProviderHelper +instanceKlass java/util/ResourceBundle$3 +instanceKlass @bci java/util/ResourceBundle getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 member ; # java/util/ResourceBundle$$Lambda+0x000001514e052a10 +instanceKlass java/util/ResourceBundle$CacheKeyReference +instanceKlass java/util/ResourceBundle$CacheKey +instanceKlass sun/util/locale/LocaleObjectCache +instanceKlass java/util/ResourceBundle$Control +instanceKlass java/util/ResourceBundle$1 +instanceKlass jdk/internal/access/JavaUtilResourceBundleAccess +instanceKlass java/util/ResourceBundle +instanceKlass java/util/logging/Level$RbAccess +instanceKlass @bci javafx/fxml/FXMLLoader loadTypeForPackage (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Class; 13 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e013800 +instanceKlass java/lang/invoke/LambdaFormEditor$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e013400 +instanceKlass @bci javafx/fxml/FXMLLoader loadTypeForPackage (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Class; 13 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e013000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e012c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e012800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e012400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e012000 +instanceKlass @bci javafx/fxml/FXMLLoader loadTypeForPackage (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Class; 13 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e011c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e011800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e011400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e011000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e010c00 +instanceKlass @bci java/util/logging/LogRecord inferCaller ()V 18 member ; # java/util/logging/LogRecord$$Lambda+0x000001514e051f78 +instanceKlass @cpi javafx/scene/Scene 2424 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e010800 +instanceKlass java/lang/StackStreamFactory$FrameBuffer +instanceKlass java/lang/StackStreamFactory +instanceKlass @bci java/util/logging/LogRecord$CallerFinder get ()Ljava/util/Optional; 4 member ; # java/util/logging/LogRecord$CallerFinder$$Lambda+0x000001514e0507d0 +instanceKlass @bci java/util/logging/LogRecord$CallerFinder ()V 0 argL0 ; # java/util/logging/LogRecord$CallerFinder$$Lambda+0x000001514e050188 +instanceKlass java/util/logging/LogRecord$CallerFinder +instanceKlass java/time/chrono/AbstractChronology +instanceKlass java/time/chrono/Chronology +instanceKlass java/time/LocalDate$1 +instanceKlass @bci java/time/temporal/TemporalAdjusters nextOrSame (Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster; 6 member ; # java/time/temporal/TemporalAdjusters$$Lambda+0x000001514e04fd28 +instanceKlass @cpi java/time/temporal/TemporalAdjusters 209 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e010400 +instanceKlass java/time/temporal/TemporalAdjusters +instanceKlass java/time/ZonedDateTime +instanceKlass java/time/chrono/ChronoZonedDateTime +instanceKlass java/time/LocalDate +instanceKlass java/time/chrono/ChronoLocalDate +instanceKlass java/time/zone/ZoneOffsetTransition +instanceKlass java/time/temporal/ValueRange +instanceKlass java/time/Duration +instanceKlass java/time/temporal/TemporalAmount +instanceKlass java/time/temporal/TemporalUnit +instanceKlass java/time/temporal/TemporalField +instanceKlass java/time/LocalTime +instanceKlass @bci java/time/ZoneOffset ofTotalSeconds (I)Ljava/time/ZoneOffset; 37 argL0 ; # java/time/ZoneOffset$$Lambda+0x80000000e +instanceKlass java/time/LocalDateTime +instanceKlass java/time/chrono/ChronoLocalDateTime +instanceKlass java/time/zone/ZoneOffsetTransitionRule +instanceKlass java/time/zone/ZoneRules +instanceKlass java/time/zone/Ser +instanceKlass java/io/Externalizable +instanceKlass java/util/Arrays$ArrayItr +instanceKlass java/time/zone/ZoneRulesProvider$1 +instanceKlass java/time/zone/ZoneRulesProvider +instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule +instanceKlass jdk/internal/util/ByteArray +instanceKlass sun/util/calendar/ZoneInfoFile$1 +instanceKlass sun/util/calendar/ZoneInfoFile +instanceKlass java/util/TimeZone +instanceKlass java/time/ZoneId +instanceKlass java/util/logging/LogManager$CloseOnReset +instanceKlass java/util/logging/StreamHandler$1 +instanceKlass java/util/logging/Handler$1 +instanceKlass java/util/logging/ErrorManager +instanceKlass jdk/internal/logger/SimpleConsoleLogger$Formatting +instanceKlass sun/util/logging/PlatformLogger +instanceKlass @bci java/util/logging/SimpleFormatter ()V 5 argL0 ; # java/util/logging/SimpleFormatter$$Lambda+0x000001514e048d30 +instanceKlass java/util/logging/Formatter +instanceKlass java/time/Clock +instanceKlass java/time/InstantSource +instanceKlass java/time/Instant +instanceKlass java/time/temporal/TemporalAdjuster +instanceKlass java/time/temporal/Temporal +instanceKlass java/time/temporal/TemporalAccessor +instanceKlass java/util/logging/LogRecord +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge$LoggerConfiguration +instanceKlass java/util/logging/LogManager$4 +instanceKlass java/util/stream/Streams +instanceKlass java/util/stream/Stream$Builder +instanceKlass java/util/stream/Streams$AbstractStreamBuilderImpl +instanceKlass java/util/stream/Sink$ChainedReference +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 43 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004d +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 38 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004f +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 16 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004e +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 11 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x800000050 +instanceKlass java/util/stream/FindOps$FindOp +instanceKlass java/util/stream/TerminalOp +instanceKlass java/util/stream/FindOps$FindSink +instanceKlass java/util/stream/TerminalSink +instanceKlass java/util/stream/Sink +instanceKlass java/util/stream/FindOps +instanceKlass @bci java/util/logging/Level$KnownLevel findByName (Ljava/lang/String;Ljava/util/function/Function;)Ljava/util/Optional; 29 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000025 +instanceKlass java/util/ArrayList$ArrayListSpliterator +instanceKlass @bci java/util/logging/Level findLevel (Ljava/lang/String;)Ljava/util/logging/Level; 13 argL0 ; # java/util/logging/Level$$Lambda+0x800000013 +instanceKlass java/util/Hashtable$Enumerator +instanceKlass java/util/Collections$SynchronizedCollection +instanceKlass java/util/Properties$EntrySet +instanceKlass java/util/Collections$3 +instanceKlass java/util/logging/LogManager$LoggerContext$1 +instanceKlass java/util/logging/LogManager$VisitedLoggers +instanceKlass java/util/function/Predicate +instanceKlass @bci com/sun/javafx/runtime/VersionInfo ()V 15 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e010000 +instanceKlass java/util/logging/Logger$ConfigurationData +instanceKlass java/util/logging/Logger$LoggerBundle +instanceKlass java/util/logging/Handler +instanceKlass java/util/logging/Logger +instanceKlass java/util/logging/LogManager$2 +instanceKlass java/util/logging/LogManager$LoggingProviderAccess +instanceKlass java/lang/Shutdown$Lock +instanceKlass java/lang/Shutdown +instanceKlass java/lang/ApplicationShutdownHooks$1 +instanceKlass java/lang/ApplicationShutdownHooks +instanceKlass java/util/Collections$SynchronizedMap +instanceKlass java/util/logging/LogManager$LogNode +instanceKlass java/util/logging/LogManager$LoggerContext +instanceKlass java/util/logging/LogManager$1 +instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 49 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000024 +instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 19 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000023 +instanceKlass java/util/logging/Level +instanceKlass java/util/logging/LogManager +instanceKlass jdk/internal/logger/BootstrapLogger$BootstrapExecutors +instanceKlass jdk/internal/logger/BootstrapLogger$RedirectedLoggers +instanceKlass java/util/ServiceLoader$ProviderImpl +instanceKlass java/util/ServiceLoader$Provider +instanceKlass java/util/ServiceLoader$1 +instanceKlass sun/util/logging/internal/LoggingProviderImpl$LogManagerAccess +instanceKlass java/util/concurrent/CopyOnWriteArrayList$COWIterator +instanceKlass java/util/TreeMap$PrivateEntryIterator +instanceKlass java/util/TreeMap$Entry +instanceKlass java/util/NavigableMap +instanceKlass java/util/SortedMap +instanceKlass java/util/NavigableSet +instanceKlass java/util/SortedSet +instanceKlass java/util/SequencedSet +instanceKlass jdk/internal/loader/URLClassPath$1 +instanceKlass java/lang/CompoundEnumeration +instanceKlass jdk/internal/loader/BuiltinClassLoader$1 +instanceKlass java/util/Collections$EmptyEnumeration +instanceKlass java/util/Collections$EmptyIterator +instanceKlass jdk/internal/jimage/ImageLocation +instanceKlass jdk/internal/jimage/decompressor/Decompressor +instanceKlass jdk/internal/jimage/ImageStringsReader +instanceKlass jdk/internal/jimage/ImageStrings +instanceKlass jdk/internal/jimage/ImageHeader +instanceKlass jdk/internal/jimage/NativeImageBuffer$1 +instanceKlass jdk/internal/jimage/NativeImageBuffer +instanceKlass jdk/internal/jimage/BasicImageReader$1 +instanceKlass jdk/internal/jimage/BasicImageReader +instanceKlass jdk/internal/jimage/ImageReader +instanceKlass jdk/internal/jimage/ImageReaderFactory$1 +instanceKlass java/net/URI$Parser +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder$1 +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder +instanceKlass java/nio/file/FileSystems +instanceKlass java/nio/file/Paths +instanceKlass jdk/internal/jimage/ImageReaderFactory +instanceKlass jdk/internal/module/SystemModuleFinders$SystemImage +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleReader +instanceKlass java/lang/module/ModuleReader +instanceKlass jdk/internal/loader/BuiltinClassLoader$5 +instanceKlass jdk/internal/loader/BuiltinClassLoader$2 +instanceKlass jdk/internal/module/Resources +instanceKlass java/util/ServiceLoader$3 +instanceKlass java/util/ServiceLoader$2 +instanceKlass java/util/ServiceLoader$LazyClassPathLookupIterator +instanceKlass java/util/Spliterators$1Adapter +instanceKlass java/util/function/Consumer +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e008c00 +instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory$LazyStaticHolder +instanceKlass sun/reflect/annotation/AnnotationParser +instanceKlass java/lang/Class$3 +instanceKlass java/util/EnumMap$1 +instanceKlass java/util/stream/StreamOpFlag$MaskBuilder +instanceKlass java/util/stream/Stream +instanceKlass java/util/stream/BaseStream +instanceKlass java/util/stream/PipelineHelper +instanceKlass java/util/stream/StreamSupport +instanceKlass java/util/Spliterators$ArraySpliterator +instanceKlass java/util/Spliterator$OfDouble +instanceKlass java/util/Spliterator$OfLong +instanceKlass java/util/Spliterator$OfInt +instanceKlass java/util/Spliterator$OfPrimitive +instanceKlass java/util/Spliterator +instanceKlass java/util/Spliterators$EmptySpliterator +instanceKlass java/util/Spliterators +instanceKlass java/util/ServiceLoader$ModuleServicesLookupIterator +instanceKlass java/util/ServiceLoader +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend$1 +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend +instanceKlass jdk/internal/logger/BootstrapLogger +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge +instanceKlass sun/util/logging/PlatformLogger$Bridge +instanceKlass java/io/FilePermission$1 +instanceKlass jdk/internal/access/JavaIOFilePermissionAccess +instanceKlass sun/security/util/SecurityConstants +instanceKlass jdk/internal/logger/LoggerFinderLoader +instanceKlass java/security/Security$1 +instanceKlass jdk/internal/access/JavaSecurityPropertiesAccess +instanceKlass java/util/concurrent/ConcurrentHashMap$MapEntry +instanceKlass java/util/Properties$LineReader +instanceKlass @bci java/security/Security ()V 9 argL0 ; # java/security/Security$$Lambda+0x80000000b +instanceKlass java/security/Security +instanceKlass sun/security/util/SecurityProperties +instanceKlass sun/security/util/FilePermCompat +instanceKlass @bci java/lang/System$LoggerFinder accessProvider ()Ljava/lang/System$LoggerFinder; 8 argL0 ; # java/lang/System$LoggerFinder$$Lambda+0x000001514e045440 +instanceKlass jdk/internal/logger/DefaultLoggerFinder$1 +instanceKlass java/lang/System$LoggerFinder +instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerFactories +instanceKlass jdk/internal/logger/LazyLoggers$1 +instanceKlass jdk/internal/logger/LazyLoggers +instanceKlass com/sun/javafx/logging/PlatformLogger +instanceKlass java/lang/System$Logger +instanceKlass com/sun/javafx/util/Logging +instanceKlass @bci com/sun/javafx/application/PlatformImpl ()V 176 argL0 ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e009410 +instanceKlass @bci com/sun/javafx/application/PlatformImpl ()V 159 argL0 ; # com/sun/javafx/application/PlatformImpl$$Lambda+0x000001514e0091f8 +instanceKlass javafx/beans/InvalidationListener +instanceKlass javafx/beans/value/WritableObjectValue +instanceKlass javafx/beans/binding/Binding +instanceKlass javafx/beans/binding/ObjectExpression +instanceKlass javafx/beans/value/ObservableObjectValue +instanceKlass javafx/beans/binding/BooleanExpression +instanceKlass javafx/beans/value/ObservableBooleanValue +instanceKlass javafx/beans/value/WritableBooleanValue +instanceKlass javafx/beans/property/Property +instanceKlass javafx/beans/value/WritableValue +instanceKlass javafx/beans/property/ReadOnlyProperty +instanceKlass javafx/beans/value/ObservableValue +instanceKlass javafx/beans/Observable +instanceKlass com/sun/javafx/tk/TKListener +instanceKlass com/sun/javafx/application/PlatformImpl +instanceKlass @bci com/sun/javafx/application/LauncherImpl startToolkit ()V 21 member ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e006cb0 +instanceKlass @cpi com/sun/javafx/application/PlatformImpl 979 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e008800 +instanceKlass java/lang/Thread$ThreadNumbering +instanceKlass @bci com/sun/javafx/application/LauncherImpl launchApplication (Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/String;)V 109 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001514e008400 +instanceKlass @bci com/sun/javafx/application/LauncherImpl launchApplication (Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/String;)V 109 member ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e006a90 +instanceKlass java/util/concurrent/CountDownLatch +instanceKlass java/lang/invoke/VarHandle$AccessDescriptor +instanceKlass @bci com/sun/glass/ui/Application ()V 4 argL0 ; # com/sun/glass/ui/Application$$Lambda+0x000001514e006878 +instanceKlass com/sun/glass/ui/Application +instanceKlass @bci com/sun/javafx/application/LauncherImpl launchApplication (Ljava/lang/Class;[Ljava/lang/String;)V 8 argL0 ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e006240 +instanceKlass java/lang/invoke/VarForm +instanceKlass java/lang/invoke/VarHandleGuards +instanceKlass java/lang/ClassValue$Version +instanceKlass java/lang/ClassValue$Identity +instanceKlass java/lang/ClassValue +instanceKlass java/lang/invoke/VarHandles +instanceKlass java/util/concurrent/atomic/AtomicBoolean +instanceKlass @bci com/sun/javafx/css/SelectorPartitioning ()V 28 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e008000 +instanceKlass @bci com/sun/javafx/application/LauncherImpl ()V 0 argL0 ; # com/sun/javafx/application/LauncherImpl$$Lambda+0x000001514e006028 +instanceKlass java/lang/invoke/LambdaProxyClassArchive +instanceKlass java/lang/invoke/InfoFromMemberName +instanceKlass java/lang/invoke/MethodHandleInfo +instanceKlass jdk/internal/org/objectweb/asm/ConstantDynamic +instanceKlass jdk/internal/org/objectweb/asm/Handle +instanceKlass sun/security/action/GetBooleanAction +instanceKlass java/lang/invoke/AbstractValidatingLambdaMetafactory +instanceKlass java/lang/invoke/LambdaMetafactory +instanceKlass com/sun/javafx/application/PlatformImpl$FinishListener +instanceKlass javafx/application/Application$Parameters +instanceKlass com/sun/javafx/application/LauncherImpl +instanceKlass java/util/Collections$UnmodifiableCollection$1 +instanceKlass java/util/Collections$UnmodifiableCollection +instanceKlass java/lang/StackTraceElement$HashedModules +instanceKlass javafx/scene/Node +instanceKlass javafx/css/Styleable +instanceKlass javafx/event/EventTarget +instanceKlass javafx/application/Application +instanceKlass java/util/zip/Checksum$1 +instanceKlass java/util/zip/CRC32 +instanceKlass java/util/zip/Checksum +instanceKlass java/util/jar/Attributes$Name +instanceKlass java/util/SequencedMap +instanceKlass java/util/jar/Attributes +instanceKlass sun/security/action/GetIntegerAction +instanceKlass sun/security/util/SignatureFileVerifier +instanceKlass java/util/zip/ZipFile$InflaterCleanupAction +instanceKlass java/util/zip/Inflater$InflaterZStreamRef +instanceKlass java/util/zip/Inflater +instanceKlass java/util/zip/ZipEntry +instanceKlass java/util/zip/ZipFile$2 +instanceKlass java/nio/Bits$1 +instanceKlass jdk/internal/misc/VM$BufferPool +instanceKlass java/nio/Bits +instanceKlass sun/nio/ch/DirectBuffer +instanceKlass jdk/internal/perf/PerfCounter$CoreCounters +instanceKlass jdk/internal/perf/Perf +instanceKlass jdk/internal/perf/Perf$GetPerfAction +instanceKlass jdk/internal/perf/PerfCounter +instanceKlass sun/util/locale/LocaleUtils +instanceKlass sun/util/locale/BaseLocale +instanceKlass java/util/Locale +instanceKlass java/nio/file/attribute/FileTime +instanceKlass java/util/zip/ZipUtils +instanceKlass java/util/zip/ZipFile$Source$End +instanceKlass java/io/RandomAccessFile$2 +instanceKlass jdk/internal/access/JavaIORandomAccessFileAccess +instanceKlass java/io/RandomAccessFile +instanceKlass java/io/DataInput +instanceKlass java/io/DataOutput +instanceKlass sun/nio/fs/WindowsNativeDispatcher$CompletionStatus +instanceKlass sun/nio/fs/WindowsNativeDispatcher$AclInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$Account +instanceKlass sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace +instanceKlass sun/nio/fs/WindowsNativeDispatcher$VolumeInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstStream +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstFile +instanceKlass java/util/Enumeration +instanceKlass java/util/concurrent/ConcurrentHashMap$Traverser +instanceKlass jdk/internal/loader/NativeLibraries$3 +instanceKlass jdk/internal/loader/NativeLibrary +instanceKlass java/util/ArrayDeque$DeqIterator +instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext$1 +instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext +instanceKlass jdk/internal/loader/NativeLibraries$2 +instanceKlass jdk/internal/loader/NativeLibraries$1 +instanceKlass jdk/internal/loader/NativeLibraries$LibraryPaths +instanceKlass sun/nio/fs/WindowsNativeDispatcher +instanceKlass sun/nio/fs/NativeBuffer$Deallocator +instanceKlass sun/nio/fs/NativeBuffer +instanceKlass java/lang/ThreadLocal$ThreadLocalMap +instanceKlass java/lang/ThreadLocal +instanceKlass sun/nio/fs/NativeBuffers +instanceKlass sun/nio/fs/WindowsFileAttributes +instanceKlass java/nio/file/attribute/DosFileAttributes +instanceKlass sun/nio/fs/AbstractBasicFileAttributeView +instanceKlass sun/nio/fs/DynamicFileAttributeView +instanceKlass sun/nio/fs/WindowsFileAttributeViews +instanceKlass sun/nio/fs/Util +instanceKlass java/nio/file/attribute/BasicFileAttributeView +instanceKlass java/nio/file/attribute/FileAttributeView +instanceKlass java/nio/file/attribute/AttributeView +instanceKlass java/nio/file/Files +instanceKlass java/nio/file/CopyOption +instanceKlass java/nio/file/attribute/BasicFileAttributes +instanceKlass sun/nio/fs/WindowsPath +instanceKlass java/nio/file/Path +instanceKlass java/nio/file/Watchable +instanceKlass java/util/zip/ZipFile$Source$Key +instanceKlass sun/nio/fs/WindowsPathParser$Result +instanceKlass sun/nio/fs/WindowsPathParser +instanceKlass java/nio/file/FileSystem +instanceKlass java/nio/file/OpenOption +instanceKlass java/nio/file/spi/FileSystemProvider +instanceKlass sun/nio/fs/DefaultFileSystemProvider +instanceKlass java/util/zip/ZipFile$Source +instanceKlass java/util/zip/ZipCoder +instanceKlass java/util/zip/ZipFile$CleanableResource +instanceKlass java/lang/Runtime$Version +instanceKlass java/util/jar/JavaUtilJarAccessImpl +instanceKlass jdk/internal/access/JavaUtilJarAccess +instanceKlass jdk/internal/loader/FileURLMapper +instanceKlass jdk/internal/loader/URLClassPath$JarLoader$1 +instanceKlass java/util/zip/ZipFile$1 +instanceKlass jdk/internal/access/JavaUtilZipFileAccess +instanceKlass java/util/zip/ZipFile +instanceKlass java/util/zip/ZipConstants +instanceKlass java/nio/charset/CoderResult +instanceKlass java/lang/Readable +instanceKlass @bci com/sun/javafx/application/PlatformImpl startup (Ljava/lang/Runnable;Z)V 100 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e002800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e002400 +instanceKlass @bci com/sun/javafx/application/PlatformImpl startup (Ljava/lang/Runnable;Z)V 100 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e002000 +instanceKlass java/lang/invoke/MethodHandles$1 +instanceKlass java/lang/Long$LongCache +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e001c00 +instanceKlass @bci com/sun/javafx/font/PrismFontFactory getJDKFontDir ()Ljava/lang/String; 13 argL2 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e001800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e001400 +instanceKlass @bci javafx/fxml/FXMLLoader loadTypeForPackage (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Class; 13 argL1 argL0 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001514e001000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001514e000400 +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassDefiner +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassFile +instanceKlass jdk/internal/org/objectweb/asm/Handler +instanceKlass jdk/internal/org/objectweb/asm/Attribute +instanceKlass jdk/internal/org/objectweb/asm/FieldVisitor +instanceKlass java/util/ArrayList$Itr +instanceKlass sun/invoke/empty/Empty +instanceKlass sun/invoke/util/VerifyType +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$ClassData +instanceKlass jdk/internal/org/objectweb/asm/AnnotationVisitor +instanceKlass jdk/internal/org/objectweb/asm/Frame +instanceKlass jdk/internal/org/objectweb/asm/Label +instanceKlass jdk/internal/org/objectweb/asm/Type +instanceKlass jdk/internal/org/objectweb/asm/MethodVisitor +instanceKlass sun/invoke/util/BytecodeDescriptor +instanceKlass jdk/internal/org/objectweb/asm/ByteVector +instanceKlass jdk/internal/org/objectweb/asm/Symbol +instanceKlass jdk/internal/org/objectweb/asm/SymbolTable +instanceKlass jdk/internal/org/objectweb/asm/ClassVisitor +instanceKlass java/lang/invoke/LambdaFormBuffer +instanceKlass java/lang/invoke/LambdaFormEditor$TransformKey +instanceKlass java/lang/invoke/LambdaFormEditor +instanceKlass java/lang/invoke/DirectMethodHandle$2 +instanceKlass java/lang/invoke/ClassSpecializer$Factory +instanceKlass java/lang/invoke/ClassSpecializer$SpeciesData +instanceKlass java/lang/invoke/ClassSpecializer$1 +instanceKlass java/lang/invoke/ClassSpecializer +instanceKlass java/lang/invoke/BootstrapMethodInvoker +instanceKlass java/lang/invoke/Invokers$Holder +instanceKlass java/lang/invoke/DelegatingMethodHandle$Holder +instanceKlass java/lang/invoke/MethodHandleImpl$1 +instanceKlass jdk/internal/access/JavaLangInvokeAccess +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$1 +instanceKlass java/lang/invoke/InvokerBytecodeGenerator +instanceKlass java/lang/invoke/LambdaForm$Holder +instanceKlass java/lang/invoke/LambdaForm$Name +instanceKlass java/lang/reflect/Array +instanceKlass java/lang/invoke/Invokers +instanceKlass java/lang/invoke/MethodHandleImpl +instanceKlass sun/invoke/util/ValueConversions +instanceKlass java/lang/invoke/DirectMethodHandle$Holder +instanceKlass java/lang/invoke/LambdaForm$NamedFunction +instanceKlass sun/invoke/util/Wrapper$Format +instanceKlass java/lang/invoke/MethodTypeForm +instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet +instanceKlass java/lang/Void +instanceKlass java/lang/PublicMethods$Key +instanceKlass java/lang/PublicMethods$MethodList +instanceKlass jdk/internal/misc/PreviewFeatures +instanceKlass jdk/internal/misc/MainMethodFinder +instanceKlass sae/Main +instanceKlass sun/security/util/Debug +instanceKlass java/security/SecureClassLoader$DebugHolder +instanceKlass java/security/Permission +instanceKlass java/security/Guard +instanceKlass java/security/PermissionCollection +instanceKlass java/security/SecureClassLoader$1 +instanceKlass java/io/FileInputStream$1 +instanceKlass java/util/concurrent/ForkJoinPool$ManagedBlocker +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node +instanceKlass sun/nio/ByteBuffered +instanceKlass jdk/internal/ref/CleanerImpl +instanceKlass java/lang/ref/Cleaner$1 +instanceKlass java/lang/ref/Cleaner +instanceKlass jdk/internal/ref/CleanerFactory$1 +instanceKlass java/util/concurrent/ThreadFactory +instanceKlass jdk/internal/ref/CleanerFactory +instanceKlass java/lang/ref/Cleaner$Cleanable +instanceKlass java/lang/Package$VersionInfo +instanceKlass java/lang/NamedPackage +instanceKlass jdk/internal/loader/Resource +instanceKlass jdk/internal/loader/URLClassPath$Loader +instanceKlass jdk/internal/loader/URLClassPath$3 +instanceKlass java/security/PrivilegedExceptionAction +instanceKlass sun/net/util/URLUtil +instanceKlass java/lang/StringCoding +instanceKlass sun/nio/cs/MS1252$Holder +instanceKlass sun/nio/cs/ArrayDecoder +instanceKlass java/nio/charset/CharsetDecoder +instanceKlass sun/launcher/LauncherHelper +instanceKlass jdk/internal/vm/PostVMInitHook$1 +instanceKlass jdk/internal/util/EnvUtils +instanceKlass jdk/internal/vm/PostVMInitHook$2 +instanceKlass jdk/internal/vm/PostVMInitHook +instanceKlass java/lang/invoke/StringConcatFactory +instanceKlass java/lang/ModuleLayer$Controller +instanceKlass java/util/concurrent/CopyOnWriteArrayList +instanceKlass jdk/internal/module/ServicesCatalog$ServiceProvider +instanceKlass jdk/internal/loader/AbstractClassLoaderValue$Memoizer +instanceKlass java/util/ImmutableCollections$ListItr +instanceKlass java/util/ListIterator +instanceKlass java/lang/ModuleLayer +instanceKlass jdk/internal/module/ModuleLoaderMap$Modules +instanceKlass jdk/internal/module/ModuleLoaderMap$Mapper +instanceKlass jdk/internal/module/ModuleLoaderMap +instanceKlass java/util/AbstractMap$1$1 +instanceKlass java/lang/module/ResolvedModule +instanceKlass java/lang/module/Configuration +instanceKlass jdk/internal/loader/BuiltinClassLoader$LoadedModule +instanceKlass jdk/internal/loader/AbstractClassLoaderValue +instanceKlass jdk/internal/module/ServicesCatalog +instanceKlass java/util/Deque +instanceKlass java/util/Queue +instanceKlass sun/net/util/IPAddressUtil$MASKS +instanceKlass sun/net/util/IPAddressUtil +instanceKlass java/net/URLStreamHandler +instanceKlass sun/net/www/ParseUtil +instanceKlass java/net/URL$3 +instanceKlass jdk/internal/access/JavaNetURLAccess +instanceKlass java/net/URL$DefaultFactory +instanceKlass java/net/URLStreamHandlerFactory +instanceKlass jdk/internal/loader/URLClassPath +instanceKlass java/security/Principal +instanceKlass java/security/ProtectionDomain$Key +instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl +instanceKlass jdk/internal/access/JavaSecurityAccess +instanceKlass java/lang/ClassLoader$ParallelLoaders +instanceKlass java/security/cert/Certificate +instanceKlass jdk/internal/loader/ArchivedClassLoaders +instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView +instanceKlass jdk/internal/loader/ClassLoaderHelper +instanceKlass jdk/internal/loader/NativeLibraries +instanceKlass java/lang/Module$EnableNativeAccess +instanceKlass jdk/internal/loader/BootLoader +instanceKlass java/util/Optional +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleFinder +instanceKlass java/lang/module/ModuleFinder +instanceKlass jdk/internal/module/SystemModuleFinders$3 +instanceKlass jdk/internal/module/ModuleHashes$HashSupplier +instanceKlass jdk/internal/module/SystemModuleFinders$2 +instanceKlass java/util/function/Supplier +instanceKlass java/lang/module/ModuleReference +instanceKlass jdk/internal/module/ModuleResolution +instanceKlass java/util/Collections$UnmodifiableMap +instanceKlass jdk/internal/module/ModuleHashes$Builder +instanceKlass jdk/internal/module/ModuleHashes +instanceKlass jdk/internal/module/ModuleTarget +instanceKlass java/util/ImmutableCollections$Set12$1 +instanceKlass java/lang/reflect/AccessFlag$18 +instanceKlass java/lang/reflect/AccessFlag$17 +instanceKlass java/lang/reflect/AccessFlag$16 +instanceKlass java/lang/reflect/AccessFlag$15 +instanceKlass java/lang/reflect/AccessFlag$14 +instanceKlass java/lang/reflect/AccessFlag$13 +instanceKlass java/lang/reflect/AccessFlag$12 +instanceKlass java/lang/reflect/AccessFlag$11 +instanceKlass java/lang/reflect/AccessFlag$10 +instanceKlass java/lang/reflect/AccessFlag$9 +instanceKlass java/lang/reflect/AccessFlag$8 +instanceKlass java/lang/reflect/AccessFlag$7 +instanceKlass java/lang/reflect/AccessFlag$6 +instanceKlass java/lang/reflect/AccessFlag$5 +instanceKlass java/lang/reflect/AccessFlag$4 +instanceKlass java/lang/reflect/AccessFlag$3 +instanceKlass java/lang/reflect/AccessFlag$2 +instanceKlass java/lang/reflect/AccessFlag$1 +instanceKlass java/lang/module/ModuleDescriptor$Version +instanceKlass java/lang/module/ModuleDescriptor$Provides +instanceKlass java/lang/module/ModuleDescriptor$Opens +instanceKlass java/util/ImmutableCollections$SetN$SetNIterator +instanceKlass java/lang/module/ModuleDescriptor$Exports +instanceKlass java/lang/module/ModuleDescriptor$Requires +instanceKlass jdk/internal/module/Builder +instanceKlass jdk/internal/module/SystemModules$default +instanceKlass jdk/internal/module/SystemModules +instanceKlass jdk/internal/module/SystemModulesMap +instanceKlass java/net/URI$1 +instanceKlass jdk/internal/access/JavaNetUriAccess +instanceKlass java/net/URI +instanceKlass jdk/internal/module/SystemModuleFinders +instanceKlass jdk/internal/module/ArchivedModuleGraph +instanceKlass jdk/internal/module/ArchivedBootLayer +instanceKlass jdk/internal/module/ModuleBootstrap$Counters +instanceKlass jdk/internal/module/ModulePatcher +instanceKlass java/io/FileSystem +instanceKlass java/io/DefaultFileSystem +instanceKlass java/io/File +instanceKlass java/lang/module/ModuleDescriptor$1 +instanceKlass jdk/internal/access/JavaLangModuleAccess +instanceKlass sun/invoke/util/VerifyAccess +instanceKlass java/util/KeyValueHolder +instanceKlass java/util/ImmutableCollections$MapN$MapNIterator +instanceKlass java/lang/StrictMath +instanceKlass java/lang/invoke/MethodHandles$Lookup +instanceKlass java/lang/invoke/MemberName$Factory +instanceKlass java/lang/invoke/MethodHandles +instanceKlass java/lang/module/ModuleDescriptor +instanceKlass jdk/internal/module/ModuleBootstrap +instanceKlass java/lang/Character$CharacterCache +instanceKlass java/util/HexFormat +instanceKlass jdk/internal/util/ClassFileDumper +instanceKlass sun/security/action/GetPropertyAction +instanceKlass java/lang/invoke/MethodHandleStatics +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject +instanceKlass java/util/concurrent/locks/Condition +instanceKlass jdk/internal/misc/Blocker +instanceKlass java/util/Collections +instanceKlass java/lang/Thread$ThreadIdentifiers +instanceKlass sun/io/Win32ErrorMode +instanceKlass jdk/internal/misc/OSEnvironment +instanceKlass java/lang/Integer$IntegerCache +instanceKlass jdk/internal/misc/Signal$NativeHandler +instanceKlass java/util/Hashtable$Entry +instanceKlass jdk/internal/misc/Signal +instanceKlass java/lang/Terminator$1 +instanceKlass jdk/internal/misc/Signal$Handler +instanceKlass java/lang/Terminator +instanceKlass java/nio/ByteOrder +instanceKlass java/nio/Buffer$2 +instanceKlass jdk/internal/access/JavaNioAccess +instanceKlass java/nio/Buffer$1 +instanceKlass jdk/internal/misc/ScopedMemoryAccess +instanceKlass java/nio/charset/CodingErrorAction +instanceKlass sun/nio/cs/SingleByte +instanceKlass java/lang/StringUTF16 +instanceKlass sun/nio/cs/IBM850$Holder +instanceKlass sun/nio/cs/ArrayEncoder +instanceKlass java/nio/charset/CharsetEncoder +instanceKlass java/io/Writer +instanceKlass java/io/PrintStream$1 +instanceKlass jdk/internal/access/JavaIOPrintStreamAccess +instanceKlass jdk/internal/misc/InternalLock +instanceKlass java/io/OutputStream +instanceKlass java/io/Flushable +instanceKlass java/io/FileDescriptor$1 +instanceKlass jdk/internal/access/JavaIOFileDescriptorAccess +instanceKlass java/io/FileDescriptor +instanceKlass jdk/internal/util/StaticProperty +instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory +instanceKlass java/lang/reflect/Modifier +instanceKlass java/lang/Class$1 +instanceKlass java/lang/Class$Atomic +instanceKlass java/lang/Class$ReflectionData +instanceKlass java/nio/charset/StandardCharsets +instanceKlass sun/nio/cs/HistoricallyNamedCharset +instanceKlass java/nio/charset/spi/CharsetProvider +instanceKlass java/nio/charset/Charset +instanceKlass java/util/HashMap$HashIterator +instanceKlass java/util/concurrent/locks/LockSupport +instanceKlass java/util/concurrent/ConcurrentHashMap$Node +instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell +instanceKlass java/util/concurrent/locks/ReentrantLock +instanceKlass java/util/concurrent/locks/Lock +instanceKlass java/lang/CharacterData +instanceKlass java/util/Arrays +instanceKlass jdk/internal/util/Preconditions$3 +instanceKlass jdk/internal/util/Preconditions$2 +instanceKlass jdk/internal/util/Preconditions$4 +instanceKlass java/util/function/BiFunction +instanceKlass jdk/internal/util/Preconditions$1 +instanceKlass java/util/function/Function +instanceKlass jdk/internal/util/Preconditions +instanceKlass java/lang/Runtime +instanceKlass java/lang/VersionProps +instanceKlass java/lang/StringConcatHelper +instanceKlass java/util/HashMap$Node +instanceKlass java/util/Map$Entry +instanceKlass jdk/internal/util/ArraysSupport +instanceKlass jdk/internal/util/SystemProps$Raw +instanceKlass jdk/internal/util/SystemProps +instanceKlass java/lang/System$2 +instanceKlass jdk/internal/access/JavaLangAccess +instanceKlass java/lang/ref/NativeReferenceQueue$Lock +instanceKlass java/lang/ref/ReferenceQueue +instanceKlass java/lang/ref/Reference$1 +instanceKlass jdk/internal/access/JavaLangRefAccess +instanceKlass jdk/internal/reflect/ReflectionFactory +instanceKlass java/lang/Math +instanceKlass java/lang/StringLatin1 +instanceKlass jdk/internal/reflect/Reflection +instanceKlass jdk/internal/reflect/ReflectionFactory$GetReflectionFactoryAction +instanceKlass java/security/PrivilegedAction +instanceKlass jdk/internal/access/SharedSecrets +instanceKlass java/lang/reflect/ReflectAccess +instanceKlass jdk/internal/access/JavaLangReflectAccess +instanceKlass java/util/ImmutableCollections +instanceKlass java/util/Objects +instanceKlass java/util/Set +instanceKlass jdk/internal/misc/CDS +instanceKlass java/lang/Module$ArchivedData +instanceKlass jdk/internal/misc/VM +instanceKlass java/lang/String$CaseInsensitiveComparator +instanceKlass java/util/Comparator +instanceKlass java/io/ObjectStreamField +instanceKlass jdk/internal/vm/FillerObject +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload +instanceKlass jdk/internal/vm/vector/VectorSupport +instanceKlass java/lang/reflect/RecordComponent +instanceKlass java/util/Iterator +instanceKlass java/lang/Number +instanceKlass java/lang/Character +instanceKlass java/lang/Boolean +instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer +instanceKlass java/lang/LiveStackFrame +instanceKlass java/lang/StackFrameInfo +instanceKlass java/lang/StackWalker$StackFrame +instanceKlass java/lang/StackStreamFactory$AbstractStackWalker +instanceKlass java/lang/StackWalker +instanceKlass java/nio/Buffer +instanceKlass java/lang/StackTraceElement +instanceKlass java/util/RandomAccess +instanceKlass java/util/List +instanceKlass java/util/SequencedCollection +instanceKlass java/util/AbstractCollection +instanceKlass java/util/Collection +instanceKlass java/lang/Iterable +instanceKlass java/util/concurrent/ConcurrentMap +instanceKlass java/util/AbstractMap +instanceKlass java/security/CodeSource +instanceKlass jdk/internal/loader/ClassLoaders +instanceKlass java/util/jar/Manifest +instanceKlass java/lang/Enum +instanceKlass java/net/URL +instanceKlass java/io/InputStream +instanceKlass java/io/Closeable +instanceKlass java/lang/AutoCloseable +instanceKlass jdk/internal/module/Modules +instanceKlass jdk/internal/misc/Unsafe +instanceKlass jdk/internal/misc/UnsafeConstants +instanceKlass java/lang/AbstractStringBuilder +instanceKlass java/lang/Appendable +instanceKlass java/lang/AssertionStatusDirectives +instanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext +instanceKlass jdk/internal/foreign/abi/ABIDescriptor +instanceKlass jdk/internal/foreign/abi/NativeEntryPoint +instanceKlass java/lang/invoke/CallSite +instanceKlass java/lang/invoke/MethodType +instanceKlass java/lang/invoke/TypeDescriptor$OfMethod +instanceKlass java/lang/invoke/LambdaForm +instanceKlass java/lang/invoke/MethodHandleNatives +instanceKlass java/lang/invoke/ResolvedMethodName +instanceKlass java/lang/invoke/MemberName +instanceKlass java/lang/invoke/VarHandle +instanceKlass java/lang/invoke/MethodHandle +instanceKlass jdk/internal/reflect/CallerSensitive +instanceKlass java/lang/annotation/Annotation +instanceKlass jdk/internal/reflect/FieldAccessor +instanceKlass jdk/internal/reflect/ConstantPool +instanceKlass jdk/internal/reflect/ConstructorAccessor +instanceKlass jdk/internal/reflect/MethodAccessor +instanceKlass jdk/internal/reflect/MagicAccessorImpl +instanceKlass jdk/internal/vm/StackChunk +instanceKlass jdk/internal/vm/Continuation +instanceKlass jdk/internal/vm/ContinuationScope +instanceKlass java/lang/reflect/Parameter +instanceKlass java/lang/reflect/Member +instanceKlass java/lang/reflect/AccessibleObject +instanceKlass java/lang/Module +instanceKlass java/util/Map +instanceKlass java/util/Dictionary +instanceKlass java/lang/ThreadGroup +instanceKlass java/lang/Thread$UncaughtExceptionHandler +instanceKlass java/lang/Thread$Constants +instanceKlass java/lang/Thread$FieldHolder +instanceKlass java/lang/Thread +instanceKlass java/lang/Runnable +instanceKlass java/lang/ref/Reference +instanceKlass java/lang/Record +instanceKlass java/security/AccessController +instanceKlass java/security/AccessControlContext +instanceKlass java/security/ProtectionDomain +instanceKlass java/lang/SecurityManager +instanceKlass java/lang/Throwable +instanceKlass java/lang/System +instanceKlass java/lang/ClassLoader +instanceKlass java/lang/Cloneable +instanceKlass java/lang/Class +instanceKlass java/lang/invoke/TypeDescriptor$OfField +instanceKlass java/lang/invoke/TypeDescriptor +instanceKlass java/lang/reflect/Type +instanceKlass java/lang/reflect/GenericDeclaration +instanceKlass java/lang/reflect/AnnotatedElement +instanceKlass java/lang/String +instanceKlass java/lang/constant/ConstantDesc +instanceKlass java/lang/constant/Constable +instanceKlass java/lang/CharSequence +instanceKlass java/lang/Comparable +instanceKlass java/io/Serializable +ciInstanceKlass java/lang/Object 1 1 124 7 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 3 8 1 7 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 3 1 1 +ciMethod java/lang/Object toString ()Ljava/lang/String; 0 0 1 0 -1 +ciInstanceKlass java/io/Serializable 1 0 7 100 1 100 1 1 1 +ciInstanceKlass java/lang/System 1 1 834 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 10 12 1 1 100 1 10 12 10 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 12 1 100 1 8 1 10 10 12 1 100 1 8 1 10 8 1 10 7 12 1 1 8 1 10 12 100 1 8 1 10 10 12 1 1 10 7 12 1 1 1 100 1 18 12 1 100 1 9 100 12 1 1 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 9 12 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 8 1 11 12 1 10 12 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 1 7 1 11 12 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 11 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 9 12 1 8 1 10 7 12 1 1 8 1 7 1 9 7 12 1 1 1 10 12 1 7 1 9 12 10 9 12 7 1 10 12 9 12 1 1 8 1 10 12 1 1 8 1 10 7 12 1 1 10 12 1 10 12 1 1 11 7 12 1 1 10 12 10 7 12 1 1 1 9 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 8 1 8 1 10 8 1 8 1 8 1 8 1 10 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 7 1 8 1 10 10 10 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 9 12 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream +staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream +staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream +ciInstanceKlass java/lang/SecurityManager 0 0 576 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 1 10 100 1 10 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 100 1 8 1 10 9 12 1 1 9 12 1 8 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 10 12 1 1 100 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 8 1 100 1 8 1 10 8 1 8 1 8 1 8 1 8 1 10 100 12 1 1 8 1 100 1 8 1 8 1 10 8 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 100 12 1 1 11 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 18 12 1 1 11 12 1 1 18 18 11 12 1 18 12 1 11 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 100 1 10 100 12 1 1 10 12 1 10 12 1 18 12 1 18 10 100 12 1 1 1 18 12 1 10 12 1 18 18 8 1 10 12 1 9 12 1 1 11 7 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 8 1 100 1 10 9 12 1 8 1 10 12 1 8 1 100 1 10 10 100 12 1 1 10 100 1 9 7 12 1 1 1 11 12 1 1 10 12 1 11 12 1 10 12 1 7 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 7 12 1 1 1 16 1 16 15 10 12 16 1 15 10 12 16 15 11 7 1 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 1 16 1 15 11 12 1 15 10 12 16 15 10 16 1 15 10 100 12 1 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/security/AccessController 1 1 295 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 1 10 11 7 12 1 1 1 10 7 12 1 1 11 7 1 100 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 10 100 12 1 1 1 8 1 7 1 10 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 3 1 1 1 +staticfield java/security/AccessController $assertionsDisabled Z 1 +ciInstanceKlass java/security/ProtectionDomain 1 1 348 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 7 1 9 12 1 1 9 12 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 9 12 1 9 100 12 1 1 10 12 1 1 10 100 1 10 12 1 1 8 1 7 1 8 1 10 12 1 10 11 10 7 12 1 1 1 10 12 1 1 8 1 11 8 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 100 1 18 12 1 1 10 7 12 1 1 1 10 7 1 10 12 1 10 12 1 1 11 100 12 1 1 11 12 1 100 1 11 7 12 1 1 1 10 12 1 10 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 100 12 1 1 11 12 1 10 12 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/security/ProtectionDomain filePermCompatInPD Z 0 +ciInstanceKlass java/security/CodeSource 1 1 398 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 100 12 1 1 10 100 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 8 1 8 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 12 1 10 12 10 12 1 1 10 100 12 1 1 10 12 1 7 1 10 12 10 100 12 1 1 1 10 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 7 1 8 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 10 12 10 12 1 1 11 7 12 1 1 10 10 12 1 11 10 12 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 11 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Boolean 1 1 152 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 8 1 10 7 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 9 100 12 1 1 9 12 10 100 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Comparable 1 0 12 100 1 100 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/constant/Constable 1 0 11 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Map 1 1 263 11 7 12 1 1 1 11 12 1 1 10 7 12 1 1 11 12 1 1 11 7 12 1 1 1 11 100 12 1 1 1 11 12 1 1 7 1 11 12 1 11 12 1 100 1 100 1 10 12 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 12 1 11 12 1 10 12 1 1 11 12 1 11 7 12 1 9 7 12 1 1 1 100 1 10 12 7 1 7 1 10 12 1 7 1 10 7 1 11 12 1 11 12 1 1 11 12 1 1 7 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Class 1 1 1698 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 8 1 8 1 8 1 10 100 12 1 1 1 11 12 1 1 8 1 10 12 1 10 11 100 12 1 1 1 11 7 12 1 1 1 11 8 1 18 8 1 10 12 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 7 1 7 1 10 12 1 1 9 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 7 1 10 10 12 1 1 10 12 1 1 100 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 10 12 1 1 10 9 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 9 100 12 1 1 1 9 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 10 10 10 12 1 1 10 12 1 1 10 12 10 10 12 1 1 7 1 8 1 10 10 12 1 1 10 12 1 100 1 11 12 1 10 100 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 7 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 11 7 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 7 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 9 12 1 1 10 12 7 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 10 12 1 1 100 1 10 8 1 10 12 1 11 11 12 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 10 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 9 12 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 9 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 100 1 10 10 12 1 1 7 1 10 12 1 1 100 11 7 1 9 12 1 1 9 12 1 7 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 7 1 10 10 12 1 1 10 10 12 1 10 12 10 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 8 10 7 8 1 18 8 1 8 1 10 12 1 9 12 1 9 12 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 7 1 10 10 12 1 10 7 1 9 12 1 8 1 10 12 1 7 1 10 12 1 10 12 1 1 100 1 7 1 9 12 1 100 1 8 1 10 10 7 12 1 1 1 10 12 11 7 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 11 12 7 1 11 7 12 1 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 10 12 1 1 9 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 7 1 11 12 1 10 7 12 1 1 1 10 12 1 11 12 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 11 12 1 11 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 100 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 100 1 10 12 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 18 12 1 1 11 12 1 1 18 11 12 1 18 12 1 11 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 8 1 10 12 1 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 11 12 16 1 16 15 16 15 10 12 16 16 15 10 12 16 15 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1 100 1 100 1 1 100 1 100 1 1 +staticfield java/lang/Class EMPTY_CLASS_ARRAY [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/lang/reflect/AnnotatedElement 1 1 164 11 7 12 1 1 1 11 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 11 12 1 1 11 7 12 1 1 10 7 12 1 1 1 10 12 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 18 12 1 18 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 16 1 16 1 15 11 12 16 16 1 15 10 100 12 1 1 1 16 1 15 10 100 12 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor 1 0 17 100 1 100 1 1 1 1 1 1 100 1 100 1 1 1 1 +ciInstanceKlass java/lang/reflect/GenericDeclaration 1 0 30 7 1 7 1 7 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 +ciInstanceKlass java/lang/reflect/Type 1 1 17 11 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor$OfField 1 0 21 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StringBuilder 1 1 422 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 100 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/StringBuilder +instanceKlass java/lang/StringBuffer +ciInstanceKlass java/lang/AbstractStringBuilder 1 1 605 7 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 7 1 3 3 10 12 1 10 12 1 1 11 7 1 100 1 7 1 10 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 8 1 10 10 12 1 1 100 1 10 12 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 100 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 10 12 10 12 1 10 10 10 12 1 10 5 0 10 10 12 1 1 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 100 1 10 12 100 1 10 100 1 10 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 7 1 1 16 1 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/AbstractStringBuilder EMPTYVALUE [B 0 +ciInstanceKlass java/lang/Appendable 1 0 14 100 1 100 1 1 1 1 100 1 1 1 1 1 +ciInstanceKlass java/lang/CharSequence 1 1 131 11 7 12 1 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 100 12 1 1 1 11 12 1 1 11 7 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 100 1 10 12 1 1 10 100 12 1 1 1 100 1 10 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 11 12 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/io/PrintStream 1 1 413 100 1 10 12 1 1 8 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 100 1 100 1 10 10 7 12 1 1 9 12 1 1 9 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 7 1 10 12 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 12 1 8 1 7 1 10 12 1 10 12 1 100 1 10 10 12 1 8 10 12 1 9 12 1 1 100 1 8 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 10 12 1 1 10 12 1 1 100 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 1 10 12 10 12 1 10 10 12 1 10 12 1 10 12 10 12 10 7 12 1 1 1 10 12 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 10 7 12 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/io/PrintStream println (Ljava/lang/String;)V 2 0 1 0 -1 +ciInstanceKlass java/lang/AutoCloseable 1 0 12 100 1 100 1 1 1 1 100 1 1 1 +ciInstanceKlass java/io/Closeable 1 0 14 100 1 100 1 100 1 1 1 1 100 1 1 1 +instanceKlass javax/xml/stream/XMLStreamException +instanceKlass java/lang/CloneNotSupportedException +instanceKlass java/security/PrivilegedActionException +instanceKlass java/net/URISyntaxException +instanceKlass com/sun/javafx/geom/transform/NoninvertibleTransformException +instanceKlass java/util/concurrent/ExecutionException +instanceKlass java/security/GeneralSecurityException +instanceKlass java/lang/InterruptedException +instanceKlass java/io/IOException +instanceKlass java/lang/ReflectiveOperationException +instanceKlass java/lang/RuntimeException +ciInstanceKlass java/lang/Exception 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/Exception +instanceKlass java/lang/Error +ciInstanceKlass java/lang/Throwable 1 1 404 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 100 12 1 1 10 10 12 1 100 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 8 1 9 7 12 1 1 1 10 12 1 1 100 1 10 12 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 8 1 8 1 9 12 1 1 10 12 1 1 100 1 10 11 12 1 8 1 8 1 10 7 12 1 1 8 1 10 12 1 8 1 100 1 10 12 1 9 12 1 1 10 12 1 10 7 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 10 12 1 1 7 1 10 100 12 1 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 1 8 1 10 10 9 100 12 1 1 1 8 1 10 12 1 1 11 10 100 1 8 1 10 11 12 1 1 8 1 9 12 1 10 100 12 1 1 11 9 12 1 1 11 12 1 1 100 10 12 1 10 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$EmptyList +staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable; +staticfield java/lang/Throwable $assertionsDisabled Z 1 +ciMethod java/lang/Throwable toString ()Ljava/lang/String; 0 0 1 0 -1 +instanceKlass java/security/Provider +ciInstanceKlass java/util/Properties 1 1 690 10 7 12 1 1 1 100 1 10 7 12 1 1 7 1 10 12 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 8 1 10 12 1 7 1 10 12 10 12 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 3 10 10 100 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 1 100 1 9 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 9 12 1 1 7 1 7 1 10 12 1 7 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 11 12 1 10 12 1 1 8 1 10 12 1 10 100 12 1 1 10 12 1 100 1 10 10 12 1 10 12 1 100 1 10 10 12 1 1 10 7 12 1 1 9 100 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 100 1 100 1 10 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 1 100 1 10 10 12 1 11 7 12 1 1 10 7 12 1 1 1 8 1 10 100 12 1 1 11 11 7 1 8 1 10 100 1 11 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 10 11 12 1 4 11 10 12 1 1 10 100 12 1 1 11 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 100 12 1 1 1 100 1 6 0 10 12 1 1 11 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +staticfield java/util/Properties UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +instanceKlass java/util/Hashtable +ciInstanceKlass java/util/Dictionary 1 1 36 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/Properties +ciInstanceKlass java/util/Hashtable 1 1 516 7 1 10 7 12 1 1 1 9 7 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 9 12 1 1 7 1 9 12 1 1 4 10 7 12 1 1 1 9 12 1 4 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 100 1 10 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 12 1 3 9 12 1 9 12 1 3 10 12 1 10 12 1 10 12 1 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 100 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 9 12 1 1 10 100 1 7 1 10 12 1 10 8 1 10 10 12 1 8 1 10 8 1 10 100 12 1 1 1 7 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 100 1 10 100 1 10 10 12 1 1 11 12 1 1 11 12 1 7 1 10 10 10 100 12 1 1 11 100 12 1 1 1 100 1 10 11 100 12 1 1 11 100 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 8 1 10 4 4 10 12 1 1 10 12 1 8 1 4 10 12 10 100 12 1 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/String 1 1 1443 10 7 12 1 1 1 8 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 10 7 12 1 1 1 10 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 10 12 9 7 12 1 1 10 12 1 1 3 10 12 1 1 7 1 11 12 1 1 11 12 1 11 12 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 100 1 100 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 100 1 11 10 100 12 1 1 11 12 1 11 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 10 100 12 1 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 3 3 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 10 12 1 100 1 10 10 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 11 7 1 11 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 1 10 12 10 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 10 12 1 10 12 10 10 12 10 10 12 1 10 12 1 10 10 12 10 7 12 1 1 1 10 12 10 10 12 10 12 1 10 12 10 12 10 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 10 7 12 1 1 1 11 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 7 1 8 1 10 10 10 12 1 10 12 1 1 8 1 10 12 1 3 3 10 12 1 10 12 1 1 10 12 7 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 100 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 10 12 10 12 1 1 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 1 10 10 12 1 8 1 10 12 1 1 18 12 1 1 11 100 12 1 1 1 7 1 3 18 12 1 18 12 1 8 1 10 100 12 1 1 1 11 12 1 1 10 12 10 10 12 1 10 11 12 1 1 10 12 1 1 11 12 1 18 3 11 10 12 1 11 11 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 11 100 12 1 7 1 100 1 10 12 7 1 10 10 7 12 1 1 1 100 1 10 7 1 10 10 12 1 10 10 12 1 8 1 10 10 12 1 8 1 8 1 10 12 1 10 12 1 10 10 12 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 8 1 10 12 1 10 12 1 10 9 12 1 10 12 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 100 12 1 1 1 10 12 10 12 1 1 10 12 10 10 12 10 12 7 1 9 12 1 1 7 1 10 7 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 12 15 10 12 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 1 +staticfield java/lang/String COMPACT_STRINGS Z 1 +staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator +ciInstanceKlass java/lang/constant/ConstantDesc 1 0 37 100 1 100 1 1 1 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/InternalError 0 0 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/AssertionError +instanceKlass java/lang/VirtualMachineError +instanceKlass java/lang/LinkageError +ciInstanceKlass java/lang/Error 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/StackOverflowError +instanceKlass java/lang/OutOfMemoryError +instanceKlass java/lang/InternalError +ciInstanceKlass java/lang/VirtualMachineError 1 1 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Iterator 1 1 53 100 1 8 1 10 12 1 1 10 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 100 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/zip/ZipFile$ZipFileInputStream +instanceKlass java/io/FilterInputStream +instanceKlass java/io/FileInputStream +instanceKlass java/io/ByteArrayInputStream +ciInstanceKlass java/io/InputStream 1 1 195 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 100 1 3 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 1 3 7 1 8 1 10 10 100 12 1 1 1 7 1 10 11 7 12 1 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 100 1 10 7 12 1 1 1 5 0 10 12 1 10 12 1 1 100 1 10 8 1 10 8 1 8 1 10 12 1 1 10 100 12 1 1 1 7 1 5 0 10 12 1 100 1 7 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/io/BufferedInputStream 1 1 256 9 7 12 1 1 1 100 1 8 1 10 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 7 12 1 1 9 12 1 100 1 8 1 10 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 9 12 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 10 12 1 100 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 7 1 3 10 12 1 1 10 12 1 8 1 10 12 1 8 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 100 1 7 1 5 0 10 10 12 1 1 8 10 12 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/io/BufferedInputStream EMPTY [B 0 +staticfield java/io/BufferedInputStream U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/io/BufferedInputStream BUF_OFFSET J 40 +instanceKlass java/security/DigestInputStream +instanceKlass sun/net/www/protocol/jar/JarURLConnection$JarURLInputStream +instanceKlass java/io/DataInputStream +instanceKlass java/util/jar/Manifest$FastInputStream +instanceKlass java/util/zip/InflaterInputStream +instanceKlass java/io/BufferedInputStream +ciInstanceKlass java/io/FilterInputStream 1 1 62 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/misc/Unsafe 1 1 1287 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 10 10 12 1 1 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 5 0 5 0 5 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 7 1 8 1 10 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 9 12 1 100 1 10 10 12 1 1 8 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 1 9 7 1 9 7 1 9 7 1 9 9 7 1 9 7 1 9 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 5 0 5 0 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 3 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 100 1 10 9 12 1 5 0 10 12 1 1 5 0 10 12 1 5 0 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 5 0 5 0 5 0 10 12 1 1 10 12 1 10 12 1 10 12 10 100 12 1 1 8 1 100 1 11 12 1 1 8 1 11 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 12 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/misc/Unsafe theUnsafe Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ADDRESS_SIZE I 8 +instanceKlass jdk/internal/reflect/DelegatingClassLoader +instanceKlass java/security/SecureClassLoader +ciInstanceKlass java/lang/ClassLoader 1 1 1108 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 10 7 1 10 7 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 8 1 10 12 1 10 12 1 100 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 12 1 10 12 1 1 8 1 8 1 10 7 12 1 1 100 1 10 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 12 1 10 7 1 10 12 1 100 1 18 12 1 10 100 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 10 12 1 10 12 1 100 1 10 12 1 8 1 10 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 8 1 100 1 10 10 12 1 9 12 1 10 7 12 1 1 10 12 1 7 1 8 1 10 12 1 10 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 100 1 10 12 1 1 7 1 7 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 18 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 18 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 12 1 10 11 12 1 1 10 18 10 12 1 1 11 7 12 1 18 12 1 11 12 1 1 10 12 10 12 1 1 10 12 1 1 7 1 8 1 10 10 12 1 8 1 8 1 10 100 12 1 1 10 12 1 100 1 10 10 12 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 11 7 12 1 1 100 1 10 11 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 9 12 1 1 9 12 9 12 1 9 12 1 9 12 1 8 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 11 12 1 1 10 100 12 1 1 1 100 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate; +staticfield java/lang/ClassLoader $assertionsDisabled Z 1 +ciInstanceKlass java/lang/reflect/Constructor 1 1 439 10 100 12 1 1 1 10 100 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 100 1 8 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 7 12 1 1 10 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +instanceKlass java/lang/reflect/Executable +instanceKlass java/lang/reflect/Field +ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 400 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 7 1 10 7 12 1 1 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 100 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 7 1 100 1 8 1 10 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 1 8 1 10 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 100 1 10 12 1 7 1 10 12 1 10 12 1 1 10 100 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 100 12 1 1 8 1 10 100 12 1 1 1 8 1 10 7 12 1 1 1 9 12 1 7 1 10 7 1 10 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 7 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/reflect/AccessibleObject reflectionFactory Ljdk/internal/reflect/ReflectionFactory; jdk/internal/reflect/ReflectionFactory +instanceKlass java/lang/reflect/Constructor +instanceKlass java/lang/reflect/Method +ciInstanceKlass java/lang/reflect/Executable 1 1 577 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 8 1 8 1 8 1 10 100 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 12 1 7 1 8 1 10 12 1 8 1 11 100 12 1 1 1 7 1 11 7 12 1 1 1 11 12 1 8 1 18 8 1 10 12 1 10 12 1 1 18 8 1 10 12 1 100 1 10 12 1 10 12 1 11 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 10 12 1 8 1 10 12 1 10 12 1 3 100 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 8 1 8 1 8 1 9 12 1 1 9 12 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 7 1 10 12 1 10 12 1 1 100 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 10 10 10 10 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 9 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 16 15 16 1 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/reflect/Member 1 1 37 100 1 10 12 1 1 100 1 100 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass com/sun/glass/ui/InvokeLaterDispatcher +instanceKlass com/sun/javafx/tk/quantum/PerformanceTrackerHelper$1$1 +instanceKlass com/sun/javafx/tk/quantum/QuantumToolkit$1 +instanceKlass java/util/logging/LogManager$Cleaner +instanceKlass jdk/internal/misc/InnocuousThread +instanceKlass java/util/concurrent/ForkJoinWorkerThread +instanceKlass java/lang/ref/Finalizer$FinalizerThread +instanceKlass java/lang/ref/Reference$ReferenceHandler +instanceKlass java/lang/BaseVirtualThread +ciInstanceKlass java/lang/Thread 1 1 870 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 10 100 12 1 1 100 1 8 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 9 12 1 1 10 12 1 7 1 10 12 1 100 1 8 1 10 9 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 3 8 1 7 1 5 0 10 7 12 1 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 1 8 1 10 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 8 1 9 7 12 1 1 9 12 1 1 5 0 100 1 10 100 1 10 100 1 10 7 1 10 8 1 10 12 1 1 10 7 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 7 1 9 12 1 1 100 1 10 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 1 10 10 12 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 10 12 1 10 12 1 100 1 10 10 12 9 12 1 1 10 12 1 11 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 10 10 12 1 10 12 1 1 9 12 1 9 12 10 12 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 8 1 10 9 12 1 10 12 1 7 1 8 1 10 10 12 1 8 1 10 12 1 1 9 12 10 12 8 1 10 10 12 1 10 12 1 8 1 10 12 1 10 8 1 10 100 12 1 1 10 12 1 1 100 1 8 1 10 9 12 1 9 12 1 1 10 12 1 1 10 10 12 1 10 12 1 100 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 8 1 9 12 1 10 12 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Thread NEW_THREAD_BINDINGS Ljava/lang/Object; java/lang/Class +staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +ciInstanceKlass java/lang/Runnable 1 1 11 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/net/URL 1 1 771 10 7 12 1 1 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 7 1 10 10 12 1 1 8 1 10 12 1 1 9 12 1 100 1 8 1 10 12 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 9 12 1 8 1 9 12 1 10 12 1 1 8 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 8 1 10 12 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 10 100 1 10 10 12 1 8 1 10 7 12 1 1 1 10 12 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 1 10 12 1 10 12 1 1 8 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 100 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 1 1 7 1 8 1 10 10 12 1 9 12 1 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 12 1 1 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 100 1 10 9 100 12 1 1 1 10 100 12 1 1 10 12 1 1 10 12 1 8 1 100 1 10 10 7 12 1 1 1 10 12 1 8 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 10 8 8 10 12 1 8 8 8 100 1 10 12 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 100 1 8 1 10 10 10 12 1 1 10 12 1 10 12 1 1 8 1 7 1 10 10 7 1 10 12 1 9 7 12 1 1 1 9 12 1 1 7 1 10 10 7 12 1 1 1 7 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/net/URL defaultFactory Ljava/net/URLStreamHandlerFactory; java/net/URL$DefaultFactory +staticfield java/net/URL streamHandlerLock Ljava/lang/Object; java/lang/Object +staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/lang/Module 1 1 1070 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 10 12 1 10 7 12 1 1 8 1 8 1 10 8 1 8 1 9 12 1 1 8 1 10 100 12 1 1 1 10 12 1 9 12 1 1 11 12 1 9 7 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 1 10 12 1 1 11 12 1 9 12 1 11 12 10 100 12 1 1 100 1 8 1 10 11 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 11 12 1 1 11 7 12 1 1 11 12 1 1 9 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 10 12 10 7 12 1 1 10 7 1 18 12 1 1 11 100 12 1 1 1 18 12 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 10 7 12 1 1 7 1 11 12 1 7 1 7 1 10 12 1 10 7 12 1 1 1 10 11 7 12 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 7 1 10 12 1 10 11 12 1 1 10 12 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 11 7 1 10 12 1 1 11 12 1 10 10 12 1 11 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 18 12 1 11 12 1 18 12 1 10 12 1 10 12 1 10 12 7 1 10 12 1 10 12 1 10 12 1 9 12 1 7 1 10 10 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 18 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 10 12 1 1 7 1 8 1 10 12 1 1 100 1 11 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 100 1 10 12 1 10 12 1 1 7 1 7 1 10 12 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 7 12 1 1 8 1 18 12 1 1 100 1 100 1 9 12 1 1 9 12 1 9 12 1 11 100 12 1 1 1 100 1 11 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 10 12 1 8 1 10 10 100 12 1 1 7 1 10 10 12 1 10 7 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 11 12 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 16 15 10 16 1 15 10 12 16 1 15 10 12 16 1 16 15 10 12 16 16 1 15 10 12 16 15 10 7 12 1 1 1 15 10 100 12 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 1 +staticfield java/lang/Module ALL_UNNAMED_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module ALL_UNNAMED_MODULE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module EVERYONE_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module EVERYONE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Character 1 1 604 7 1 7 1 100 1 9 12 1 1 8 1 9 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 3 3 3 3 3 10 12 1 1 10 12 1 3 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 3 10 12 1 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 10 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 5 0 10 12 1 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 10 12 1 9 12 1 1 100 1 10 10 12 1 10 12 1 1 3 10 100 12 1 1 1 10 12 1 10 100 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 9 100 12 1 1 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 10 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 3 1 1 3 1 1 1 1 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 +staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Character $assertionsDisabled Z 1 +ciInstanceKlass java/lang/OutOfMemoryError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Integer 1 1 453 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 9 12 1 1 9 12 1 7 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 3 10 12 1 1 3 10 12 1 1 10 12 1 1 10 7 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 1 5 0 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 9 12 1 1 9 12 1 1 10 12 1 10 7 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 5 0 3 3 3 3 10 12 1 10 12 1 3 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Integer digits [C 36 +staticfield java/lang/Integer DigitTens [B 100 +staticfield java/lang/Integer DigitOnes [B 100 +instanceKlass java/math/BigDecimal +instanceKlass java/math/BigInteger +instanceKlass java/util/concurrent/atomic/AtomicLong +instanceKlass java/util/concurrent/atomic/AtomicInteger +instanceKlass java/lang/Long +instanceKlass java/lang/Integer +instanceKlass java/lang/Short +instanceKlass java/lang/Byte +instanceKlass java/lang/Double +instanceKlass java/lang/Float +ciInstanceKlass java/lang/Number 1 1 37 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Thread$FieldHolder 1 1 48 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 100 1 1 1 +ciInstanceKlass java/lang/Thread$Constants 0 0 59 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 7 1 8 1 10 12 1 9 7 12 1 1 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ThreadGroup 1 1 411 10 7 12 1 1 1 9 7 12 1 1 1 8 1 9 12 1 1 7 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 18 12 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 11 12 1 1 11 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 11 12 1 11 12 1 1 100 1 10 10 12 1 100 1 10 18 12 1 1 11 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 11 12 10 12 1 1 10 12 1 1 11 7 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 8 1 10 8 1 10 12 1 10 12 1 8 1 9 12 1 1 9 12 1 10 100 12 1 1 1 100 9 12 1 1 7 1 9 12 1 10 12 10 12 1 1 100 10 12 9 12 1 10 12 1 100 1 10 11 12 1 1 7 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/ThreadGroup $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Thread$UncaughtExceptionHandler 1 0 16 100 1 100 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/security/AccessControlContext 1 1 374 9 7 12 1 1 1 9 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 10 12 1 11 7 12 1 1 1 11 12 1 11 12 1 11 12 1 1 7 1 11 12 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 7 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 10 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 100 1 10 12 1 10 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 10 12 1 10 12 1 1 10 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 +instanceKlass java/lang/ThreadBuilders$BoundVirtualThread +instanceKlass java/lang/VirtualThread +ciInstanceKlass java/lang/BaseVirtualThread 0 0 36 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 1 +ciInstanceKlass java/lang/VirtualThread 0 0 890 7 1 9 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 100 1 10 12 1 9 12 1 1 18 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 10 12 1 10 12 1 10 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 9 12 1 1 9 12 1 100 1 10 10 12 1 10 12 1 10 100 12 1 1 10 9 10 10 12 1 1 10 12 1 1 10 100 12 1 1 10 100 1 10 9 10 10 12 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 11 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 10 100 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 18 10 12 1 1 10 12 1 1 100 1 10 10 12 1 7 1 9 12 1 1 10 7 12 1 1 10 9 12 1 1 9 100 12 1 1 1 11 100 12 1 1 1 11 100 1 11 12 10 12 1 10 12 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 11 100 12 1 1 10 12 9 100 12 1 1 1 9 12 1 10 12 1 1 9 12 1 9 12 1 7 1 10 10 12 1 1 10 12 1 10 12 10 12 1 7 1 7 1 8 1 10 10 12 1 1 10 12 1 10 7 12 1 1 8 1 10 12 1 8 1 10 12 1 9 100 12 1 1 1 10 12 1 1 10 12 1 10 10 10 10 12 9 12 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 18 12 1 1 18 12 1 10 7 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 18 12 1 10 100 12 1 1 1 100 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 100 12 1 1 8 1 10 12 1 8 1 8 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 1 18 12 1 1 5 0 9 12 1 10 12 1 18 12 1 100 1 10 12 10 7 12 1 1 10 12 1 1 7 1 8 1 10 10 12 1 10 12 1 1 10 12 1 9 12 1 8 10 12 1 1 8 8 9 12 1 8 10 12 1 1 3 1 3 3 1 3 1 3 1 3 1 3 1 3 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 15 16 15 10 12 16 15 10 12 16 16 15 10 12 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/ThreadBuilders$BoundVirtualThread 0 0 132 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 9 100 12 1 1 1 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/ContinuationScope 0 0 50 10 100 12 1 1 1 10 100 12 1 1 1 100 1 9 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/StackChunk 0 0 34 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Float 1 1 279 7 1 7 1 10 100 12 1 1 1 10 100 12 1 1 1 4 7 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 1 4 10 7 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 3 3 100 1 4 4 4 3 10 12 1 1 9 12 1 1 100 1 10 3 3 4 4 10 12 1 3 3 3 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 4 1 4 1 1 1 4 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Float $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Double 1 1 290 7 1 7 1 10 100 12 1 1 1 10 12 1 1 10 7 1 10 12 1 1 10 100 12 1 1 1 6 0 8 1 10 12 1 1 8 1 10 12 1 1 8 1 6 0 10 12 1 1 100 1 5 0 5 0 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 1 6 0 10 7 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 6 0 1 6 0 1 6 0 1 1 1 6 0 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class +ciMethod java/lang/Double longBitsToDouble (J)D 11768 0 339 0 -1 +ciInstanceKlass java/lang/Byte 1 1 213 7 1 100 1 10 7 12 1 1 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 100 12 1 1 1 10 12 1 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Short 1 1 222 7 1 7 1 100 1 10 7 12 1 1 1 10 12 1 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 9 100 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 3 3 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Long 1 1 524 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 10 12 1 10 12 1 10 12 1 5 0 5 0 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 5 0 5 0 9 12 1 1 9 12 1 5 0 100 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 5 0 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 8 1 8 1 11 12 1 1 10 12 1 10 12 1 10 12 1 5 0 5 0 9 7 12 1 1 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 7 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 5 0 10 12 1 10 12 1 5 0 5 0 5 0 10 12 1 1 10 12 1 5 0 5 0 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 3 1 3 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass jdk/internal/vm/vector/VectorSupport 0 0 573 100 1 10 100 12 1 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 9 12 1 1 10 100 12 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask +instanceKlass jdk/internal/vm/vector/VectorSupport$Vector +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload 0 0 32 10 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$Vector 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/FillerObject 0 0 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 +instanceKlass java/lang/ref/PhantomReference +instanceKlass java/lang/ref/FinalReference +instanceKlass java/lang/ref/WeakReference +instanceKlass java/lang/ref/SoftReference +ciInstanceKlass java/lang/ref/Reference 1 1 190 9 7 12 1 1 1 9 7 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 8 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 7 1 100 1 10 12 9 12 1 9 12 1 100 1 10 10 12 1 10 10 7 12 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 7 1 1 1 +staticfield java/lang/ref/Reference processPendingLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Reference $assertionsDisabled Z 1 +instanceKlass sun/util/locale/provider/LocaleResources$ResourceReference +instanceKlass sun/util/resources/Bundles$BundleReference +instanceKlass java/util/ResourceBundle$BundleReference +instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry +instanceKlass java/lang/invoke/LambdaFormEditor$Transform +ciInstanceKlass java/lang/ref/SoftReference 1 1 47 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 +instanceKlass com/sun/javafx/util/WeakReferenceQueue$ListEntry +instanceKlass java/lang/WeakPairMap$WeakRefPeer +instanceKlass java/util/ResourceBundle$KeyElementReference +instanceKlass java/util/logging/LogManager$LoggerWeakRef +instanceKlass java/util/logging/Level$KnownLevel +instanceKlass java/lang/ClassValue$Entry +instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry +instanceKlass java/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry +instanceKlass java/util/WeakHashMap$Entry +ciInstanceKlass java/lang/ref/WeakReference 1 1 31 10 7 12 1 1 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/ref/Finalizer +ciInstanceKlass java/lang/ref/FinalReference 1 1 50 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 +instanceKlass jdk/internal/ref/PhantomCleanable +instanceKlass jdk/internal/ref/Cleaner +ciInstanceKlass java/lang/ref/PhantomReference 1 1 39 10 100 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ref/Finalizer 1 1 155 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 10 12 1 7 1 8 1 10 12 1 10 12 1 1 9 12 1 100 1 10 12 1 7 1 11 100 12 1 1 10 12 1 7 1 10 12 1 100 1 10 12 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 10 12 1 7 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 10 7 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Finalizer ENABLED Z 1 +staticfield java/lang/ref/Finalizer $assertionsDisabled Z 1 +instanceKlass javafx/scene/effect/BlurType +instanceKlass javafx/scene/paint/CycleMethod +instanceKlass javafx/css/SizeUnits +instanceKlass com/sun/javafx/css/Combinator +instanceKlass javafx/scene/control/OverrunStyle +instanceKlass com/sun/javafx/sg/prism/NGShape$Mode +instanceKlass javafx/scene/text/TextAlignment +instanceKlass javafx/scene/text/TextBoundsType +instanceKlass javafx/scene/shape/StrokeLineCap +instanceKlass javafx/scene/shape/StrokeLineJoin +instanceKlass javafx/scene/shape/StrokeType +instanceKlass javafx/scene/input/KeyCode +instanceKlass javafx/scene/image/PixelFormat$Type +instanceKlass javafx/scene/layout/Priority +instanceKlass javafx/scene/AccessibleAction +instanceKlass com/sun/javafx/scene/traversal/TraversalMethod +instanceKlass com/sun/javafx/scene/traversal/Direction +instanceKlass javafx/scene/input/TransferMode +instanceKlass javafx/scene/AccessibleAttribute +instanceKlass javafx/geometry/HPos +instanceKlass javafx/geometry/VPos +instanceKlass javafx/geometry/Pos +instanceKlass javafx/geometry/Orientation +instanceKlass java/lang/reflect/ProxyGenerator$PrimitiveTypeInfo +instanceKlass java/lang/annotation/RetentionPolicy +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner$NameType +instanceKlass jdk/xml/internal/JdkProperty$ImplPropMap +instanceKlass javax/xml/catalog/CatalogFeatures$Feature +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$Property +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$NameMap +instanceKlass jdk/xml/internal/JdkProperty$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit +instanceKlass com/sun/javafx/application/PlatformImpl$HighContrastScheme +instanceKlass javafx/application/ConditionalFeature +instanceKlass com/sun/javafx/logging/PlatformLogger$Level +instanceKlass javafx/scene/effect/BlendMode +instanceKlass javafx/geometry/Side +instanceKlass javafx/scene/layout/BackgroundRepeat +instanceKlass javafx/scene/text/FontWeight +instanceKlass javafx/scene/text/FontPosture +instanceKlass javafx/css/StyleOrigin +instanceKlass javafx/scene/input/MouseButton +instanceKlass javafx/scene/Scene$DirtyBits +instanceKlass javafx/geometry/NodeOrientation +instanceKlass javafx/scene/AccessibleRole +instanceKlass com/sun/javafx/scene/LayoutFlags +instanceKlass com/sun/javafx/scene/DirtyBits +instanceKlass javafx/scene/DepthTest +instanceKlass javafx/scene/CacheHint +instanceKlass com/sun/javafx/scene/CssFlags +instanceKlass javafx/stage/Modality +instanceKlass javafx/stage/StageStyle +instanceKlass com/sun/prism/impl/ps/BaseShaderContext$SpecialShaderType +instanceKlass com/sun/prism/impl/ps/BaseShaderContext$MaskType +instanceKlass com/sun/prism/GraphicsPipeline$ShaderModel +instanceKlass com/sun/prism/GraphicsPipeline$ShaderType +instanceKlass com/sun/prism/impl/PrismSettings$RasterizerType +instanceKlass sun/security/util/KnownOIDs +instanceKlass sun/util/locale/provider/LocaleProviderAdapter$Type +instanceKlass java/util/Locale$Category +instanceKlass java/util/regex/Pattern$Qtype +instanceKlass java/lang/StackStreamFactory$WalkerState +instanceKlass java/lang/StackWalker$ExtendedOption +instanceKlass java/lang/StackWalker$Option +instanceKlass java/time/temporal/ChronoUnit +instanceKlass java/time/temporal/ChronoField +instanceKlass java/time/zone/ZoneOffsetTransitionRule$TimeDefinition +instanceKlass java/time/DayOfWeek +instanceKlass java/time/Month +instanceKlass sun/util/logging/PlatformLogger$Level +instanceKlass java/lang/System$Logger$Level +instanceKlass java/util/stream/StreamShape +instanceKlass jdk/internal/logger/BootstrapLogger$LoggingBackend +instanceKlass java/util/stream/StreamOpFlag$Type +instanceKlass java/util/stream/StreamOpFlag +instanceKlass java/util/zip/ZipCoder$Comparison +instanceKlass java/nio/file/LinkOption +instanceKlass sun/nio/fs/WindowsPathType +instanceKlass java/nio/file/StandardOpenOption +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassOption +instanceKlass java/lang/invoke/VarHandle$AccessType +instanceKlass java/lang/invoke/VarHandle$AccessMode +instanceKlass java/lang/invoke/MethodHandleImpl$Intrinsic +instanceKlass java/lang/invoke/LambdaForm$BasicType +instanceKlass java/lang/invoke/LambdaForm$Kind +instanceKlass sun/invoke/util/Wrapper +instanceKlass java/util/concurrent/TimeUnit +instanceKlass java/io/File$PathStatus +instanceKlass java/lang/module/ModuleDescriptor$Requires$Modifier +instanceKlass java/lang/reflect/AccessFlag$Location +instanceKlass java/lang/reflect/AccessFlag +instanceKlass java/lang/module/ModuleDescriptor$Modifier +instanceKlass java/lang/reflect/ClassFileFormatVersion +instanceKlass java/lang/Thread$State +ciInstanceKlass java/lang/Enum 1 1 204 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 7 1 10 10 7 12 1 1 10 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 1 100 1 8 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 100 1 7 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/reflect/Method 1 1 472 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 8 1 10 12 1 10 12 1 7 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 11 7 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 100 12 1 1 1 100 1 100 1 100 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/Field 1 1 457 9 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 1 10 7 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 10 12 1 8 1 8 1 10 11 7 1 9 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 7 12 1 1 10 12 1 1 11 7 1 10 12 1 7 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 9 100 12 1 1 10 100 12 1 1 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/reflect/Parameter 0 0 243 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 11 7 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 12 1 10 12 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 8 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 100 1 10 11 12 1 1 11 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/RecordComponent 0 0 196 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 10 100 12 1 1 9 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 9 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 9 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 9 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/StringBuffer 0 0 483 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 100 12 1 1 1 10 10 12 1 1 9 12 1 1 10 100 12 1 1 10 100 1 8 10 100 12 1 1 1 8 10 12 1 8 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 10 12 100 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 9 7 12 1 1 1 9 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/loader/BuiltinClassLoader +instanceKlass java/net/URLClassLoader +ciInstanceKlass java/security/SecureClassLoader 1 1 102 10 7 12 1 1 1 7 1 10 12 1 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 7 1 10 12 1 7 1 10 12 1 11 7 12 1 1 1 7 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass java/net/URLClassLoader 0 0 600 10 7 12 1 1 1 100 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 100 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 100 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 11 7 12 1 1 10 12 1 11 12 1 11 12 1 1 11 10 12 1 1 10 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 7 1 100 1 10 12 1 1 7 1 10 10 12 1 1 10 100 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 12 1 1 10 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 8 1 10 12 1 1 11 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 100 12 1 1 9 100 12 1 1 1 10 12 1 8 1 100 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 100 1 8 1 10 100 1 10 12 1 10 100 12 1 100 1 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/util/jar/Manifest 1 1 339 10 7 12 1 1 1 7 1 10 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 100 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 11 12 1 1 100 1 10 12 1 8 1 11 12 1 7 1 10 12 1 1 11 12 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 1 10 9 100 12 1 1 1 10 12 1 1 10 100 12 1 10 12 1 10 12 1 9 100 12 1 1 1 8 1 10 12 1 8 1 8 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 8 1 10 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 11 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 10 12 1 11 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/io/File 1 1 649 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 7 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 100 1 10 10 7 12 1 1 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 100 1 8 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 10 12 1 10 12 100 1 8 1 10 10 12 1 10 12 1 8 1 10 12 1 7 1 10 10 12 1 1 10 12 1 10 12 1 100 1 10 7 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 100 1 7 1 10 12 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 1 7 1 10 11 100 12 1 1 1 11 7 12 1 1 11 12 1 11 12 1 1 100 1 10 12 1 10 10 10 100 1 11 100 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 10 12 1 1 10 12 1 1 7 1 5 0 8 1 8 1 8 1 10 100 12 1 1 10 12 1 1 100 1 8 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 1 8 7 1 7 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/io/File FS Ljava/io/FileSystem; java/io/WinNTFileSystem +staticfield java/io/File separatorChar C 92 +staticfield java/io/File separator Ljava/lang/String; "\" +staticfield java/io/File pathSeparatorChar C 59 +staticfield java/io/File pathSeparator Ljava/lang/String; ";" +staticfield java/io/File UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/io/File PATH_OFFSET J 16 +staticfield java/io/File PREFIX_LENGTH_OFFSET J 12 +staticfield java/io/File $assertionsDisabled Z 1 +ciInstanceKlass java/io/ByteArrayInputStream 1 1 117 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 3 10 100 1 10 100 12 1 1 1 9 12 1 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/io/ByteArrayInputStream $assertionsDisabled Z 1 +instanceKlass java/nio/IntBuffer +instanceKlass java/nio/LongBuffer +instanceKlass java/nio/CharBuffer +instanceKlass java/nio/ByteBuffer +ciInstanceKlass java/nio/Buffer 1 1 256 100 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 1 100 1 8 1 10 12 1 8 1 8 1 9 12 10 12 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 100 1 10 100 1 10 100 1 10 9 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 12 1 10 100 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 7 1 10 10 12 1 1 7 1 10 10 7 12 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 +staticfield java/nio/Buffer UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/nio/Buffer SCOPED_MEMORY_ACCESS Ljdk/internal/misc/ScopedMemoryAccess; jdk/internal/misc/ScopedMemoryAccess +staticfield java/nio/Buffer IOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield java/nio/Buffer $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/util/Preconditions 1 1 194 10 7 12 1 1 1 11 7 12 1 1 1 11 100 12 1 1 1 7 1 100 1 10 7 12 1 1 1 10 12 1 8 1 7 1 10 7 12 1 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 7 1 10 12 1 8 1 10 7 12 1 1 1 8 1 10 12 1 1 10 12 1 1 11 12 1 8 1 8 1 11 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 7 1 10 10 12 1 1 9 12 1 1 7 1 10 9 12 1 7 1 10 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/util/Preconditions SIOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield jdk/internal/util/Preconditions AIOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield jdk/internal/util/Preconditions IOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +instanceKlass java/util/AbstractList$SubList +instanceKlass java/util/Collections$SingletonList +instanceKlass java/util/Vector +instanceKlass javafx/collections/ObservableListBase +instanceKlass javafx/collections/FXCollections$EmptyObservableList +instanceKlass sun/security/jca/ProviderList$3 +instanceKlass java/util/AbstractSequentialList +instanceKlass java/util/ArrayList$SubList +instanceKlass java/util/Arrays$ArrayList +instanceKlass java/util/Collections$EmptyList +instanceKlass java/util/ArrayList +ciInstanceKlass java/util/AbstractList 1 1 218 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 1 11 100 12 1 1 1 11 12 1 1 11 12 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 7 1 11 7 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 7 1 10 12 1 100 1 10 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 100 1 8 1 8 1 8 1 10 7 1 11 10 10 12 1 11 12 1 10 12 1 1 8 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Iterable 1 1 62 10 7 12 1 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Collection 1 1 115 11 100 12 1 1 1 100 1 11 7 12 1 1 1 10 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 11 12 1 1 10 100 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/SequencedCollection 1 1 109 100 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1 +ciInstanceKlass java/util/List 1 1 251 10 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 100 1 100 1 10 12 1 1 100 1 10 100 12 1 1 1 11 12 1 1 11 12 1 11 12 1 100 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 7 12 1 1 1 7 1 10 12 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1 +instanceKlass java/util/WeakHashMap$Values +instanceKlass java/util/LinkedHashMap$LinkedValues +instanceKlass java/util/AbstractQueue +instanceKlass java/util/IdentityHashMap$Values +instanceKlass java/util/HashMap$Values +instanceKlass java/util/ArrayDeque +instanceKlass java/util/AbstractSet +instanceKlass java/util/ImmutableCollections$AbstractImmutableCollection +instanceKlass java/util/AbstractList +ciInstanceKlass java/util/AbstractCollection 1 1 160 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 11 12 1 11 7 1 10 12 1 10 12 1 10 100 12 1 1 1 11 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/AssertionStatusDirectives 0 0 24 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/reflect/UndeclaredThrowableException +instanceKlass com/sun/javafx/fxml/PropertyNotFoundException +instanceKlass java/util/NoSuchElementException +instanceKlass java/lang/IndexOutOfBoundsException +instanceKlass com/sun/javafx/geom/transform/SingularMatrixException +instanceKlass java/lang/UnsupportedOperationException +instanceKlass java/lang/SecurityException +instanceKlass java/lang/IllegalStateException +instanceKlass java/lang/IllegalArgumentException +instanceKlass java/lang/ArithmeticException +instanceKlass java/lang/NullPointerException +instanceKlass java/lang/IllegalMonitorStateException +instanceKlass java/lang/ArrayStoreException +instanceKlass java/lang/ClassCastException +ciInstanceKlass java/lang/RuntimeException 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/reflect/Proxy$ProxyBuilder$ProxyClassContext +instanceKlass java/security/SecureClassLoader$CodeSourceKey +instanceKlass jdk/internal/reflect/ReflectionFactory$Config +instanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs +instanceKlass jdk/internal/foreign/abi/VMStorage +ciInstanceKlass java/lang/Record 1 1 22 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/MethodType 1 1 780 7 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 7 12 1 1 8 1 10 100 12 1 1 1 9 7 1 9 7 1 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 7 1 8 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 9 12 1 11 12 1 1 7 10 12 1 1 10 12 1 1 7 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 11 12 1 1 10 12 1 1 7 1 10 12 10 12 1 10 12 1 100 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 10 10 12 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 9 12 1 1 7 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 11 12 1 100 1 11 100 12 1 1 10 12 1 100 1 10 12 1 10 100 12 1 1 10 12 1 1 9 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 10 100 12 1 1 10 12 1 100 10 12 1 1 10 12 1 10 7 1 7 1 9 12 1 1 7 1 7 1 7 1 1 1 5 0 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 7 1 1 7 1 1 100 1 100 1 1 +staticfield java/lang/invoke/MethodType internTable Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet; java/lang/invoke/MethodType$ConcurrentWeakInternSet +staticfield java/lang/invoke/MethodType NO_PTYPES [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType objectOnlyTypes [Ljava/lang/invoke/MethodType; 20 [Ljava/lang/invoke/MethodType; +staticfield java/lang/invoke/MethodType METHOD_HANDLE_ARRAY [Ljava/lang/Class; 1 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/invoke/MethodType $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor$OfMethod 1 0 43 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +instanceKlass java/lang/InstantiationException +instanceKlass java/lang/reflect/InvocationTargetException +instanceKlass java/lang/IllegalAccessException +instanceKlass java/lang/NoSuchFieldException +instanceKlass java/lang/NoSuchMethodException +instanceKlass java/lang/ClassNotFoundException +ciInstanceKlass java/lang/ReflectiveOperationException 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/invoke/BoundMethodHandle +instanceKlass java/lang/invoke/DelegatingMethodHandle +instanceKlass java/lang/invoke/DirectMethodHandle +ciInstanceKlass java/lang/invoke/MethodHandle 1 1 736 100 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 8 1 10 7 12 1 1 1 9 12 1 1 100 1 10 9 7 12 1 1 1 9 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 11 12 1 10 12 1 10 12 1 1 10 100 12 1 1 100 1 11 12 1 10 100 1 11 12 1 7 1 10 12 1 11 12 1 9 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 10 12 1 1 9 12 1 11 12 1 9 12 1 9 12 1 9 12 1 11 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 10 7 12 1 1 10 12 1 1 100 1 100 1 8 1 8 1 10 10 12 1 1 10 12 1 10 12 1 7 1 10 100 12 1 1 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 7 12 1 1 9 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 8 10 12 1 1 8 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 7 1 100 1 1 100 1 1 100 1 1 1 1 +staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20 +staticfield java/lang/invoke/MethodHandle UPDATE_OFFSET J 13 +staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1 +ciInstanceKlass java/util/concurrent/ConcurrentHashMap 1 1 1210 7 1 7 1 3 10 12 1 1 3 7 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 100 1 11 12 1 1 11 12 1 11 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 4 10 12 1 9 12 1 10 12 1 1 100 1 10 5 0 10 12 1 10 12 1 1 5 0 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 7 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 7 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 9 10 12 1 1 9 12 1 10 12 1 1 5 0 9 12 1 1 7 1 10 12 1 9 12 1 1 7 1 10 12 1 9 12 1 7 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 11 100 1 10 12 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 9 10 12 1 9 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 100 1 10 12 11 100 12 1 1 10 11 7 12 1 10 12 1 100 1 10 12 1 100 1 10 10 9 7 12 1 1 1 10 12 3 10 7 12 1 1 9 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 100 12 1 1 9 12 1 9 7 12 1 1 10 12 1 1 10 12 1 3 9 12 1 9 12 1 10 12 1 1 7 1 9 3 9 12 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 10 100 12 1 1 1 100 10 12 1 7 1 5 0 10 100 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 100 1 10 12 1 10 100 1 100 1 10 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 7 1 10 12 1 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 10 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 9 12 1 1 10 12 1 1 8 10 12 1 1 8 8 8 8 7 10 12 1 1 10 12 1 100 1 8 1 10 7 1 7 1 7 1 1 1 5 0 1 1 3 1 3 1 1 1 1 3 1 3 1 3 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/util/concurrent/ConcurrentHashMap NCPU I 8 +staticfield java/util/concurrent/ConcurrentHashMap serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; +staticfield java/util/concurrent/ConcurrentHashMap U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/util/concurrent/ConcurrentHashMap SIZECTL J 20 +staticfield java/util/concurrent/ConcurrentHashMap TRANSFERINDEX J 32 +staticfield java/util/concurrent/ConcurrentHashMap BASECOUNT J 24 +staticfield java/util/concurrent/ConcurrentHashMap CELLSBUSY J 36 +staticfield java/util/concurrent/ConcurrentHashMap CELLVALUE J 144 +staticfield java/util/concurrent/ConcurrentHashMap ABASE I 16 +staticfield java/util/concurrent/ConcurrentHashMap ASHIFT I 2 +ciInstanceKlass java/util/concurrent/ConcurrentMap 1 1 208 11 7 12 1 1 1 10 100 12 1 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 100 1 11 12 1 11 12 1 100 1 11 100 12 1 1 1 18 12 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 100 12 1 11 12 1 1 11 12 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 +instanceKlass com/sun/javafx/fxml/BeanAdapter +instanceKlass javafx/collections/FXCollections$EmptyObservableMap +instanceKlass java/util/TreeMap +instanceKlass java/util/EnumMap +instanceKlass java/util/IdentityHashMap +instanceKlass java/util/WeakHashMap +instanceKlass java/util/Collections$EmptyMap +instanceKlass sun/util/PreHashedMap +instanceKlass java/util/HashMap +instanceKlass java/util/ImmutableCollections$AbstractImmutableMap +instanceKlass java/util/concurrent/ConcurrentHashMap +ciInstanceKlass java/util/AbstractMap 1 1 196 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 10 12 1 1 11 12 1 100 1 10 11 12 1 11 7 1 10 12 1 1 11 12 1 9 12 1 1 7 1 10 12 1 9 12 1 1 100 1 10 11 11 12 1 1 11 12 1 7 1 100 1 11 12 1 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders 1 1 183 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 11 100 12 1 1 1 100 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 100 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 7 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/loader/ClassLoaders JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/loader/ClassLoaders BOOT_LOADER Ljdk/internal/loader/ClassLoaders$BootClassLoader; jdk/internal/loader/ClassLoaders$BootClassLoader +staticfield jdk/internal/loader/ClassLoaders PLATFORM_LOADER Ljdk/internal/loader/ClassLoaders$PlatformClassLoader; jdk/internal/loader/ClassLoaders$PlatformClassLoader +staticfield jdk/internal/loader/ClassLoaders APP_LOADER Ljdk/internal/loader/ClassLoaders$AppClassLoader; jdk/internal/loader/ClassLoaders$AppClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$BootClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader +ciInstanceKlass jdk/internal/loader/BuiltinClassLoader 1 1 737 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 7 1 10 12 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 9 12 1 1 10 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 7 12 1 1 7 1 10 7 12 1 1 1 10 12 1 100 1 8 1 10 12 1 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 11 12 1 7 1 10 11 12 1 1 11 10 12 1 1 7 1 10 12 1 10 7 12 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 100 1 10 12 1 1 11 12 1 100 1 100 1 10 12 1 10 12 1 1 100 1 100 1 10 12 1 10 12 1 18 12 1 1 10 12 1 10 12 1 1 18 100 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 7 12 1 1 10 12 1 100 1 8 1 8 1 10 10 12 1 8 1 8 1 10 7 12 1 1 1 11 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 1 10 12 1 7 1 10 11 12 1 1 10 12 10 12 1 10 12 1 100 1 10 12 1 10 12 1 10 10 12 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 100 1 1 1 1 1 100 1 100 1 1 +staticfield jdk/internal/loader/BuiltinClassLoader packageToModule Ljava/util/Map; java/util/concurrent/ConcurrentHashMap +staticfield jdk/internal/loader/BuiltinClassLoader $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader 1 1 119 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 8 1 10 12 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader 1 1 42 8 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1 +ciInstanceKlass java/lang/ArithmeticException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ArrayStoreException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ClassCastException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ClassNotFoundException 1 1 96 7 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/ClassNotFoundException serialPersistentFields [Ljava/io/ObjectStreamField; 1 [Ljava/io/ObjectStreamField; +instanceKlass java/nio/charset/UnsupportedCharsetException +instanceKlass java/nio/charset/IllegalCharsetNameException +instanceKlass java/lang/NumberFormatException +ciInstanceKlass java/lang/IllegalArgumentException 1 1 35 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/lang/IllegalArgumentException (Ljava/lang/String;)V 0 0 1 0 -1 +ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/BootstrapMethodError 0 0 45 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +instanceKlass java/lang/UnsatisfiedLinkError +instanceKlass java/lang/IncompatibleClassChangeError +instanceKlass java/lang/BootstrapMethodError +instanceKlass java/lang/NoClassDefFoundError +ciInstanceKlass java/lang/LinkageError 1 1 31 10 7 12 1 1 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/NullPointerException 1 1 52 10 7 12 1 1 1 10 12 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 1 1 5 0 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass java/lang/NoClassDefFoundError 0 0 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StackOverflowError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StackTraceElement 1 1 235 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 8 1 10 100 12 1 1 1 7 1 9 12 1 8 1 9 12 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 8 1 10 100 12 1 1 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer +ciInstanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer 1 1 32 10 7 12 1 1 1 9 7 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/Continuation 0 0 549 9 100 12 1 1 1 9 12 1 9 12 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 11 100 12 1 1 1 10 7 1 9 12 1 1 9 12 1 1 10 8 1 10 12 1 9 12 1 1 10 11 12 1 1 100 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 100 1 10 12 1 11 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 1 9 12 1 1 11 12 1 1 9 12 1 1 8 1 10 11 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 11 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 11 7 12 1 1 10 7 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 8 1 10 7 12 1 1 1 10 12 1 8 1 100 1 8 1 10 9 12 1 1 8 1 10 7 12 1 1 10 100 12 1 1 8 1 8 1 10 12 10 100 12 1 1 1 10 7 1 10 7 12 1 1 1 18 11 100 12 1 1 1 18 12 1 11 12 1 1 7 1 10 7 12 1 1 10 12 1 1 8 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 8 1 10 12 1 7 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 1 15 10 12 16 15 11 7 12 1 1 1 16 1 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/misc/UnsafeConstants 1 1 34 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/misc/UnsafeConstants ADDRESS_SIZE0 I 8 +staticfield jdk/internal/misc/UnsafeConstants PAGE_SIZE I 4096 +staticfield jdk/internal/misc/UnsafeConstants BIG_ENDIAN Z 0 +staticfield jdk/internal/misc/UnsafeConstants UNALIGNED_ACCESS Z 1 +staticfield jdk/internal/misc/UnsafeConstants DATA_CACHE_LINE_FLUSH_SIZE I 0 +ciInstanceKlass java/lang/invoke/MethodHandleStatics 1 1 320 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 7 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 8 1 8 1 10 12 1 10 100 12 1 1 1 10 7 12 1 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 10 12 1 1 7 1 10 12 10 12 1 10 12 1 100 1 10 10 12 1 1 100 1 10 10 12 1 7 1 7 1 8 1 8 1 10 12 1 8 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 8 1 10 7 12 1 1 10 7 12 1 1 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 7 12 1 1 1 9 12 1 8 1 8 1 8 1 8 1 9 12 1 8 1 9 12 1 8 1 8 1 9 12 1 8 1 8 1 9 12 1 8 1 9 12 1 8 1 9 12 1 8 1 8 1 9 12 1 8 1 8 1 10 12 1 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MethodHandleStatics UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/lang/invoke/MethodHandleStatics CLASSFILE_VERSION I 65 +staticfield java/lang/invoke/MethodHandleStatics DEBUG_METHOD_HANDLE_NAMES Z 0 +staticfield java/lang/invoke/MethodHandleStatics TRACE_INTERPRETER Z 0 +staticfield java/lang/invoke/MethodHandleStatics TRACE_METHOD_LINKAGE Z 0 +staticfield java/lang/invoke/MethodHandleStatics TRACE_RESOLVE Z 0 +staticfield java/lang/invoke/MethodHandleStatics COMPILE_THRESHOLD I 0 +staticfield java/lang/invoke/MethodHandleStatics LOG_LF_COMPILATION_FAILURE Z 0 +staticfield java/lang/invoke/MethodHandleStatics DONT_INLINE_THRESHOLD I 30 +staticfield java/lang/invoke/MethodHandleStatics PROFILE_LEVEL I 0 +staticfield java/lang/invoke/MethodHandleStatics PROFILE_GWT Z 1 +staticfield java/lang/invoke/MethodHandleStatics CUSTOMIZE_THRESHOLD I 127 +staticfield java/lang/invoke/MethodHandleStatics VAR_HANDLE_GUARDS Z 1 +staticfield java/lang/invoke/MethodHandleStatics MAX_ARITY I 255 +staticfield java/lang/invoke/MethodHandleStatics VAR_HANDLE_IDENTITY_ADAPT Z 0 +staticfield java/lang/invoke/MethodHandleStatics DUMP_CLASS_FILES Ljdk/internal/util/ClassFileDumper; jdk/internal/util/ClassFileDumper +ciInstanceKlass java/lang/invoke/LambdaForm 1 1 1059 7 1 100 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 9 12 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 9 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 8 1 8 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 9 12 1 7 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 12 10 12 1 1 10 12 1 1 9 12 1 8 10 12 1 1 100 1 10 12 1 1 10 12 1 9 7 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 10 12 1 1 7 1 7 1 10 10 12 1 1 10 12 1 1 8 1 8 1 7 1 8 1 10 12 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 10 12 1 1 8 1 8 1 8 1 7 1 8 1 7 1 8 1 7 1 8 1 10 12 1 8 1 9 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 100 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 8 1 8 1 7 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 7 1 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 8 1 10 12 1 9 12 1 1 7 1 10 7 12 1 1 1 8 1 100 1 10 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 10 12 1 10 10 12 1 9 12 1 9 9 12 1 7 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 7 1 9 1 1 1 1 3 1 3 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/LambdaForm DEFAULT_CUSTOMIZED Ljava/lang/invoke/MethodHandle; null +staticfield java/lang/invoke/LambdaForm DEFAULT_KIND Ljava/lang/invoke/LambdaForm$Kind; java/lang/invoke/LambdaForm$Kind +staticfield java/lang/invoke/LambdaForm COMPILE_THRESHOLD I 0 +staticfield java/lang/invoke/LambdaForm INTERNED_ARGUMENTS [[Ljava/lang/invoke/LambdaForm$Name; 5 [[Ljava/lang/invoke/LambdaForm$Name; +staticfield java/lang/invoke/LambdaForm IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/LambdaForm LF_identity [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm LF_zero [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm NF_identity [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm NF_zero [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm createFormsLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/invoke/LambdaForm DEBUG_NAME_COUNTERS Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm DEBUG_NAMES Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm TRACE_INTERPRETER Z 0 +staticfield java/lang/invoke/LambdaForm $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MemberName 1 1 724 7 1 7 1 100 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 7 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 8 1 10 100 12 1 1 1 7 1 10 10 12 1 1 7 1 7 1 10 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 8 1 9 12 1 1 3 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 7 1 8 10 12 1 1 10 12 1 1 8 1 9 7 1 8 9 7 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 8 1 8 1 7 1 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 3 10 12 1 3 10 12 1 3 3 3 3 3 3 10 12 1 3 9 12 1 10 12 1 1 3 10 12 1 10 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 7 1 10 10 10 12 100 1 10 10 10 12 1 1 10 12 1 1 10 10 12 1 8 10 7 1 10 12 1 10 7 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 1 100 1 8 1 10 7 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 8 1 10 12 1 8 1 10 10 10 12 1 10 12 1 8 1 8 1 10 10 12 1 8 1 10 100 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 100 1 10 8 1 8 1 8 1 8 1 10 12 1 100 1 100 1 100 1 10 100 1 10 7 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 7 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1 +instanceKlass java/lang/invoke/VarHandleBooleans$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleReferences$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleByteArrayAsDoubles$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsFloats$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsChars$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleInts$FieldInstanceReadOnly +ciInstanceKlass java/lang/invoke/VarHandle 1 1 473 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 100 1 10 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 10 12 1 9 12 1 1 10 100 12 1 1 10 12 1 9 100 12 1 1 1 9 12 1 1 10 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 9 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 100 1 10 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 10 12 1 1 7 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 100 1 1 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 +staticfield java/lang/invoke/VarHandle VFORM_OFFSET J 16 +staticfield java/lang/invoke/VarHandle $assertionsDisabled Z 1 +ciMethod java/lang/invoke/VarHandle checkAccessModeThenIsDirect (Ljava/lang/invoke/VarHandle$AccessDescriptor;)Z 1024 0 95096 0 -1 +instanceKlass jdk/internal/reflect/FieldAccessorImpl +instanceKlass jdk/internal/reflect/ConstructorAccessorImpl +instanceKlass jdk/internal/reflect/MethodAccessorImpl +ciInstanceKlass jdk/internal/reflect/MagicAccessorImpl 1 1 16 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/DirectMethodHandleAccessor +ciInstanceKlass jdk/internal/reflect/MethodAccessorImpl 1 1 38 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/MethodAccessor 1 0 17 100 1 100 1 1 1 1 100 1 100 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/DirectConstructorHandleAccessor$NativeAccessor +instanceKlass jdk/internal/reflect/DirectConstructorHandleAccessor +instanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl +ciInstanceKlass jdk/internal/reflect/ConstructorAccessorImpl 1 1 27 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass jdk/internal/reflect/ConstructorAccessor 1 0 16 100 1 100 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass jdk/internal/reflect/DelegatingClassLoader 0 0 18 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/CallerSensitive 0 0 17 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl 0 0 125 10 7 12 1 1 1 9 7 12 1 1 1 100 1 10 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 8 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/ConstantPool 1 1 142 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 11 7 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl 0 0 47 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 8 11 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/FieldAccessor 1 0 48 100 1 100 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/MethodHandleFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/FieldAccessorImpl 1 1 269 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 100 1 10 12 1 1 10 8 1 10 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 8 1 8 1 8 1 10 12 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl 0 0 62 10 100 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 100 12 1 1 10 12 1 9 12 1 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/invoke/VolatileCallSite +instanceKlass java/lang/invoke/MutableCallSite +instanceKlass java/lang/invoke/ConstantCallSite +ciInstanceKlass java/lang/invoke/CallSite 1 1 307 10 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 100 1 7 1 10 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 100 12 1 1 10 12 1 1 9 12 1 9 100 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 9 12 1 8 1 100 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 8 10 12 1 1 9 12 1 1 100 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 10 12 10 12 1 1 7 1 7 1 7 1 8 1 10 12 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 +staticfield java/lang/invoke/CallSite $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/ConstantCallSite 1 1 65 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 100 1 10 12 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/ConstantCallSite UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +instanceKlass java/lang/invoke/DirectMethodHandle$Interface +instanceKlass java/lang/invoke/DirectMethodHandle$Constructor +instanceKlass java/lang/invoke/DirectMethodHandle$Accessor +ciInstanceKlass java/lang/invoke/DirectMethodHandle 1 1 923 7 1 7 1 100 1 7 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 100 1 10 9 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 100 1 10 12 1 7 1 10 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 100 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 7 12 1 1 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 10 7 1 9 12 9 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 7 1 9 12 1 1 10 7 12 1 1 1 10 12 10 12 1 100 1 10 12 1 10 12 1 1 8 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 7 1 10 12 1 9 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 8 1 8 1 8 1 8 1 10 12 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 8 9 12 1 1 10 12 1 1 8 1 8 8 9 12 1 8 1 8 8 8 8 8 1 8 10 12 1 7 1 10 12 1 8 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/DirectMethodHandle IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/DirectMethodHandle FT_UNCHECKED_REF I 8 +staticfield java/lang/invoke/DirectMethodHandle ACCESSOR_FORMS [Ljava/lang/invoke/LambdaForm; 132 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/DirectMethodHandle ALL_WRAPPERS [Lsun/invoke/util/Wrapper; 10 [Lsun/invoke/util/Wrapper; +staticfield java/lang/invoke/DirectMethodHandle NFS [Ljava/lang/invoke/LambdaForm$NamedFunction; 12 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/DirectMethodHandle OBJ_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle LONG_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 63 10 100 12 1 1 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 37 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/ResolvedMethodName 1 1 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 690 100 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 1 7 1 10 12 100 1 100 1 8 1 7 1 10 10 12 1 7 1 9 7 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 7 1 10 12 1 8 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 1 10 12 1 10 100 12 1 1 1 100 1 8 1 10 100 12 1 1 1 7 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 7 1 7 1 10 12 1 10 12 1 8 1 8 1 10 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 9 12 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 100 1 100 1 10 10 100 1 100 1 10 100 1 10 10 12 1 1 10 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 1 1 +staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext 1 1 49 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/NativeEntryPoint 0 0 194 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 100 1 10 100 12 1 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 15 10 100 12 1 1 1 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/ABIDescriptor 0 0 55 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/foreign/abi/VMStorage 0 0 91 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 15 15 15 15 15 10 100 12 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs 0 0 66 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 18 12 1 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 8 1 15 15 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/StackWalker 1 1 271 9 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 12 1 1 100 1 8 1 10 10 7 12 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 100 1 8 1 10 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 7 12 1 1 11 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/StackWalker DEFAULT_EMPTY_OPTION Ljava/util/EnumSet; java/util/RegularEnumSet +staticfield java/lang/StackWalker DEFAULT_WALKER Ljava/lang/StackWalker; java/lang/StackWalker +ciInstanceKlass java/lang/StackWalker$StackFrame 1 1 41 100 1 10 12 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +instanceKlass java/lang/LiveStackFrameInfo +ciInstanceKlass java/lang/StackFrameInfo 1 1 142 10 7 12 1 1 1 9 7 12 1 1 1 9 7 1 9 12 1 1 11 7 12 1 1 1 9 12 1 1 11 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 1 11 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 11 12 1 1 9 12 1 1 10 7 1 10 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1 +staticfield java/lang/StackFrameInfo JLIA Ljdk/internal/access/JavaLangInvokeAccess; java/lang/invoke/MethodHandleImpl$1 +ciInstanceKlass java/lang/LiveStackFrameInfo 0 0 97 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 10 100 1 10 12 1 100 1 10 12 1 7 1 7 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/LiveStackFrame 0 0 135 100 1 10 100 12 1 1 1 11 7 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 12 1 10 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 +instanceKlass java/lang/StackStreamFactory$CallerClassFinder +instanceKlass java/lang/StackStreamFactory$StackFrameTraverser +ciInstanceKlass java/lang/StackStreamFactory$AbstractStackWalker 1 1 375 7 1 7 1 3 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 1 100 1 8 1 10 12 1 8 1 10 12 10 7 12 1 1 9 12 1 8 1 5 0 8 1 8 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/module/Modules 1 1 504 10 7 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 11 12 1 11 12 1 11 12 1 11 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 1 11 12 1 9 12 1 1 11 100 12 1 1 1 10 12 1 1 10 10 12 1 10 9 12 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 11 12 1 1 18 12 1 1 11 100 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 1 11 12 1 1 10 12 1 18 18 10 12 1 1 9 12 1 1 11 7 12 1 1 1 100 1 10 11 12 1 11 12 1 1 11 12 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 1 11 12 10 12 1 1 7 1 10 18 12 1 10 12 1 1 7 1 8 1 10 12 1 10 100 12 1 1 18 12 1 11 11 12 10 12 1 10 10 100 1 18 12 1 10 10 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 1 16 16 15 10 12 1 16 1 16 1 15 10 12 1 16 1 16 1 15 10 12 16 1 15 10 16 1 15 10 12 16 1 15 10 12 16 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 100 1 100 1 1 +staticfield jdk/internal/module/Modules JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/module/Modules JLMA Ljdk/internal/access/JavaLangModuleAccess; java/lang/module/ModuleDescriptor$1 +staticfield jdk/internal/module/Modules $assertionsDisabled Z 1 +ciInstanceKlass java/util/ArrayList 1 1 509 10 7 12 1 1 1 7 1 9 7 12 1 1 1 9 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 11 7 12 1 1 1 9 12 1 1 11 12 1 1 7 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 7 1 10 12 1 10 10 7 12 1 1 1 10 7 12 1 1 10 12 1 100 1 10 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 11 12 1 7 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 100 1 8 1 10 100 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 11 100 12 1 1 7 1 10 12 1 10 12 1 1 11 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 10 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 +staticfield java/util/ArrayList EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +staticfield java/util/ArrayList DEFAULTCAPACITY_EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +ciInstanceKlass java/util/RandomAccess 1 0 7 100 1 100 1 1 1 +ciInstanceKlass java/lang/annotation/Annotation 1 0 17 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/function/BiFunction 1 1 65 10 100 12 1 1 1 18 12 1 1 11 7 12 1 1 11 100 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 15 10 100 12 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/invoke/VarHandle$AccessDescriptor 1 1 61 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 7 1 7 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/VarForm 1 1 194 100 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 9 7 12 1 1 1 9 7 1 7 1 9 12 1 1 9 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 9 7 12 1 1 10 12 1 1 9 12 1 9 12 1 9 7 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 1 9 12 1 7 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 100 1 1 1 1 100 1 1 +ciMethod java/lang/invoke/VarForm getMemberName (I)Ljava/lang/invoke/MemberName; 1024 0 95096 0 -1 +ciInstanceKlass java/lang/invoke/VarHandleGuards 1 1 746 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +ciMethod java/lang/invoke/VarHandleGuards guard_LI_I (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;ILjava/lang/invoke/VarHandle$AccessDescriptor;)I 1024 0 94189 0 -1 +ciMethod java/lang/invoke/VarHandleGuards guard_LI_J (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;ILjava/lang/invoke/VarHandle$AccessDescriptor;)J 608 0 304 0 -1 +instanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ByteArrayViewVarHandle 1 1 36 10 7 12 1 1 1 9 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 100 1 1 1 1 1 +instanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ByteArrayViewVarHandle 1 1 36 10 7 12 1 1 1 9 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 100 1 1 1 1 1 +instanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ByteArrayViewVarHandle 1 1 36 10 7 12 1 1 1 9 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 100 1 1 1 1 1 +ciInstanceKlass sun/net/www/protocol/jar/Handler 1 1 227 10 7 12 1 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 10 12 1 7 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 8 1 10 12 1 1 8 1 10 12 10 12 1 1 100 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 8 1 10 12 1 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 10 12 1 8 1 8 1 8 1 10 12 1 8 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass sun/net/www/protocol/jrt/Handler +instanceKlass sun/net/www/protocol/jar/Handler +instanceKlass sun/net/www/protocol/file/Handler +ciInstanceKlass java/net/URLStreamHandler 1 1 300 10 7 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 100 1 8 1 10 10 7 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 10 7 12 1 1 1 8 1 8 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 8 1 10 12 1 10 12 8 1 10 12 1 8 1 10 12 1 8 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 100 1 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 100 1 8 1 10 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/util/Preconditions$4 1 1 61 9 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 1 100 1 100 1 100 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 1 1 1 1 +ciInstanceKlass sun/net/www/protocol/file/Handler 1 1 161 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 100 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 10 12 1 10 12 1 100 1 8 1 10 12 1 10 7 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/io/DataInputStream 1 1 205 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 100 1 10 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 11 100 1 8 1 10 12 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 +staticfield java/io/DataInputStream EMPTY_BYTE_ARRAY [B 0 +staticfield java/io/DataInputStream EMPTY_CHAR_ARRAY [C 0 +ciMethod java/io/DataInputStream readInt ()I 1024 0 661 0 -1 +ciMethod java/io/DataInputStream readFully ([BII)V 29564 29562 14134 0 -1 +ciMethod java/io/DataInputStream readBoolean ()Z 646 0 774 0 -1 +ciMethod java/io/DataInputStream readByte ()B 1024 0 5120 0 -1 +ciMethod java/io/DataInputStream readUnsignedByte ()I 1024 0 5894 0 -1 +ciMethod java/io/DataInputStream readShort ()S 1024 0 13266 0 -1 +ciMethod java/io/DataInputStream readLong ()J 608 0 304 0 -1 +ciInstanceKlass jdk/internal/util/ByteArray 1 1 171 10 100 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 10 12 1 10 7 12 1 1 1 9 12 1 10 12 1 10 100 12 1 1 1 9 12 1 10 12 1 9 12 1 10 12 1 10 100 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 1 7 1 7 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/util/ByteArray SHORT Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle +staticfield jdk/internal/util/ByteArray CHAR Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsChars$ArrayHandle +staticfield jdk/internal/util/ByteArray INT Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle +staticfield jdk/internal/util/ByteArray FLOAT Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsFloats$ArrayHandle +staticfield jdk/internal/util/ByteArray LONG Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle +staticfield jdk/internal/util/ByteArray DOUBLE Ljava/lang/invoke/VarHandle; java/lang/invoke/VarHandleByteArrayAsDoubles$ArrayHandle +ciMethod jdk/internal/util/ByteArray getShort ([BI)S 1024 0 13266 0 -1 +ciMethod jdk/internal/util/ByteArray getInt ([BI)I 1024 0 661 0 -1 +ciMethod jdk/internal/util/ByteArray getLong ([BI)J 608 0 304 0 -1 +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle 1 1 291 100 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 1 9 12 1 1 7 1 9 7 12 1 1 1 7 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 7 12 1 1 1 5 0 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +staticfield java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle FORM Ljava/lang/invoke/VarForm; java/lang/invoke/VarForm +ciMethod java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle index ([BI)I 1024 0 80174 0 -1 +ciMethod java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)I 1024 0 79764 0 -1 +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle 1 1 294 100 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 1 9 12 1 1 7 1 9 7 12 1 1 1 7 1 9 7 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 7 12 1 1 1 5 0 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +staticfield java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle FORM Ljava/lang/invoke/VarForm; java/lang/invoke/VarForm +ciMethod java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle index ([BI)I 608 0 304 0 -1 +ciMethod java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)J 608 0 304 0 -1 +ciInstanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle 1 1 170 100 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 1 9 12 1 1 7 1 9 7 12 1 1 1 7 1 9 7 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 7 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +staticfield java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle FORM Ljava/lang/invoke/VarForm; java/lang/invoke/VarForm +ciMethod java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle index ([BI)I 1024 0 15070 0 -1 +ciMethod java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)S 1024 0 15070 0 -1 +ciMethod jdk/internal/util/Preconditions checkIndex (IILjava/util/function/BiFunction;)I 770 0 5601 0 -1 +ciMethod java/lang/Enum valueOf (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum; 374 0 187 0 -1 +ciMethod java/net/URL (Ljava/lang/String;)V 208 0 104 0 -1 +ciMethod java/net/URL (Ljava/net/URL;Ljava/lang/String;)V 512 0 2225 0 -1 +ciMethod java/net/URL (Ljava/net/URL;Ljava/lang/String;Ljava/net/URLStreamHandler;)V 498 6230 2226 0 -1 +ciMethod jdk/internal/misc/Unsafe getLongUnaligned (Ljava/lang/Object;JZ)J 608 0 304 0 -1 +ciMethod jdk/internal/misc/Unsafe getIntUnaligned (Ljava/lang/Object;JZ)I 1024 0 11191 0 -1 +ciMethod jdk/internal/misc/Unsafe getShortUnaligned (Ljava/lang/Object;JZ)S 1024 0 6553 0 -1 +ciMethod java/io/InputStream read ()I 0 0 1 0 -1 +ciMethod java/lang/InternalError (Ljava/lang/String;)V 0 0 1 0 -1 +ciMethod java/lang/String valueOf (Ljava/lang/Object;)Ljava/lang/String; 42 0 148 0 -1 +ciMethod java/lang/Boolean valueOf (Z)Ljava/lang/Boolean; 116 0 58 0 -1 +ciMethod java/lang/Object ()V 1024 0 81461 0 -1 +ciInstanceKlass javafx/scene/paint/Color 1 1 924 7 1 10 12 1 1 10 12 1 1 6 0 10 12 1 1 10 12 1 10 12 1 1 100 1 18 12 1 1 10 12 1 18 18 10 12 1 1 10 100 12 1 1 1 10 12 1 1 18 12 1 18 100 1 8 1 10 10 100 12 1 1 1 8 1 9 100 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 8 1 8 8 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 10 100 12 1 1 1 9 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 100 12 1 1 1 6 0 100 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 10 100 12 1 1 1 6 0 6 0 10 12 1 1 8 1 10 12 10 12 1 6 0 10 100 12 1 1 1 10 12 1 9 12 1 6 0 10 12 1 6 0 6 0 6 0 6 0 10 7 12 1 1 18 18 18 18 9 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 4 4 10 12 1 9 12 1 4 4 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 4 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 4 4 4 9 12 1 4 4 9 12 1 4 4 4 9 12 1 4 4 4 9 12 1 9 12 1 4 4 4 9 12 1 4 9 12 1 4 4 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 9 12 1 4 4 4 9 12 1 9 12 1 4 4 9 12 1 4 9 12 1 4 4 4 9 12 1 9 12 1 4 4 4 9 12 1 4 4 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 4 4 9 12 1 4 9 12 1 4 9 12 1 9 12 1 9 12 1 4 9 12 1 4 4 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 4 9 12 1 9 12 1 9 12 1 4 9 12 1 4 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 4 9 12 1 9 12 1 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 4 9 12 1 9 12 1 4 9 12 1 4 4 9 12 1 4 4 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 4 4 4 9 12 1 4 9 12 1 9 12 1 4 9 12 1 4 9 12 1 9 12 1 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 4 9 12 1 4 9 12 1 4 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 4 4 9 12 1 4 9 12 1 4 9 12 1 4 4 9 12 1 4 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 4 9 12 1 4 9 12 1 4 9 12 1 4 4 4 9 12 1 4 4 9 12 1 9 12 1 4 4 9 12 1 9 12 1 9 12 1 4 4 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 4 9 12 1 9 12 1 9 12 1 9 12 1 4 4 9 12 1 4 4 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 100 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 15 10 100 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 1 100 1 100 1 1 +staticfield javafx/scene/paint/Color TRANSPARENT Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ALICEBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ANTIQUEWHITE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color AQUA Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color AQUAMARINE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color AZURE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BEIGE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BISQUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BLACK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BLANCHEDALMOND Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BLUEVIOLET Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BROWN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color BURLYWOOD Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CADETBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CHARTREUSE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CHOCOLATE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CORAL Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CORNFLOWERBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CORNSILK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CRIMSON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color CYAN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKCYAN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKGOLDENROD Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKKHAKI Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKMAGENTA Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKOLIVEGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKORANGE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKORCHID Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKRED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKSALMON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKSEAGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKSLATEBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKSLATEGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKSLATEGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKTURQUOISE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DARKVIOLET Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DEEPPINK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DEEPSKYBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DIMGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DIMGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color DODGERBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color FIREBRICK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color FLORALWHITE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color FORESTGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color FUCHSIA Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GAINSBORO Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GHOSTWHITE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GOLD Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GOLDENROD Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GREENYELLOW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color GREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color HONEYDEW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color HOTPINK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color INDIANRED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color INDIGO Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color IVORY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color KHAKI Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LAVENDER Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LAVENDERBLUSH Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LAWNGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LEMONCHIFFON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTCORAL Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTCYAN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTGOLDENRODYELLOW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTPINK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSALMON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSEAGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSKYBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSLATEGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSLATEGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTSTEELBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIGHTYELLOW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIME Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LIMEGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color LINEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MAGENTA Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MAROON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMAQUAMARINE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMORCHID Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMPURPLE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMSEAGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMSLATEBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMSPRINGGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMTURQUOISE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MEDIUMVIOLETRED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MIDNIGHTBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MINTCREAM Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MISTYROSE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color MOCCASIN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color NAVAJOWHITE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color NAVY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color OLDLACE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color OLIVE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color OLIVEDRAB Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ORANGE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ORANGERED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ORCHID Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PALEGOLDENROD Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PALEGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PALETURQUOISE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PALEVIOLETRED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PAPAYAWHIP Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PEACHPUFF Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PERU Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PINK Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PLUM Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color POWDERBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color PURPLE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color RED Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ROSYBROWN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color ROYALBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SADDLEBROWN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SALMON Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SANDYBROWN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SEAGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SEASHELL Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SIENNA Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SILVER Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SKYBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SLATEBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SLATEGRAY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SLATEGREY Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SNOW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color SPRINGGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color STEELBLUE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color TAN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color TEAL Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color THISTLE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color TOMATO Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color TURQUOISE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color VIOLET Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color WHEAT Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color WHITE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color WHITESMOKE Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color YELLOW Ljavafx/scene/paint/Color; javafx/scene/paint/Color +staticfield javafx/scene/paint/Color YELLOWGREEN Ljavafx/scene/paint/Color; javafx/scene/paint/Color +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner$1 +ciInstanceKlass java/io/EOFException 1 1 26 10 7 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass com/sun/javafx/css/ParsedValueImpl 1 1 396 9 7 12 1 1 1 9 12 1 7 1 7 1 7 1 10 7 12 1 1 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 100 1 3 9 12 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 100 1 9 12 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 8 10 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 100 12 1 1 1 10 12 1 10 10 12 1 1 10 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 10 12 1 100 1 7 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 7 1 10 12 1 10 100 12 1 1 1 10 12 1 100 1 10 12 1 10 12 10 100 1 100 1 10 12 1 1 18 12 1 1 10 12 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 18 12 1 10 10 12 1 9 12 1 10 12 1 9 12 1 1 10 10 100 12 1 1 100 1 10 10 12 1 10 100 1 18 18 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 15 10 100 12 1 1 8 1 8 1 8 1 8 1 1 1 100 1 100 1 1 +instanceKlass javafx/css/converter/CursorConverter +instanceKlass javafx/scene/Node$StyleableProperties$14 +instanceKlass javafx/css/converter/BooleanConverter +instanceKlass javafx/css/converter/ShapeConverter +instanceKlass javafx/css/converter/URLConverter +instanceKlass javafx/css/converter/PaintConverter$RepeatingImagePatternConverter +instanceKlass javafx/css/converter/PaintConverter$ImagePatternConverter +instanceKlass javafx/css/converter/PaintConverter +instanceKlass javafx/scene/layout/BackgroundConverter +instanceKlass javafx/css/converter/InsetsConverter +instanceKlass javafx/scene/layout/BorderConverter +instanceKlass javafx/css/converter/SizeConverter +instanceKlass javafx/css/converter/StringConverter +instanceKlass javafx/css/converter/EnumConverter +instanceKlass javafx/css/converter/StopConverter +instanceKlass javafx/css/converter/LadderConverter +instanceKlass javafx/css/converter/DeriveSizeConverter +instanceKlass javafx/css/converter/DeriveColorConverter +instanceKlass com/sun/javafx/scene/layout/region/CornerRadiiConverter +instanceKlass com/sun/javafx/scene/layout/region/Margins$SequenceConverter +instanceKlass com/sun/javafx/scene/layout/region/Margins$Converter +instanceKlass com/sun/javafx/scene/layout/region/StrokeBorderPaintConverter +instanceKlass com/sun/javafx/scene/layout/region/SliceSequenceConverter +instanceKlass com/sun/javafx/scene/layout/region/RepeatStructConverter +instanceKlass com/sun/javafx/scene/layout/region/LayeredBorderStyleConverter +instanceKlass com/sun/javafx/scene/layout/region/LayeredBorderPaintConverter +instanceKlass com/sun/javafx/scene/layout/region/LayeredBackgroundSizeConverter +instanceKlass com/sun/javafx/scene/layout/region/LayeredBackgroundPositionConverter +instanceKlass com/sun/javafx/scene/layout/region/BorderStyleConverter +instanceKlass com/sun/javafx/scene/layout/region/BorderStrokeStyleSequenceConverter +instanceKlass com/sun/javafx/scene/layout/region/BorderImageWidthsSequenceConverter +instanceKlass com/sun/javafx/scene/layout/region/BorderImageWidthConverter +instanceKlass com/sun/javafx/scene/layout/region/BorderImageSliceConverter +instanceKlass com/sun/javafx/scene/layout/region/BackgroundSizeConverter +instanceKlass com/sun/javafx/scene/layout/region/BackgroundPositionConverter +instanceKlass javafx/css/converter/URLConverter$SequenceConverter +instanceKlass javafx/css/converter/StringConverter$SequenceConverter +instanceKlass javafx/css/converter/SizeConverter$SequenceConverter +instanceKlass javafx/css/converter/PaintConverter$RadialGradientConverter +instanceKlass javafx/css/converter/PaintConverter$LinearGradientConverter +instanceKlass javafx/css/converter/PaintConverter$SequenceConverter +instanceKlass javafx/css/converter/InsetsConverter$SequenceConverter +instanceKlass javafx/css/converter/FontConverter$FontSizeConverter +instanceKlass javafx/css/converter/EffectConverter +instanceKlass javafx/css/converter/FontConverter +instanceKlass javafx/css/converter/FontConverter$FontWeightConverter +instanceKlass javafx/css/converter/FontConverter$FontStyleConverter +ciInstanceKlass javafx/css/StyleConverter 1 1 564 10 7 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 10 100 1 10 100 1 10 100 1 7 1 10 12 1 10 100 1 10 7 1 10 100 1 10 7 1 10 7 1 10 7 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 11 12 1 1 100 1 10 11 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 18 12 1 1 8 1 10 12 1 1 9 12 1 11 12 1 1 10 12 1 10 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 18 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 7 1 10 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 100 1 10 7 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 100 12 1 1 10 100 12 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 10 100 12 1 1 10 7 12 1 1 10 7 12 1 1 18 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 15 10 100 12 1 1 8 1 8 1 8 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass javafx/css/Size 1 1 100 10 7 12 1 1 1 9 7 12 1 1 1 9 100 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 10 100 12 1 1 1 10 12 1 18 12 1 1 5 0 5 0 10 12 1 1 10 12 1 1 10 12 1 1 6 0 6 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 15 10 100 12 1 1 8 1 1 100 1 100 1 1 +instanceKlass javafx/css/SizeUnits$15 +instanceKlass javafx/css/SizeUnits$14 +instanceKlass javafx/css/SizeUnits$13 +instanceKlass javafx/css/SizeUnits$12 +instanceKlass javafx/css/SizeUnits$11 +instanceKlass javafx/css/SizeUnits$10 +instanceKlass javafx/css/SizeUnits$9 +instanceKlass javafx/css/SizeUnits$8 +instanceKlass javafx/css/SizeUnits$7 +instanceKlass javafx/css/SizeUnits$6 +instanceKlass javafx/css/SizeUnits$5 +instanceKlass javafx/css/SizeUnits$4 +instanceKlass javafx/css/SizeUnits$3 +instanceKlass javafx/css/SizeUnits$2 +instanceKlass javafx/css/SizeUnits$1 +ciInstanceKlass javafx/css/SizeUnits 1 1 200 7 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 6 0 10 100 12 1 1 1 10 12 1 1 6 0 6 0 6 0 7 1 8 10 12 1 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 7 1 8 10 10 12 1 1 1 1 1 6 0 1 6 0 1 6 0 1 6 0 1 6 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield javafx/css/SizeUnits PERCENT Ljavafx/css/SizeUnits; javafx/css/SizeUnits$1 +staticfield javafx/css/SizeUnits IN Ljavafx/css/SizeUnits; javafx/css/SizeUnits$2 +staticfield javafx/css/SizeUnits CM Ljavafx/css/SizeUnits; javafx/css/SizeUnits$3 +staticfield javafx/css/SizeUnits MM Ljavafx/css/SizeUnits; javafx/css/SizeUnits$4 +staticfield javafx/css/SizeUnits EM Ljavafx/css/SizeUnits; javafx/css/SizeUnits$5 +staticfield javafx/css/SizeUnits EX Ljavafx/css/SizeUnits; javafx/css/SizeUnits$6 +staticfield javafx/css/SizeUnits PT Ljavafx/css/SizeUnits; javafx/css/SizeUnits$7 +staticfield javafx/css/SizeUnits PC Ljavafx/css/SizeUnits; javafx/css/SizeUnits$8 +staticfield javafx/css/SizeUnits PX Ljavafx/css/SizeUnits; javafx/css/SizeUnits$9 +staticfield javafx/css/SizeUnits DEG Ljavafx/css/SizeUnits; javafx/css/SizeUnits$10 +staticfield javafx/css/SizeUnits GRAD Ljavafx/css/SizeUnits; javafx/css/SizeUnits$11 +staticfield javafx/css/SizeUnits RAD Ljavafx/css/SizeUnits; javafx/css/SizeUnits$12 +staticfield javafx/css/SizeUnits TURN Ljavafx/css/SizeUnits; javafx/css/SizeUnits$13 +staticfield javafx/css/SizeUnits S Ljavafx/css/SizeUnits; javafx/css/SizeUnits$14 +staticfield javafx/css/SizeUnits MS Ljavafx/css/SizeUnits; javafx/css/SizeUnits$15 +staticfield javafx/css/SizeUnits $VALUES [Ljavafx/css/SizeUnits; 15 [Ljavafx/css/SizeUnits; +ciInstanceKlass javafx/css/SizeUnits$9 1 1 25 7 1 10 12 1 1 8 1 6 0 100 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethodData java/lang/Object ()V 2 80949 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 4 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/IllegalArgumentException (Ljava/lang/String;)V 1 1 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x20002 0x1 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData jdk/internal/util/Preconditions checkIndex (IILjava/util/function/BiFunction;)I 2 5216 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 21 0x10007 0x0 0x40 0x1460 0x60007 0x1460 0x30 0x0 0xc0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData java/io/DataInputStream readFully ([BII)V 2 8956 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 34 0x40002 0x22fc 0xe0007 0x2300 0xa0 0x22fc 0x1e0005 0x0 0x0 0x1514c837078 0x22ec 0x1514c6e4c38 0x10 0x250007 0x2300 0x30 0x0 0x2c0002 0x0 0x370003 0x2300 0xffffffffffffff78 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0xffffffffffffffff 0x0 0x0 oops 2 9 java/io/BufferedInputStream 11 java/io/ByteArrayInputStream methods 0 +ciMethodData java/lang/invoke/VarHandleGuards guard_LI_I (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;ILjava/lang/invoke/VarHandle$AccessDescriptor;)I 2 93677 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 93 0x2000b 0x0 0x0 0x151920206a8 0x38e2 0x1519201fe50 0x1350c 0x2 0x1 0x15192020190 0x90007 0x0 0xc0 0x16dee 0x1c0007 0x0 0xa0 0x16dee 0x2a000b 0x16dee 0x0 0x0 0x0 0x0 0x0 0x1 0x1514c6e3fb8 0x2d000a 0x16dee 0x4 0x0 0x2 0x1 0x1514c6f9518 0x36000b 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x41000b 0x0 0x0 0x0 0x0 0x0 0x0 0x3 0x1 0x1514c6e41f8 0x0 0x45000b 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x4a000b 0x0 0x0 0x0 0x0 0x0 0x0 0x4 0x1 0x0 0x2 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 0xc 0x4 0x0 0x2 0x1 0x1514c6f9518 oops 7 3 java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle 5 java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle 9 java/lang/invoke/VarHandle$AccessDescriptor 26 java/lang/invoke/MemberName 33 [B 52 java/lang/invoke/MethodType 92 [B methods 0 +ciMethodData java/lang/invoke/VarHandle checkAccessModeThenIsDirect (Ljava/lang/invoke/VarHandle$AccessDescriptor;)Z 2 94584 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 32 0x40007 0x3a21 0xb0 0x13758 0xc0005 0x13758 0x0 0x0 0x0 0x0 0x0 0x130007 0x13758 0x58 0x0 0x180005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarForm getMemberName (I)Ljava/lang/invoke/MemberName; 2 94584 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 27 0x80007 0x17174 0x88 0x5 0xd0005 0x5 0x0 0x0 0x0 0x0 0x0 0x120007 0x5 0x30 0x0 0x190002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)S 2 14558 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 37 0x10004 0x0 0x0 0x151920206a8 0x93b 0x0 0x0 0x60004 0x0 0x0 0x1514c6f9518 0x93b 0x0 0x0 0x130002 0x38df 0x20000b 0x38df 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 3 3 java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle 10 [B 25 [B methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsShorts$ArrayHandle index ([BI)I 2 14558 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x80002 0x38df 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData jdk/internal/misc/Unsafe getShortUnaligned (Ljava/lang/Object;JZ)S 2 6041 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x5000b 0x10d5 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x80002 0x179a 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 1 9 [B methods 0 +ciMethodData java/io/DataInputStream readShort ()S 2 12754 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x70005 0x31d3 0x0 0x0 0x0 0x0 0x0 0xf0002 0x31d3 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData jdk/internal/util/ByteArray getShort ([BI)S 2 12754 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x5000b 0x31d3 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 1 9 [B methods 0 +ciMethodData java/io/DataInputStream readByte ()B 2 4608 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x10005 0x1201 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/io/DataInputStream readUnsignedByte ()I 2 5382 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 22 0x40005 0x0 0x0 0x1514c6e4c38 0x747 0x1514c837078 0xdc0 0x90007 0x1507 0x30 0x0 0x100002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 2 3 java/io/ByteArrayInputStream 5 java/io/BufferedInputStream methods 0 +ciMethodData java/lang/String valueOf (Ljava/lang/Object;)Ljava/lang/String; 1 127 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 23 0x10007 0x7f 0x38 0x0 0x70003 0x0 0x50 0xb0005 0x41 0x0 0x15192119380 0x32 0x1514c6e1968 0xc 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 2 10 java/io/File 12 java/lang/String methods 0 +ciMethodData java/io/PrintStream println (Ljava/lang/String;)V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 50 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0x60007 0x0 0x80 0x0 0xb0002 0x0 0xe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x110003 0x0 0xa0 0x1a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x230003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)I 2 79252 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 37 0x10004 0x0 0x0 0x1519201fe50 0x29b5 0x0 0x0 0x60004 0x0 0x0 0x1514c6f9518 0x29b5 0x0 0x0 0x130002 0x13595 0x20000b 0x13595 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 3 3 java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle 10 [B 25 [B methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsInts$ArrayHandle index ([BI)I 2 79662 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x80002 0x1372f 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData jdk/internal/misc/Unsafe getIntUnaligned (Ljava/lang/Object;JZ)I 2 10679 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x5000b 0xa3d 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x80002 0x29b8 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 1 9 [B methods 0 +ciMethodData java/net/URL (Ljava/net/URL;Ljava/lang/String;Ljava/net/URLStreamHandler;)V 2 1977 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 332 0x10002 0x7b9 0x1e0007 0x7b9 0x88 0x0 0x210002 0x0 0x280007 0x0 0x58 0x0 0x2e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x320005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x390007 0x0 0x90 0x7b9 0x410005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x460007 0x7b9 0x38 0x0 0x4c0003 0x0 0xffffffffffffff88 0x530007 0x0 0x90 0x7b9 0x590005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x5e0007 0x7b9 0x38 0x0 0x640003 0x0 0xffffffffffffff88 0x6f0005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x720007 0x7b9 0x20 0x0 0x7b0005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x7e0007 0x0 0x78 0x7b9 0x840005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x890007 0x7b9 0x20 0x0 0x950007 0x0 0x188 0x3979 0x9c0007 0x8a 0x168 0x38ef 0xa20005 0x38ef 0x0 0x0 0x0 0x0 0x0 0xaa0007 0x6e5 0x110 0x320a 0xb10007 0x31c0 0xd8 0x4a 0xb90005 0x4a 0x0 0x0 0x0 0x0 0x0 0xbc0002 0x4a 0xc40005 0x4a 0x0 0x0 0x0 0x0 0x0 0xc70007 0x0 0x50 0x4a 0xd40003 0x4a 0x30 0xda0003 0x31c0 0xfffffffffffffe90 0xe40007 0x4a 0x150 0x76f 0xe90007 0x76f 0x78 0x0 0xf20005 0x0 0x0 0x0 0x0 0x0 0x0 0xf50007 0x0 0xd8 0x0 0xf90007 0x0 0x20 0x76f 0x1050007 0x0 0x78 0x76f 0x10e0005 0x76f 0x0 0x0 0x0 0x0 0x0 0x1110007 0x3b3 0x20 0x3bc 0x1190007 0x0 0x20 0x76f 0x15b0007 0x7b9 0xe8 0x0 0x1660002 0x0 0x16b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1700005 0x0 0x0 0x0 0x0 0x0 0x0 0x1730005 0x0 0x0 0x0 0x0 0x0 0x0 0x1760002 0x0 0x17b0007 0x76f 0x118 0x4a 0x1820002 0x4a 0x1870007 0x4a 0xe8 0x0 0x1920002 0x0 0x1970005 0x0 0x0 0x0 0x0 0x0 0x0 0x19e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a10005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a40002 0x0 0x1b20005 0x7b9 0x0 0x0 0x0 0x0 0x0 0x1b90007 0x7b9 0x58 0x0 0x1c40005 0x0 0x0 0x0 0x0 0x0 0x0 0x1d00007 0x4a 0x60 0x76f 0x1d70007 0x76f 0x40 0x0 0x1e60007 0x0 0x20 0x0 0x1f80005 0x0 0x0 0x15192118f20 0x405 0x15192118fd0 0x3b4 0x1fb0003 0x7b9 0x98 0x20b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x20e0002 0x0 0x2170005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 2 283 sun/net/www/protocol/file/Handler 285 sun/net/www/protocol/jar/Handler methods 0 +ciMethodData java/net/URL (Ljava/net/URL;Ljava/lang/String;)V 2 1969 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x40002 0x7b1 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethod java/io/EOFException ()V 2 0 1 0 -1 +ciMethodData java/io/EOFException ()V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/io/DataInputStream readInt ()I 1 149 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x70005 0x96 0x0 0x0 0x0 0x0 0x0 0xf0002 0x96 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData jdk/internal/util/ByteArray getInt ([BI)I 1 149 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x5000b 0x96 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x1514c6f9518 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 1 9 [B methods 0 +ciMethodData java/io/DataInputStream readBoolean ()Z 1 451 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 23 0x10005 0x1c3 0x0 0x0 0x0 0x0 0x0 0x40007 0x149 0x38 0x7a 0x80003 0x7a 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/io/DataInputStream readLong ()J 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x80005 0x0 0x0 0x0 0x0 0x0 0x0 0x100002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData jdk/internal/util/ByteArray getLong ([BI)J 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 20 0x5000b 0x0 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarHandleGuards guard_LI_J (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;ILjava/lang/invoke/VarHandle$AccessDescriptor;)J 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 93 0x2000b 0x0 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x0 0x90007 0x0 0xc0 0x0 0x1c0007 0x0 0xa0 0x0 0x2a000b 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x2d000a 0x0 0x4 0x0 0x0 0x1 0x0 0x36000b 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x41000b 0x0 0x0 0x0 0x0 0x0 0x0 0x3 0x1 0x0 0x0 0x45000b 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x4a000b 0x0 0x0 0x0 0x0 0x0 0x0 0x4 0x1 0x0 0x2 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 0xc 0x4 0x0 0x0 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle get (Ljava/lang/invoke/VarHandle;Ljava/lang/Object;I)J 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 37 0x10004 0x0 0x0 0x0 0x0 0x0 0x0 0x60004 0x0 0x0 0x0 0x0 0x0 0x0 0x130002 0x0 0x20000b 0x0 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/invoke/VarHandleByteArrayAsLongs$ArrayHandle index ([BI)I 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x90002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData jdk/internal/misc/Unsafe getLongUnaligned (Ljava/lang/Object;JZ)J 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x5000b 0x0 0x0 0x0 0x0 0x0 0x0 0x2 0x1 0x0 0x80002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/Boolean valueOf (Z)Ljava/lang/Boolean; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 13 0x10007 0x0 0x38 0x0 0x70003 0x0 0x18 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/Enum valueOf (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 87 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0x50005 0x0 0x0 0x0 0x0 0x0 0x0 0xa0004 0x0 0x0 0x0 0x0 0x0 0x0 0xf0007 0x0 0x20 0x0 0x150007 0x0 0x30 0x0 0x1e0002 0x0 0x2a0002 0x0 0x2f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x330005 0x0 0x0 0x0 0x0 0x0 0x0 0x360005 0x0 0x0 0x0 0x0 0x0 0x0 0x3b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x420005 0x0 0x0 0x0 0x0 0x0 0x0 0x450002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/Throwable toString ()Ljava/lang/String; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 67 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0x40005 0x0 0x0 0x0 0x0 0x0 0x0 0x90005 0x0 0x0 0x0 0x0 0x0 0x0 0xe0007 0x0 0x128 0x0 0x150002 0x0 0x190005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x220005 0x0 0x0 0x0 0x0 0x0 0x0 0x250005 0x0 0x0 0x0 0x0 0x0 0x0 0x280003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/net/URL (Ljava/lang/String;)V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x30002 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethod javafx/scene/paint/Color color (DDDD)Ljavafx/scene/paint/Color; 92 0 46 0 -1 +ciMethod com/sun/javafx/css/ParsedValueImpl (Ljava/lang/Object;Ljavafx/css/StyleConverter;Z)V 706 0 353 0 -1 +ciMethod com/sun/javafx/css/ParsedValueImpl readBinary (ILjava/io/DataInputStream;[Ljava/lang/String;)Lcom/sun/javafx/css/ParsedValueImpl; 706 570 307 0 -1 +ciMethod javafx/css/StyleConverter readBinary (Ljava/io/DataInputStream;[Ljava/lang/String;)Ljavafx/css/StyleConverter; 236 0 118 0 -1 +ciMethod javafx/css/Size (DLjavafx/css/SizeUnits;)V 336 0 168 0 -1 +ciMethodData com/sun/javafx/css/ParsedValueImpl readBinary (ILjava/io/DataInputStream;[Ljava/lang/String;)Lcom/sun/javafx/css/ParsedValueImpl; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 440 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0x60005 0x0 0x0 0x0 0x0 0x0 0x0 0xd0007 0x0 0x48 0x0 0x120002 0x0 0x150003 0x0 0x18 0x1c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x240007 0x0 0x40 0x0 0x2a0002 0x0 0x380002 0x0 0x3f0007 0x0 0x220 0x0 0x440007 0x0 0x58 0x0 0x480005 0x0 0x0 0x0 0x0 0x0 0x0 0x4d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x540007 0x0 0x38 0x0 0x5c0003 0x0 0x18 0x690007 0x0 0x128 0x0 0x6d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x750007 0x0 0x80 0x0 0x7f0002 0x0 0x820004 0x0 0x0 0x0 0x0 0x0 0x0 0x830003 0x0 0x50 0x8b0004 0x0 0x0 0x0 0x0 0x0 0x0 0x8f0003 0x0 0xfffffffffffffef0 0x9b0002 0x0 0xa20007 0x0 0x358 0x0 0xa70007 0x0 0x58 0x0 0xab0005 0x0 0x0 0x0 0x0 0x0 0x0 0xb00005 0x0 0x0 0x0 0x0 0x0 0x0 0xb70007 0x0 0x38 0x0 0xc10003 0x0 0x18 0xce0007 0x0 0x260 0x0 0xd30007 0x0 0x58 0x0 0xd70005 0x0 0x0 0x0 0x0 0x0 0x0 0xdc0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe70007 0x0 0x38 0x0 0xef0003 0x0 0x18 0xf30004 0x0 0x0 0x0 0x0 0x0 0x0 0xfb0007 0x0 0x128 0x0 0xff0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1070007 0x0 0x80 0x0 0x1140002 0x0 0x1170004 0x0 0x0 0x0 0x0 0x0 0x0 0x1180003 0x0 0x50 0x1230004 0x0 0x0 0x0 0x0 0x0 0x0 0x1270003 0x0 0xfffffffffffffef0 0x12d0003 0x0 0xfffffffffffffdb8 0x1390002 0x0 0x1400007 0x0 0x160 0x0 0x1440005 0x0 0x0 0x0 0x0 0x0 0x0 0x1470002 0x0 0x14d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1500002 0x0 0x1560005 0x0 0x0 0x0 0x0 0x0 0x0 0x1590002 0x0 0x15f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1620002 0x0 0x1730002 0x0 0x1790002 0x0 0x1810007 0x0 0x110 0x0 0x1850005 0x0 0x0 0x0 0x0 0x0 0x0 0x1920007 0x0 0xa8 0x0 0x1960005 0x0 0x0 0x0 0x0 0x0 0x0 0x19f0007 0x0 0x50 0x0 0x1a7000a 0x0 0x1 0x0 0x1ac0002 0x0 0x1b90002 0x0 0x1c50007 0x0 0x78 0x0 0x1c90005 0x0 0x0 0x0 0x0 0x0 0x0 0x1cc0002 0x0 0x1da0002 0x0 0x1e20007 0x0 0x218 0x0 0x1e60005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e90002 0x0 0x1f50005 0x0 0x0 0x0 0x0 0x0 0x0 0x1ff0002 0x0 0x2020004 0x0 0x0 0x0 0x0 0x0 0x0 0x2070003 0x0 0x110 0x2110005 0x0 0x0 0x0 0x0 0x0 0x0 0x2140005 0x0 0x0 0x0 0x0 0x0 0x0 0x2170003 0x0 0x88 0x2210005 0x0 0x0 0x0 0x0 0x0 0x0 0x2240005 0x0 0x0 0x0 0x0 0x0 0x0 0x2330002 0x0 0x2390002 0x0 0x2400007 0x0 0x68 0x0 0x2450005 0x0 0x0 0x0 0x0 0x0 0x0 0x2540002 0x0 0x25c0007 0x0 0xc8 0x0 0x2610005 0x0 0x0 0x0 0x0 0x0 0x0 0x26d0002 0x0 0x27b0002 0x0 0x2870002 0x0 0x28a000a 0x0 0x3 0x0 0x0 0x0 0x28f0002 0x0 0x2950007 0x0 0x30 0x0 0x2a00002 0x0 0x2aa000a 0x0 0x1 0x0 0x2af0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData javafx/css/StyleConverter readBinary (Ljava/io/DataInputStream;[Ljava/lang/String;)Ljavafx/css/StyleConverter; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 167 0x10005 0x0 0x0 0x0 0x0 0x0 0x0 0xa0007 0x0 0x78 0x0 0xe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x110007 0x0 0x20 0x0 0x190005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c0007 0x0 0xc0 0x0 0x220005 0x0 0x0 0x0 0x0 0x0 0x0 0x250005 0x0 0x0 0x0 0x0 0x0 0x0 0x28000a 0x0 0x3 0x0 0x0 0x0 0x310005 0x0 0x0 0x0 0x0 0x0 0x0 0x340007 0x0 0x30 0x0 0x390002 0x0 0x400007 0x0 0x78 0x0 0x470005 0x0 0x0 0x0 0x0 0x0 0x0 0x4c0007 0x0 0x210 0x0 0x500002 0x0 0x570007 0x0 0xf0 0x0 0x5a0002 0x0 0x640005 0x0 0x0 0x0 0x0 0x0 0x0 0x670007 0x0 0x88 0x0 0x6d000a 0x0 0x3 0x0 0x0 0x0 0x720005 0x0 0x0 0x0 0x0 0x0 0x0 0x770007 0x0 0x88 0x0 0x7e000a 0x0 0x3 0x0 0x0 0x0 0x830005 0x0 0x0 0x0 0x0 0x0 0x0 0x890007 0x0 0x30 0x0 0x900002 0x0 0x9c0005 0x0 0x0 0x0 0x0 0x0 0x0 0xa90005 0x0 0x0 0x0 0x0 0x0 0x0 0xae0004 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData com/sun/javafx/css/ParsedValueImpl (Ljava/lang/Object;Ljavafx/css/StyleConverter;Z)V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 27 0x30002 0x0 0x130007 0x0 0x50 0x0 0x170002 0x0 0x1a0007 0x0 0x38 0x0 0x1e0003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData javafx/scene/paint/Color color (DDDD)Ljavafx/scene/paint/Color; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0xa0002 0x0 0x0 0x0 0x9 0x8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData javafx/css/Size (DLjavafx/css/SizeUnits;)V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 81 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 21 0x10002 0x0 0xb0007 0x0 0x38 0x0 0xf0003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +compile com/sun/javafx/css/ParsedValueImpl readBinary (ILjava/io/DataInputStream;[Ljava/lang/String;)Lcom/sun/javafx/css/ParsedValueImpl; -1 3